blob: b91c3a3bff47e5e871e9af46a2b275b7804167fb [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 Coras30e79c22019-01-02 19:31:22 -080025static inline int
Florin Corase003a1b2019-06-05 10:47:16 -070026vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
Florin Coras30e79c22019-01-02 19:31:22 -080027{
Florin Coras5398dfb2021-01-25 20:31:27 -080028 u32 n_msgs = 0, sz, len;
Florin Coras30e79c22019-01-02 19:31:22 -080029
Florin Coras5398dfb2021-01-25 20:31:27 -080030 while ((sz = svm_msg_q_size (mq)))
Florin Coras30e79c22019-01-02 19:31:22 -080031 {
Florin Coras5398dfb2021-01-25 20:31:27 -080032 len = vec_len (wrk->mq_msg_vector);
33 vec_validate (wrk->mq_msg_vector, len + sz - 1);
34 svm_msg_q_sub_raw_batch (mq, wrk->mq_msg_vector + len, sz);
35 n_msgs += sz;
Florin Coras30e79c22019-01-02 19:31:22 -080036 }
37 return n_msgs;
38}
39
Florin Coras697faea2018-06-27 17:10:49 -070040const char *
Florin Coras288eaab2019-02-03 15:26:14 -080041vppcom_session_state_str (vcl_session_state_t state)
Dave Wallace543852a2017-08-03 02:11:34 -040042{
43 char *st;
44
45 switch (state)
46 {
Florin Corasc127d5a2020-10-14 16:35:58 -070047 case VCL_STATE_CLOSED:
Florin Coras54140622020-02-04 19:04:34 +000048 st = "STATE_CLOSED";
Dave Wallace543852a2017-08-03 02:11:34 -040049 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070050 case VCL_STATE_LISTEN:
Dave Wallace543852a2017-08-03 02:11:34 -040051 st = "STATE_LISTEN";
52 break;
Florin Corasdfffdd72020-10-15 10:54:47 -070053 case VCL_STATE_READY:
54 st = "STATE_READY";
Dave Wallace543852a2017-08-03 02:11:34 -040055 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070056 case VCL_STATE_VPP_CLOSING:
Florin Coras3c7d4f92018-12-14 11:28:43 -080057 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050058 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070059 case VCL_STATE_DISCONNECT:
Dave Wallace543852a2017-08-03 02:11:34 -040060 st = "STATE_DISCONNECT";
61 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070062 case VCL_STATE_DETACHED:
Florin Corasadcfb152020-02-12 08:50:29 +000063 st = "STATE_DETACHED";
Dave Wallace543852a2017-08-03 02:11:34 -040064 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070065 case VCL_STATE_UPDATED:
Florin Coras2d675d72019-01-28 15:54:27 -080066 st = "STATE_UPDATED";
67 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070068 case VCL_STATE_LISTEN_NO_MQ:
Florin Coras2d675d72019-01-28 15:54:27 -080069 st = "STATE_LISTEN_NO_MQ";
70 break;
Dave Wallace543852a2017-08-03 02:11:34 -040071 default:
72 st = "UNKNOWN_STATE";
73 break;
74 }
75
76 return st;
77}
78
Dave Wallace543852a2017-08-03 02:11:34 -040079u8 *
80format_ip4_address (u8 * s, va_list * args)
81{
82 u8 *a = va_arg (*args, u8 *);
83 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
84}
85
86u8 *
87format_ip6_address (u8 * s, va_list * args)
88{
89 ip6_address_t *a = va_arg (*args, ip6_address_t *);
90 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
91
92 i_max_n_zero = ARRAY_LEN (a->as_u16);
93 max_n_zeros = 0;
94 i_first_zero = i_max_n_zero;
95 n_zeros = 0;
96 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
97 {
98 u32 is_zero = a->as_u16[i] == 0;
99 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
100 {
101 i_first_zero = i;
102 n_zeros = 0;
103 }
104 n_zeros += is_zero;
105 if ((!is_zero && n_zeros > max_n_zeros)
106 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
107 {
108 i_max_n_zero = i_first_zero;
109 max_n_zeros = n_zeros;
110 i_first_zero = ARRAY_LEN (a->as_u16);
111 n_zeros = 0;
112 }
113 }
114
115 last_double_colon = 0;
116 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
117 {
118 if (i == i_max_n_zero && max_n_zeros > 1)
119 {
120 s = format (s, "::");
121 i += max_n_zeros - 1;
122 last_double_colon = 1;
123 }
124 else
125 {
126 s = format (s, "%s%x",
127 (last_double_colon || i == 0) ? "" : ":",
128 clib_net_to_host_u16 (a->as_u16[i]));
129 last_double_colon = 0;
130 }
131 }
132
133 return s;
134}
135
136/* Format an IP46 address. */
137u8 *
138format_ip46_address (u8 * s, va_list * args)
139{
140 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
141 ip46_type_t type = va_arg (*args, ip46_type_t);
142 int is_ip4 = 1;
143
144 switch (type)
145 {
146 case IP46_TYPE_ANY:
147 is_ip4 = ip46_address_is_ip4 (ip46);
148 break;
149 case IP46_TYPE_IP4:
150 is_ip4 = 1;
151 break;
152 case IP46_TYPE_IP6:
153 is_ip4 = 0;
154 break;
155 }
156
157 return is_ip4 ?
158 format (s, "%U", format_ip4_address, &ip46->ip4) :
159 format (s, "%U", format_ip6_address, &ip46->ip6);
160}
161
Florin Coras697faea2018-06-27 17:10:49 -0700162/*
163 * VPPCOM Utility Functions
164 */
165
Florin Coras458089b2019-08-21 16:20:44 -0700166static void
Florin Coras4ac25842021-04-19 17:34:54 -0700167vcl_msg_add_ext_config (vcl_session_t *s, uword *offset)
168{
169 svm_fifo_chunk_t *c;
170
171 c = vcl_segment_alloc_chunk (vcl_vpp_worker_segment_handle (0),
172 0 /* one slice only */, s->ext_config->len,
173 offset);
174 if (c)
175 clib_memcpy_fast (c->data, s->ext_config, s->ext_config->len);
176}
177
178static void
Florin Coras458089b2019-08-21 16:20:44 -0700179vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
180{
181 app_session_evt_t _app_evt, *app_evt = &_app_evt;
182 session_listen_msg_t *mp;
183 svm_msg_q_t *mq;
184
185 mq = vcl_worker_ctrl_mq (wrk);
186 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
187 mp = (session_listen_msg_t *) app_evt->evt->data;
188 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700189 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700190 mp->context = s->session_index;
191 mp->wrk_index = wrk->vpp_wrk_index;
192 mp->is_ip4 = s->transport.is_ip4;
193 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
194 mp->port = s->transport.lcl_port;
195 mp->proto = s->session_type;
Florin Coras6a6555a2021-01-28 11:39:27 -0800196 mp->vrf = s->vrf;
Florin Coras1e966172020-05-16 18:18:14 +0000197 if (s->flags & VCL_SESSION_F_CONNECTED)
198 mp->flags = TRANSPORT_CFG_F_CONNECTED;
Florin Coras4ac25842021-04-19 17:34:54 -0700199 if (s->ext_config)
200 vcl_msg_add_ext_config (s, &mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700201 app_send_ctrl_evt_to_vpp (mq, app_evt);
Florin Coras4ac25842021-04-19 17:34:54 -0700202 if (s->ext_config)
203 {
204 clib_mem_free (s->ext_config);
205 s->ext_config = 0;
206 }
Florin Coras458089b2019-08-21 16:20:44 -0700207}
208
209static void
210vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
211{
212 app_session_evt_t _app_evt, *app_evt = &_app_evt;
213 session_connect_msg_t *mp;
214 svm_msg_q_t *mq;
215
216 mq = vcl_worker_ctrl_mq (wrk);
217 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
218 mp = (session_connect_msg_t *) app_evt->evt->data;
219 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700220 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700221 mp->context = s->session_index;
222 mp->wrk_index = wrk->vpp_wrk_index;
223 mp->is_ip4 = s->transport.is_ip4;
224 mp->parent_handle = s->parent_handle;
225 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700226 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700227 mp->port = s->transport.rmt_port;
Florin Coras0a1e1832020-03-29 18:54:04 +0000228 mp->lcl_port = s->transport.lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700229 mp->proto = s->session_type;
Florin Coras6a6555a2021-01-28 11:39:27 -0800230 mp->vrf = s->vrf;
Florin Coras0a1e1832020-03-29 18:54:04 +0000231 if (s->flags & VCL_SESSION_F_CONNECTED)
232 mp->flags |= TRANSPORT_CFG_F_CONNECTED;
Florin Coras4ac25842021-04-19 17:34:54 -0700233 if (s->ext_config)
234 vcl_msg_add_ext_config (s, &mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700235 app_send_ctrl_evt_to_vpp (mq, app_evt);
Florin Coras4ac25842021-04-19 17:34:54 -0700236
237 if (s->ext_config)
238 {
239 clib_mem_free (s->ext_config);
240 s->ext_config = 0;
241 }
Florin Coras458089b2019-08-21 16:20:44 -0700242}
243
244void
245vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
246{
247 app_session_evt_t _app_evt, *app_evt = &_app_evt;
248 session_unlisten_msg_t *mp;
249 svm_msg_q_t *mq;
250
251 mq = vcl_worker_ctrl_mq (wrk);
252 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
253 mp = (session_unlisten_msg_t *) app_evt->evt->data;
254 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700255 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700256 mp->wrk_index = wrk->vpp_wrk_index;
257 mp->handle = s->vpp_handle;
258 mp->context = wrk->wrk_index;
259 app_send_ctrl_evt_to_vpp (mq, app_evt);
260}
261
262static void
liuyacan534468e2021-05-09 03:50:40 +0000263vcl_send_session_shutdown (vcl_worker_t *wrk, vcl_session_t *s)
264{
265 app_session_evt_t _app_evt, *app_evt = &_app_evt;
266 session_shutdown_msg_t *mp;
267 svm_msg_q_t *mq;
268
269 /* Send to thread that owns the session */
270 mq = s->vpp_evt_q;
271 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_SHUTDOWN);
272 mp = (session_shutdown_msg_t *) app_evt->evt->data;
273 memset (mp, 0, sizeof (*mp));
274 mp->client_index = wrk->api_client_handle;
275 mp->handle = s->vpp_handle;
276 app_send_ctrl_evt_to_vpp (mq, app_evt);
277}
278
279static void
Florin Coras458089b2019-08-21 16:20:44 -0700280vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
281{
282 app_session_evt_t _app_evt, *app_evt = &_app_evt;
283 session_disconnect_msg_t *mp;
284 svm_msg_q_t *mq;
285
286 /* Send to thread that owns the session */
287 mq = s->vpp_evt_q;
288 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
289 mp = (session_disconnect_msg_t *) app_evt->evt->data;
290 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700291 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700292 mp->handle = s->vpp_handle;
293 app_send_ctrl_evt_to_vpp (mq, app_evt);
294}
295
296static void
297vcl_send_app_detach (vcl_worker_t * wrk)
298{
299 app_session_evt_t _app_evt, *app_evt = &_app_evt;
300 session_app_detach_msg_t *mp;
301 svm_msg_q_t *mq;
302
303 mq = vcl_worker_ctrl_mq (wrk);
304 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
305 mp = (session_app_detach_msg_t *) app_evt->evt->data;
306 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700307 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700308 app_send_ctrl_evt_to_vpp (mq, app_evt);
309}
Florin Coras697faea2018-06-27 17:10:49 -0700310
Florin Coras54693d22018-07-17 10:46:29 -0700311static void
312vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
313 session_handle_t handle, int retval)
314{
315 app_session_evt_t _app_evt, *app_evt = &_app_evt;
316 session_accepted_reply_msg_t *rmp;
317 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
318 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
319 rmp->handle = handle;
320 rmp->context = context;
321 rmp->retval = retval;
322 app_send_ctrl_evt_to_vpp (mq, app_evt);
323}
324
Florin Coras99368312018-08-02 10:45:44 -0700325static void
Florin Coras52dd29f2020-11-18 19:02:17 -0800326vcl_send_session_disconnected_reply (vcl_worker_t * wrk, vcl_session_t * s,
327 int retval)
Florin Coras99368312018-08-02 10:45:44 -0700328{
329 app_session_evt_t _app_evt, *app_evt = &_app_evt;
330 session_disconnected_reply_msg_t *rmp;
Florin Coras52dd29f2020-11-18 19:02:17 -0800331 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
Florin Coras99368312018-08-02 10:45:44 -0700332 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
333 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
Florin Coras52dd29f2020-11-18 19:02:17 -0800334 rmp->handle = s->vpp_handle;
335 rmp->context = wrk->api_client_handle;
Florin Coras99368312018-08-02 10:45:44 -0700336 rmp->retval = retval;
Florin Coras52dd29f2020-11-18 19:02:17 -0800337 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Coras99368312018-08-02 10:45:44 -0700338}
339
Florin Corasc9fbd662018-08-24 12:59:56 -0700340static void
Florin Coras52dd29f2020-11-18 19:02:17 -0800341vcl_send_session_reset_reply (vcl_worker_t * wrk, vcl_session_t * s,
342 int retval)
Florin Corasc9fbd662018-08-24 12:59:56 -0700343{
344 app_session_evt_t _app_evt, *app_evt = &_app_evt;
345 session_reset_reply_msg_t *rmp;
Florin Coras52dd29f2020-11-18 19:02:17 -0800346 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
347 SESSION_CTRL_EVT_RESET_REPLY);
Florin Corasc9fbd662018-08-24 12:59:56 -0700348 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
Florin Coras52dd29f2020-11-18 19:02:17 -0800349 rmp->handle = s->vpp_handle;
350 rmp->context = wrk->api_client_handle;
Florin Corasc9fbd662018-08-24 12:59:56 -0700351 rmp->retval = retval;
Florin Coras52dd29f2020-11-18 19:02:17 -0800352 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Corasc9fbd662018-08-24 12:59:56 -0700353}
354
Florin Coras30e79c22019-01-02 19:31:22 -0800355void
356vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
357 u32 wrk_index)
358{
359 app_session_evt_t _app_evt, *app_evt = &_app_evt;
360 session_worker_update_msg_t *mp;
Florin Coras30e79c22019-01-02 19:31:22 -0800361
Florin Coras52dd29f2020-11-18 19:02:17 -0800362 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
363 SESSION_CTRL_EVT_WORKER_UPDATE);
Florin Coras30e79c22019-01-02 19:31:22 -0800364 mp = (session_worker_update_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700365 mp->client_index = wrk->api_client_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800366 mp->handle = s->vpp_handle;
367 mp->req_wrk_index = wrk->vpp_wrk_index;
368 mp->wrk_index = wrk_index;
Florin Coras52dd29f2020-11-18 19:02:17 -0800369 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Coras30e79c22019-01-02 19:31:22 -0800370}
371
hanlina3a48962020-07-13 11:09:15 +0800372int
Florin Coras40c07ce2020-07-16 20:46:17 -0700373vcl_send_worker_rpc (u32 dst_wrk_index, void *data, u32 data_len)
374{
375 app_session_evt_t _app_evt, *app_evt = &_app_evt;
376 session_app_wrk_rpc_msg_t *mp;
377 vcl_worker_t *dst_wrk, *wrk;
378 svm_msg_q_t *mq;
hanlina3a48962020-07-13 11:09:15 +0800379 int ret = -1;
Florin Coras40c07ce2020-07-16 20:46:17 -0700380
381 if (data_len > sizeof (mp->data))
382 goto done;
383
384 clib_spinlock_lock (&vcm->workers_lock);
385
386 dst_wrk = vcl_worker_get_if_valid (dst_wrk_index);
387 if (!dst_wrk)
388 goto done;
389
390 wrk = vcl_worker_get_current ();
391 mq = vcl_worker_ctrl_mq (wrk);
392 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_WRK_RPC);
393 mp = (session_app_wrk_rpc_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700394 mp->client_index = wrk->api_client_handle;
Florin Coras40c07ce2020-07-16 20:46:17 -0700395 mp->wrk_index = dst_wrk->vpp_wrk_index;
396 clib_memcpy (mp->data, data, data_len);
397 app_send_ctrl_evt_to_vpp (mq, app_evt);
hanlina3a48962020-07-13 11:09:15 +0800398 ret = 0;
Florin Coras40c07ce2020-07-16 20:46:17 -0700399
400done:
401 clib_spinlock_unlock (&vcm->workers_lock);
hanlina3a48962020-07-13 11:09:15 +0800402 return ret;
Florin Coras40c07ce2020-07-16 20:46:17 -0700403}
404
Florin Coras04ae8272021-04-12 19:55:37 -0700405int
406vcl_session_transport_attr (vcl_worker_t *wrk, vcl_session_t *s, u8 is_get,
407 transport_endpt_attr_t *attr)
408{
409 app_session_evt_t _app_evt, *app_evt = &_app_evt;
410 session_transport_attr_msg_t *mp;
411 svm_msg_q_t *mq;
412 f64 timeout;
413
414 ASSERT (!wrk->session_attr_op);
415 wrk->session_attr_op = 1;
416 wrk->session_attr_op_rv = -1;
417
418 mq = s->vpp_evt_q;
419 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_TRANSPORT_ATTR);
420 mp = (session_transport_attr_msg_t *) app_evt->evt->data;
421 memset (mp, 0, sizeof (*mp));
422 mp->client_index = wrk->api_client_handle;
423 mp->handle = s->vpp_handle;
424 mp->is_get = is_get;
425 mp->attr = *attr;
426 app_send_ctrl_evt_to_vpp (mq, app_evt);
427
428 timeout = clib_time_now (&wrk->clib_time) + 1;
429
430 while (wrk->session_attr_op && clib_time_now (&wrk->clib_time) < timeout)
431 vcl_flush_mq_events ();
432
433 if (!wrk->session_attr_op_rv && is_get)
434 *attr = wrk->session_attr_rv;
435
436 wrk->session_attr_op = 0;
437
438 return wrk->session_attr_op_rv;
439}
440
Florin Coras54693d22018-07-17 10:46:29 -0700441static u32
Florin Coras00cca802019-06-06 09:38:44 -0700442vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
443 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700444{
445 vcl_session_t *session, *listen_session;
Florin Coras99368312018-08-02 10:45:44 -0700446 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700447
Florin Coras134a9962018-08-28 11:32:04 -0700448 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700449
Florin Coras00cca802019-06-06 09:38:44 -0700450 listen_session = vcl_session_get (wrk, ls_index);
451 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700452 {
Florin Coras00cca802019-06-06 09:38:44 -0700453 VDBG (0, "ERROR: listener handle %lu does not match session %u",
454 mp->listener_handle, ls_index);
455 goto error;
456 }
457
Florin Corasf6e284b2021-07-21 18:17:20 -0700458 if (vcl_segment_attach_session (
459 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
460 mp->vpp_event_queue_address, mp->mq_index, 0, session))
Florin Coras00cca802019-06-06 09:38:44 -0700461 {
Florin Corasc547e912020-12-08 17:50:45 -0800462 VDBG (0, "failed to attach fifos for %u", session->session_index);
Florin Coras00cca802019-06-06 09:38:44 -0700463 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700464 }
465
Florin Coras54693d22018-07-17 10:46:29 -0700466 session->vpp_handle = mp->handle;
Florin Corasdfffdd72020-10-15 10:54:47 -0700467 session->session_state = VCL_STATE_READY;
Florin Coras09d18c22019-04-24 11:10:02 -0700468 session->transport.rmt_port = mp->rmt.port;
469 session->transport.is_ip4 = mp->rmt.is_ip4;
470 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500471 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700472
Florin Coras134a9962018-08-28 11:32:04 -0700473 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras67c90a32021-03-09 18:36:06 -0800474 session->transport.lcl_port = mp->lcl.port;
475 session->transport.lcl_ip = mp->lcl.ip;
Florin Coras460dce62018-07-27 05:45:06 -0700476 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200477 session->is_dgram = vcl_proto_is_dgram (session->session_type);
478 session->listener_index = listen_session->session_index;
479 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700480
Florin Coras5e062572019-03-14 19:07:51 -0700481 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
482 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700483 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
484 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
485 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700486 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
487
Florin Coras00cca802019-06-06 09:38:44 -0700488 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
489 session->vpp_handle, 0);
490
Florin Coras134a9962018-08-28 11:32:04 -0700491 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700492
493error:
Florin Corasb4624182020-12-11 13:58:12 -0800494 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0),
495 mp->vpp_event_queue_address, mp->mq_index, &evt_q);
Florin Coras00cca802019-06-06 09:38:44 -0700496 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
497 VNET_API_ERROR_INVALID_ARGUMENT);
498 vcl_session_free (wrk, session);
499 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700500}
501
502static u32
Florin Coras134a9962018-08-28 11:32:04 -0700503vcl_session_connected_handler (vcl_worker_t * wrk,
504 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700505{
Florin Coras99368312018-08-02 10:45:44 -0700506 vcl_session_t *session = 0;
Florin Coras52dd29f2020-11-18 19:02:17 -0800507 u32 session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700508
509 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700510 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700511 if (!session)
512 {
Florin Coras5e062572019-03-14 19:07:51 -0700513 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
514 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700515 return VCL_INVALID_SESSION_INDEX;
516 }
Florin Coras54693d22018-07-17 10:46:29 -0700517 if (mp->retval)
518 {
Florin Coras5e062572019-03-14 19:07:51 -0700519 VDBG (0, "ERROR: session index %u: connect failed! %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700520 session_index, format_session_error, mp->retval);
Florin Corasc127d5a2020-10-14 16:35:58 -0700521 session->session_state = VCL_STATE_DETACHED;
Florin Coras070453d2018-08-24 17:04:27 -0700522 session->vpp_handle = mp->handle;
523 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700524 }
525
Florin Corasdbc9c592019-09-25 16:37:43 -0700526 session->vpp_handle = mp->handle;
Florin Corasc547e912020-12-08 17:50:45 -0800527
Florin Corasf6e284b2021-07-21 18:17:20 -0700528 if (vcl_segment_attach_session (
529 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
530 mp->vpp_event_queue_address, mp->mq_index, 0, session))
Florin Corasd85de682018-11-29 17:02:29 -0800531 {
Florin Corasc547e912020-12-08 17:50:45 -0800532 VDBG (0, "failed to attach fifos for %u", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700533 session->session_state = VCL_STATE_DETACHED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700534 vcl_send_session_disconnect (wrk, session);
535 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800536 }
537
Florin Coras653e43f2019-03-04 10:56:23 -0800538 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700539 {
Florin Corasc547e912020-12-08 17:50:45 -0800540 if (vcl_segment_attach_session (mp->ct_segment_handle, mp->ct_rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700541 mp->ct_tx_fifo, (uword) ~0, ~0, 1,
542 session))
Florin Coras653e43f2019-03-04 10:56:23 -0800543 {
Florin Corasc547e912020-12-08 17:50:45 -0800544 VDBG (0, "failed to attach ct fifos for %u", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700545 session->session_state = VCL_STATE_DETACHED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700546 vcl_send_session_disconnect (wrk, session);
547 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800548 }
Florin Coras99368312018-08-02 10:45:44 -0700549 }
Florin Coras54693d22018-07-17 10:46:29 -0700550
Florin Coras09d18c22019-04-24 11:10:02 -0700551 session->transport.is_ip4 = mp->lcl.is_ip4;
552 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500553 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700554 session->transport.lcl_port = mp->lcl.port;
Florin Corasa5ea8212020-08-24 21:23:51 -0700555
556 /* Application closed session before connect reply */
Florin Corasac422d62020-10-19 20:51:36 -0700557 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK)
Florin Corasc127d5a2020-10-14 16:35:58 -0700558 && session->session_state == VCL_STATE_CLOSED)
Florin Corasa5ea8212020-08-24 21:23:51 -0700559 vcl_send_session_disconnect (wrk, session);
560 else
Florin Corasdfffdd72020-10-15 10:54:47 -0700561 session->session_state = VCL_STATE_READY;
Florin Coras54693d22018-07-17 10:46:29 -0700562
563 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800564 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700565
Florin Coras5e062572019-03-14 19:07:51 -0700566 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
567 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700568 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700569
Florin Coras54693d22018-07-17 10:46:29 -0700570 return session_index;
571}
572
Florin Coras3c7d4f92018-12-14 11:28:43 -0800573static int
574vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
575{
576 vcl_session_msg_t *accepted_msg;
577 int i;
578
579 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
580 {
581 accepted_msg = &session->accept_evts_fifo[i];
582 if (accepted_msg->accepted_msg.handle == handle)
583 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800584 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800585 return 1;
586 }
587 }
588 return 0;
589}
590
Florin Corasc9fbd662018-08-24 12:59:56 -0700591static u32
Florin Coras134a9962018-08-28 11:32:04 -0700592vcl_session_reset_handler (vcl_worker_t * wrk,
593 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700594{
595 vcl_session_t *session;
596 u32 sid;
597
Florin Coras134a9962018-08-28 11:32:04 -0700598 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
599 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700600 if (!session)
601 {
602 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
603 return VCL_INVALID_SESSION_INDEX;
604 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800605
606 /* Caught a reset before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700607 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800608 {
609
610 if (!vcl_flag_accepted_session (session, reset_msg->handle,
611 VCL_ACCEPTED_F_RESET))
612 VDBG (0, "session was not accepted!");
613 return VCL_INVALID_SESSION_INDEX;
614 }
615
Florin Corasc127d5a2020-10-14 16:35:58 -0700616 if (session->session_state != VCL_STATE_CLOSED)
617 session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800618 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700619 return sid;
620}
621
Florin Coras60116992018-08-27 09:52:18 -0700622static u32
Florin Coras134a9962018-08-28 11:32:04 -0700623vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700624{
625 vcl_session_t *session;
626 u32 sid = mp->context;
627
Florin Coras134a9962018-08-28 11:32:04 -0700628 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700629 if (mp->retval)
630 {
Florin Coras5e062572019-03-14 19:07:51 -0700631 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700632 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700633 if (session)
634 {
Florin Corasc127d5a2020-10-14 16:35:58 -0700635 session->session_state = VCL_STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700636 session->vpp_handle = mp->handle;
637 return sid;
638 }
639 else
640 {
Florin Coras5e062572019-03-14 19:07:51 -0700641 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
642 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700643 return VCL_INVALID_SESSION_INDEX;
644 }
645 }
646
647 session->vpp_handle = mp->handle;
648 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500649 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
650 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700651 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700652 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Corasc127d5a2020-10-14 16:35:58 -0700653 session->session_state = VCL_STATE_LISTEN;
Florin Coras5f45e012019-01-23 09:21:30 -0800654
Florin Coras6e3c1f82020-01-15 01:30:46 +0000655 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700656 {
Florin Corasc547e912020-12-08 17:50:45 -0800657 if (vcl_segment_attach_session (mp->segment_handle, mp->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700658 mp->tx_fifo, mp->vpp_evt_q, mp->mq_index,
659 0, session))
Florin Corasc547e912020-12-08 17:50:45 -0800660 {
661 VDBG (0, "failed to attach fifos for %u", session->session_index);
662 session->session_state = VCL_STATE_DETACHED;
663 return VCL_INVALID_SESSION_INDEX;
664 }
Florin Coras60116992018-08-27 09:52:18 -0700665 }
666
Florin Coras05ecfcc2018-12-12 18:19:39 -0800667 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700668 return sid;
669}
670
Florin Corasdfae9f92019-02-20 19:48:31 -0800671static void
672vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
673{
674 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
675 vcl_session_t *s;
676
677 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000678 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800679 {
680 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
681 return;
682 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700683 if (s->session_state != VCL_STATE_DISCONNECT)
Florin Coras0a1e1832020-03-29 18:54:04 +0000684 {
685 /* Connected udp listener */
686 if (s->session_type == VPPCOM_PROTO_UDP
Florin Corasc127d5a2020-10-14 16:35:58 -0700687 && s->session_state == VCL_STATE_CLOSED)
Florin Coras0a1e1832020-03-29 18:54:04 +0000688 return;
689
690 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
691 return;
692 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800693
694 if (mp->retval)
695 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700696 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800697
698 if (mp->context != wrk->wrk_index)
699 VDBG (0, "wrong context");
700
701 vcl_session_table_del_vpp_handle (wrk, mp->handle);
702 vcl_session_free (wrk, s);
703}
704
Florin Coras68b7e582020-01-21 18:33:23 -0800705static void
706vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
707{
708 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
709 vcl_session_t *s;
Florin Corasc547e912020-12-08 17:50:45 -0800710 u32 fs_index;
Florin Coras68b7e582020-01-21 18:33:23 -0800711
712 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
713 if (!s)
714 {
715 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
716 return;
717 }
718
Florin Coras1bb74942021-02-10 15:26:37 -0800719 /* Only validate if a value is provided */
720 if (mp->segment_handle != SESSION_INVALID_HANDLE)
Florin Corasc547e912020-12-08 17:50:45 -0800721 {
Florin Coras1bb74942021-02-10 15:26:37 -0800722 fs_index = vcl_segment_table_lookup (mp->segment_handle);
723 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
724 {
725 VDBG (0, "segment %lx for session %u is not mounted!",
726 mp->segment_handle, s->session_index);
727 s->session_state = VCL_STATE_DETACHED;
728 return;
729 }
Florin Corasc547e912020-12-08 17:50:45 -0800730 }
731
Florin Coras57660d92020-04-04 22:45:34 +0000732 s->vpp_handle = mp->new_handle;
Florin Corasb4624182020-12-11 13:58:12 -0800733
734 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0), mp->vpp_evt_q,
735 mp->vpp_thread_index, &s->vpp_evt_q);
Florin Coras68b7e582020-01-21 18:33:23 -0800736
Florin Coras68b7e582020-01-21 18:33:23 -0800737 vcl_session_table_del_vpp_handle (wrk, mp->handle);
738 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
739
740 /* Generate new tx event if we have outstanding data */
741 if (svm_fifo_has_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -0800742 app_send_io_evt_to_vpp (s->vpp_evt_q,
743 s->tx_fifo->shr->master_session_index,
Florin Coras68b7e582020-01-21 18:33:23 -0800744 SESSION_IO_EVT_TX, SVM_Q_WAIT);
745
Florin Coras57660d92020-04-04 22:45:34 +0000746 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
Florin Coras52dd29f2020-11-18 19:02:17 -0800747 mp->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800748}
749
Florin Coras3c7d4f92018-12-14 11:28:43 -0800750static vcl_session_t *
751vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
752{
753 vcl_session_msg_t *vcl_msg;
754 vcl_session_t *session;
755
756 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
757 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800758 VWRN ("session overlap handle %lu state %u!", msg->handle,
759 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800760
761 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
762 if (!session)
763 {
764 VERR ("couldn't find listen session: listener handle %llx",
765 msg->listener_handle);
766 return 0;
767 }
768
769 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000770 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800771 vcl_msg->accepted_msg = *msg;
772 /* Session handle points to listener until fully accepted by app */
773 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
774
775 return session;
776}
777
778static vcl_session_t *
779vcl_session_disconnected_handler (vcl_worker_t * wrk,
780 session_disconnected_msg_t * msg)
781{
782 vcl_session_t *session;
783
784 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
785 if (!session)
786 {
787 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
788 return 0;
789 }
790
Florin Corasadcfb152020-02-12 08:50:29 +0000791 /* Late disconnect notification on a session that has been closed */
Florin Corasc127d5a2020-10-14 16:35:58 -0700792 if (session->session_state == VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000793 return 0;
794
Florin Coras3c7d4f92018-12-14 11:28:43 -0800795 /* Caught a disconnect before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700796 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800797 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800798 if (!vcl_flag_accepted_session (session, msg->handle,
799 VCL_ACCEPTED_F_CLOSED))
800 VDBG (0, "session was not accepted!");
801 return 0;
802 }
803
Florin Corasadcfb152020-02-12 08:50:29 +0000804 /* If not already reset change state */
Florin Corasc127d5a2020-10-14 16:35:58 -0700805 if (session->session_state != VCL_STATE_DISCONNECT)
806 session->session_state = VCL_STATE_VPP_CLOSING;
Florin Corasadcfb152020-02-12 08:50:29 +0000807
Florin Coras3c7d4f92018-12-14 11:28:43 -0800808 return session;
809}
810
liuyacan534468e2021-05-09 03:50:40 +0000811int
liuyacan55c952e2021-06-13 14:54:55 +0800812vppcom_session_shutdown (uint32_t session_handle, int how)
liuyacan534468e2021-05-09 03:50:40 +0000813{
814 vcl_worker_t *wrk = vcl_worker_get_current ();
815 vcl_session_t *session;
816 vcl_session_state_t state;
817 u64 vpp_handle;
818
819 session = vcl_session_get_w_handle (wrk, session_handle);
820 if (PREDICT_FALSE (!session))
821 return VPPCOM_EBADFD;
822
823 vpp_handle = session->vpp_handle;
824 state = session->session_state;
825
826 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
827 vpp_handle, state, vppcom_session_state_str (state));
828
829 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
830 {
831 VDBG (0, "ERROR: Cannot shutdown a listen socket!");
832 return VPPCOM_EBADFD;
833 }
834
liuyacan55c952e2021-06-13 14:54:55 +0800835 if (how == SHUT_RD || how == SHUT_RDWR)
836 {
837 session->flags |= VCL_SESSION_F_RD_SHUTDOWN;
838 if (how == SHUT_RD)
839 return VPPCOM_OK;
840 }
841 session->flags |= VCL_SESSION_F_WR_SHUTDOWN;
842
liuyacan534468e2021-05-09 03:50:40 +0000843 if (PREDICT_TRUE (state == VCL_STATE_READY))
844 {
845 VDBG (1, "session %u [0x%llx]: sending shutdown...",
846 session->session_index, vpp_handle);
847
848 vcl_send_session_shutdown (wrk, session);
liuyacan534468e2021-05-09 03:50:40 +0000849 }
850
851 return VPPCOM_OK;
852}
853
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700854static int
855vppcom_session_disconnect (u32 session_handle)
856{
857 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700858 vcl_session_t *session, *listen_session;
859 vcl_session_state_t state;
860 u64 vpp_handle;
861
862 session = vcl_session_get_w_handle (wrk, session_handle);
863 if (!session)
864 return VPPCOM_EBADFD;
865
866 vpp_handle = session->vpp_handle;
867 state = session->session_state;
868
869 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
870 vpp_handle, state, vppcom_session_state_str (state));
871
872 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
873 {
874 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
875 return VPPCOM_EBADFD;
876 }
877
878 if (state == VCL_STATE_VPP_CLOSING)
879 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800880 vcl_send_session_disconnected_reply (wrk, session, 0);
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700881 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
882 session->session_index, vpp_handle);
883 }
884 else
885 {
886 /* Session doesn't have an event queue yet. Probably a non-blocking
887 * connect. Wait for the reply */
888 if (PREDICT_FALSE (!session->vpp_evt_q))
889 return VPPCOM_OK;
890
891 VDBG (1, "session %u [0x%llx]: sending disconnect...",
892 session->session_index, vpp_handle);
893 vcl_send_session_disconnect (wrk, session);
894 }
895
896 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
897 {
898 listen_session = vcl_session_get (wrk, session->listener_index);
899 listen_session->n_accepted_sessions--;
900 }
901
902 return VPPCOM_OK;
903}
904
Florin Coras30e79c22019-01-02 19:31:22 -0800905static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700906vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
907{
908 session_cleanup_msg_t *msg;
909 vcl_session_t *session;
910
911 msg = (session_cleanup_msg_t *) data;
912 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
913 if (!session)
914 {
915 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
916 return;
917 }
918
Florin Coras36d49392020-04-24 23:00:11 +0000919 if (msg->type == SESSION_CLEANUP_TRANSPORT)
920 {
921 /* Transport was cleaned up before we confirmed close. Probably the
922 * app is still waiting for some data that cannot be delivered.
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700923 * Confirm close to make sure everything is cleaned up.
924 * Move to undetermined state to ensure that the session is not
925 * removed before both vpp and the app cleanup.
926 * - If the app closes first, the session is moved to CLOSED state
927 * and the session cleanup notification from vpp removes the
928 * session.
929 * - If vpp cleans up the session first, the session is moved to
930 * DETACHED state lower and subsequently the close from the app
931 * frees the session
932 */
933 if (session->session_state == VCL_STATE_VPP_CLOSING)
Florin Coras0ff7eec2020-08-03 18:55:40 -0700934 {
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700935 vppcom_session_disconnect (vcl_session_handle (session));
936 session->session_state = VCL_STATE_UPDATED;
937 }
938 else if (session->session_state == VCL_STATE_DISCONNECT)
939 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800940 vcl_send_session_reset_reply (wrk, session, 0);
Florin Coras0ff7eec2020-08-03 18:55:40 -0700941 session->session_state = VCL_STATE_UPDATED;
942 }
Florin Coras36d49392020-04-24 23:00:11 +0000943 return;
944 }
945
Florin Coras9ace36d2019-10-28 13:14:17 -0700946 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000947 /* Should not happen. App did not close the connection so don't free it. */
Florin Corasc127d5a2020-10-14 16:35:58 -0700948 if (session->session_state != VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000949 {
950 VDBG (0, "app did not close session %d", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700951 session->session_state = VCL_STATE_DETACHED;
Florin Corasadcfb152020-02-12 08:50:29 +0000952 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
953 return;
954 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700955 vcl_session_free (wrk, session);
956}
957
958static void
Florin Coras30e79c22019-01-02 19:31:22 -0800959vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
960{
961 session_req_worker_update_msg_t *msg;
962 vcl_session_t *s;
963
964 msg = (session_req_worker_update_msg_t *) data;
965 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
966 if (!s)
967 return;
968
969 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
970}
971
972static void
973vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
974{
975 session_worker_update_reply_msg_t *msg;
976 vcl_session_t *s;
977
978 msg = (session_worker_update_reply_msg_t *) data;
979 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
980 if (!s)
981 {
982 VDBG (0, "unknown handle 0x%llx", msg->handle);
983 return;
984 }
Florin Coras30e79c22019-01-02 19:31:22 -0800985
Florin Coras5f45e012019-01-23 09:21:30 -0800986 if (s->rx_fifo)
987 {
Florin Corasc547e912020-12-08 17:50:45 -0800988 if (vcl_segment_attach_session (msg->segment_handle, msg->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700989 msg->tx_fifo, (uword) ~0, ~0, 0, s))
Florin Corasc547e912020-12-08 17:50:45 -0800990 {
991 VDBG (0, "failed to attach fifos for %u", s->session_index);
992 return;
993 }
Florin Coras5f45e012019-01-23 09:21:30 -0800994 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700995 s->session_state = VCL_STATE_UPDATED;
Florin Coras30e79c22019-01-02 19:31:22 -0800996
Florin Coras30e79c22019-01-02 19:31:22 -0800997 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
998 s->vpp_handle, wrk->wrk_index);
999}
1000
Florin Coras935ce752020-09-08 22:43:47 -07001001static int
1002vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
1003{
1004
1005 if (vcm->cfg.vpp_app_socket_api)
1006 return vcl_sapi_recv_fds (wrk, fds, n_fds);
1007
1008 return vcl_bapi_recv_fds (wrk, fds, n_fds);
1009}
1010
Florin Corasc4c4cf52019-08-24 18:17:34 -07001011static void
1012vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
1013{
1014 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
1015 session_app_add_segment_msg_t *msg;
1016 u64 segment_handle;
1017 int fd = -1;
1018
1019 msg = (session_app_add_segment_msg_t *) data;
1020
1021 if (msg->fd_flags)
1022 {
Florin Coras935ce752020-09-08 22:43:47 -07001023 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -07001024 seg_type = SSVM_SEGMENT_MEMFD;
1025 }
1026
1027 segment_handle = msg->segment_handle;
1028 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
1029 {
1030 clib_warning ("invalid segment handle");
1031 return;
1032 }
1033
1034 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
1035 seg_type, fd))
1036 {
1037 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
1038 return;
1039 }
1040
1041 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
1042 msg->segment_size);
1043}
1044
1045static void
1046vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
1047{
1048 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
1049 vcl_segment_detach (msg->segment_handle);
1050 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
1051}
1052
Florin Coras40c07ce2020-07-16 20:46:17 -07001053static void
1054vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
1055{
1056 if (!vcm->wrk_rpc_fn)
1057 return;
1058
hanlina3a48962020-07-13 11:09:15 +08001059 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -07001060}
1061
Florin Coras04ae8272021-04-12 19:55:37 -07001062static void
1063vcl_session_transport_attr_reply_handler (vcl_worker_t *wrk, void *data)
1064{
1065 session_transport_attr_reply_msg_t *mp;
1066
1067 if (!wrk->session_attr_op)
1068 return;
1069
1070 mp = (session_transport_attr_reply_msg_t *) data;
1071
1072 wrk->session_attr_op_rv = mp->retval;
1073 wrk->session_attr_op = 0;
1074 wrk->session_attr_rv = mp->attr;
1075}
1076
Florin Coras86f04502018-09-12 16:08:01 -07001077static int
1078vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -07001079{
Florin Coras54693d22018-07-17 10:46:29 -07001080 session_disconnected_msg_t *disconnected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07001081 session_connected_msg_t *connected_msg;
1082 session_reset_msg_t *reset_msg;
1083 session_event_t *ecpy;
Florin Corasc127d5a2020-10-14 16:35:58 -07001084 vcl_session_t *s;
Florin Corasb242d312020-10-26 15:35:40 -07001085 u32 sid;
Florin Coras54693d22018-07-17 10:46:29 -07001086
1087 switch (e->event_type)
1088 {
Florin Coras653e43f2019-03-04 10:56:23 -08001089 case SESSION_IO_EVT_RX:
1090 case SESSION_IO_EVT_TX:
Florin Corasc127d5a2020-10-14 16:35:58 -07001091 s = vcl_session_get (wrk, e->session_index);
Florin Coras1bc919e2020-10-18 20:17:49 -07001092 if (!s || !vcl_session_is_open (s))
Florin Coras653e43f2019-03-04 10:56:23 -08001093 break;
Florin Coras86f04502018-09-12 16:08:01 -07001094 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -07001095 break;
Florin Corasb242d312020-10-26 15:35:40 -07001096 case SESSION_CTRL_EVT_BOUND:
1097 /* We can only wait for only one listen so not postponed */
1098 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
1099 break;
Florin Coras54693d22018-07-17 10:46:29 -07001100 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07001101 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
1102 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1103 {
1104 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1105 *ecpy = *e;
1106 ecpy->postponed = 1;
1107 ecpy->session_index = s->session_index;
1108 }
Florin Coras54693d22018-07-17 10:46:29 -07001109 break;
1110 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07001111 connected_msg = (session_connected_msg_t *) e->data;
1112 sid = vcl_session_connected_handler (wrk, connected_msg);
1113 if (!(s = vcl_session_get (wrk, sid)))
1114 break;
1115 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1116 {
1117 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1118 *ecpy = *e;
1119 ecpy->postponed = 1;
1120 ecpy->session_index = s->session_index;
1121 }
Florin Coras54693d22018-07-17 10:46:29 -07001122 break;
1123 case SESSION_CTRL_EVT_DISCONNECTED:
1124 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07001125 if (!(s = vcl_session_get_w_vpp_handle (wrk, disconnected_msg->handle)))
1126 break;
1127 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1128 {
1129 vec_add1 (wrk->unhandled_evts_vector, *e);
1130 break;
1131 }
1132 if (!(s = vcl_session_disconnected_handler (wrk, disconnected_msg)))
Florin Coras3c7d4f92018-12-14 11:28:43 -08001133 break;
Florin Corasc127d5a2020-10-14 16:35:58 -07001134 VDBG (0, "disconnected session %u [0x%llx]", s->session_index,
1135 s->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -07001136 break;
1137 case SESSION_CTRL_EVT_RESET:
Florin Corasb242d312020-10-26 15:35:40 -07001138 reset_msg = (session_reset_msg_t *) e->data;
1139 if (!(s = vcl_session_get_w_vpp_handle (wrk, reset_msg->handle)))
1140 break;
1141 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1142 {
1143 vec_add1 (wrk->unhandled_evts_vector, *e);
1144 break;
1145 }
Florin Coras134a9962018-08-28 11:32:04 -07001146 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -07001147 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08001148 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
1149 vcl_session_unlisten_reply_handler (wrk, e->data);
1150 break;
Florin Coras68b7e582020-01-21 18:33:23 -08001151 case SESSION_CTRL_EVT_MIGRATED:
1152 vcl_session_migrated_handler (wrk, e->data);
1153 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07001154 case SESSION_CTRL_EVT_CLEANUP:
1155 vcl_session_cleanup_handler (wrk, e->data);
1156 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001157 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1158 vcl_session_req_worker_update_handler (wrk, e->data);
1159 break;
1160 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1161 vcl_session_worker_update_reply_handler (wrk, e->data);
1162 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07001163 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
1164 vcl_session_app_add_segment_handler (wrk, e->data);
1165 break;
1166 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
1167 vcl_session_app_del_segment_handler (wrk, e->data);
1168 break;
hanlina3a48962020-07-13 11:09:15 +08001169 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07001170 vcl_worker_rpc_handler (wrk, e->data);
1171 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001172 case SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY:
1173 vcl_session_transport_attr_reply_handler (wrk, e->data);
1174 break;
Florin Coras54693d22018-07-17 10:46:29 -07001175 default:
1176 clib_warning ("unhandled %u", e->event_type);
1177 }
1178 return VPPCOM_OK;
1179}
1180
Florin Coras30e79c22019-01-02 19:31:22 -08001181static int
Florin Coras697faea2018-06-27 17:10:49 -07001182vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -08001183 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -07001184 f64 wait_for_time)
1185{
Florin Coras134a9962018-08-28 11:32:04 -07001186 vcl_worker_t *wrk = vcl_worker_get_current ();
1187 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001188 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001189 svm_msg_q_msg_t msg;
1190 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001191
Florin Coras697faea2018-06-27 17:10:49 -07001192 do
Dave Wallace543852a2017-08-03 02:11:34 -04001193 {
Florin Coras134a9962018-08-28 11:32:04 -07001194 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001195 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001196 {
Florin Coras070453d2018-08-24 17:04:27 -07001197 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001198 }
Florin Corasdfffdd72020-10-15 10:54:47 -07001199 if (session->session_state == state)
Florin Coras697faea2018-06-27 17:10:49 -07001200 {
Florin Coras697faea2018-06-27 17:10:49 -07001201 return VPPCOM_OK;
1202 }
Florin Corasc127d5a2020-10-14 16:35:58 -07001203 if (session->session_state == VCL_STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001204 {
Florin Coras697faea2018-06-27 17:10:49 -07001205 return VPPCOM_ECONNREFUSED;
1206 }
Florin Coras54693d22018-07-17 10:46:29 -07001207
Florin Coras134a9962018-08-28 11:32:04 -07001208 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001209 {
1210 usleep (100);
1211 continue;
1212 }
Florin Coras134a9962018-08-28 11:32:04 -07001213 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001214 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001215 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001216 }
Florin Coras134a9962018-08-28 11:32:04 -07001217 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001218
Florin Coras05ecfcc2018-12-12 18:19:39 -08001219 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -07001220 vppcom_session_state_str (state));
1221 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001222
Florin Coras697faea2018-06-27 17:10:49 -07001223 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001224}
1225
Florin Coras30e79c22019-01-02 19:31:22 -08001226static void
1227vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1228{
Florin Coras288eaab2019-02-03 15:26:14 -08001229 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001230 vcl_session_t *s;
1231 u32 *sip;
1232
1233 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1234 return;
1235
1236 vec_foreach (sip, wrk->pending_session_wrk_updates)
1237 {
1238 s = vcl_session_get (wrk, *sip);
1239 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1240 state = s->session_state;
Florin Corasc127d5a2020-10-14 16:35:58 -07001241 vppcom_wait_for_session_state_change (s->session_index, VCL_STATE_UPDATED,
1242 5);
Florin Coras30e79c22019-01-02 19:31:22 -08001243 s->session_state = state;
1244 }
1245 vec_reset_length (wrk->pending_session_wrk_updates);
1246}
1247
Florin Corasf9240dc2019-01-15 08:03:17 -08001248void
Florin Coras5398dfb2021-01-25 20:31:27 -08001249vcl_worker_flush_mq_events (vcl_worker_t *wrk)
Florin Coras30e79c22019-01-02 19:31:22 -08001250{
Florin Coras30e79c22019-01-02 19:31:22 -08001251 svm_msg_q_msg_t *msg;
1252 session_event_t *e;
1253 svm_msg_q_t *mq;
1254 int i;
1255
1256 mq = wrk->app_event_queue;
Florin Corase003a1b2019-06-05 10:47:16 -07001257 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001258
1259 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1260 {
1261 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1262 e = svm_msg_q_msg_data (mq, msg);
1263 vcl_handle_mq_event (wrk, e);
1264 svm_msg_q_free_msg (mq, msg);
1265 }
1266 vec_reset_length (wrk->mq_msg_vector);
1267 vcl_handle_pending_wrk_updates (wrk);
1268}
1269
Florin Coras5398dfb2021-01-25 20:31:27 -08001270void
1271vcl_flush_mq_events (void)
1272{
1273 vcl_worker_flush_mq_events (vcl_worker_get_current ());
1274}
1275
Florin Coras697faea2018-06-27 17:10:49 -07001276static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001277vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001278{
Florin Coras134a9962018-08-28 11:32:04 -07001279 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001280 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001281 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001282 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001283
Florin Corasab2f6db2018-08-31 14:31:41 -07001284 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001285 if (!session)
1286 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001287
Florin Corasaaff5ee2019-07-08 13:00:00 -07001288 /* Flush pending accept events, if any */
1289 while (clib_fifo_elts (session->accept_evts_fifo))
1290 {
1291 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1292 accepted_msg = &evt->accepted_msg;
1293 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1294 vcl_send_session_accepted_reply (session->vpp_evt_q,
1295 accepted_msg->context,
wanghanlin785b6ea2020-12-10 19:12:22 +08001296 accepted_msg->handle, -1);
Florin Corasaaff5ee2019-07-08 13:00:00 -07001297 }
1298 clib_fifo_free (session->accept_evts_fifo);
1299
Florin Coras458089b2019-08-21 16:20:44 -07001300 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001301
Florin Coras5e062572019-03-14 19:07:51 -07001302 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001303 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001304 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001305
1306 session->vpp_handle = ~0;
Florin Corasc127d5a2020-10-14 16:35:58 -07001307 session->session_state = VCL_STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001308
Florin Coras070453d2018-08-24 17:04:27 -07001309 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001310}
1311
Florin Coras940f78f2018-11-30 12:11:20 -08001312/**
1313 * Handle app exit
1314 *
1315 * Notify vpp of the disconnect and mark the worker as free. If we're the
1316 * last worker, do a full cleanup otherwise, since we're probably a forked
1317 * child, avoid syscalls as much as possible. We might've lost privileges.
1318 */
1319void
1320vppcom_app_exit (void)
1321{
1322 if (!pool_elts (vcm->workers))
1323 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001324 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1325 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001326 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001327}
1328
Florin Coras935ce752020-09-08 22:43:47 -07001329static int
1330vcl_api_attach (void)
1331{
1332 if (vcm->cfg.vpp_app_socket_api)
1333 return vcl_sapi_attach ();
1334
1335 return vcl_bapi_attach ();
1336}
1337
1338static void
1339vcl_api_detach (vcl_worker_t * wrk)
1340{
1341 vcl_send_app_detach (wrk);
1342
1343 if (vcm->cfg.vpp_app_socket_api)
1344 return vcl_sapi_detach (wrk);
1345
1346 return vcl_bapi_disconnect_from_vpp ();
1347}
1348
Dave Wallace543852a2017-08-03 02:11:34 -04001349/*
1350 * VPPCOM Public API functions
1351 */
1352int
Florin Coras66ec4672020-06-15 07:59:40 -07001353vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001354{
Dave Wallace543852a2017-08-03 02:11:34 -04001355 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001356 int rv;
1357
Florin Coras47c40e22018-11-26 17:01:36 -08001358 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001359 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001360 VDBG (1, "already initialized");
1361 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001362 }
1363
Florin Coras47c40e22018-11-26 17:01:36 -08001364 vcm->is_init = 1;
1365 vppcom_cfg (&vcm->cfg);
1366 vcl_cfg = &vcm->cfg;
1367
1368 vcm->main_cpu = pthread_self ();
1369 vcm->main_pid = getpid ();
1370 vcm->app_name = format (0, "%s", app_name);
Florin Coras41bc8612021-10-01 14:57:03 -07001371 fifo_segment_main_init (&vcm->segment_main, (uword) ~0,
1372 20 /* timeout in secs */);
Florin Coras47c40e22018-11-26 17:01:36 -08001373 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1374 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001375 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001376 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001377 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001378
1379 /* Allocate default worker */
1380 vcl_worker_alloc_and_init ();
1381
Florin Coras935ce752020-09-08 22:43:47 -07001382 if ((rv = vcl_api_attach ()))
Florin Corasb88de902020-09-08 16:47:57 -07001383 return rv;
Florin Coras47c40e22018-11-26 17:01:36 -08001384
1385 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001386 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001387
1388 return VPPCOM_OK;
1389}
1390
1391void
1392vppcom_app_destroy (void)
1393{
Florin Corasdc0ded72020-04-30 02:59:55 +00001394 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001395 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001396
Florin Coras940f78f2018-11-30 12:11:20 -08001397 if (!pool_elts (vcm->workers))
1398 return;
1399
Florin Coras0d427d82018-06-27 03:24:07 -07001400 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001401
Florin Corasdc0ded72020-04-30 02:59:55 +00001402 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001403
Florin Corasce815de2020-04-16 18:47:27 +00001404 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001405 pool_foreach (wrk, vcm->workers) {
Florin Corasdc0ded72020-04-30 02:59:55 +00001406 if (current_wrk != wrk)
1407 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Damjan Marionb2c31b62020-12-13 21:47:40 +01001408 }
Florin Corasce815de2020-04-16 18:47:27 +00001409 /* *INDENT-ON* */
1410
Florin Coras935ce752020-09-08 22:43:47 -07001411 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001412 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1413
Florin Coras0d427d82018-06-27 03:24:07 -07001414 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001415
1416 /*
1417 * Free the heap and fix vcm
1418 */
1419 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001420 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001421
1422 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001423 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001424}
1425
1426int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001427vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001428{
Florin Coras134a9962018-08-28 11:32:04 -07001429 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001430 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001431
Florin Coras134a9962018-08-28 11:32:04 -07001432 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001433
Florin Coras7e12d942018-06-27 14:32:43 -07001434 session->session_type = proto;
Florin Corasc127d5a2020-10-14 16:35:58 -07001435 session->session_state = VCL_STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001436 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001437 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001438
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001439 if (is_nonblocking)
Florin Corasac422d62020-10-19 20:51:36 -07001440 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001441
Florin Coras7e12d942018-06-27 14:32:43 -07001442 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1443 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001444
Florin Coras5e062572019-03-14 19:07:51 -07001445 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001446
Florin Coras134a9962018-08-28 11:32:04 -07001447 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001448}
1449
Florin Corasfe286f72021-06-04 10:07:55 -07001450static void
Florin Corasfa3884f2021-06-22 20:04:46 -07001451vcl_epoll_lt_add (vcl_worker_t *wrk, vcl_session_t *s)
Florin Corasfe286f72021-06-04 10:07:55 -07001452{
Florin Corasfa3884f2021-06-22 20:04:46 -07001453 vcl_session_t *cur, *prev;
Florin Corasfe286f72021-06-04 10:07:55 -07001454
Florin Corasfa3884f2021-06-22 20:04:46 -07001455 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
Florin Corasfe286f72021-06-04 10:07:55 -07001456 {
Florin Corasfa3884f2021-06-22 20:04:46 -07001457 wrk->ep_lt_current = s->session_index;
1458 s->vep.lt_next = s->session_index;
1459 s->vep.lt_prev = s->session_index;
1460 return;
Florin Corasfe286f72021-06-04 10:07:55 -07001461 }
Florin Corasfa3884f2021-06-22 20:04:46 -07001462
1463 cur = vcl_session_get (wrk, wrk->ep_lt_current);
1464 prev = vcl_session_get (wrk, cur->vep.lt_prev);
1465
1466 prev->vep.lt_next = s->session_index;
1467 s->vep.lt_prev = prev->session_index;
1468
1469 s->vep.lt_next = cur->session_index;
1470 cur->vep.lt_prev = s->session_index;
1471}
1472
1473static void
1474vcl_epoll_lt_del (vcl_worker_t *wrk, vcl_session_t *s)
1475{
1476 vcl_session_t *prev, *next;
1477
1478 if (s->vep.lt_next == s->session_index)
1479 {
1480 wrk->ep_lt_current = VCL_INVALID_SESSION_INDEX;
1481 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
1482 return;
1483 }
1484
1485 prev = vcl_session_get (wrk, s->vep.lt_prev);
1486 next = vcl_session_get (wrk, s->vep.lt_next);
1487
1488 prev->vep.lt_next = next->session_index;
1489 next->vep.lt_prev = prev->session_index;
1490
1491 if (s->session_index == wrk->ep_lt_current)
1492 wrk->ep_lt_current = s->vep.lt_next;
1493
1494 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasfe286f72021-06-04 10:07:55 -07001495}
1496
Dave Wallace543852a2017-08-03 02:11:34 -04001497int
Florin Corasc127d5a2020-10-14 16:35:58 -07001498vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * s,
Florin Corasf9240dc2019-01-15 08:03:17 -08001499 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001500{
Florin Coras134a9962018-08-28 11:32:04 -07001501 int rv = VPPCOM_OK;
Florin Coras47c40e22018-11-26 17:01:36 -08001502
Florin Coras6c3b2182020-10-19 18:36:48 -07001503 VDBG (1, "session %u [0x%llx] closing", s->session_index, s->vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001504
Florin Coras6c3b2182020-10-19 18:36:48 -07001505 if (s->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace543852a2017-08-03 02:11:34 -04001506 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001507 u32 next_sh = s->vep.next_sh;
Florin Coras134a9962018-08-28 11:32:04 -07001508 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001509 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001510 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001511 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001512 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras6c3b2182020-10-19 18:36:48 -07001513 " failed! rv %d (%s)", s->vpp_handle, next_sh,
1514 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Florin Corasc127d5a2020-10-14 16:35:58 -07001515 next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001516 }
Florin Corase4306b62020-10-28 12:51:10 -07001517 goto free_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001518 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001519
Florin Coras6c3b2182020-10-19 18:36:48 -07001520 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001521 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001522 rv = vppcom_epoll_ctl (s->vep.vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001523 if (rv < 0)
1524 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
Florin Coras6c3b2182020-10-19 18:36:48 -07001525 "failed! rv %d (%s)", s->session_index, s->vpp_handle,
1526 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001527 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001528
Florin Coras9ace36d2019-10-28 13:14:17 -07001529 if (!do_disconnect)
1530 {
1531 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Coras6c3b2182020-10-19 18:36:48 -07001532 s->session_index, s->vpp_handle);
Florin Coras9ace36d2019-10-28 13:14:17 -07001533 goto cleanup;
1534 }
1535
Florin Coras6c3b2182020-10-19 18:36:48 -07001536 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras9ace36d2019-10-28 13:14:17 -07001537 {
1538 rv = vppcom_session_unbind (sh);
1539 if (PREDICT_FALSE (rv < 0))
1540 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
Florin Coras6c3b2182020-10-19 18:36:48 -07001541 "rv %d (%s)", s->session_index, s->vpp_handle, rv,
Florin Coras9ace36d2019-10-28 13:14:17 -07001542 vppcom_retval_str (rv));
1543 return rv;
1544 }
Florin Coras1bc919e2020-10-18 20:17:49 -07001545 else if (vcl_session_is_ready (s)
Florin Corasc127d5a2020-10-14 16:35:58 -07001546 || (vcl_session_is_connectable_listener (wrk, s)))
Florin Coras9ace36d2019-10-28 13:14:17 -07001547 {
1548 rv = vppcom_session_disconnect (sh);
1549 if (PREDICT_FALSE (rv < 0))
1550 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
Florin Coras6c3b2182020-10-19 18:36:48 -07001551 " rv %d (%s)", s->session_index, s->vpp_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001552 rv, vppcom_retval_str (rv));
1553 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001554 else if (s->session_state == VCL_STATE_DISCONNECT)
Florin Coras9ace36d2019-10-28 13:14:17 -07001555 {
Florin Coras52dd29f2020-11-18 19:02:17 -08001556 vcl_send_session_reset_reply (wrk, s, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001557 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001558 else if (s->session_state == VCL_STATE_DETACHED)
Florin Corasadcfb152020-02-12 08:50:29 +00001559 {
1560 /* Should not happen. VPP cleaned up before app confirmed close */
Florin Corasc127d5a2020-10-14 16:35:58 -07001561 VDBG (0, "vpp freed session %d before close", s->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +00001562 goto free_session;
1563 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001564
Florin Corasc127d5a2020-10-14 16:35:58 -07001565 s->session_state = VCL_STATE_CLOSED;
Florin Coras54140622020-02-04 19:04:34 +00001566
Florin Coras9ace36d2019-10-28 13:14:17 -07001567 /* Session is removed only after vpp confirms the disconnect */
1568 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001569
Florin Corasf9240dc2019-01-15 08:03:17 -08001570cleanup:
Florin Coras6c3b2182020-10-19 18:36:48 -07001571 vcl_session_table_del_vpp_handle (wrk, s->vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001572free_session:
Florin Corasc127d5a2020-10-14 16:35:58 -07001573 vcl_session_free (wrk, s);
1574 vcl_evt (VCL_EVT_CLOSE, s, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001575
Dave Wallace543852a2017-08-03 02:11:34 -04001576 return rv;
1577}
1578
1579int
Florin Corasf9240dc2019-01-15 08:03:17 -08001580vppcom_session_close (uint32_t session_handle)
1581{
1582 vcl_worker_t *wrk = vcl_worker_get_current ();
1583 vcl_session_t *session;
1584
1585 session = vcl_session_get_w_handle (wrk, session_handle);
1586 if (!session)
1587 return VPPCOM_EBADFD;
1588 return vcl_session_cleanup (wrk, session, session_handle,
1589 1 /* do_disconnect */ );
1590}
1591
1592int
Florin Coras134a9962018-08-28 11:32:04 -07001593vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001594{
Florin Coras134a9962018-08-28 11:32:04 -07001595 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001596 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001597
1598 if (!ep || !ep->ip)
1599 return VPPCOM_EINVAL;
1600
Florin Coras134a9962018-08-28 11:32:04 -07001601 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001602 if (!session)
1603 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001604
Florin Coras6c3b2182020-10-19 18:36:48 -07001605 if (session->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001606 {
Florin Coras5e062572019-03-14 19:07:51 -07001607 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1608 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001609 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001610 }
1611
Florin Coras7e12d942018-06-27 14:32:43 -07001612 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001613 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001614 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1615 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001616 else
Dave Barach178cf492018-11-13 16:34:13 -05001617 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1618 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001619 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001620
Florin Coras5e062572019-03-14 19:07:51 -07001621 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1622 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001623 session->transport.is_ip4 ? "IPv4" : "IPv6",
1624 format_ip46_address, &session->transport.lcl_ip,
1625 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1626 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001627 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001628 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001629
1630 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001631 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001632
Florin Coras070453d2018-08-24 17:04:27 -07001633 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001634}
1635
1636int
Florin Coras134a9962018-08-28 11:32:04 -07001637vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001638{
Florin Coras134a9962018-08-28 11:32:04 -07001639 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001640 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001641 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001642 int rv;
1643
Florin Coras134a9962018-08-28 11:32:04 -07001644 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras6c3b2182020-10-19 18:36:48 -07001645 if (!listen_session || (listen_session->flags & VCL_SESSION_F_IS_VEP))
Florin Coras070453d2018-08-24 17:04:27 -07001646 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001647
Dave Wallaceee45d412017-11-24 21:44:06 -05001648 listen_vpp_handle = listen_session->vpp_handle;
Florin Corasc127d5a2020-10-14 16:35:58 -07001649 if (listen_session->session_state == VCL_STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001650 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001651 VDBG (0, "session %u [0x%llx]: already in listen state!",
1652 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001653 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001654 }
1655
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001656 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001657
Florin Coras070453d2018-08-24 17:04:27 -07001658 /*
1659 * Send listen request to vpp and wait for reply
1660 */
Florin Coras458089b2019-08-21 16:20:44 -07001661 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001662 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
Florin Corasc127d5a2020-10-14 16:35:58 -07001663 VCL_STATE_LISTEN,
Florin Coras134a9962018-08-28 11:32:04 -07001664 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001665
Florin Coras070453d2018-08-24 17:04:27 -07001666 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001667 {
Florin Coras134a9962018-08-28 11:32:04 -07001668 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001669 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1670 listen_sh, listen_session->vpp_handle, rv,
1671 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001672 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001673 }
1674
Florin Coras070453d2018-08-24 17:04:27 -07001675 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001676}
1677
Florin Coras134a9962018-08-28 11:32:04 -07001678static int
Florin Coras5e062572019-03-14 19:07:51 -07001679validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001680{
Florin Coras6c3b2182020-10-19 18:36:48 -07001681 if (ls->flags & VCL_SESSION_F_IS_VEP)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001682 {
Florin Coras5e062572019-03-14 19:07:51 -07001683 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1684 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001685 return VPPCOM_EBADFD;
1686 }
1687
Florin Corasc127d5a2020-10-14 16:35:58 -07001688 if ((ls->session_state != VCL_STATE_LISTEN)
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001689 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001690 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001691 VDBG (0, "ERROR: session [0x%llx]: not in listen state! state 0x%x"
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001692 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001693 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001694 return VPPCOM_EBADFD;
1695 }
1696 return VPPCOM_OK;
1697}
1698
1699int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001700vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1701{
1702 if (!strcmp (proto_str, "TCP"))
1703 *proto = VPPCOM_PROTO_TCP;
1704 else if (!strcmp (proto_str, "tcp"))
1705 *proto = VPPCOM_PROTO_TCP;
1706 else if (!strcmp (proto_str, "UDP"))
1707 *proto = VPPCOM_PROTO_UDP;
1708 else if (!strcmp (proto_str, "udp"))
1709 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001710 else if (!strcmp (proto_str, "TLS"))
1711 *proto = VPPCOM_PROTO_TLS;
1712 else if (!strcmp (proto_str, "tls"))
1713 *proto = VPPCOM_PROTO_TLS;
1714 else if (!strcmp (proto_str, "QUIC"))
1715 *proto = VPPCOM_PROTO_QUIC;
1716 else if (!strcmp (proto_str, "quic"))
1717 *proto = VPPCOM_PROTO_QUIC;
Florin Coras4b47ee22020-11-19 13:38:26 -08001718 else if (!strcmp (proto_str, "DTLS"))
1719 *proto = VPPCOM_PROTO_DTLS;
1720 else if (!strcmp (proto_str, "dtls"))
1721 *proto = VPPCOM_PROTO_DTLS;
Florin Coras6621abf2021-01-06 17:35:17 -08001722 else if (!strcmp (proto_str, "SRTP"))
1723 *proto = VPPCOM_PROTO_SRTP;
1724 else if (!strcmp (proto_str, "srtp"))
1725 *proto = VPPCOM_PROTO_SRTP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001726 else
1727 return 1;
1728 return 0;
1729}
1730
1731int
Florin Coras134a9962018-08-28 11:32:04 -07001732vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001733 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001734{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001735 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001736 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001737 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001738 vcl_session_t *listen_session = 0;
1739 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001740 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001741 u8 is_nonblocking;
1742 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001743
Florin Coras5398dfb2021-01-25 20:31:27 -08001744again:
1745
Florin Coras134a9962018-08-28 11:32:04 -07001746 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001747 if (!listen_session)
1748 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001749
Florin Coras134a9962018-08-28 11:32:04 -07001750 listen_session_index = listen_session->session_index;
1751 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001752 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001753
Florin Coras54693d22018-07-17 10:46:29 -07001754 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001755 {
Florin Coras54693d22018-07-17 10:46:29 -07001756 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001757 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001758 accepted_msg = evt->accepted_msg;
1759 goto handle;
1760 }
1761
Florin Corasac422d62020-10-19 20:51:36 -07001762 is_nonblocking = vcl_session_has_attr (listen_session,
1763 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001764 while (1)
1765 {
Carl Smith592a9092019-11-12 14:57:37 +13001766 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1767 return VPPCOM_EAGAIN;
1768
Florin Coras5398dfb2021-01-25 20:31:27 -08001769 svm_msg_q_wait (wrk->app_event_queue, SVM_MQ_WAIT_EMPTY);
1770 vcl_worker_flush_mq_events (wrk);
1771 goto again;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001772 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001773
Florin Coras54693d22018-07-17 10:46:29 -07001774handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001775
Florin Coras00cca802019-06-06 09:38:44 -07001776 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1777 listen_session_index);
1778 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1779 return VPPCOM_ECONNABORTED;
1780
Florin Coras134a9962018-08-28 11:32:04 -07001781 listen_session = vcl_session_get (wrk, listen_session_index);
1782 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001783
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001784 if (flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07001785 vcl_session_set_attr (client_session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001786
Florin Coras5e062572019-03-14 19:07:51 -07001787 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1788 " flags %d, is_nonblocking %u", listen_session->session_index,
1789 listen_session->vpp_handle, client_session_index,
1790 client_session->vpp_handle, flags,
Florin Corasac422d62020-10-19 20:51:36 -07001791 vcl_session_has_attr (client_session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001792
Dave Wallace048b1d62018-01-03 22:24:41 -05001793 if (ep)
1794 {
Florin Coras7e12d942018-06-27 14:32:43 -07001795 ep->is_ip4 = client_session->transport.is_ip4;
1796 ep->port = client_session->transport.rmt_port;
1797 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001798 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1799 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001800 else
Dave Barach178cf492018-11-13 16:34:13 -05001801 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1802 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001803 }
Dave Wallace60caa062017-11-10 17:07:13 -05001804
Florin Coras05ecfcc2018-12-12 18:19:39 -08001805 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001806 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001807 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001808 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001809 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001810 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001811 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001812 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001813 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001814 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1815 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001816
Florin Coras3c7d4f92018-12-14 11:28:43 -08001817 /*
1818 * Session might have been closed already
1819 */
1820 if (accept_flags)
1821 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001822 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasc127d5a2020-10-14 16:35:58 -07001823 client_session->session_state = VCL_STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001824 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasc127d5a2020-10-14 16:35:58 -07001825 client_session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001826 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001827 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001828}
1829
1830int
Florin Coras134a9962018-08-28 11:32:04 -07001831vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001832{
Florin Coras134a9962018-08-28 11:32:04 -07001833 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001834 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001835 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001836 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001837
Florin Coras134a9962018-08-28 11:32:04 -07001838 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001839 if (!session)
1840 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001841 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001842
Florin Coras6c3b2182020-10-19 18:36:48 -07001843 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04001844 {
Florin Coras5e062572019-03-14 19:07:51 -07001845 VDBG (0, "ERROR: cannot connect epoll session %u!",
1846 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001847 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001848 }
1849
Florin Corasc127d5a2020-10-14 16:35:58 -07001850 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Dave Wallace543852a2017-08-03 02:11:34 -04001851 {
Florin Coras7baeb712019-01-04 17:05:43 -08001852 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001853 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001854 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001855 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001856 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001857 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001858 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001859 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001860 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001861 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001862 }
1863
Florin Coras0a1e1832020-03-29 18:54:04 +00001864 /* Attempt to connect a connectionless listener */
Florin Corasc127d5a2020-10-14 16:35:58 -07001865 if (PREDICT_FALSE (session->session_state == VCL_STATE_LISTEN))
Florin Coras0a1e1832020-03-29 18:54:04 +00001866 {
1867 if (session->session_type != VPPCOM_PROTO_UDP)
1868 return VPPCOM_EINVAL;
1869 vcl_send_session_unlisten (wrk, session);
Florin Corasc127d5a2020-10-14 16:35:58 -07001870 session->session_state = VCL_STATE_CLOSED;
Florin Coras0a1e1832020-03-29 18:54:04 +00001871 }
1872
Florin Coras7e12d942018-06-27 14:32:43 -07001873 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001874 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001875 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001876 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001877 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001878
Florin Coras0a1e1832020-03-29 18:54:04 +00001879 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001880 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001881 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001882 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001883 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001884 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001885 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001886 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001887 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001888
Florin Coras458089b2019-08-21 16:20:44 -07001889 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001890
Florin Corasac422d62020-10-19 20:51:36 -07001891 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001892 {
fanyfa49d59d2020-10-13 17:07:16 +08001893 /* State set to STATE_UPDATED to ensure the session is not assumed
Florin Corasdfffdd72020-10-15 10:54:47 -07001894 * to be ready and to also allow the app to close it prior to vpp's
fanyfa49d59d2020-10-13 17:07:16 +08001895 * connected reply. */
Florin Corasc127d5a2020-10-14 16:35:58 -07001896 session->session_state = VCL_STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001897 return VPPCOM_EINPROGRESS;
1898 }
Florin Coras57c88932019-08-29 12:03:17 -07001899
1900 /*
1901 * Wait for reply from vpp if blocking
1902 */
Florin Corasdfffdd72020-10-15 10:54:47 -07001903 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Florin Coras070453d2018-08-24 17:04:27 -07001904 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001905
Florin Coras134a9962018-08-28 11:32:04 -07001906 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001907 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1908 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001909
Dave Wallace4878cbe2017-11-21 03:45:09 -05001910 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001911}
1912
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001913int
1914vppcom_session_stream_connect (uint32_t session_handle,
1915 uint32_t parent_session_handle)
1916{
1917 vcl_worker_t *wrk = vcl_worker_get_current ();
1918 vcl_session_t *session, *parent_session;
1919 u32 session_index, parent_session_index;
1920 int rv;
1921
1922 session = vcl_session_get_w_handle (wrk, session_handle);
1923 if (!session)
1924 return VPPCOM_EBADFD;
1925 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1926 if (!parent_session)
1927 return VPPCOM_EBADFD;
1928
1929 session_index = session->session_index;
1930 parent_session_index = parent_session->session_index;
Florin Coras6c3b2182020-10-19 18:36:48 -07001931 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001932 {
1933 VDBG (0, "ERROR: cannot connect epoll session %u!",
1934 session->session_index);
1935 return VPPCOM_EBADFD;
1936 }
1937
Florin Corasc127d5a2020-10-14 16:35:58 -07001938 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001939 {
1940 VDBG (0, "session handle %u [0x%llx]: session already "
1941 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1942 session_handle, session->vpp_handle,
1943 parent_session_handle, parent_session->vpp_handle,
1944 vppcom_proto_str (session->session_type), session->session_state,
1945 vppcom_session_state_str (session->session_state));
1946 return VPPCOM_OK;
1947 }
1948
1949 /* Connect to quic session specifics */
1950 session->transport.is_ip4 = parent_session->transport.is_ip4;
1951 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1952 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001953 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001954
1955 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1956 session_handle, parent_session_handle, parent_session->vpp_handle);
1957
1958 /*
1959 * Send connect request and wait for reply from vpp
1960 */
Florin Coras458089b2019-08-21 16:20:44 -07001961 vcl_send_session_connect (wrk, session);
Florin Corasdfffdd72020-10-15 10:54:47 -07001962 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001963 vcm->cfg.session_timeout);
1964
1965 session->listener_index = parent_session_index;
1966 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001967 if (parent_session)
1968 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001969
1970 session = vcl_session_get (wrk, session_index);
1971 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1972 session->vpp_handle, rv ? "failed" : "succeeded");
1973
1974 return rv;
1975}
1976
Steven58f464e2017-10-25 12:33:12 -07001977static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001978vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001979 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001980{
Florin Coras134a9962018-08-28 11:32:04 -07001981 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07001982 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001983 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001984 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001985 session_event_t *e;
1986 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001987 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001988
Florin Coras070453d2018-08-24 17:04:27 -07001989 if (PREDICT_FALSE (!buf))
wanghanlin72228a22021-07-06 17:18:29 +08001990 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04001991
Florin Coras134a9962018-08-28 11:32:04 -07001992 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001993 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras070453d2018-08-24 17:04:27 -07001994 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001995
Florin Coras6d0106e2019-01-29 20:11:58 -08001996 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001997 {
Florin Coras5e062572019-03-14 19:07:51 -07001998 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001999 s->session_index, s->vpp_handle, s->session_state,
2000 vppcom_session_state_str (s->session_state));
2001 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002002 }
2003
liuyacan55c952e2021-06-13 14:54:55 +08002004 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
2005 {
2006 /* Vpp would ack the incoming data and enqueue it for reading.
2007 * So even if SHUT_RD is set, we can still read() the data if
2008 * the session is ready.
2009 */
2010 if (!vcl_session_read_ready (s))
2011 {
2012 return 0;
2013 }
2014 }
2015
Florin Corasac422d62020-10-19 20:51:36 -07002016 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07002017 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002018 mq = wrk->app_event_queue;
2019 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002020 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002021
Sirshak Das28aa5392019-02-05 01:33:33 -06002022 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002023 {
Florin Coras54693d22018-07-17 10:46:29 -07002024 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08002025 {
Yu Pingb2955352019-12-04 06:49:04 +08002026 if (vcl_session_is_closing (s))
2027 return vcl_session_closing_error (s);
Florin Corasd6894562020-10-28 00:37:15 -07002028 if (is_ct)
2029 svm_fifo_unset_event (s->rx_fifo);
2030 svm_fifo_unset_event (rx_fifo);
Florin Corasc0737e92019-03-04 14:19:39 -08002031 return VPPCOM_EWOULDBLOCK;
2032 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002033 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002034 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002035 if (vcl_session_is_closing (s))
2036 return vcl_session_closing_error (s);
2037
Florin Corasd6894562020-10-28 00:37:15 -07002038 if (is_ct)
2039 svm_fifo_unset_event (s->rx_fifo);
2040 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07002041
Florin Coras5398dfb2021-01-25 20:31:27 -08002042 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2043 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002044 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002045 }
Florin Coras54693d22018-07-17 10:46:29 -07002046
Florin Coras4a2c7942020-09-10 12:27:14 -07002047read_again:
2048
Florin Coras460dce62018-07-27 05:45:06 -07002049 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07002050 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002051 else
Florin Coras4a2c7942020-09-10 12:27:14 -07002052 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
2053
2054 ASSERT (rv >= 0);
Florin Coras23368312021-06-04 16:28:18 -07002055
2056 if (peek)
2057 return rv;
2058
Florin Coras4a2c7942020-09-10 12:27:14 -07002059 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07002060
Sirshak Das28aa5392019-02-05 01:33:33 -06002061 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07002062 {
Florin Corasd6894562020-10-28 00:37:15 -07002063 if (is_ct)
2064 svm_fifo_unset_event (s->rx_fifo);
2065 svm_fifo_unset_event (rx_fifo);
Florin Corasc34118b2020-08-12 18:58:25 -07002066 if (!svm_fifo_is_empty_cons (rx_fifo)
Florin Corasd6894562020-10-28 00:37:15 -07002067 && svm_fifo_set_event (rx_fifo) && is_nonblocking)
Florin Corasc34118b2020-08-12 18:58:25 -07002068 {
Florin Corasc34118b2020-08-12 18:58:25 -07002069 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2070 e->event_type = SESSION_IO_EVT_RX;
2071 e->session_index = s->session_index;
2072 }
2073 }
Florin Coras54fe32c2020-11-25 20:26:32 -08002074 else if (PREDICT_FALSE (rv < n && !s->is_dgram))
Florin Coras4a2c7942020-09-10 12:27:14 -07002075 {
2076 /* More data enqueued while reading. Try to drain it
Florin Coras54fe32c2020-11-25 20:26:32 -08002077 * or fill the buffer. Avoid doing that for dgrams */
Florin Coras4a2c7942020-09-10 12:27:14 -07002078 buf += rv;
2079 n -= rv;
2080 goto read_again;
2081 }
Florin Coras41c9e042018-09-11 00:10:41 -07002082
Florin Coras17ec5772020-08-12 20:46:29 -07002083 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07002084 {
Florin Coras17ec5772020-08-12 20:46:29 -07002085 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -08002086 app_send_io_evt_to_vpp (s->vpp_evt_q,
2087 s->rx_fifo->shr->master_session_index,
Florin Coras317b8e02019-04-17 09:57:46 -07002088 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07002089 }
2090
Florin Coras5e062572019-03-14 19:07:51 -07002091 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
2092 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002093
Florin Coras54693d22018-07-17 10:46:29 -07002094 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04002095}
2096
Steven58f464e2017-10-25 12:33:12 -07002097int
Florin Coras134a9962018-08-28 11:32:04 -07002098vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07002099{
Florin Coras134a9962018-08-28 11:32:04 -07002100 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07002101}
2102
2103static int
Florin Coras134a9962018-08-28 11:32:04 -07002104vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07002105{
Florin Coras134a9962018-08-28 11:32:04 -07002106 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07002107}
2108
Florin Coras2cba8532018-09-11 16:33:36 -07002109int
2110vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07002111 vppcom_data_segment_t * ds, uint32_t n_segments,
2112 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002113{
2114 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08002115 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07002116 vcl_session_t *s = 0;
2117 svm_fifo_t *rx_fifo;
Florin Coras2cba8532018-09-11 16:33:36 -07002118 svm_msg_q_t *mq;
2119 u8 is_ct;
2120
2121 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002122 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002123 return VPPCOM_EBADFD;
2124
Florin Coras6d0106e2019-01-29 20:11:58 -08002125 if (PREDICT_FALSE (!vcl_session_is_open (s)))
2126 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07002127
Florin Corasac422d62020-10-19 20:51:36 -07002128 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras2cba8532018-09-11 16:33:36 -07002129 is_ct = vcl_session_is_ct (s);
Florin Corasac422d62020-10-19 20:51:36 -07002130 mq = wrk->app_event_queue;
Florin Coras62877022020-10-28 21:22:04 -07002131 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002132 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2cba8532018-09-11 16:33:36 -07002133
Sirshak Das28aa5392019-02-05 01:33:33 -06002134 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002135 {
2136 if (is_nonblocking)
2137 {
Florin Coras62877022020-10-28 21:22:04 -07002138 if (is_ct)
2139 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002140 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07002141 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07002142 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002143 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002144 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002145 if (vcl_session_is_closing (s))
2146 return vcl_session_closing_error (s);
2147
Florin Coras62877022020-10-28 21:22:04 -07002148 if (is_ct)
2149 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002150 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002151
Florin Coras5398dfb2021-01-25 20:31:27 -08002152 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2153 vcl_worker_flush_mq_events (wrk);
Florin Coras2cba8532018-09-11 16:33:36 -07002154 }
2155 }
2156
Florin Corasd1cc38d2020-10-11 11:05:04 -07002157 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
2158 (svm_fifo_seg_t *) ds, n_segments, max_bytes);
2159 if (n_read < 0)
2160 return VPPCOM_EAGAIN;
2161
2162 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
2163 {
Florin Coras62877022020-10-28 21:22:04 -07002164 if (is_ct)
2165 svm_fifo_unset_event (s->rx_fifo);
2166 svm_fifo_unset_event (rx_fifo);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002167 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
Florin Coras62877022020-10-28 21:22:04 -07002168 && svm_fifo_set_event (rx_fifo)
Florin Corasac422d62020-10-19 20:51:36 -07002169 && vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
Florin Corasd1cc38d2020-10-11 11:05:04 -07002170 {
2171 session_event_t *e;
2172 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2173 e->event_type = SESSION_IO_EVT_RX;
2174 e->session_index = s->session_index;
2175 }
2176 }
2177
2178 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07002179 return n_read;
2180}
2181
2182void
Florin Corasd68faf82020-09-25 15:18:13 -07002183vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002184{
2185 vcl_worker_t *wrk = vcl_worker_get_current ();
2186 vcl_session_t *s;
Florin Coras62877022020-10-28 21:22:04 -07002187 u8 is_ct;
Florin Coras2cba8532018-09-11 16:33:36 -07002188
2189 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002190 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002191 return;
2192
Florin Coras62877022020-10-28 21:22:04 -07002193 is_ct = vcl_session_is_ct (s);
2194 svm_fifo_dequeue_drop (is_ct ? s->ct_rx_fifo : s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002195
Florin Coras8cc93212021-09-10 11:37:12 -07002196 ASSERT (s->rx_bytes_pending >= n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002197 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07002198}
2199
Florin Coras7a2abce2020-04-05 19:25:44 +00002200always_inline u8
2201vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002202{
Florin Coras7a2abce2020-04-05 19:25:44 +00002203 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2204 if (is_dgram)
2205 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2206 else
2207 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002208}
2209
2210always_inline int
2211vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2212 size_t n, u8 is_flush, u8 is_dgram)
2213{
Florin Coras6d0106e2019-01-29 20:11:58 -08002214 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002215 session_evt_type_t et;
Florin Coras14ed6df2019-03-06 21:13:42 -08002216 svm_fifo_t *tx_fifo;
Florin Coras3c2fed52018-07-04 04:15:05 -07002217 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002218 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002219
Florin Coras0b0d28e2021-06-04 17:31:53 -07002220 /* Accept zero length writes but just return */
2221 if (PREDICT_FALSE (!n))
2222 return VPPCOM_OK;
2223
2224 if (PREDICT_FALSE (!buf))
2225 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04002226
Florin Coras6c3b2182020-10-19 18:36:48 -07002227 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04002228 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002229 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2230 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002231 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002232 }
2233
liuyacan55c952e2021-06-13 14:54:55 +08002234 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002235 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002236 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2237 s->session_index, s->vpp_handle, s->session_state,
2238 vppcom_session_state_str (s->session_state));
2239 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002240 }
2241
liuyacan55c952e2021-06-13 14:54:55 +08002242 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_WR_SHUTDOWN))
2243 {
2244 VDBG (1, "session %u [0x%llx]: is shutdown! state 0x%x (%s)",
2245 s->session_index, s->vpp_handle, s->session_state,
2246 vppcom_session_state_str (s->session_state));
2247 return VPPCOM_EPIPE;
2248 }
2249
Florin Coras0e88e852018-09-17 22:09:02 -07002250 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002251 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002252 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002253
Florin Coras653e43f2019-03-04 10:56:23 -08002254 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002255 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002256 {
Florin Coras54693d22018-07-17 10:46:29 -07002257 if (is_nonblocking)
2258 {
Florin Coras070453d2018-08-24 17:04:27 -07002259 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002260 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002261 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002262 {
Florin Coras2d379d82019-06-28 12:45:12 -07002263 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002264 if (vcl_session_is_closing (s))
2265 return vcl_session_closing_error (s);
Florin Coras0e88e852018-09-17 22:09:02 -07002266
Florin Coras5398dfb2021-01-25 20:31:27 -08002267 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2268 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002269 }
Dave Wallace543852a2017-08-03 02:11:34 -04002270 }
Dave Wallace543852a2017-08-03 02:11:34 -04002271
Florin Coras653e43f2019-03-04 10:56:23 -08002272 et = SESSION_IO_EVT_TX;
2273 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002274 et = SESSION_IO_EVT_TX_FLUSH;
2275
Florin Coras7a2abce2020-04-05 19:25:44 +00002276 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002277 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002278 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002279 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002280 else
2281 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002282 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002283
Florin Coras14ed6df2019-03-06 21:13:42 -08002284 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002285 app_send_io_evt_to_vpp (
2286 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002287
Florin Coras56230092020-09-02 20:52:58 -07002288 /* The underlying fifo segment can run out of memory */
2289 if (PREDICT_FALSE (n_write < 0))
2290 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002291
Florin Coras6d0106e2019-01-29 20:11:58 -08002292 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2293 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002294
Florin Coras54693d22018-07-17 10:46:29 -07002295 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002296}
2297
Florin Coras42ceddb2018-12-12 10:56:01 -08002298int
2299vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2300{
Florin Coras7a2abce2020-04-05 19:25:44 +00002301 vcl_worker_t *wrk = vcl_worker_get_current ();
2302 vcl_session_t *s;
2303
2304 s = vcl_session_get_w_handle (wrk, session_handle);
2305 if (PREDICT_FALSE (!s))
2306 return VPPCOM_EBADFD;
2307
2308 return vppcom_session_write_inline (wrk, s, buf, n,
2309 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002310}
2311
Florin Corasb0f662f2018-12-27 14:51:46 -08002312int
2313vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2314{
Florin Coras7a2abce2020-04-05 19:25:44 +00002315 vcl_worker_t *wrk = vcl_worker_get_current ();
2316 vcl_session_t *s;
2317
2318 s = vcl_session_get_w_handle (wrk, session_handle);
2319 if (PREDICT_FALSE (!s))
2320 return VPPCOM_EBADFD;
2321
2322 return vppcom_session_write_inline (wrk, s, buf, n,
2323 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002324}
2325
Florin Corasc0737e92019-03-04 14:19:39 -08002326#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002327if (PREDICT_FALSE (!_s->rx_fifo)) \
2328 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002329if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2330 { \
2331 if (!vcl_session_is_ct (_s)) \
2332 { \
2333 svm_fifo_unset_event (_s->rx_fifo); \
2334 if (svm_fifo_is_empty (_s->rx_fifo)) \
2335 break; \
2336 } \
2337 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2338 { \
Florin Coras2f630182020-08-13 00:17:51 -07002339 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002340 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2341 break; \
2342 } \
2343 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002344
Florin Coras86f04502018-09-12 16:08:01 -07002345static void
2346vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2347 unsigned long n_bits, unsigned long *read_map,
2348 unsigned long *write_map,
2349 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002350{
2351 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002352 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002353 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002354 u32 sid;
2355
2356 switch (e->event_type)
2357 {
Florin Corasc0737e92019-03-04 14:19:39 -08002358 case SESSION_IO_EVT_RX:
2359 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002360 s = vcl_session_get (wrk, sid);
2361 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002362 break;
Florin Corasb242d312020-10-26 15:35:40 -07002363 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002364 if (sid < n_bits && read_map)
2365 {
David Johnsond9818dd2018-12-14 14:53:41 -05002366 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002367 *bits_set += 1;
2368 }
2369 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002370 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002371 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002372 s = vcl_session_get (wrk, sid);
2373 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002374 break;
2375 if (sid < n_bits && write_map)
2376 {
David Johnsond9818dd2018-12-14 14:53:41 -05002377 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002378 *bits_set += 1;
2379 }
2380 break;
Florin Coras86f04502018-09-12 16:08:01 -07002381 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002382 if (!e->postponed)
2383 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2384 else
2385 s = vcl_session_get (wrk, e->session_index);
2386 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002387 break;
Florin Corasb242d312020-10-26 15:35:40 -07002388 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002389 if (sid < n_bits && read_map)
2390 {
David Johnsond9818dd2018-12-14 14:53:41 -05002391 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002392 *bits_set += 1;
2393 }
2394 break;
2395 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002396 if (!e->postponed)
2397 {
2398 connected_msg = (session_connected_msg_t *) e->data;
2399 sid = vcl_session_connected_handler (wrk, connected_msg);
2400 }
2401 else
2402 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002403 if (sid == VCL_INVALID_SESSION_INDEX)
2404 break;
2405 if (sid < n_bits && write_map)
2406 {
2407 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2408 *bits_set += 1;
2409 }
Florin Coras86f04502018-09-12 16:08:01 -07002410 break;
2411 case SESSION_CTRL_EVT_DISCONNECTED:
2412 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002413 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2414 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002415 break;
Florin Corasb242d312020-10-26 15:35:40 -07002416 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002417 if (sid < n_bits && except_map)
2418 {
David Johnsond9818dd2018-12-14 14:53:41 -05002419 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002420 *bits_set += 1;
2421 }
2422 break;
2423 case SESSION_CTRL_EVT_RESET:
2424 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2425 if (sid < n_bits && except_map)
2426 {
David Johnsond9818dd2018-12-14 14:53:41 -05002427 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002428 *bits_set += 1;
2429 }
2430 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002431 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2432 vcl_session_unlisten_reply_handler (wrk, e->data);
2433 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002434 case SESSION_CTRL_EVT_MIGRATED:
2435 vcl_session_migrated_handler (wrk, e->data);
2436 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002437 case SESSION_CTRL_EVT_CLEANUP:
2438 vcl_session_cleanup_handler (wrk, e->data);
2439 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002440 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2441 vcl_session_worker_update_reply_handler (wrk, e->data);
2442 break;
2443 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2444 vcl_session_req_worker_update_handler (wrk, e->data);
2445 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002446 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2447 vcl_session_app_add_segment_handler (wrk, e->data);
2448 break;
2449 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2450 vcl_session_app_del_segment_handler (wrk, e->data);
2451 break;
hanlina3a48962020-07-13 11:09:15 +08002452 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002453 vcl_worker_rpc_handler (wrk, e->data);
2454 break;
Florin Coras86f04502018-09-12 16:08:01 -07002455 default:
2456 clib_warning ("unhandled: %u", e->event_type);
2457 break;
2458 }
2459}
2460
2461static int
2462vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2463 unsigned long n_bits, unsigned long *read_map,
2464 unsigned long *write_map, unsigned long *except_map,
2465 double time_to_wait, u32 * bits_set)
2466{
Florin Coras99368312018-08-02 10:45:44 -07002467 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002468 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002469 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002470
Florin Coras54693d22018-07-17 10:46:29 -07002471 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002472 {
Florin Coras54693d22018-07-17 10:46:29 -07002473 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002474 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002475
Florin Coras54693d22018-07-17 10:46:29 -07002476 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002477 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002478 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002479 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002480 else
2481 {
2482 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002483 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002484 }
2485 }
Florin Corase003a1b2019-06-05 10:47:16 -07002486 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002487
Florin Coras134a9962018-08-28 11:32:04 -07002488 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002489 {
Florin Coras134a9962018-08-28 11:32:04 -07002490 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002491 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002492 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2493 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002494 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002495 }
Florin Coras134a9962018-08-28 11:32:04 -07002496 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002497 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002498 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002499}
2500
Florin Coras99368312018-08-02 10:45:44 -07002501static int
Florin Coras294afe22019-01-07 17:49:17 -08002502vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2503 vcl_si_set * read_map, vcl_si_set * write_map,
2504 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002505 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002506{
Florin Coras14ed6df2019-03-06 21:13:42 -08002507 double wait = 0, start = 0;
2508
2509 if (!*bits_set)
2510 {
2511 wait = time_to_wait;
2512 start = clib_time_now (&wrk->clib_time);
2513 }
2514
2515 do
2516 {
2517 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2518 write_map, except_map, wait, bits_set);
2519 if (*bits_set)
2520 return *bits_set;
2521 if (wait == -1)
2522 continue;
2523
2524 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2525 }
2526 while (wait > 0);
2527
2528 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002529}
2530
2531static int
Florin Coras294afe22019-01-07 17:49:17 -08002532vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2533 vcl_si_set * read_map, vcl_si_set * write_map,
2534 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002535 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002536{
2537 vcl_mq_evt_conn_t *mqc;
2538 int __clib_unused n_read;
2539 int n_mq_evts, i;
2540 u64 buf;
2541
Florin Coras134a9962018-08-28 11:32:04 -07002542 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2543 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2544 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002545 for (i = 0; i < n_mq_evts; i++)
2546 {
Florin Coras134a9962018-08-28 11:32:04 -07002547 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002548 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002549 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002550 except_map, 0, bits_set);
2551 }
2552
2553 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2554}
2555
Dave Wallace543852a2017-08-03 02:11:34 -04002556int
Florin Coras294afe22019-01-07 17:49:17 -08002557vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2558 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002559{
Florin Coras54693d22018-07-17 10:46:29 -07002560 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002561 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002562 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002563 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002564
Dave Wallace7876d392017-10-19 03:53:57 -04002565 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002566 {
Florin Coras134a9962018-08-28 11:32:04 -07002567 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002568 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002569 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2570 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002571 }
Dave Wallace7876d392017-10-19 03:53:57 -04002572 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002573 {
Florin Coras134a9962018-08-28 11:32:04 -07002574 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002575 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002576 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2577 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002578 }
Dave Wallace7876d392017-10-19 03:53:57 -04002579 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002580 {
Florin Coras134a9962018-08-28 11:32:04 -07002581 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002582 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002583 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2584 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002585 }
2586
Florin Coras54693d22018-07-17 10:46:29 -07002587 if (!n_bits)
2588 return 0;
2589
2590 if (!write_map)
2591 goto check_rd;
2592
Florin Coras096a1d52021-01-27 15:33:51 -08002593 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2594 {
2595 if (!(s = vcl_session_get (wrk, sid)))
2596 {
2597 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2598 bits_set++;
2599 continue;
2600 }
Florin Coras54693d22018-07-17 10:46:29 -07002601
Florin Coras096a1d52021-01-27 15:33:51 -08002602 if (vcl_session_write_ready (s))
2603 {
2604 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2605 bits_set++;
2606 }
2607 else
2608 {
2609 svm_fifo_t *txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2610 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF);
2611 }
2612 }
Florin Coras54693d22018-07-17 10:46:29 -07002613
2614check_rd:
2615 if (!read_map)
2616 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002617
Florin Coras096a1d52021-01-27 15:33:51 -08002618 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2619 {
2620 if (!(s = vcl_session_get (wrk, sid)))
2621 {
2622 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2623 bits_set++;
2624 continue;
2625 }
Florin Coras54693d22018-07-17 10:46:29 -07002626
Florin Coras096a1d52021-01-27 15:33:51 -08002627 if (vcl_session_read_ready (s))
2628 {
2629 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2630 bits_set++;
2631 }
2632 }
Florin Coras54693d22018-07-17 10:46:29 -07002633
2634check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002635
Florin Coras86f04502018-09-12 16:08:01 -07002636 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2637 {
2638 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2639 read_map, write_map, except_map, &bits_set);
2640 }
2641 vec_reset_length (wrk->unhandled_evts_vector);
2642
Florin Coras99368312018-08-02 10:45:44 -07002643 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002644 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002645 time_to_wait, &bits_set);
2646 else
Florin Coras134a9962018-08-28 11:32:04 -07002647 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002648 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002649
Dave Wallace543852a2017-08-03 02:11:34 -04002650 return (bits_set);
2651}
2652
Dave Wallacef7f809c2017-10-03 01:48:42 -04002653static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002654vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002655{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002656 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002657 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002658 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002659
Florin Corasc0737e92019-03-04 14:19:39 -08002660 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002661 return;
2662
Florin Coras6c3b2182020-10-19 18:36:48 -07002663 s = vcl_session_get_w_handle (wrk, vep_handle);
2664 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002665 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002666 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002667 goto done;
2668 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002669 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002670 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002671 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002672 goto done;
2673 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002674 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002675 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002676 "{\n"
2677 " is_vep = %u\n"
2678 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002679 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002680 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2681 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002682
Florin Coras7e5e62b2019-07-30 14:08:23 -07002683 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002684 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002685 s = vcl_session_get_w_handle (wrk, sh);
2686 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002687 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002688 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002689 goto done;
2690 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002691 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002692 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002693 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002694 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002695 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002696 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002697 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002698 goto done;
2699 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002700 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002701 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2702 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002703 sh, s->vep.vep_sh, vep_handle);
2704 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002705 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002706 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002707 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002708 " next_sh = 0x%x (%u)\n"
2709 " prev_sh = 0x%x (%u)\n"
2710 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002711 " ev.events = 0x%x\n"
2712 " ev.data.u64 = 0x%llx\n"
2713 " et_mask = 0x%x\n"
2714 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002715 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002716 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2717 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002718 }
2719 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002720
2721done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002722 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002723}
2724
2725int
2726vppcom_epoll_create (void)
2727{
Florin Coras134a9962018-08-28 11:32:04 -07002728 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002729 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002730
Florin Coras134a9962018-08-28 11:32:04 -07002731 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002732
Florin Coras6c3b2182020-10-19 18:36:48 -07002733 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002734 vep_session->vep.vep_sh = ~0;
2735 vep_session->vep.next_sh = ~0;
2736 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002737 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002738
Florin Corasa7a1a222018-12-30 17:11:31 -08002739 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2740 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002741
Florin Corasab2f6db2018-08-31 14:31:41 -07002742 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002743}
2744
2745int
Florin Coras134a9962018-08-28 11:32:04 -07002746vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002747 struct epoll_event *event)
2748{
Florin Coras134a9962018-08-28 11:32:04 -07002749 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras87f76002021-06-28 19:13:29 -07002750 int rv = VPPCOM_OK, add_evt = 0;
Florin Coras7e12d942018-06-27 14:32:43 -07002751 vcl_session_t *vep_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002752 vcl_session_t *s;
2753 svm_fifo_t *txf;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002754
Florin Coras134a9962018-08-28 11:32:04 -07002755 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002756 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002757 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002758 return VPPCOM_EINVAL;
2759 }
2760
Florin Coras134a9962018-08-28 11:32:04 -07002761 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002762 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002763 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002764 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002765 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002766 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002767 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002768 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002769 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002770 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002771 }
2772
Florin Coras134a9962018-08-28 11:32:04 -07002773 ASSERT (vep_session->vep.vep_sh == ~0);
2774 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002775
Florin Coras17ec5772020-08-12 20:46:29 -07002776 s = vcl_session_get_w_handle (wrk, session_handle);
2777 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002778 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002779 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002780 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002781 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002782 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002783 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002784 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002785 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002786 }
2787
2788 switch (op)
2789 {
2790 case EPOLL_CTL_ADD:
2791 if (PREDICT_FALSE (!event))
2792 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002793 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002794 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002795 }
Florin Coras2645f682021-06-04 15:59:41 -07002796 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
2797 {
2798 VDBG (0, "EPOLL_CTL_ADD: %u already epolled!", s->session_index);
2799 rv = VPPCOM_EEXIST;
2800 goto done;
2801 }
Florin Coras134a9962018-08-28 11:32:04 -07002802 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002803 {
Florin Coras7e12d942018-06-27 14:32:43 -07002804 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002805 next_session = vcl_session_get_w_handle (wrk,
2806 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002807 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002808 {
Florin Coras5e062572019-03-14 19:07:51 -07002809 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002810 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002811 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002812 }
Florin Coras134a9962018-08-28 11:32:04 -07002813 ASSERT (next_session->vep.prev_sh == vep_handle);
2814 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002815 }
Florin Coras17ec5772020-08-12 20:46:29 -07002816 s->vep.next_sh = vep_session->vep.next_sh;
2817 s->vep.prev_sh = vep_handle;
2818 s->vep.vep_sh = vep_handle;
2819 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
Florin Corasfa3884f2021-06-22 20:04:46 -07002820 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras17ec5772020-08-12 20:46:29 -07002821 s->vep.ev = *event;
Florin Coras6c3b2182020-10-19 18:36:48 -07002822 s->flags &= ~VCL_SESSION_F_IS_VEP;
2823 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002824 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002825
Florin Coras17ec5772020-08-12 20:46:29 -07002826 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2827 if (txf && (event->events & EPOLLOUT))
2828 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002829
Florin Coras6e3c1f82020-01-15 01:30:46 +00002830 /* Generate EPOLLOUT if tx fifo not full */
Florin Coras17ec5772020-08-12 20:46:29 -07002831 if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002832 {
2833 session_event_t e = { 0 };
2834 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002835 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002836 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras87f76002021-06-28 19:13:29 -07002837 add_evt = 1;
hanlin475c9d72019-12-26 11:44:28 +08002838 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002839 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002840 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002841 {
2842 session_event_t e = { 0 };
2843 e.event_type = SESSION_IO_EVT_RX;
Florin Coras17ec5772020-08-12 20:46:29 -07002844 e.session_index = s->session_index;
Florin Coras6e3c1f82020-01-15 01:30:46 +00002845 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras87f76002021-06-28 19:13:29 -07002846 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
2847 add_evt = 1;
2848 }
2849 if (!add_evt && vcl_session_is_closing (s))
2850 {
2851 session_event_t e = { 0 };
2852 if (s->session_state == VCL_STATE_VPP_CLOSING)
2853 e.event_type = SESSION_CTRL_EVT_DISCONNECTED;
2854 else
2855 e.event_type = SESSION_CTRL_EVT_RESET;
2856 e.session_index = s->session_index;
2857 e.postponed = 1;
2858 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras6e3c1f82020-01-15 01:30:46 +00002859 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002860 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2861 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002862 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002863 break;
2864
2865 case EPOLL_CTL_MOD:
2866 if (PREDICT_FALSE (!event))
2867 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002868 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002869 rv = VPPCOM_EINVAL;
2870 goto done;
2871 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002872 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002873 {
Florin Coras5e062572019-03-14 19:07:51 -07002874 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002875 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002876 goto done;
2877 }
Florin Coras17ec5772020-08-12 20:46:29 -07002878 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002879 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002880 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002881 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002882 rv = VPPCOM_EINVAL;
2883 goto done;
2884 }
hanlin475c9d72019-12-26 11:44:28 +08002885
Florin Coras2645f682021-06-04 15:59:41 -07002886 /* Generate EPOLLOUT if session write ready nd event was not on */
2887 if ((event->events & EPOLLOUT) && !(s->vep.ev.events & EPOLLOUT) &&
2888 (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002889 {
2890 session_event_t e = { 0 };
2891 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002892 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002893 vec_add1 (wrk->unhandled_evts_vector, e);
2894 }
Florin Coras2645f682021-06-04 15:59:41 -07002895 /* Generate EPOLLIN if session read ready and event was not on */
2896 if ((event->events & EPOLLIN) && !(s->vep.ev.events & EPOLLIN) &&
2897 (vcl_session_read_ready (s) > 0))
2898 {
2899 session_event_t e = { 0 };
2900 e.event_type = SESSION_IO_EVT_RX;
2901 e.session_index = s->session_index;
2902 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras87f76002021-06-28 19:13:29 -07002903 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2645f682021-06-04 15:59:41 -07002904 }
Florin Coras17ec5772020-08-12 20:46:29 -07002905 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2906 s->vep.ev = *event;
2907 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras8fb22fd2021-02-17 17:35:32 -08002908 if (txf)
2909 {
2910 if (event->events & EPOLLOUT)
2911 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2912 else
2913 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2914 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002915 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2916 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002917 break;
2918
2919 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07002920 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002921 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002922 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002923 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002924 goto done;
2925 }
Florin Coras17ec5772020-08-12 20:46:29 -07002926 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002927 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002928 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002929 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002930 rv = VPPCOM_EINVAL;
2931 goto done;
2932 }
2933
Florin Coras17ec5772020-08-12 20:46:29 -07002934 if (s->vep.prev_sh == vep_handle)
2935 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002936 else
2937 {
Florin Coras7e12d942018-06-27 14:32:43 -07002938 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002939 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002940 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002941 {
Florin Coras5e062572019-03-14 19:07:51 -07002942 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002943 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002944 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002945 }
Florin Coras134a9962018-08-28 11:32:04 -07002946 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002947 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002948 }
Florin Coras17ec5772020-08-12 20:46:29 -07002949 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002950 {
Florin Coras7e12d942018-06-27 14:32:43 -07002951 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002952 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002953 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002954 {
Florin Coras5e062572019-03-14 19:07:51 -07002955 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002956 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002957 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002958 }
Florin Coras134a9962018-08-28 11:32:04 -07002959 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002960 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002961 }
2962
Florin Corasfa3884f2021-06-22 20:04:46 -07002963 if (s->vep.lt_next != VCL_INVALID_SESSION_INDEX)
2964 vcl_epoll_lt_del (wrk, s);
2965
Florin Coras17ec5772020-08-12 20:46:29 -07002966 memset (&s->vep, 0, sizeof (s->vep));
2967 s->vep.next_sh = ~0;
2968 s->vep.prev_sh = ~0;
2969 s->vep.vep_sh = ~0;
Florin Corasfa3884f2021-06-22 20:04:46 -07002970 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras6c3b2182020-10-19 18:36:48 -07002971 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002972
Florin Corasf1ddeeb2021-06-10 08:08:53 -07002973 if (vcl_session_is_open (s))
2974 {
2975 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2976 if (txf)
2977 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2978 }
Florin Coras1bcad5c2019-01-09 20:04:38 -08002979
Florin Coras5e062572019-03-14 19:07:51 -07002980 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002981 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002982 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002983 break;
2984
2985 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002986 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002987 rv = VPPCOM_EINVAL;
2988 }
2989
Florin Coras134a9962018-08-28 11:32:04 -07002990 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002991
2992done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002993 return rv;
2994}
2995
Florin Coras86f04502018-09-12 16:08:01 -07002996static inline void
2997vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2998 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002999{
3000 session_disconnected_msg_t *disconnected_msg;
3001 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07003002 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08003003 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07003004 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07003005 u8 add_event = 0;
3006
3007 switch (e->event_type)
3008 {
Florin Coras653e43f2019-03-04 10:56:23 -08003009 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08003010 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003011 s = vcl_session_get (wrk, sid);
3012 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003013 break;
Florin Corasb242d312020-10-26 15:35:40 -07003014 vcl_fifo_rx_evt_valid_or_break (s);
3015 session_events = s->vep.ev.events;
Florin Coras99e41452021-08-31 13:29:41 -07003016 if (!(EPOLLIN & s->vep.ev.events) ||
3017 (s->flags & VCL_SESSION_F_HAS_RX_EVT) ||
3018 (s->vep.lt_next != VCL_INVALID_SESSION_INDEX))
Florin Coras86f04502018-09-12 16:08:01 -07003019 break;
3020 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003021 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003022 session_evt_data = s->vep.ev.data.u64;
3023 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07003024 break;
Florin Coras653e43f2019-03-04 10:56:23 -08003025 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08003026 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003027 s = vcl_session_get (wrk, sid);
3028 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003029 break;
Florin Corasb242d312020-10-26 15:35:40 -07003030 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003031 if (!(EPOLLOUT & session_events))
3032 break;
3033 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003034 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003035 session_evt_data = s->vep.ev.data.u64;
3036 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ?
3037 s->ct_tx_fifo : s->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07003038 break;
Florin Coras86f04502018-09-12 16:08:01 -07003039 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07003040 if (!e->postponed)
3041 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
3042 else
3043 s = vcl_session_get (wrk, e->session_index);
3044 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08003045 break;
Florin Corasb242d312020-10-26 15:35:40 -07003046 session_events = s->vep.ev.events;
3047 sid = s->session_index;
liuyacancba87102021-09-10 15:14:05 +08003048 if (!(EPOLLIN & session_events) ||
3049 (s->vep.lt_next != VCL_INVALID_SESSION_INDEX))
Florin Coras86f04502018-09-12 16:08:01 -07003050 break;
Florin Coras86f04502018-09-12 16:08:01 -07003051 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003052 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003053 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003054 break;
3055 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07003056 if (!e->postponed)
3057 {
3058 connected_msg = (session_connected_msg_t *) e->data;
3059 sid = vcl_session_connected_handler (wrk, connected_msg);
3060 }
3061 else
3062 sid = e->session_index;
3063 s = vcl_session_get (wrk, sid);
3064 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003065 break;
Florin Corasb242d312020-10-26 15:35:40 -07003066 session_events = s->vep.ev.events;
3067 /* Generate EPOLLOUT because there's no connected event */
Florin Coras72f77822019-01-22 19:05:52 -08003068 if (!(EPOLLOUT & session_events))
3069 break;
3070 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003071 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003072 session_evt_data = s->vep.ev.data.u64;
3073 if (s->session_state == VCL_STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07003074 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07003075 break;
3076 case SESSION_CTRL_EVT_DISCONNECTED:
Florin Coras87f76002021-06-28 19:13:29 -07003077 if (!e->postponed)
3078 {
3079 disconnected_msg = (session_disconnected_msg_t *) e->data;
3080 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
3081 }
3082 else
3083 {
3084 s = vcl_session_get (wrk, e->session_index);
3085 }
3086 if (vcl_session_is_closed (s) ||
3087 !(s->flags & VCL_SESSION_F_IS_VEP_SESSION))
Florin Coras86f04502018-09-12 16:08:01 -07003088 break;
Florin Corasb242d312020-10-26 15:35:40 -07003089 sid = s->session_index;
3090 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003091 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003092 events[*num_ev].events = EPOLLHUP | EPOLLRDHUP;
Florin Corasb242d312020-10-26 15:35:40 -07003093 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003094 break;
3095 case SESSION_CTRL_EVT_RESET:
Florin Coras87f76002021-06-28 19:13:29 -07003096 if (!e->postponed)
3097 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
3098 else
3099 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003100 s = vcl_session_get (wrk, sid);
Florin Coras87f76002021-06-28 19:13:29 -07003101 if (vcl_session_is_closed (s) ||
3102 !(s->flags & VCL_SESSION_F_IS_VEP_SESSION))
Florin Coras86f04502018-09-12 16:08:01 -07003103 break;
Florin Corasb242d312020-10-26 15:35:40 -07003104 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003105 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003106 events[*num_ev].events = EPOLLHUP | EPOLLRDHUP;
Florin Corasb242d312020-10-26 15:35:40 -07003107 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003108 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08003109 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
3110 vcl_session_unlisten_reply_handler (wrk, e->data);
3111 break;
Florin Coras68b7e582020-01-21 18:33:23 -08003112 case SESSION_CTRL_EVT_MIGRATED:
3113 vcl_session_migrated_handler (wrk, e->data);
3114 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07003115 case SESSION_CTRL_EVT_CLEANUP:
3116 vcl_session_cleanup_handler (wrk, e->data);
3117 break;
Florin Coras30e79c22019-01-02 19:31:22 -08003118 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
3119 vcl_session_req_worker_update_handler (wrk, e->data);
3120 break;
3121 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
3122 vcl_session_worker_update_reply_handler (wrk, e->data);
3123 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07003124 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
3125 vcl_session_app_add_segment_handler (wrk, e->data);
3126 break;
3127 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
3128 vcl_session_app_del_segment_handler (wrk, e->data);
3129 break;
hanlina3a48962020-07-13 11:09:15 +08003130 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07003131 vcl_worker_rpc_handler (wrk, e->data);
3132 break;
Florin Coras86f04502018-09-12 16:08:01 -07003133 default:
3134 VDBG (0, "unhandled: %u", e->event_type);
3135 break;
3136 }
3137
3138 if (add_event)
3139 {
3140 events[*num_ev].data.u64 = session_evt_data;
3141 if (EPOLLONESHOT & session_events)
3142 {
Florin Corasb242d312020-10-26 15:35:40 -07003143 s = vcl_session_get (wrk, sid);
3144 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003145 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003146 else if (!(EPOLLET & session_events))
Florin Corasfe286f72021-06-04 10:07:55 -07003147 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003148 s = vcl_session_get (wrk, sid);
3149 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
3150 vcl_epoll_lt_add (wrk, s);
Florin Corasfe286f72021-06-04 10:07:55 -07003151 }
Florin Coras86f04502018-09-12 16:08:01 -07003152 *num_ev += 1;
3153 }
3154}
3155
3156static int
3157vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
3158 struct epoll_event *events, u32 maxevents,
3159 double wait_for_time, u32 * num_ev)
3160{
Florin Coras99368312018-08-02 10:45:44 -07003161 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07003162 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07003163 int i;
3164
Florin Coras539663c2018-09-28 14:59:37 -07003165 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
3166 goto handle_dequeued;
3167
Florin Coras54693d22018-07-17 10:46:29 -07003168 if (svm_msg_q_is_empty (mq))
3169 {
3170 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08003171 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003172 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08003173 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07003174 else
3175 {
Florin Coras60f1fc12018-08-16 14:57:31 -07003176 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08003177 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003178 }
3179 }
Florin Corase003a1b2019-06-05 10:47:16 -07003180 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08003181 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07003182
Florin Coras539663c2018-09-28 14:59:37 -07003183handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07003184 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07003185 {
Florin Coras134a9962018-08-28 11:32:04 -07003186 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07003187 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08003188 if (*num_ev < maxevents)
3189 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
3190 else
3191 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07003192 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07003193 }
Florin Corasaa27eb92018-10-13 12:20:01 -07003194 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08003195 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07003196 return *num_ev;
3197}
3198
Florin Coras99368312018-08-02 10:45:44 -07003199static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003200vppcom_epoll_wait_condvar (vcl_worker_t *wrk, struct epoll_event *events,
3201 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003202{
Florin Corasccdb8b82021-04-28 13:01:06 -07003203 double end = -1;
Florin Coras14ed6df2019-03-06 21:13:42 -08003204
3205 if (!n_evts)
3206 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003207 if (timeout_ms > 0)
3208 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras14ed6df2019-03-06 21:13:42 -08003209 }
3210
3211 do
3212 {
3213 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
Florin Corasccdb8b82021-04-28 13:01:06 -07003214 timeout_ms, &n_evts);
3215 if (n_evts || !timeout_ms)
Florin Coras14ed6df2019-03-06 21:13:42 -08003216 return n_evts;
Florin Coras14ed6df2019-03-06 21:13:42 -08003217 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003218 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Coras14ed6df2019-03-06 21:13:42 -08003219
3220 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003221}
3222
3223static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003224vppcom_epoll_wait_eventfd (vcl_worker_t *wrk, struct epoll_event *events,
3225 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003226{
Florin Coras99368312018-08-02 10:45:44 -07003227 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08003228 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07003229 int n_mq_evts, i;
Florin Corasccdb8b82021-04-28 13:01:06 -07003230 double end = -1;
Florin Coras99368312018-08-02 10:45:44 -07003231 u64 buf;
3232
Florin Coras134a9962018-08-28 11:32:04 -07003233 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08003234 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07003235 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003236 if (timeout_ms > 0)
3237 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras99368312018-08-02 10:45:44 -07003238 }
3239
Florin Corasb13ba132021-01-27 16:05:24 -08003240 do
3241 {
3242 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
Florin Corasccdb8b82021-04-28 13:01:06 -07003243 vec_len (wrk->mq_events), timeout_ms);
Florin Corasb13ba132021-01-27 16:05:24 -08003244 if (n_mq_evts < 0)
3245 {
3246 VDBG (0, "epoll_wait error %u", errno);
3247 return n_evts;
3248 }
3249
3250 for (i = 0; i < n_mq_evts; i++)
3251 {
3252 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3253 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3254 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
3255 &n_evts);
3256 }
3257
Florin Corasccdb8b82021-04-28 13:01:06 -07003258 if (n_evts || !timeout_ms)
Florin Corasb13ba132021-01-27 16:05:24 -08003259 return n_evts;
Florin Corasb13ba132021-01-27 16:05:24 -08003260 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003261 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Corasb13ba132021-01-27 16:05:24 -08003262
3263 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003264}
3265
Florin Corasfe286f72021-06-04 10:07:55 -07003266static void
Florin Corasfe286f72021-06-04 10:07:55 -07003267vcl_epoll_wait_handle_lt (vcl_worker_t *wrk, struct epoll_event *events,
3268 int maxevents, u32 *n_evts)
3269{
Florin Coras734268f2021-06-30 07:54:29 -07003270 u32 add_event = 0, next;
Florin Corasfe286f72021-06-04 10:07:55 -07003271 vcl_session_t *s;
3272 u64 evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003273 int rv;
Florin Corasfe286f72021-06-04 10:07:55 -07003274
Florin Corasfa3884f2021-06-22 20:04:46 -07003275 ASSERT (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX);
Florin Corasfe286f72021-06-04 10:07:55 -07003276 if (*n_evts >= maxevents)
Florin Corasfa3884f2021-06-22 20:04:46 -07003277 return;
Florin Corasfe286f72021-06-04 10:07:55 -07003278
Florin Corasfa3884f2021-06-22 20:04:46 -07003279 next = wrk->ep_lt_current;
3280 do
Florin Corasfe286f72021-06-04 10:07:55 -07003281 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003282 s = vcl_session_get (wrk, next);
3283 next = s->vep.lt_next;
3284
3285 if ((s->vep.ev.events & EPOLLIN) && (rv = vcl_session_read_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003286 {
3287 add_event = 1;
Florin Corasfa3884f2021-06-22 20:04:46 -07003288 events[*n_evts].events |= rv > 0 ? EPOLLIN : EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003289 evt_data = s->vep.ev.data.u64;
3290 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003291 if ((s->vep.ev.events & EPOLLOUT) && (rv = vcl_session_write_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003292 {
3293 add_event = 1;
Florin Corasfa3884f2021-06-22 20:04:46 -07003294 events[*n_evts].events |= rv > 0 ? EPOLLOUT : EPOLLHUP | EPOLLRDHUP;
3295 evt_data = s->vep.ev.data.u64;
3296 }
3297 if (!add_event && s->session_state > VCL_STATE_READY)
3298 {
3299 add_event = 1;
3300 events[*n_evts].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003301 evt_data = s->vep.ev.data.u64;
3302 }
3303 if (add_event)
3304 {
3305 events[*n_evts].data.u64 = evt_data;
3306 *n_evts += 1;
3307 add_event = 0;
Florin Corasfa3884f2021-06-22 20:04:46 -07003308 if (EPOLLONESHOT & s->vep.ev.events)
3309 s->vep.ev.events = 0;
Florin Corasfe286f72021-06-04 10:07:55 -07003310 if (*n_evts == maxevents)
3311 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003312 wrk->ep_lt_current = next;
Florin Corasfe286f72021-06-04 10:07:55 -07003313 break;
3314 }
3315 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003316 else
3317 {
3318 vcl_epoll_lt_del (wrk, s);
3319 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
3320 break;
3321 }
Florin Corasfe286f72021-06-04 10:07:55 -07003322 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003323 while (next != wrk->ep_lt_current);
Florin Corasfe286f72021-06-04 10:07:55 -07003324}
3325
Dave Wallacef7f809c2017-10-03 01:48:42 -04003326int
Florin Coras134a9962018-08-28 11:32:04 -07003327vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003328 int maxevents, double wait_for_time)
3329{
Florin Coras134a9962018-08-28 11:32:04 -07003330 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003331 vcl_session_t *vep_session;
Florin Corasfa3884f2021-06-22 20:04:46 -07003332 u32 n_evts = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003333 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003334
3335 if (PREDICT_FALSE (maxevents <= 0))
3336 {
Florin Coras5e062572019-03-14 19:07:51 -07003337 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003338 return VPPCOM_EINVAL;
3339 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003340
Florin Coras134a9962018-08-28 11:32:04 -07003341 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003342 if (!vep_session)
3343 return VPPCOM_EBADFD;
3344
Florin Coras6c3b2182020-10-19 18:36:48 -07003345 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003346 {
Florin Coras5e062572019-03-14 19:07:51 -07003347 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003348 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003349 }
Florin Coras54693d22018-07-17 10:46:29 -07003350
Florin Coras86f04502018-09-12 16:08:01 -07003351 if (vec_len (wrk->unhandled_evts_vector))
3352 {
3353 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3354 {
3355 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3356 events, &n_evts);
3357 if (n_evts == maxevents)
3358 {
Florin Corase003a1b2019-06-05 10:47:16 -07003359 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3360 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003361 }
3362 }
Florin Corase003a1b2019-06-05 10:47:16 -07003363 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003364 }
liuyacancba87102021-09-10 15:14:05 +08003365
3366 if (PREDICT_FALSE (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX))
3367 vcl_epoll_wait_handle_lt (wrk, events, maxevents, &n_evts);
3368
wanghanlin8919fec2021-03-18 20:00:41 +08003369 /* Request to only drain unhandled */
3370 if ((int) wait_for_time == -2)
3371 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003372
Florin Coras86f04502018-09-12 16:08:01 -07003373
Florin Corasfe286f72021-06-04 10:07:55 -07003374 if (vcm->cfg.use_mq_eventfd)
3375 n_evts = vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3376 wait_for_time);
3377 else
3378 n_evts = vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3379 wait_for_time);
3380
Florin Corasfe286f72021-06-04 10:07:55 -07003381 return n_evts;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003382}
3383
Dave Wallace35830af2017-10-09 01:43:42 -04003384int
Florin Coras134a9962018-08-28 11:32:04 -07003385vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003386 void *buffer, uint32_t * buflen)
3387{
Florin Coras134a9962018-08-28 11:32:04 -07003388 vcl_worker_t *wrk = vcl_worker_get_current ();
liuyacan55c952e2021-06-13 14:54:55 +08003389 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07003390 vppcom_endpt_t *ep = buffer;
Florin Coras04ae8272021-04-12 19:55:37 -07003391 transport_endpt_attr_t tea;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003392 vcl_session_t *session;
3393 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003394
Florin Coras134a9962018-08-28 11:32:04 -07003395 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003396 if (!session)
3397 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003398
Dave Wallace35830af2017-10-09 01:43:42 -04003399 switch (op)
3400 {
3401 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003402 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003403 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3404 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003405 break;
3406
Dave Wallace227867f2017-11-13 21:21:53 -05003407 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003408 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003409 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3410 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003411 break;
3412
3413 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003414 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003415 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003416 *flags =
3417 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003418 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003419 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003420 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003421 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3422 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003423 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003424 }
3425 else
3426 rv = VPPCOM_EINVAL;
3427 break;
3428
3429 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003430 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003431 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003432 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003433 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003434 else
Florin Corasac422d62020-10-19 20:51:36 -07003435 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003436
Florin Coras5e062572019-03-14 19:07:51 -07003437 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3438 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003439 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003440 }
3441 else
3442 rv = VPPCOM_EINVAL;
3443 break;
3444
3445 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003446 if (PREDICT_TRUE (buffer && buflen &&
3447 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003448 {
Florin Coras7e12d942018-06-27 14:32:43 -07003449 ep->is_ip4 = session->transport.is_ip4;
3450 ep->port = session->transport.rmt_port;
3451 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003452 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3453 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003454 else
Dave Barach178cf492018-11-13 16:34:13 -05003455 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3456 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003457 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003458 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3459 "addr = %U, port %u", session_handle, ep->is_ip4,
3460 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003461 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3462 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003463 }
3464 else
3465 rv = VPPCOM_EINVAL;
3466 break;
3467
3468 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003469 if (PREDICT_TRUE (buffer && buflen &&
3470 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003471 {
Florin Coras7e12d942018-06-27 14:32:43 -07003472 ep->is_ip4 = session->transport.is_ip4;
3473 ep->port = session->transport.lcl_port;
3474 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003475 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3476 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003477 else
Dave Barach178cf492018-11-13 16:34:13 -05003478 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3479 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003480 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003481 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3482 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003483 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003484 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3485 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003486 }
3487 else
3488 rv = VPPCOM_EINVAL;
3489 break;
Stevenb5a11602017-10-11 09:59:30 -07003490
Florin Corasef7cbf62019-10-17 09:56:27 -07003491 case VPPCOM_ATTR_SET_LCL_ADDR:
3492 if (PREDICT_TRUE (buffer && buflen &&
3493 (*buflen >= sizeof (*ep)) && ep->ip))
3494 {
3495 session->transport.is_ip4 = ep->is_ip4;
3496 session->transport.lcl_port = ep->port;
3497 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3498 *buflen = sizeof (*ep);
3499 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3500 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3501 &session->transport.lcl_ip,
3502 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3503 clib_net_to_host_u16 (ep->port));
3504 }
3505 else
3506 rv = VPPCOM_EINVAL;
3507 break;
3508
Dave Wallace048b1d62018-01-03 22:24:41 -05003509 case VPPCOM_ATTR_GET_LIBC_EPFD:
3510 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003511 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003512 break;
3513
3514 case VPPCOM_ATTR_SET_LIBC_EPFD:
3515 if (PREDICT_TRUE (buffer && buflen &&
3516 (*buflen == sizeof (session->libc_epfd))))
3517 {
3518 session->libc_epfd = *(int *) buffer;
3519 *buflen = sizeof (session->libc_epfd);
3520
Florin Coras5e062572019-03-14 19:07:51 -07003521 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3522 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003523 }
3524 else
3525 rv = VPPCOM_EINVAL;
3526 break;
3527
3528 case VPPCOM_ATTR_GET_PROTOCOL:
3529 if (buffer && buflen && (*buflen >= sizeof (int)))
3530 {
Florin Coras7e12d942018-06-27 14:32:43 -07003531 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003532 *buflen = sizeof (int);
3533
Florin Coras5e062572019-03-14 19:07:51 -07003534 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3535 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003536 }
3537 else
3538 rv = VPPCOM_EINVAL;
3539 break;
3540
3541 case VPPCOM_ATTR_GET_LISTEN:
3542 if (buffer && buflen && (*buflen >= sizeof (int)))
3543 {
Florin Corasac422d62020-10-19 20:51:36 -07003544 *(int *) buffer = vcl_session_has_attr (session,
3545 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003546 *buflen = sizeof (int);
3547
Florin Coras5e062572019-03-14 19:07:51 -07003548 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3549 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003550 }
3551 else
3552 rv = VPPCOM_EINVAL;
3553 break;
3554
3555 case VPPCOM_ATTR_GET_ERROR:
3556 if (buffer && buflen && (*buflen >= sizeof (int)))
3557 {
3558 *(int *) buffer = 0;
3559 *buflen = sizeof (int);
3560
Florin Coras5e062572019-03-14 19:07:51 -07003561 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3562 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003563 }
3564 else
3565 rv = VPPCOM_EINVAL;
3566 break;
3567
3568 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3569 if (buffer && buflen && (*buflen >= sizeof (u32)))
3570 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003571
3572 /* VPP-TBD */
3573 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003574 session->tx_fifo ?
3575 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003576 vcm->cfg.tx_fifo_size);
3577 *buflen = sizeof (u32);
3578
Florin Coras5e062572019-03-14 19:07:51 -07003579 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3580 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3581 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003582 }
3583 else
3584 rv = VPPCOM_EINVAL;
3585 break;
3586
3587 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3588 if (buffer && buflen && (*buflen == sizeof (u32)))
3589 {
3590 /* VPP-TBD */
3591 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003592 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3593 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3594 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003595 }
3596 else
3597 rv = VPPCOM_EINVAL;
3598 break;
3599
3600 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3601 if (buffer && buflen && (*buflen >= sizeof (u32)))
3602 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003603
3604 /* VPP-TBD */
3605 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003606 session->rx_fifo ?
3607 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003608 vcm->cfg.rx_fifo_size);
3609 *buflen = sizeof (u32);
3610
Florin Coras5e062572019-03-14 19:07:51 -07003611 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3612 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003613 }
3614 else
3615 rv = VPPCOM_EINVAL;
3616 break;
3617
3618 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3619 if (buffer && buflen && (*buflen == sizeof (u32)))
3620 {
3621 /* VPP-TBD */
3622 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003623 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3624 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3625 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003626 }
3627 else
3628 rv = VPPCOM_EINVAL;
3629 break;
3630
3631 case VPPCOM_ATTR_GET_REUSEADDR:
3632 if (buffer && buflen && (*buflen >= sizeof (int)))
3633 {
3634 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003635 *(int *) buffer = vcl_session_has_attr (session,
3636 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003637 *buflen = sizeof (int);
3638
Florin Coras5e062572019-03-14 19:07:51 -07003639 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3640 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003641 }
3642 else
3643 rv = VPPCOM_EINVAL;
3644 break;
3645
Stevenb5a11602017-10-11 09:59:30 -07003646 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003647 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003648 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003649 {
3650 /* VPP-TBD */
3651 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003652 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003653 else
Florin Corasac422d62020-10-19 20:51:36 -07003654 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003655
Florin Coras5e062572019-03-14 19:07:51 -07003656 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003657 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003658 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003659 }
3660 else
3661 rv = VPPCOM_EINVAL;
3662 break;
3663
3664 case VPPCOM_ATTR_GET_REUSEPORT:
3665 if (buffer && buflen && (*buflen >= sizeof (int)))
3666 {
3667 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003668 *(int *) buffer = vcl_session_has_attr (session,
3669 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003670 *buflen = sizeof (int);
3671
Florin Coras5e062572019-03-14 19:07:51 -07003672 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3673 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003674 }
3675 else
3676 rv = VPPCOM_EINVAL;
3677 break;
3678
3679 case VPPCOM_ATTR_SET_REUSEPORT:
3680 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003681 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003682 {
3683 /* VPP-TBD */
3684 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003685 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003686 else
Florin Corasac422d62020-10-19 20:51:36 -07003687 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003688
Florin Coras5e062572019-03-14 19:07:51 -07003689 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003690 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003691 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003692 }
3693 else
3694 rv = VPPCOM_EINVAL;
3695 break;
3696
3697 case VPPCOM_ATTR_GET_BROADCAST:
3698 if (buffer && buflen && (*buflen >= sizeof (int)))
3699 {
3700 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003701 *(int *) buffer = vcl_session_has_attr (session,
3702 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003703 *buflen = sizeof (int);
3704
Florin Coras5e062572019-03-14 19:07:51 -07003705 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3706 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003707 }
3708 else
3709 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003710 break;
3711
3712 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003713 if (buffer && buflen && (*buflen == sizeof (int)))
3714 {
3715 /* VPP-TBD */
3716 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003717 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003718 else
Florin Corasac422d62020-10-19 20:51:36 -07003719 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003720
Florin Coras5e062572019-03-14 19:07:51 -07003721 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003722 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003723 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003724 }
3725 else
3726 rv = VPPCOM_EINVAL;
3727 break;
3728
3729 case VPPCOM_ATTR_GET_V6ONLY:
3730 if (buffer && buflen && (*buflen >= sizeof (int)))
3731 {
3732 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003733 *(int *) buffer = vcl_session_has_attr (session,
3734 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003735 *buflen = sizeof (int);
3736
Florin Coras5e062572019-03-14 19:07:51 -07003737 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3738 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003739 }
3740 else
3741 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003742 break;
3743
3744 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003745 if (buffer && buflen && (*buflen == sizeof (int)))
3746 {
3747 /* VPP-TBD */
3748 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003749 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003750 else
Florin Corasac422d62020-10-19 20:51:36 -07003751 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003752
Florin Coras5e062572019-03-14 19:07:51 -07003753 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003754 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003755 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003756 }
3757 else
3758 rv = VPPCOM_EINVAL;
3759 break;
3760
3761 case VPPCOM_ATTR_GET_KEEPALIVE:
3762 if (buffer && buflen && (*buflen >= sizeof (int)))
3763 {
3764 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003765 *(int *) buffer = vcl_session_has_attr (session,
3766 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003767 *buflen = sizeof (int);
3768
Florin Coras5e062572019-03-14 19:07:51 -07003769 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3770 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003771 }
3772 else
3773 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003774 break;
Stevenbccd3392017-10-12 20:42:21 -07003775
3776 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003777 if (buffer && buflen && (*buflen == sizeof (int)))
3778 {
3779 /* VPP-TBD */
3780 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003781 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003782 else
Florin Corasac422d62020-10-19 20:51:36 -07003783 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003784
Florin Coras5e062572019-03-14 19:07:51 -07003785 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003786 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07003787 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003788 }
3789 else
3790 rv = VPPCOM_EINVAL;
3791 break;
3792
3793 case VPPCOM_ATTR_GET_TCP_NODELAY:
3794 if (buffer && buflen && (*buflen >= sizeof (int)))
3795 {
3796 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003797 *(int *) buffer = vcl_session_has_attr (session,
3798 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003799 *buflen = sizeof (int);
3800
Florin Coras5e062572019-03-14 19:07:51 -07003801 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3802 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003803 }
3804 else
3805 rv = VPPCOM_EINVAL;
3806 break;
3807
3808 case VPPCOM_ATTR_SET_TCP_NODELAY:
3809 if (buffer && buflen && (*buflen == sizeof (int)))
3810 {
3811 /* VPP-TBD */
3812 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003813 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003814 else
Florin Corasac422d62020-10-19 20:51:36 -07003815 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003816
Florin Coras5e062572019-03-14 19:07:51 -07003817 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003818 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07003819 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003820 }
3821 else
3822 rv = VPPCOM_EINVAL;
3823 break;
3824
3825 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3826 if (buffer && buflen && (*buflen >= sizeof (int)))
3827 {
3828 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003829 *(int *) buffer = vcl_session_has_attr (session,
3830 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003831 *buflen = sizeof (int);
3832
Florin Coras5e062572019-03-14 19:07:51 -07003833 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3834 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003835 }
3836 else
3837 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003838 break;
3839
3840 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003841 if (buffer && buflen && (*buflen == sizeof (int)))
3842 {
3843 /* VPP-TBD */
3844 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003845 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003846 else
Florin Corasac422d62020-10-19 20:51:36 -07003847 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003848
Florin Coras5e062572019-03-14 19:07:51 -07003849 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003850 vcl_session_has_attr (session,
3851 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003852 }
3853 else
3854 rv = VPPCOM_EINVAL;
3855 break;
3856
3857 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3858 if (buffer && buflen && (*buflen >= sizeof (int)))
3859 {
3860 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003861 *(int *) buffer = vcl_session_has_attr (session,
3862 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003863 *buflen = sizeof (int);
3864
Florin Coras5e062572019-03-14 19:07:51 -07003865 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3866 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003867 }
3868 else
3869 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003870 break;
3871
3872 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003873 if (buffer && buflen && (*buflen == sizeof (int)))
3874 {
3875 /* VPP-TBD */
3876 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003877 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003878 else
Florin Corasac422d62020-10-19 20:51:36 -07003879 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003880
Florin Coras5e062572019-03-14 19:07:51 -07003881 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003882 vcl_session_has_attr (session,
3883 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003884 }
3885 else
3886 rv = VPPCOM_EINVAL;
3887 break;
3888
3889 case VPPCOM_ATTR_GET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07003890 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05003891 {
Florin Coras04ae8272021-04-12 19:55:37 -07003892 rv = VPPCOM_EINVAL;
3893 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05003894 }
Florin Coras04ae8272021-04-12 19:55:37 -07003895
3896 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
3897 tea.mss = *(u32 *) buffer;
3898 if (vcl_session_transport_attr (wrk, session, 1 /* is_get */, &tea))
3899 rv = VPPCOM_ENOPROTOOPT;
3900
3901 if (!rv)
3902 {
3903 *(u32 *) buffer = tea.mss;
3904 *buflen = sizeof (int);
3905 }
3906
3907 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d", *(int *) buffer,
3908 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003909 break;
3910
3911 case VPPCOM_ATTR_SET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07003912 if (!(buffer && buflen && (*buflen == sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05003913 {
Florin Coras04ae8272021-04-12 19:55:37 -07003914 rv = VPPCOM_EINVAL;
3915 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05003916 }
Florin Coras04ae8272021-04-12 19:55:37 -07003917
3918 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
3919 tea.mss = *(u32 *) buffer;
3920 if (vcl_session_transport_attr (wrk, session, 0 /* is_get */, &tea))
3921 rv = VPPCOM_ENOPROTOOPT;
3922
3923 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d", tea.mss,
3924 *buflen);
Stevenbccd3392017-10-12 20:42:21 -07003925 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003926
Florin Coras1e966172020-05-16 18:18:14 +00003927 case VPPCOM_ATTR_SET_CONNECTED:
3928 session->flags |= VCL_SESSION_F_CONNECTED;
3929 break;
3930
Florin Corasa5a9efd2021-01-05 17:03:29 -08003931 case VPPCOM_ATTR_SET_CKPAIR:
3932 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
3933 !vcl_session_has_crypto (session))
3934 {
3935 rv = VPPCOM_EINVAL;
3936 break;
3937 }
Florin Corasa54b62d2021-04-21 09:05:56 -07003938 if (!session->ext_config)
3939 {
Florin Coras87f63892021-05-01 16:01:40 -07003940 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_CRYPTO,
3941 sizeof (transport_endpt_ext_cfg_t));
Florin Corasa54b62d2021-04-21 09:05:56 -07003942 }
3943 else if (session->ext_config->type != TRANSPORT_ENDPT_EXT_CFG_CRYPTO)
3944 {
3945 rv = VPPCOM_EINVAL;
3946 break;
3947 }
3948
3949 session->ext_config->crypto.ckpair_index = *(uint32_t *) buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003950 break;
3951
Florin Coras6a6555a2021-01-28 11:39:27 -08003952 case VPPCOM_ATTR_SET_VRF:
3953 if (!(buffer && buflen && (*buflen == sizeof (u32))))
3954 {
3955 rv = VPPCOM_EINVAL;
3956 break;
3957 }
3958 session->vrf = *(u32 *) buffer;
3959 break;
3960
3961 case VPPCOM_ATTR_GET_VRF:
3962 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
3963 {
3964 rv = VPPCOM_EINVAL;
3965 break;
3966 }
3967 *(u32 *) buffer = session->vrf;
3968 *buflen = sizeof (u32);
3969 break;
3970
wanghanlin0674f852021-02-22 10:38:36 +08003971 case VPPCOM_ATTR_GET_DOMAIN:
Florin Corasd77325c2021-02-23 12:03:03 -08003972 if (!(buffer && buflen && (*buflen >= sizeof (int))))
wanghanlin0674f852021-02-22 10:38:36 +08003973 {
Florin Corasd77325c2021-02-23 12:03:03 -08003974 rv = VPPCOM_EINVAL;
3975 break;
wanghanlin0674f852021-02-22 10:38:36 +08003976 }
Florin Corasd77325c2021-02-23 12:03:03 -08003977
3978 if (session->transport.is_ip4)
3979 *(int *) buffer = AF_INET;
wanghanlin0674f852021-02-22 10:38:36 +08003980 else
Florin Corasd77325c2021-02-23 12:03:03 -08003981 *(int *) buffer = AF_INET6;
3982 *buflen = sizeof (int);
3983
wanghanlin0674f852021-02-22 10:38:36 +08003984 VDBG (2, "VPPCOM_ATTR_GET_DOMAIN: %d, buflen %u", *(int *) buffer,
3985 *buflen);
3986 break;
3987
Florin Coras87f63892021-05-01 16:01:40 -07003988 case VPPCOM_ATTR_SET_ENDPT_EXT_CFG:
3989 if (!(buffer && buflen && (*buflen > 0)))
3990 {
3991 rv = VPPCOM_EINVAL;
3992 break;
3993 }
3994 if (session->ext_config)
3995 {
3996 rv = VPPCOM_EINVAL;
3997 break;
3998 }
3999 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_NONE,
4000 *buflen + sizeof (u32));
4001 clib_memcpy (session->ext_config->data, buffer, *buflen);
4002 session->ext_config->len = *buflen;
4003 break;
4004
Dave Wallacee22aa742017-10-20 12:30:38 -04004005 default:
4006 rv = VPPCOM_EINVAL;
4007 break;
Dave Wallace35830af2017-10-09 01:43:42 -04004008 }
4009
Dave Wallace35830af2017-10-09 01:43:42 -04004010 return rv;
4011}
4012
Stevenac1f96d2017-10-24 16:03:58 -07004013int
Florin Coras134a9962018-08-28 11:32:04 -07004014vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004015 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4016{
Florin Coras134a9962018-08-28 11:32:04 -07004017 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00004018 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07004019 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07004020
4021 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07004022 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004023 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07004024 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004025 else
4026 {
Florin Corasa7a1a222018-12-30 17:11:31 -08004027 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07004028 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07004029 }
4030
Florin Coras0a1e1832020-03-29 18:54:04 +00004031 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07004032 {
Florin Coras5da10c42020-04-01 04:31:21 +00004033 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07004034 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05004035 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
4036 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07004037 else
Dave Barach178cf492018-11-13 16:34:13 -05004038 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
4039 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00004040 ep->is_ip4 = session->transport.is_ip4;
4041 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07004042 }
Florin Coras460dce62018-07-27 05:45:06 -07004043
Stevenac1f96d2017-10-24 16:03:58 -07004044 return rv;
4045}
4046
4047int
Florin Coras134a9962018-08-28 11:32:04 -07004048vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004049 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4050{
Florin Coras7a2abce2020-04-05 19:25:44 +00004051 vcl_worker_t *wrk = vcl_worker_get_current ();
4052 vcl_session_t *s;
4053
4054 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras0b0d28e2021-06-04 17:31:53 -07004055 if (PREDICT_FALSE (!s))
Florin Coras7a2abce2020-04-05 19:25:44 +00004056 return VPPCOM_EBADFD;
4057
Dave Wallace617dffa2017-10-26 14:47:06 -04004058 if (ep)
4059 {
Florin Coras5824cc52020-10-20 18:44:41 -07004060 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00004061 return VPPCOM_EINVAL;
4062
liuyacanbc0c7542021-08-02 20:15:05 +08004063 s->transport.is_ip4 = ep->is_ip4;
4064 s->transport.rmt_port = ep->port;
4065 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
4066
Florin Coras5da10c42020-04-01 04:31:21 +00004067 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07004068 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00004069 {
Florin Coras5824cc52020-10-20 18:44:41 -07004070 u32 session_index = s->session_index;
4071 f64 timeout = vcm->cfg.session_timeout;
4072 int rv;
4073
Florin Coras5da10c42020-04-01 04:31:21 +00004074 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07004075 rv = vppcom_wait_for_session_state_change (session_index,
4076 VCL_STATE_READY,
4077 timeout);
4078 if (rv < 0)
4079 return rv;
4080 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00004081 }
Dave Wallace617dffa2017-10-26 14:47:06 -04004082 }
4083
4084 if (flags)
4085 {
4086 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07004087 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04004088 }
4089
Florin Coras7a2abce2020-04-05 19:25:44 +00004090 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
4091 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07004092}
4093
Dave Wallace048b1d62018-01-03 22:24:41 -05004094int
4095vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
4096{
Florin Coras134a9962018-08-28 11:32:04 -07004097 vcl_worker_t *wrk = vcl_worker_get_current ();
4098 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05004099 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08004100 svm_msg_q_msg_t msg;
4101 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05004102 int rv, num_ev = 0;
4103
Florin Coras5e062572019-03-14 19:07:51 -07004104 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05004105
4106 if (!vp)
4107 return VPPCOM_EFAULT;
4108
4109 do
4110 {
Florin Coras7e12d942018-06-27 14:32:43 -07004111 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05004112
Florin Coras6917b942018-11-13 22:44:54 -08004113 /* Dequeue all events and drop all unhandled io events */
4114 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
4115 {
4116 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
4117 vcl_handle_mq_event (wrk, e);
4118 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
4119 }
4120 vec_reset_length (wrk->unhandled_evts_vector);
4121
Dave Wallace048b1d62018-01-03 22:24:41 -05004122 for (i = 0; i < n_sids; i++)
4123 {
Florin Coras7baeb712019-01-04 17:05:43 -08004124 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07004125 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08004126 {
4127 vp[i].revents = POLLHUP;
4128 num_ev++;
4129 continue;
4130 }
Dave Wallace048b1d62018-01-03 22:24:41 -05004131
Florin Coras6917b942018-11-13 22:44:54 -08004132 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004133
4134 if (POLLIN & vp[i].events)
4135 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004136 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004137 if (rv > 0)
4138 {
Florin Coras6917b942018-11-13 22:44:54 -08004139 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05004140 num_ev++;
4141 }
4142 else if (rv < 0)
4143 {
4144 switch (rv)
4145 {
4146 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004147 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004148 break;
4149
4150 default:
Florin Coras6917b942018-11-13 22:44:54 -08004151 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004152 break;
4153 }
4154 num_ev++;
4155 }
4156 }
4157
4158 if (POLLOUT & vp[i].events)
4159 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004160 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004161 if (rv > 0)
4162 {
Florin Coras6917b942018-11-13 22:44:54 -08004163 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05004164 num_ev++;
4165 }
4166 else if (rv < 0)
4167 {
4168 switch (rv)
4169 {
4170 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004171 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004172 break;
4173
4174 default:
Florin Coras6917b942018-11-13 22:44:54 -08004175 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004176 break;
4177 }
4178 num_ev++;
4179 }
4180 }
4181
Dave Wallace7e607a72018-06-18 18:41:32 -04004182 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05004183 {
Florin Coras6917b942018-11-13 22:44:54 -08004184 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05004185 num_ev++;
4186 }
4187 }
4188 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07004189 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004190 }
4191 while ((num_ev == 0) && keep_trying);
4192
Dave Wallace048b1d62018-01-03 22:24:41 -05004193 return num_ev;
4194}
4195
Florin Coras99368312018-08-02 10:45:44 -07004196int
4197vppcom_mq_epoll_fd (void)
4198{
Florin Coras134a9962018-08-28 11:32:04 -07004199 vcl_worker_t *wrk = vcl_worker_get_current ();
4200 return wrk->mqs_epfd;
4201}
4202
4203int
Florin Coras30e79c22019-01-02 19:31:22 -08004204vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07004205{
4206 return session_handle & 0xFFFFFF;
4207}
4208
4209int
Florin Coras30e79c22019-01-02 19:31:22 -08004210vppcom_session_worker (vcl_session_handle_t session_handle)
4211{
4212 return session_handle >> 24;
4213}
4214
4215int
Florin Coras134a9962018-08-28 11:32:04 -07004216vppcom_worker_register (void)
4217{
Florin Coras47c40e22018-11-26 17:01:36 -08004218 if (!vcl_worker_alloc_and_init ())
4219 return VPPCOM_EEXIST;
4220
Florin Coras47c40e22018-11-26 17:01:36 -08004221 if (vcl_worker_register_with_vpp ())
4222 return VPPCOM_EEXIST;
4223
4224 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07004225}
4226
Florin Coras369db832019-07-08 12:34:45 -07004227void
4228vppcom_worker_unregister (void)
4229{
4230 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
4231 vcl_set_worker_index (~0);
4232}
4233
Pivo6017ff02020-05-04 17:57:33 +02004234void
4235vppcom_worker_index_set (int index)
4236{
4237 vcl_set_worker_index (index);
4238}
4239
Florin Corasdfe4cf42018-11-28 22:13:45 -08004240int
4241vppcom_worker_index (void)
4242{
4243 return vcl_get_worker_index ();
4244}
4245
Florin Corase0982e52019-01-25 13:19:56 -08004246int
4247vppcom_worker_mqs_epfd (void)
4248{
4249 vcl_worker_t *wrk = vcl_worker_get_current ();
4250 if (!vcm->cfg.use_mq_eventfd)
4251 return -1;
4252 return wrk->mqs_epfd;
4253}
4254
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02004255int
4256vppcom_session_is_connectable_listener (uint32_t session_handle)
4257{
4258 vcl_session_t *session;
4259 vcl_worker_t *wrk = vcl_worker_get_current ();
4260 session = vcl_session_get_w_handle (wrk, session_handle);
4261 if (!session)
4262 return VPPCOM_EBADFD;
4263 return vcl_session_is_connectable_listener (wrk, session);
4264}
4265
4266int
4267vppcom_session_listener (uint32_t session_handle)
4268{
4269 vcl_worker_t *wrk = vcl_worker_get_current ();
4270 vcl_session_t *listen_session, *session;
4271 session = vcl_session_get_w_handle (wrk, session_handle);
4272 if (!session)
4273 return VPPCOM_EBADFD;
4274 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
4275 return VPPCOM_EBADFD;
4276 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
4277 if (!listen_session)
4278 return VPPCOM_EBADFD;
4279 return vcl_session_handle (listen_session);
4280}
4281
4282int
4283vppcom_session_n_accepted (uint32_t session_handle)
4284{
4285 vcl_worker_t *wrk = vcl_worker_get_current ();
4286 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
4287 if (!session)
4288 return VPPCOM_EBADFD;
4289 return session->n_accepted_sessions;
4290}
4291
Florin Coras66ec4672020-06-15 07:59:40 -07004292const char *
4293vppcom_proto_str (vppcom_proto_t proto)
4294{
4295 char const *proto_str;
4296
4297 switch (proto)
4298 {
4299 case VPPCOM_PROTO_TCP:
4300 proto_str = "TCP";
4301 break;
4302 case VPPCOM_PROTO_UDP:
4303 proto_str = "UDP";
4304 break;
4305 case VPPCOM_PROTO_TLS:
4306 proto_str = "TLS";
4307 break;
4308 case VPPCOM_PROTO_QUIC:
4309 proto_str = "QUIC";
4310 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08004311 case VPPCOM_PROTO_DTLS:
4312 proto_str = "DTLS";
4313 break;
Florin Coras6621abf2021-01-06 17:35:17 -08004314 case VPPCOM_PROTO_SRTP:
4315 proto_str = "SRTP";
4316 break;
Florin Coras66ec4672020-06-15 07:59:40 -07004317 default:
4318 proto_str = "UNKNOWN";
4319 break;
4320 }
4321 return proto_str;
4322}
4323
4324const char *
4325vppcom_retval_str (int retval)
4326{
4327 char const *st;
4328
4329 switch (retval)
4330 {
4331 case VPPCOM_OK:
4332 st = "VPPCOM_OK";
4333 break;
4334
4335 case VPPCOM_EAGAIN:
4336 st = "VPPCOM_EAGAIN";
4337 break;
4338
4339 case VPPCOM_EFAULT:
4340 st = "VPPCOM_EFAULT";
4341 break;
4342
4343 case VPPCOM_ENOMEM:
4344 st = "VPPCOM_ENOMEM";
4345 break;
4346
4347 case VPPCOM_EINVAL:
4348 st = "VPPCOM_EINVAL";
4349 break;
4350
4351 case VPPCOM_EBADFD:
4352 st = "VPPCOM_EBADFD";
4353 break;
4354
4355 case VPPCOM_EAFNOSUPPORT:
4356 st = "VPPCOM_EAFNOSUPPORT";
4357 break;
4358
4359 case VPPCOM_ECONNABORTED:
4360 st = "VPPCOM_ECONNABORTED";
4361 break;
4362
4363 case VPPCOM_ECONNRESET:
4364 st = "VPPCOM_ECONNRESET";
4365 break;
4366
4367 case VPPCOM_ENOTCONN:
4368 st = "VPPCOM_ENOTCONN";
4369 break;
4370
4371 case VPPCOM_ECONNREFUSED:
4372 st = "VPPCOM_ECONNREFUSED";
4373 break;
4374
4375 case VPPCOM_ETIMEDOUT:
4376 st = "VPPCOM_ETIMEDOUT";
4377 break;
4378
4379 default:
4380 st = "UNKNOWN_STATE";
4381 break;
4382 }
4383
4384 return st;
4385}
4386
Florin Corasa5a9efd2021-01-05 17:03:29 -08004387int
4388vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4389{
4390 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004391 return vcl_sapi_add_cert_key_pair (ckpair);
4392 else
4393 return vcl_bapi_add_cert_key_pair (ckpair);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004394}
4395
4396int
4397vppcom_del_cert_key_pair (uint32_t ckpair_index)
4398{
4399 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004400 return vcl_sapi_del_cert_key_pair (ckpair_index);
4401 else
4402 return vcl_bapi_del_cert_key_pair (ckpair_index);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004403}
4404
Dave Wallacee22aa742017-10-20 12:30:38 -04004405/*
4406 * fd.io coding-style-patch-verification: ON
4407 *
4408 * Local Variables:
4409 * eval: (c-set-style "gnu")
4410 * End:
4411 */