blob: 6bdeb5a0db2535c9b96e6eb596aa570af80b0a4a [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
Dave Wallace543852a2017-08-03 02:11:34 -040040
Florin Coras697faea2018-06-27 17:10:49 -070041
Florin Coras458089b2019-08-21 16:20:44 -070042static void
Florin Coras4ac25842021-04-19 17:34:54 -070043vcl_msg_add_ext_config (vcl_session_t *s, uword *offset)
44{
45 svm_fifo_chunk_t *c;
46
47 c = vcl_segment_alloc_chunk (vcl_vpp_worker_segment_handle (0),
48 0 /* one slice only */, s->ext_config->len,
49 offset);
50 if (c)
51 clib_memcpy_fast (c->data, s->ext_config, s->ext_config->len);
52}
53
Florin Coras32881932023-02-06 13:30:13 -080054void
55vcl_send_session_listen (vcl_worker_t *wrk, vcl_session_t *s)
Florin Coras458089b2019-08-21 16:20:44 -070056{
57 app_session_evt_t _app_evt, *app_evt = &_app_evt;
58 session_listen_msg_t *mp;
59 svm_msg_q_t *mq;
60
61 mq = vcl_worker_ctrl_mq (wrk);
62 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
63 mp = (session_listen_msg_t *) app_evt->evt->data;
64 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -070065 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -070066 mp->context = s->session_index;
67 mp->wrk_index = wrk->vpp_wrk_index;
68 mp->is_ip4 = s->transport.is_ip4;
69 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
70 mp->port = s->transport.lcl_port;
71 mp->proto = s->session_type;
Florin Coras6a6555a2021-01-28 11:39:27 -080072 mp->vrf = s->vrf;
Florin Coras1e966172020-05-16 18:18:14 +000073 if (s->flags & VCL_SESSION_F_CONNECTED)
74 mp->flags = TRANSPORT_CFG_F_CONNECTED;
Florin Coras4ac25842021-04-19 17:34:54 -070075 if (s->ext_config)
76 vcl_msg_add_ext_config (s, &mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -070077 app_send_ctrl_evt_to_vpp (mq, app_evt);
Florin Coras4ac25842021-04-19 17:34:54 -070078 if (s->ext_config)
79 {
80 clib_mem_free (s->ext_config);
81 s->ext_config = 0;
82 }
Florin Coras32881932023-02-06 13:30:13 -080083 s->flags |= VCL_SESSION_F_PENDING_LISTEN;
Florin Coras458089b2019-08-21 16:20:44 -070084}
85
86static void
87vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
88{
89 app_session_evt_t _app_evt, *app_evt = &_app_evt;
90 session_connect_msg_t *mp;
91 svm_msg_q_t *mq;
92
93 mq = vcl_worker_ctrl_mq (wrk);
94 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
95 mp = (session_connect_msg_t *) app_evt->evt->data;
96 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -070097 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -070098 mp->context = s->session_index;
Filip Tehlar2f09bfc2021-11-15 10:26:56 +000099 mp->dscp = s->dscp;
Florin Coras458089b2019-08-21 16:20:44 -0700100 mp->wrk_index = wrk->vpp_wrk_index;
101 mp->is_ip4 = s->transport.is_ip4;
102 mp->parent_handle = s->parent_handle;
103 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700104 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700105 mp->port = s->transport.rmt_port;
Florin Coras0a1e1832020-03-29 18:54:04 +0000106 mp->lcl_port = s->transport.lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700107 mp->proto = s->session_type;
Florin Coras6a6555a2021-01-28 11:39:27 -0800108 mp->vrf = s->vrf;
Florin Coras0a1e1832020-03-29 18:54:04 +0000109 if (s->flags & VCL_SESSION_F_CONNECTED)
110 mp->flags |= TRANSPORT_CFG_F_CONNECTED;
Florin Coras4ac25842021-04-19 17:34:54 -0700111 if (s->ext_config)
112 vcl_msg_add_ext_config (s, &mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700113 app_send_ctrl_evt_to_vpp (mq, app_evt);
Florin Coras4ac25842021-04-19 17:34:54 -0700114
115 if (s->ext_config)
116 {
117 clib_mem_free (s->ext_config);
118 s->ext_config = 0;
119 }
Florin Coras458089b2019-08-21 16:20:44 -0700120}
121
122void
123vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
124{
125 app_session_evt_t _app_evt, *app_evt = &_app_evt;
126 session_unlisten_msg_t *mp;
127 svm_msg_q_t *mq;
128
129 mq = vcl_worker_ctrl_mq (wrk);
130 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
131 mp = (session_unlisten_msg_t *) app_evt->evt->data;
132 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700133 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700134 mp->wrk_index = wrk->vpp_wrk_index;
135 mp->handle = s->vpp_handle;
136 mp->context = wrk->wrk_index;
137 app_send_ctrl_evt_to_vpp (mq, app_evt);
138}
139
140static void
liuyacan534468e2021-05-09 03:50:40 +0000141vcl_send_session_shutdown (vcl_worker_t *wrk, vcl_session_t *s)
142{
143 app_session_evt_t _app_evt, *app_evt = &_app_evt;
144 session_shutdown_msg_t *mp;
145 svm_msg_q_t *mq;
146
147 /* Send to thread that owns the session */
148 mq = s->vpp_evt_q;
149 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_SHUTDOWN);
150 mp = (session_shutdown_msg_t *) app_evt->evt->data;
151 memset (mp, 0, sizeof (*mp));
152 mp->client_index = wrk->api_client_handle;
153 mp->handle = s->vpp_handle;
154 app_send_ctrl_evt_to_vpp (mq, app_evt);
155}
156
157static void
Florin Coras458089b2019-08-21 16:20:44 -0700158vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
159{
160 app_session_evt_t _app_evt, *app_evt = &_app_evt;
161 session_disconnect_msg_t *mp;
162 svm_msg_q_t *mq;
163
164 /* Send to thread that owns the session */
165 mq = s->vpp_evt_q;
166 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
167 mp = (session_disconnect_msg_t *) app_evt->evt->data;
168 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700169 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700170 mp->handle = s->vpp_handle;
171 app_send_ctrl_evt_to_vpp (mq, app_evt);
172}
173
174static void
175vcl_send_app_detach (vcl_worker_t * wrk)
176{
177 app_session_evt_t _app_evt, *app_evt = &_app_evt;
178 session_app_detach_msg_t *mp;
179 svm_msg_q_t *mq;
180
181 mq = vcl_worker_ctrl_mq (wrk);
182 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
183 mp = (session_app_detach_msg_t *) app_evt->evt->data;
184 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700185 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700186 app_send_ctrl_evt_to_vpp (mq, app_evt);
187}
Florin Coras697faea2018-06-27 17:10:49 -0700188
Florin Coras54693d22018-07-17 10:46:29 -0700189static void
190vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
191 session_handle_t handle, int retval)
192{
193 app_session_evt_t _app_evt, *app_evt = &_app_evt;
194 session_accepted_reply_msg_t *rmp;
195 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
196 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
197 rmp->handle = handle;
198 rmp->context = context;
199 rmp->retval = retval;
200 app_send_ctrl_evt_to_vpp (mq, app_evt);
201}
202
Florin Coras99368312018-08-02 10:45:44 -0700203static void
Florin Coras52dd29f2020-11-18 19:02:17 -0800204vcl_send_session_disconnected_reply (vcl_worker_t * wrk, vcl_session_t * s,
205 int retval)
Florin Coras99368312018-08-02 10:45:44 -0700206{
207 app_session_evt_t _app_evt, *app_evt = &_app_evt;
208 session_disconnected_reply_msg_t *rmp;
Florin Coras52dd29f2020-11-18 19:02:17 -0800209 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
Florin Coras99368312018-08-02 10:45:44 -0700210 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
211 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
Florin Coras52dd29f2020-11-18 19:02:17 -0800212 rmp->handle = s->vpp_handle;
213 rmp->context = wrk->api_client_handle;
Florin Coras99368312018-08-02 10:45:44 -0700214 rmp->retval = retval;
Florin Coras52dd29f2020-11-18 19:02:17 -0800215 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Coras99368312018-08-02 10:45:44 -0700216}
217
Florin Corasc9fbd662018-08-24 12:59:56 -0700218static void
Florin Coras52dd29f2020-11-18 19:02:17 -0800219vcl_send_session_reset_reply (vcl_worker_t * wrk, vcl_session_t * s,
220 int retval)
Florin Corasc9fbd662018-08-24 12:59:56 -0700221{
222 app_session_evt_t _app_evt, *app_evt = &_app_evt;
223 session_reset_reply_msg_t *rmp;
Florin Coras52dd29f2020-11-18 19:02:17 -0800224 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
225 SESSION_CTRL_EVT_RESET_REPLY);
Florin Corasc9fbd662018-08-24 12:59:56 -0700226 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
Florin Coras52dd29f2020-11-18 19:02:17 -0800227 rmp->handle = s->vpp_handle;
228 rmp->context = wrk->api_client_handle;
Florin Corasc9fbd662018-08-24 12:59:56 -0700229 rmp->retval = retval;
Florin Coras52dd29f2020-11-18 19:02:17 -0800230 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Corasc9fbd662018-08-24 12:59:56 -0700231}
232
Florin Coras30e79c22019-01-02 19:31:22 -0800233void
234vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
235 u32 wrk_index)
236{
237 app_session_evt_t _app_evt, *app_evt = &_app_evt;
238 session_worker_update_msg_t *mp;
Florin Coras30e79c22019-01-02 19:31:22 -0800239
Florin Coras52dd29f2020-11-18 19:02:17 -0800240 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
241 SESSION_CTRL_EVT_WORKER_UPDATE);
Florin Coras30e79c22019-01-02 19:31:22 -0800242 mp = (session_worker_update_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700243 mp->client_index = wrk->api_client_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800244 mp->handle = s->vpp_handle;
245 mp->req_wrk_index = wrk->vpp_wrk_index;
246 mp->wrk_index = wrk_index;
Florin Coras52dd29f2020-11-18 19:02:17 -0800247 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Coras30e79c22019-01-02 19:31:22 -0800248}
249
hanlina3a48962020-07-13 11:09:15 +0800250int
Florin Coras40c07ce2020-07-16 20:46:17 -0700251vcl_send_worker_rpc (u32 dst_wrk_index, void *data, u32 data_len)
252{
253 app_session_evt_t _app_evt, *app_evt = &_app_evt;
254 session_app_wrk_rpc_msg_t *mp;
255 vcl_worker_t *dst_wrk, *wrk;
256 svm_msg_q_t *mq;
hanlina3a48962020-07-13 11:09:15 +0800257 int ret = -1;
Florin Coras40c07ce2020-07-16 20:46:17 -0700258
259 if (data_len > sizeof (mp->data))
260 goto done;
261
262 clib_spinlock_lock (&vcm->workers_lock);
263
264 dst_wrk = vcl_worker_get_if_valid (dst_wrk_index);
265 if (!dst_wrk)
266 goto done;
267
268 wrk = vcl_worker_get_current ();
269 mq = vcl_worker_ctrl_mq (wrk);
270 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_WRK_RPC);
271 mp = (session_app_wrk_rpc_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700272 mp->client_index = wrk->api_client_handle;
Florin Coras40c07ce2020-07-16 20:46:17 -0700273 mp->wrk_index = dst_wrk->vpp_wrk_index;
274 clib_memcpy (mp->data, data, data_len);
275 app_send_ctrl_evt_to_vpp (mq, app_evt);
hanlina3a48962020-07-13 11:09:15 +0800276 ret = 0;
Florin Coras40c07ce2020-07-16 20:46:17 -0700277
278done:
279 clib_spinlock_unlock (&vcm->workers_lock);
hanlina3a48962020-07-13 11:09:15 +0800280 return ret;
Florin Coras40c07ce2020-07-16 20:46:17 -0700281}
282
Florin Coras04ae8272021-04-12 19:55:37 -0700283int
284vcl_session_transport_attr (vcl_worker_t *wrk, vcl_session_t *s, u8 is_get,
285 transport_endpt_attr_t *attr)
286{
287 app_session_evt_t _app_evt, *app_evt = &_app_evt;
288 session_transport_attr_msg_t *mp;
289 svm_msg_q_t *mq;
290 f64 timeout;
291
292 ASSERT (!wrk->session_attr_op);
Liangxing Wang22112772022-05-13 04:24:19 +0000293 mq = s->vpp_evt_q;
294 if (PREDICT_FALSE (!mq))
295 {
296 /* FIXME: attribute should be stored and sent once session is
297 * bound/connected to vpp */
298 return 0;
299 }
300
Florin Coras04ae8272021-04-12 19:55:37 -0700301 wrk->session_attr_op = 1;
302 wrk->session_attr_op_rv = -1;
303
Florin Coras04ae8272021-04-12 19:55:37 -0700304 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_TRANSPORT_ATTR);
305 mp = (session_transport_attr_msg_t *) app_evt->evt->data;
306 memset (mp, 0, sizeof (*mp));
307 mp->client_index = wrk->api_client_handle;
308 mp->handle = s->vpp_handle;
309 mp->is_get = is_get;
310 mp->attr = *attr;
311 app_send_ctrl_evt_to_vpp (mq, app_evt);
312
313 timeout = clib_time_now (&wrk->clib_time) + 1;
314
315 while (wrk->session_attr_op && clib_time_now (&wrk->clib_time) < timeout)
316 vcl_flush_mq_events ();
317
318 if (!wrk->session_attr_op_rv && is_get)
319 *attr = wrk->session_attr_rv;
320
321 wrk->session_attr_op = 0;
322
323 return wrk->session_attr_op_rv;
324}
325
Florin Coras54693d22018-07-17 10:46:29 -0700326static u32
Florin Coras00cca802019-06-06 09:38:44 -0700327vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
328 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700329{
330 vcl_session_t *session, *listen_session;
Florin Coras99368312018-08-02 10:45:44 -0700331 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700332
Florin Coras134a9962018-08-28 11:32:04 -0700333 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700334
Florin Coras00cca802019-06-06 09:38:44 -0700335 listen_session = vcl_session_get (wrk, ls_index);
336 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700337 {
Florin Coras00cca802019-06-06 09:38:44 -0700338 VDBG (0, "ERROR: listener handle %lu does not match session %u",
339 mp->listener_handle, ls_index);
340 goto error;
341 }
342
Florin Corasf6e284b2021-07-21 18:17:20 -0700343 if (vcl_segment_attach_session (
344 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
345 mp->vpp_event_queue_address, mp->mq_index, 0, session))
Florin Coras00cca802019-06-06 09:38:44 -0700346 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800347 VDBG (0, "session %u [0x%llx]: failed to attach fifos",
348 session->session_index, mp->handle);
Florin Coras00cca802019-06-06 09:38:44 -0700349 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700350 }
351
Florin Coras54693d22018-07-17 10:46:29 -0700352 session->vpp_handle = mp->handle;
Florin Corasdfffdd72020-10-15 10:54:47 -0700353 session->session_state = VCL_STATE_READY;
qinyangaf9b7152023-06-27 01:11:53 -0700354 if (mp->rmt.is_ip4)
355 {
356 session->original_dst_ip4 = mp->original_dst_ip4;
357 session->original_dst_port = mp->original_dst_port;
358 }
Florin Coras09d18c22019-04-24 11:10:02 -0700359 session->transport.rmt_port = mp->rmt.port;
360 session->transport.is_ip4 = mp->rmt.is_ip4;
361 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500362 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700363
Florin Coras134a9962018-08-28 11:32:04 -0700364 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras67c90a32021-03-09 18:36:06 -0800365 session->transport.lcl_port = mp->lcl.port;
366 session->transport.lcl_ip = mp->lcl.ip;
Florin Coras460dce62018-07-27 05:45:06 -0700367 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200368 session->is_dgram = vcl_proto_is_dgram (session->session_type);
Florin Coras89627e82023-04-27 13:38:35 -0700369 if (session->is_dgram)
370 session->flags |= (listen_session->flags & VCL_SESSION_F_CONNECTED);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200371 session->listener_index = listen_session->session_index;
372 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700373
Florin Coras54693d22018-07-17 10:46:29 -0700374 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
375
Florin Coras00cca802019-06-06 09:38:44 -0700376 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
377 session->vpp_handle, 0);
378
Florin Coras134a9962018-08-28 11:32:04 -0700379 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700380
381error:
Florin Corasb4624182020-12-11 13:58:12 -0800382 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0),
383 mp->vpp_event_queue_address, mp->mq_index, &evt_q);
Florin Coras00cca802019-06-06 09:38:44 -0700384 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
385 VNET_API_ERROR_INVALID_ARGUMENT);
386 vcl_session_free (wrk, session);
387 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700388}
389
390static u32
Florin Coras134a9962018-08-28 11:32:04 -0700391vcl_session_connected_handler (vcl_worker_t * wrk,
392 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700393{
Florin Coras99368312018-08-02 10:45:44 -0700394 vcl_session_t *session = 0;
Florin Coras52dd29f2020-11-18 19:02:17 -0800395 u32 session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700396
397 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700398 session = vcl_session_get (wrk, session_index);
Florin Corasef2c0f12021-11-10 22:44:52 -0800399 if (PREDICT_FALSE (!session))
Florin Coras070453d2018-08-24 17:04:27 -0700400 {
Florin Coras8d42c752021-11-29 23:26:19 -0800401 VERR ("vpp handle 0x%llx has no session index (%u)!", mp->handle,
402 session_index);
Florin Corasef2c0f12021-11-10 22:44:52 -0800403 /* Should not happen but if it does, force vpp session cleanup */
404 vcl_session_t tmp_session = {
405 .vpp_handle = mp->handle,
406 .vpp_evt_q = 0,
407 };
408 vcl_segment_attach_session (
409 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
410 mp->vpp_event_queue_address, mp->mq_index, 0, session);
411 if (tmp_session.vpp_evt_q)
412 vcl_send_session_disconnect (wrk, &tmp_session);
Florin Coras070453d2018-08-24 17:04:27 -0700413 return VCL_INVALID_SESSION_INDEX;
414 }
Florin Coras8d42c752021-11-29 23:26:19 -0800415
Florin Coras54693d22018-07-17 10:46:29 -0700416 if (mp->retval)
417 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800418 VDBG (0, "session %u: connect failed! %U", session_index,
Florin Coras8d42c752021-11-29 23:26:19 -0800419 format_session_error, mp->retval);
Florin Corasc127d5a2020-10-14 16:35:58 -0700420 session->session_state = VCL_STATE_DETACHED;
Florin Coras8d42c752021-11-29 23:26:19 -0800421 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +0530422 session->vpp_error = mp->retval;
Florin Coras070453d2018-08-24 17:04:27 -0700423 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700424 }
425
Florin Corasdbc9c592019-09-25 16:37:43 -0700426 session->vpp_handle = mp->handle;
Florin Corasc547e912020-12-08 17:50:45 -0800427
Florin Coras8d42c752021-11-29 23:26:19 -0800428 /* Add to lookup table. Even if something fails, session cannot be
429 * cleaned up prior to notifying vpp and going through the cleanup
430 * "procedure" see @ref vcl_session_cleanup_handler */
431 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
432
Florin Corasf6e284b2021-07-21 18:17:20 -0700433 if (vcl_segment_attach_session (
434 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
435 mp->vpp_event_queue_address, mp->mq_index, 0, session))
Florin Corasd85de682018-11-29 17:02:29 -0800436 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800437 VDBG (0, "session %u [0x%llx]: failed to attach fifos",
438 session->session_index, session->vpp_handle);
Florin Coras8d42c752021-11-29 23:26:19 -0800439 session->session_state = VCL_STATE_UPDATED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700440 vcl_send_session_disconnect (wrk, session);
441 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800442 }
443
Florin Coras653e43f2019-03-04 10:56:23 -0800444 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700445 {
Florin Corasc547e912020-12-08 17:50:45 -0800446 if (vcl_segment_attach_session (mp->ct_segment_handle, mp->ct_rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700447 mp->ct_tx_fifo, (uword) ~0, ~0, 1,
448 session))
Florin Coras653e43f2019-03-04 10:56:23 -0800449 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800450 VDBG (0, "session %u [0x%llx]: failed to attach ct fifos",
451 session->session_index, session->vpp_handle);
Florin Coras8d42c752021-11-29 23:26:19 -0800452 session->session_state = VCL_STATE_UPDATED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700453 vcl_send_session_disconnect (wrk, session);
454 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800455 }
Florin Coras99368312018-08-02 10:45:44 -0700456 }
Florin Coras54693d22018-07-17 10:46:29 -0700457
Florin Coras09d18c22019-04-24 11:10:02 -0700458 session->transport.is_ip4 = mp->lcl.is_ip4;
459 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500460 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700461 session->transport.lcl_port = mp->lcl.port;
Florin Corasa5ea8212020-08-24 21:23:51 -0700462
463 /* Application closed session before connect reply */
Florin Corasac422d62020-10-19 20:51:36 -0700464 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK)
Florin Corasc127d5a2020-10-14 16:35:58 -0700465 && session->session_state == VCL_STATE_CLOSED)
Florin Corasa5ea8212020-08-24 21:23:51 -0700466 vcl_send_session_disconnect (wrk, session);
467 else
Florin Corasdfffdd72020-10-15 10:54:47 -0700468 session->session_state = VCL_STATE_READY;
Florin Coras54693d22018-07-17 10:46:29 -0700469
Florin Coras5ffb9642021-12-03 17:24:13 -0800470 VDBG (0, "session %u [0x%llx] connected local: %U:%u remote %U:%u",
471 session->session_index, session->vpp_handle, vcl_format_ip46_address,
472 &session->transport.lcl_ip,
473 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
474 clib_net_to_host_u16 (session->transport.lcl_port),
475 vcl_format_ip46_address, &session->transport.rmt_ip,
476 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
477 clib_net_to_host_u16 (session->transport.rmt_port));
Florin Coras070453d2018-08-24 17:04:27 -0700478
Florin Coras54693d22018-07-17 10:46:29 -0700479 return session_index;
480}
481
Florin Coras3c7d4f92018-12-14 11:28:43 -0800482static int
483vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
484{
485 vcl_session_msg_t *accepted_msg;
486 int i;
487
488 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
489 {
490 accepted_msg = &session->accept_evts_fifo[i];
491 if (accepted_msg->accepted_msg.handle == handle)
492 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800493 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800494 return 1;
495 }
496 }
497 return 0;
498}
499
Florin Corasc9fbd662018-08-24 12:59:56 -0700500static u32
Florin Coras134a9962018-08-28 11:32:04 -0700501vcl_session_reset_handler (vcl_worker_t * wrk,
502 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700503{
504 vcl_session_t *session;
505 u32 sid;
506
Florin Coras134a9962018-08-28 11:32:04 -0700507 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
508 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700509 if (!session)
510 {
511 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
512 return VCL_INVALID_SESSION_INDEX;
513 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800514
515 /* Caught a reset before actually accepting the session */
wanghanlin696db202023-08-07 17:23:53 +0800516 if (session->session_state == VCL_STATE_LISTEN ||
517 session->session_state == VCL_STATE_LISTEN_NO_MQ)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800518 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800519 if (!vcl_flag_accepted_session (session, reset_msg->handle,
520 VCL_ACCEPTED_F_RESET))
521 VDBG (0, "session was not accepted!");
522 return VCL_INVALID_SESSION_INDEX;
523 }
524
Florin Corasc127d5a2020-10-14 16:35:58 -0700525 if (session->session_state != VCL_STATE_CLOSED)
526 session->session_state = VCL_STATE_DISCONNECT;
Yacan Liuf5e0a172022-09-20 14:19:19 +0800527
528 session->flags |= (VCL_SESSION_F_RD_SHUTDOWN | VCL_SESSION_F_WR_SHUTDOWN);
Florin Coras5ffb9642021-12-03 17:24:13 -0800529 VDBG (0, "session %u [0x%llx]: reset", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700530 return sid;
531}
532
Florin Coras60116992018-08-27 09:52:18 -0700533static u32
Florin Coras134a9962018-08-28 11:32:04 -0700534vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700535{
536 vcl_session_t *session;
537 u32 sid = mp->context;
538
Florin Coras134a9962018-08-28 11:32:04 -0700539 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700540 if (mp->retval)
541 {
Florin Coras5e062572019-03-14 19:07:51 -0700542 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700543 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700544 if (session)
545 {
Florin Corasc127d5a2020-10-14 16:35:58 -0700546 session->session_state = VCL_STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700547 session->vpp_handle = mp->handle;
548 return sid;
549 }
550 else
551 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800552 VDBG (0, "session %u [0x%llx]: Invalid session index!", sid,
553 mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700554 return VCL_INVALID_SESSION_INDEX;
555 }
556 }
557
558 session->vpp_handle = mp->handle;
559 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500560 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
561 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700562 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700563 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Corasc127d5a2020-10-14 16:35:58 -0700564 session->session_state = VCL_STATE_LISTEN;
Florin Coras32881932023-02-06 13:30:13 -0800565 session->flags &= ~VCL_SESSION_F_PENDING_LISTEN;
Florin Coras5f45e012019-01-23 09:21:30 -0800566
Florin Coras6e3c1f82020-01-15 01:30:46 +0000567 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700568 {
Florin Corasc547e912020-12-08 17:50:45 -0800569 if (vcl_segment_attach_session (mp->segment_handle, mp->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700570 mp->tx_fifo, mp->vpp_evt_q, mp->mq_index,
571 0, session))
Florin Corasc547e912020-12-08 17:50:45 -0800572 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800573 VDBG (0, "session %u [0x%llx]: failed to attach fifos",
574 session->session_index, session->vpp_handle);
Florin Corasc547e912020-12-08 17:50:45 -0800575 session->session_state = VCL_STATE_DETACHED;
576 return VCL_INVALID_SESSION_INDEX;
577 }
Florin Coras60116992018-08-27 09:52:18 -0700578 }
579
Florin Coras05ecfcc2018-12-12 18:19:39 -0800580 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700581 return sid;
582}
583
Florin Corasdfae9f92019-02-20 19:48:31 -0800584static void
585vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
586{
587 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
588 vcl_session_t *s;
589
590 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000591 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800592 {
593 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
594 return;
595 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700596 if (s->session_state != VCL_STATE_DISCONNECT)
Florin Coras0a1e1832020-03-29 18:54:04 +0000597 {
598 /* Connected udp listener */
599 if (s->session_type == VPPCOM_PROTO_UDP
Florin Corasc127d5a2020-10-14 16:35:58 -0700600 && s->session_state == VCL_STATE_CLOSED)
Florin Coras0a1e1832020-03-29 18:54:04 +0000601 return;
602
603 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
604 return;
605 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800606
607 if (mp->retval)
608 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700609 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800610
611 if (mp->context != wrk->wrk_index)
612 VDBG (0, "wrong context");
613
614 vcl_session_table_del_vpp_handle (wrk, mp->handle);
615 vcl_session_free (wrk, s);
616}
617
Florin Coras68b7e582020-01-21 18:33:23 -0800618static void
619vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
620{
621 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
622 vcl_session_t *s;
Florin Corasc547e912020-12-08 17:50:45 -0800623 u32 fs_index;
Florin Coras68b7e582020-01-21 18:33:23 -0800624
625 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
626 if (!s)
627 {
628 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
629 return;
630 }
631
Florin Coras1bb74942021-02-10 15:26:37 -0800632 /* Only validate if a value is provided */
633 if (mp->segment_handle != SESSION_INVALID_HANDLE)
Florin Corasc547e912020-12-08 17:50:45 -0800634 {
Florin Coras1bb74942021-02-10 15:26:37 -0800635 fs_index = vcl_segment_table_lookup (mp->segment_handle);
636 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
637 {
638 VDBG (0, "segment %lx for session %u is not mounted!",
639 mp->segment_handle, s->session_index);
640 s->session_state = VCL_STATE_DETACHED;
641 return;
642 }
Florin Corasc547e912020-12-08 17:50:45 -0800643 }
644
Florin Coras57660d92020-04-04 22:45:34 +0000645 s->vpp_handle = mp->new_handle;
Florin Corasb4624182020-12-11 13:58:12 -0800646
647 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0), mp->vpp_evt_q,
648 mp->vpp_thread_index, &s->vpp_evt_q);
Florin Coras68b7e582020-01-21 18:33:23 -0800649
Florin Coras68b7e582020-01-21 18:33:23 -0800650 vcl_session_table_del_vpp_handle (wrk, mp->handle);
651 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
652
653 /* Generate new tx event if we have outstanding data */
654 if (svm_fifo_has_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -0800655 app_send_io_evt_to_vpp (s->vpp_evt_q,
656 s->tx_fifo->shr->master_session_index,
Florin Coras68b7e582020-01-21 18:33:23 -0800657 SESSION_IO_EVT_TX, SVM_Q_WAIT);
658
Florin Coras57660d92020-04-04 22:45:34 +0000659 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
Florin Coras52dd29f2020-11-18 19:02:17 -0800660 mp->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800661}
662
Florin Coras3c7d4f92018-12-14 11:28:43 -0800663static vcl_session_t *
664vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
665{
666 vcl_session_msg_t *vcl_msg;
667 vcl_session_t *session;
668
669 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
670 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800671 VWRN ("session overlap handle %lu state %u!", msg->handle,
672 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800673
674 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
675 if (!session)
676 {
677 VERR ("couldn't find listen session: listener handle %llx",
678 msg->listener_handle);
679 return 0;
680 }
681
682 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000683 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800684 vcl_msg->accepted_msg = *msg;
685 /* Session handle points to listener until fully accepted by app */
686 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
687
688 return session;
689}
690
691static vcl_session_t *
692vcl_session_disconnected_handler (vcl_worker_t * wrk,
693 session_disconnected_msg_t * msg)
694{
695 vcl_session_t *session;
696
697 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
698 if (!session)
699 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800700 VWRN ("request to disconnect unknown handle 0x%llx", msg->handle);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800701 return 0;
702 }
703
Florin Corasadcfb152020-02-12 08:50:29 +0000704 /* Late disconnect notification on a session that has been closed */
Florin Corasc127d5a2020-10-14 16:35:58 -0700705 if (session->session_state == VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000706 return 0;
707
Florin Coras3c7d4f92018-12-14 11:28:43 -0800708 /* Caught a disconnect before actually accepting the session */
wanghanlin696db202023-08-07 17:23:53 +0800709 if (session->session_state == VCL_STATE_LISTEN ||
710 session->session_state == VCL_STATE_LISTEN_NO_MQ)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800711 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800712 if (!vcl_flag_accepted_session (session, msg->handle,
713 VCL_ACCEPTED_F_CLOSED))
714 VDBG (0, "session was not accepted!");
715 return 0;
716 }
717
Florin Corasadcfb152020-02-12 08:50:29 +0000718 /* If not already reset change state */
Florin Corasc127d5a2020-10-14 16:35:58 -0700719 if (session->session_state != VCL_STATE_DISCONNECT)
720 session->session_state = VCL_STATE_VPP_CLOSING;
Florin Corasadcfb152020-02-12 08:50:29 +0000721
Florin Coras3c7d4f92018-12-14 11:28:43 -0800722 return session;
723}
724
liuyacan534468e2021-05-09 03:50:40 +0000725int
liuyacan55c952e2021-06-13 14:54:55 +0800726vppcom_session_shutdown (uint32_t session_handle, int how)
liuyacan534468e2021-05-09 03:50:40 +0000727{
728 vcl_worker_t *wrk = vcl_worker_get_current ();
729 vcl_session_t *session;
730 vcl_session_state_t state;
731 u64 vpp_handle;
732
733 session = vcl_session_get_w_handle (wrk, session_handle);
734 if (PREDICT_FALSE (!session))
735 return VPPCOM_EBADFD;
736
737 vpp_handle = session->vpp_handle;
738 state = session->session_state;
739
740 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
Florin Coras60687192021-11-29 21:00:47 -0800741 vpp_handle, state, vcl_session_state_str (state));
liuyacan534468e2021-05-09 03:50:40 +0000742
743 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
744 {
745 VDBG (0, "ERROR: Cannot shutdown a listen socket!");
746 return VPPCOM_EBADFD;
747 }
748
liuyacan55c952e2021-06-13 14:54:55 +0800749 if (how == SHUT_RD || how == SHUT_RDWR)
750 {
751 session->flags |= VCL_SESSION_F_RD_SHUTDOWN;
752 if (how == SHUT_RD)
753 return VPPCOM_OK;
754 }
755 session->flags |= VCL_SESSION_F_WR_SHUTDOWN;
756
liuyacan534468e2021-05-09 03:50:40 +0000757 if (PREDICT_TRUE (state == VCL_STATE_READY))
758 {
759 VDBG (1, "session %u [0x%llx]: sending shutdown...",
760 session->session_index, vpp_handle);
761
762 vcl_send_session_shutdown (wrk, session);
liuyacan534468e2021-05-09 03:50:40 +0000763 }
764
765 return VPPCOM_OK;
766}
767
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700768static int
769vppcom_session_disconnect (u32 session_handle)
770{
771 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700772 vcl_session_t *session, *listen_session;
773 vcl_session_state_t state;
774 u64 vpp_handle;
775
776 session = vcl_session_get_w_handle (wrk, session_handle);
777 if (!session)
778 return VPPCOM_EBADFD;
779
780 vpp_handle = session->vpp_handle;
781 state = session->session_state;
782
Florin Coras5ffb9642021-12-03 17:24:13 -0800783 VDBG (1, "session %u [0x%llx]: disconnecting state (%s)",
784 session->session_index, vpp_handle, vcl_session_state_str (state));
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700785
786 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
787 {
788 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
789 return VPPCOM_EBADFD;
790 }
791
792 if (state == VCL_STATE_VPP_CLOSING)
793 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800794 vcl_send_session_disconnected_reply (wrk, session, 0);
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700795 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
796 session->session_index, vpp_handle);
797 }
798 else
799 {
800 /* Session doesn't have an event queue yet. Probably a non-blocking
801 * connect. Wait for the reply */
802 if (PREDICT_FALSE (!session->vpp_evt_q))
803 return VPPCOM_OK;
804
Florin Coras5ffb9642021-12-03 17:24:13 -0800805 VDBG (1, "session %u [0x%llx]: sending disconnect",
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700806 session->session_index, vpp_handle);
807 vcl_send_session_disconnect (wrk, session);
808 }
809
810 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
811 {
812 listen_session = vcl_session_get (wrk, session->listener_index);
Florin Corasb52bd3a2022-06-28 20:01:20 -0700813 if (listen_session)
814 listen_session->n_accepted_sessions--;
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700815 }
816
817 return VPPCOM_OK;
818}
819
Florin Coras30e79c22019-01-02 19:31:22 -0800820static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700821vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
822{
823 session_cleanup_msg_t *msg;
824 vcl_session_t *session;
825
826 msg = (session_cleanup_msg_t *) data;
827 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
828 if (!session)
829 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800830 VWRN ("disconnect confirmed for unknown handle 0x%llx", msg->handle);
Florin Coras9ace36d2019-10-28 13:14:17 -0700831 return;
832 }
833
Florin Coras36d49392020-04-24 23:00:11 +0000834 if (msg->type == SESSION_CLEANUP_TRANSPORT)
835 {
836 /* Transport was cleaned up before we confirmed close. Probably the
837 * app is still waiting for some data that cannot be delivered.
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700838 * Confirm close to make sure everything is cleaned up.
839 * Move to undetermined state to ensure that the session is not
840 * removed before both vpp and the app cleanup.
841 * - If the app closes first, the session is moved to CLOSED state
842 * and the session cleanup notification from vpp removes the
843 * session.
844 * - If vpp cleans up the session first, the session is moved to
845 * DETACHED state lower and subsequently the close from the app
846 * frees the session
847 */
848 if (session->session_state == VCL_STATE_VPP_CLOSING)
Florin Coras0ff7eec2020-08-03 18:55:40 -0700849 {
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700850 vppcom_session_disconnect (vcl_session_handle (session));
851 session->session_state = VCL_STATE_UPDATED;
852 }
853 else if (session->session_state == VCL_STATE_DISCONNECT)
854 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800855 vcl_send_session_reset_reply (wrk, session, 0);
Florin Coras0ff7eec2020-08-03 18:55:40 -0700856 session->session_state = VCL_STATE_UPDATED;
857 }
Florin Coras36d49392020-04-24 23:00:11 +0000858 return;
859 }
860
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800861 /* VPP will reuse the handle so clean it up now */
Florin Coras9ace36d2019-10-28 13:14:17 -0700862 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800863
864 /* App did not close the connection yet so don't free it. */
Florin Corasc127d5a2020-10-14 16:35:58 -0700865 if (session->session_state != VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000866 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800867 VDBG (0, "session %u: app did not close", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700868 session->session_state = VCL_STATE_DETACHED;
Florin Corasadcfb152020-02-12 08:50:29 +0000869 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
870 return;
871 }
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800872
873 /* Session probably tracked with epoll, disconnect not yet handled and
874 * 1) both transport and session cleanup completed 2) app closed. Wait
875 * until message is drained to free the session.
876 * See @ref vcl_handle_mq_event */
877 if (session->flags & VCL_SESSION_F_PENDING_DISCONNECT)
878 {
879 session->flags |= VCL_SESSION_F_PENDING_FREE;
880 return;
881 }
882
Florin Coras9ace36d2019-10-28 13:14:17 -0700883 vcl_session_free (wrk, session);
884}
885
886static void
Florin Coras30e79c22019-01-02 19:31:22 -0800887vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
888{
889 session_req_worker_update_msg_t *msg;
890 vcl_session_t *s;
891
892 msg = (session_req_worker_update_msg_t *) data;
893 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
894 if (!s)
895 return;
896
897 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
898}
899
900static void
901vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
902{
903 session_worker_update_reply_msg_t *msg;
904 vcl_session_t *s;
905
906 msg = (session_worker_update_reply_msg_t *) data;
907 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
908 if (!s)
909 {
910 VDBG (0, "unknown handle 0x%llx", msg->handle);
911 return;
912 }
Florin Coras30e79c22019-01-02 19:31:22 -0800913
Florin Coras5f45e012019-01-23 09:21:30 -0800914 if (s->rx_fifo)
915 {
Florin Corasc547e912020-12-08 17:50:45 -0800916 if (vcl_segment_attach_session (msg->segment_handle, msg->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700917 msg->tx_fifo, (uword) ~0, ~0, 0, s))
Florin Corasc547e912020-12-08 17:50:45 -0800918 {
919 VDBG (0, "failed to attach fifos for %u", s->session_index);
920 return;
921 }
Florin Coras5f45e012019-01-23 09:21:30 -0800922 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700923 s->session_state = VCL_STATE_UPDATED;
Florin Coras30e79c22019-01-02 19:31:22 -0800924
Florin Coras30e79c22019-01-02 19:31:22 -0800925 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
926 s->vpp_handle, wrk->wrk_index);
927}
928
Florin Coras935ce752020-09-08 22:43:47 -0700929static int
930vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
931{
932
933 if (vcm->cfg.vpp_app_socket_api)
934 return vcl_sapi_recv_fds (wrk, fds, n_fds);
935
936 return vcl_bapi_recv_fds (wrk, fds, n_fds);
937}
938
Florin Corasc4c4cf52019-08-24 18:17:34 -0700939static void
940vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
941{
942 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
943 session_app_add_segment_msg_t *msg;
944 u64 segment_handle;
945 int fd = -1;
946
947 msg = (session_app_add_segment_msg_t *) data;
948
949 if (msg->fd_flags)
950 {
Florin Coras935ce752020-09-08 22:43:47 -0700951 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700952 seg_type = SSVM_SEGMENT_MEMFD;
953 }
954
955 segment_handle = msg->segment_handle;
956 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
957 {
958 clib_warning ("invalid segment handle");
959 return;
960 }
961
962 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
963 seg_type, fd))
964 {
965 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
966 return;
967 }
968
969 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
970 msg->segment_size);
971}
972
973static void
974vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
975{
976 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
977 vcl_segment_detach (msg->segment_handle);
Florin Coras1f40ab42023-06-13 17:18:56 -0700978 VDBG (1, "Unmapped segment: %lx", msg->segment_handle);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700979}
980
Florin Coras40c07ce2020-07-16 20:46:17 -0700981static void
982vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
983{
984 if (!vcm->wrk_rpc_fn)
985 return;
986
hanlina3a48962020-07-13 11:09:15 +0800987 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700988}
989
Florin Coras04ae8272021-04-12 19:55:37 -0700990static void
991vcl_session_transport_attr_reply_handler (vcl_worker_t *wrk, void *data)
992{
993 session_transport_attr_reply_msg_t *mp;
994
995 if (!wrk->session_attr_op)
996 return;
997
998 mp = (session_transport_attr_reply_msg_t *) data;
999
1000 wrk->session_attr_op_rv = mp->retval;
1001 wrk->session_attr_op = 0;
1002 wrk->session_attr_rv = mp->attr;
1003}
1004
Florin Coras86f04502018-09-12 16:08:01 -07001005static int
1006vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -07001007{
Florin Coras54693d22018-07-17 10:46:29 -07001008 session_disconnected_msg_t *disconnected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07001009 session_connected_msg_t *connected_msg;
1010 session_reset_msg_t *reset_msg;
1011 session_event_t *ecpy;
Florin Corasc127d5a2020-10-14 16:35:58 -07001012 vcl_session_t *s;
Florin Corasb242d312020-10-26 15:35:40 -07001013 u32 sid;
Florin Coras54693d22018-07-17 10:46:29 -07001014
1015 switch (e->event_type)
1016 {
Florin Coras653e43f2019-03-04 10:56:23 -08001017 case SESSION_IO_EVT_RX:
1018 case SESSION_IO_EVT_TX:
Florin Corasc127d5a2020-10-14 16:35:58 -07001019 s = vcl_session_get (wrk, e->session_index);
Florin Coras1bc919e2020-10-18 20:17:49 -07001020 if (!s || !vcl_session_is_open (s))
Florin Coras653e43f2019-03-04 10:56:23 -08001021 break;
Florin Coras86f04502018-09-12 16:08:01 -07001022 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -07001023 break;
Florin Corasb242d312020-10-26 15:35:40 -07001024 case SESSION_CTRL_EVT_BOUND:
1025 /* We can only wait for only one listen so not postponed */
1026 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
1027 break;
Florin Coras54693d22018-07-17 10:46:29 -07001028 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07001029 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
1030 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1031 {
1032 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1033 *ecpy = *e;
1034 ecpy->postponed = 1;
1035 ecpy->session_index = s->session_index;
1036 }
Florin Coras54693d22018-07-17 10:46:29 -07001037 break;
1038 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07001039 connected_msg = (session_connected_msg_t *) e->data;
1040 sid = vcl_session_connected_handler (wrk, connected_msg);
1041 if (!(s = vcl_session_get (wrk, sid)))
1042 break;
1043 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1044 {
1045 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1046 *ecpy = *e;
1047 ecpy->postponed = 1;
1048 ecpy->session_index = s->session_index;
1049 }
Florin Coras54693d22018-07-17 10:46:29 -07001050 break;
1051 case SESSION_CTRL_EVT_DISCONNECTED:
1052 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07001053 if (!(s = vcl_session_get_w_vpp_handle (wrk, disconnected_msg->handle)))
1054 break;
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001055 if (s->session_state == VCL_STATE_CLOSED)
1056 break;
wanghanlin4747b342023-08-08 10:40:04 +08001057 /* We do not postpone for blocking sessions or listen sessions because:
1058 * 1. Blocking sessions are not part of epoll instead they're used in a
1059 * synchronous manner, such as read/write and etc.
1060 * 2. Listen sessions that have not yet been accepted can't change to
1061 * VPP_CLOSING state instead can been marked as ACCEPTED_F_CLOSED.
1062 */
1063 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK) &&
1064 !(s->session_state == VCL_STATE_LISTEN ||
1065 s->session_state == VCL_STATE_LISTEN_NO_MQ))
Florin Corasb242d312020-10-26 15:35:40 -07001066 {
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001067 s->session_state = VCL_STATE_VPP_CLOSING;
1068 s->flags |= VCL_SESSION_F_PENDING_DISCONNECT;
1069 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1070 *ecpy = *e;
1071 ecpy->postponed = 1;
1072 ecpy->session_index = s->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07001073 break;
1074 }
1075 if (!(s = vcl_session_disconnected_handler (wrk, disconnected_msg)))
Florin Coras3c7d4f92018-12-14 11:28:43 -08001076 break;
Florin Corasc127d5a2020-10-14 16:35:58 -07001077 VDBG (0, "disconnected session %u [0x%llx]", s->session_index,
1078 s->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -07001079 break;
1080 case SESSION_CTRL_EVT_RESET:
Florin Corasb242d312020-10-26 15:35:40 -07001081 reset_msg = (session_reset_msg_t *) e->data;
1082 if (!(s = vcl_session_get_w_vpp_handle (wrk, reset_msg->handle)))
1083 break;
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001084 if (s->session_state == VCL_STATE_CLOSED)
1085 break;
wanghanlin4747b342023-08-08 10:40:04 +08001086 /* We do not postpone for blocking sessions or listen sessions because:
1087 * 1. Blocking sessions are not part of epoll instead they're used in a
1088 * synchronous manner, such as read/write and etc.
1089 * 2. Listen sessions that have not yet been accepted can't change to
1090 * DISCONNECT state instead can been marked as ACCEPTED_F_RESET.
1091 */
1092 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK) &&
1093 !(s->session_state == VCL_STATE_LISTEN ||
1094 s->session_state == VCL_STATE_LISTEN_NO_MQ))
Florin Corasb242d312020-10-26 15:35:40 -07001095 {
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001096 s->flags |= VCL_SESSION_F_PENDING_DISCONNECT;
1097 s->session_state = VCL_STATE_DISCONNECT;
Yacan Liuf5e0a172022-09-20 14:19:19 +08001098 s->flags |= (VCL_SESSION_F_RD_SHUTDOWN | VCL_SESSION_F_WR_SHUTDOWN);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001099 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1100 *ecpy = *e;
1101 ecpy->postponed = 1;
1102 ecpy->session_index = s->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07001103 break;
1104 }
Florin Coras134a9962018-08-28 11:32:04 -07001105 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -07001106 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08001107 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
1108 vcl_session_unlisten_reply_handler (wrk, e->data);
1109 break;
Florin Coras68b7e582020-01-21 18:33:23 -08001110 case SESSION_CTRL_EVT_MIGRATED:
1111 vcl_session_migrated_handler (wrk, e->data);
1112 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07001113 case SESSION_CTRL_EVT_CLEANUP:
1114 vcl_session_cleanup_handler (wrk, e->data);
1115 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001116 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1117 vcl_session_req_worker_update_handler (wrk, e->data);
1118 break;
1119 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1120 vcl_session_worker_update_reply_handler (wrk, e->data);
1121 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07001122 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
1123 vcl_session_app_add_segment_handler (wrk, e->data);
1124 break;
1125 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
1126 vcl_session_app_del_segment_handler (wrk, e->data);
1127 break;
hanlina3a48962020-07-13 11:09:15 +08001128 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07001129 vcl_worker_rpc_handler (wrk, e->data);
1130 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001131 case SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY:
1132 vcl_session_transport_attr_reply_handler (wrk, e->data);
1133 break;
Florin Coras54693d22018-07-17 10:46:29 -07001134 default:
1135 clib_warning ("unhandled %u", e->event_type);
1136 }
1137 return VPPCOM_OK;
1138}
1139
Florin Coras30e79c22019-01-02 19:31:22 -08001140static int
Florin Coras697faea2018-06-27 17:10:49 -07001141vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -08001142 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -07001143 f64 wait_for_time)
1144{
Florin Coras134a9962018-08-28 11:32:04 -07001145 vcl_worker_t *wrk = vcl_worker_get_current ();
1146 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001147 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001148 svm_msg_q_msg_t msg;
1149 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001150
Florin Coras697faea2018-06-27 17:10:49 -07001151 do
Dave Wallace543852a2017-08-03 02:11:34 -04001152 {
Florin Coras134a9962018-08-28 11:32:04 -07001153 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001154 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001155 {
Florin Coras070453d2018-08-24 17:04:27 -07001156 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001157 }
Florin Corasdfffdd72020-10-15 10:54:47 -07001158 if (session->session_state == state)
Florin Coras697faea2018-06-27 17:10:49 -07001159 {
Florin Coras697faea2018-06-27 17:10:49 -07001160 return VPPCOM_OK;
1161 }
Florin Corasc127d5a2020-10-14 16:35:58 -07001162 if (session->session_state == VCL_STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001163 {
Florin Coras697faea2018-06-27 17:10:49 -07001164 return VPPCOM_ECONNREFUSED;
1165 }
Florin Coras54693d22018-07-17 10:46:29 -07001166
Florin Coras134a9962018-08-28 11:32:04 -07001167 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001168 {
1169 usleep (100);
1170 continue;
1171 }
Florin Coras134a9962018-08-28 11:32:04 -07001172 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001173 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001174 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001175 }
Florin Coras134a9962018-08-28 11:32:04 -07001176 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001177
Florin Coras05ecfcc2018-12-12 18:19:39 -08001178 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras60687192021-11-29 21:00:47 -08001179 vcl_session_state_str (state));
Florin Coras697faea2018-06-27 17:10:49 -07001180 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001181
Florin Coras697faea2018-06-27 17:10:49 -07001182 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001183}
1184
Florin Coras30e79c22019-01-02 19:31:22 -08001185static void
1186vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1187{
Florin Coras288eaab2019-02-03 15:26:14 -08001188 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001189 vcl_session_t *s;
1190 u32 *sip;
1191
1192 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1193 return;
1194
1195 vec_foreach (sip, wrk->pending_session_wrk_updates)
1196 {
1197 s = vcl_session_get (wrk, *sip);
1198 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1199 state = s->session_state;
Florin Corasc127d5a2020-10-14 16:35:58 -07001200 vppcom_wait_for_session_state_change (s->session_index, VCL_STATE_UPDATED,
1201 5);
Florin Coras30e79c22019-01-02 19:31:22 -08001202 s->session_state = state;
1203 }
1204 vec_reset_length (wrk->pending_session_wrk_updates);
1205}
1206
Florin Corasf9240dc2019-01-15 08:03:17 -08001207void
Florin Coras5398dfb2021-01-25 20:31:27 -08001208vcl_worker_flush_mq_events (vcl_worker_t *wrk)
Florin Coras30e79c22019-01-02 19:31:22 -08001209{
Florin Coras30e79c22019-01-02 19:31:22 -08001210 svm_msg_q_msg_t *msg;
1211 session_event_t *e;
1212 svm_msg_q_t *mq;
1213 int i;
1214
1215 mq = wrk->app_event_queue;
Florin Corase003a1b2019-06-05 10:47:16 -07001216 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001217
1218 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1219 {
1220 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1221 e = svm_msg_q_msg_data (mq, msg);
1222 vcl_handle_mq_event (wrk, e);
1223 svm_msg_q_free_msg (mq, msg);
1224 }
1225 vec_reset_length (wrk->mq_msg_vector);
1226 vcl_handle_pending_wrk_updates (wrk);
1227}
1228
Florin Coras5398dfb2021-01-25 20:31:27 -08001229void
1230vcl_flush_mq_events (void)
1231{
1232 vcl_worker_flush_mq_events (vcl_worker_get_current ());
1233}
1234
Florin Coras697faea2018-06-27 17:10:49 -07001235static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001236vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001237{
Florin Coras134a9962018-08-28 11:32:04 -07001238 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001239 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001240 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001241 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001242
Florin Corasab2f6db2018-08-31 14:31:41 -07001243 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001244 if (!session)
1245 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001246
Florin Corasaaff5ee2019-07-08 13:00:00 -07001247 /* Flush pending accept events, if any */
1248 while (clib_fifo_elts (session->accept_evts_fifo))
1249 {
1250 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1251 accepted_msg = &evt->accepted_msg;
1252 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1253 vcl_send_session_accepted_reply (session->vpp_evt_q,
1254 accepted_msg->context,
wanghanlin785b6ea2020-12-10 19:12:22 +08001255 accepted_msg->handle, -1);
Florin Corasaaff5ee2019-07-08 13:00:00 -07001256 }
1257 clib_fifo_free (session->accept_evts_fifo);
1258
Florin Coras458089b2019-08-21 16:20:44 -07001259 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001260
Florin Coras32881932023-02-06 13:30:13 -08001261 VDBG (0, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001262 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001263 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001264
1265 session->vpp_handle = ~0;
Florin Corasc127d5a2020-10-14 16:35:58 -07001266 session->session_state = VCL_STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001267
Florin Coras070453d2018-08-24 17:04:27 -07001268 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001269}
1270
Florin Coras940f78f2018-11-30 12:11:20 -08001271/**
1272 * Handle app exit
1273 *
1274 * Notify vpp of the disconnect and mark the worker as free. If we're the
1275 * last worker, do a full cleanup otherwise, since we're probably a forked
1276 * child, avoid syscalls as much as possible. We might've lost privileges.
1277 */
1278void
1279vppcom_app_exit (void)
1280{
1281 if (!pool_elts (vcm->workers))
1282 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001283 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1284 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001285 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001286}
1287
Florin Coras935ce752020-09-08 22:43:47 -07001288static int
1289vcl_api_attach (void)
1290{
1291 if (vcm->cfg.vpp_app_socket_api)
1292 return vcl_sapi_attach ();
1293
1294 return vcl_bapi_attach ();
1295}
1296
Maros Ondrejicka0db15752022-10-12 22:58:01 +02001297int
1298vcl_is_first_reattach_to_execute ()
1299{
1300 if (vcm->reattach_count == 0)
1301 return 1;
1302
1303 return 0;
1304}
1305
1306void
1307vcl_set_reattach_counter ()
1308{
1309 ++vcm->reattach_count;
1310
1311 if (vcm->reattach_count == vec_len (vcm->workers))
1312 vcm->reattach_count = 0;
1313}
1314
1315/**
1316 * Reattach vcl to vpp after it has previously been disconnected.
1317 *
1318 * The logic should be:
1319 * - first worker to hit `vcl_api_retry_attach` should attach to vpp,
1320 * to reproduce the `vcl_api_attach` in `vppcom_app_create`.
1321 * - the rest of the workers should `reproduce vcl_worker_register_with_vpp`
1322 * from `vppcom_worker_register` since they were already allocated.
1323 */
1324
Florin Coras935ce752020-09-08 22:43:47 -07001325static void
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00001326vcl_api_retry_attach (vcl_worker_t *wrk)
1327{
1328 vcl_session_t *s;
1329
Maros Ondrejicka0db15752022-10-12 22:58:01 +02001330 clib_spinlock_lock (&vcm->workers_lock);
1331 if (vcl_is_first_reattach_to_execute ())
1332 {
1333 if (vcl_api_attach ())
1334 {
1335 clib_spinlock_unlock (&vcm->workers_lock);
1336 return;
1337 }
1338 vcl_set_reattach_counter ();
1339 clib_spinlock_unlock (&vcm->workers_lock);
1340 }
1341 else
1342 {
1343 vcl_set_reattach_counter ();
1344 clib_spinlock_unlock (&vcm->workers_lock);
1345 vcl_worker_register_with_vpp ();
1346 }
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00001347
1348 /* Treat listeners as configuration that needs to be re-added to vpp */
1349 pool_foreach (s, wrk->sessions)
1350 {
1351 if (s->flags & VCL_SESSION_F_IS_VEP)
1352 continue;
1353 if (s->session_state == VCL_STATE_LISTEN_NO_MQ)
1354 vppcom_session_listen (vcl_session_handle (s), 10);
1355 else
1356 VDBG (0, "internal error: unexpected state %d", s->session_state);
1357 }
1358}
1359
1360static void
1361vcl_api_handle_disconnect (vcl_worker_t *wrk)
1362{
1363 wrk->api_client_handle = ~0;
1364 vcl_worker_detach_sessions (wrk);
1365}
1366
1367static void
Florin Coras935ce752020-09-08 22:43:47 -07001368vcl_api_detach (vcl_worker_t * wrk)
1369{
Florin Corasd04ea442022-03-30 16:08:25 -07001370 if (wrk->api_client_handle == ~0)
1371 return;
1372
Florin Coras935ce752020-09-08 22:43:47 -07001373 vcl_send_app_detach (wrk);
1374
1375 if (vcm->cfg.vpp_app_socket_api)
1376 return vcl_sapi_detach (wrk);
1377
1378 return vcl_bapi_disconnect_from_vpp ();
1379}
1380
Dave Wallace543852a2017-08-03 02:11:34 -04001381/*
1382 * VPPCOM Public API functions
1383 */
1384int
Florin Coras66ec4672020-06-15 07:59:40 -07001385vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001386{
Dave Wallace543852a2017-08-03 02:11:34 -04001387 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001388 int rv;
1389
Florin Coras47c40e22018-11-26 17:01:36 -08001390 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001391 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001392 VDBG (1, "already initialized");
1393 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001394 }
1395
Florin Coras47c40e22018-11-26 17:01:36 -08001396 vcm->is_init = 1;
1397 vppcom_cfg (&vcm->cfg);
1398 vcl_cfg = &vcm->cfg;
1399
1400 vcm->main_cpu = pthread_self ();
1401 vcm->main_pid = getpid ();
1402 vcm->app_name = format (0, "%s", app_name);
Florin Coras41bc8612021-10-01 14:57:03 -07001403 fifo_segment_main_init (&vcm->segment_main, (uword) ~0,
1404 20 /* timeout in secs */);
Florin Coras47c40e22018-11-26 17:01:36 -08001405 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1406 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001407 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001408 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001409 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001410
1411 /* Allocate default worker */
1412 vcl_worker_alloc_and_init ();
1413
Florin Coras935ce752020-09-08 22:43:47 -07001414 if ((rv = vcl_api_attach ()))
Florin Corasd04ea442022-03-30 16:08:25 -07001415 {
1416 vppcom_app_destroy ();
1417 return rv;
1418 }
Florin Coras47c40e22018-11-26 17:01:36 -08001419
1420 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001421 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001422
1423 return VPPCOM_OK;
1424}
1425
1426void
1427vppcom_app_destroy (void)
1428{
Florin Corasdc0ded72020-04-30 02:59:55 +00001429 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001430 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001431
Florin Coras940f78f2018-11-30 12:11:20 -08001432 if (!pool_elts (vcm->workers))
1433 return;
1434
Florin Coras0d427d82018-06-27 03:24:07 -07001435 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001436
Florin Corasdc0ded72020-04-30 02:59:55 +00001437 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001438
Florin Corasce815de2020-04-16 18:47:27 +00001439 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001440 pool_foreach (wrk, vcm->workers) {
Florin Corasdc0ded72020-04-30 02:59:55 +00001441 if (current_wrk != wrk)
1442 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Damjan Marionb2c31b62020-12-13 21:47:40 +01001443 }
Florin Corasce815de2020-04-16 18:47:27 +00001444 /* *INDENT-ON* */
1445
Florin Coras935ce752020-09-08 22:43:47 -07001446 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001447 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
Florin Corasd04ea442022-03-30 16:08:25 -07001448 vcl_set_worker_index (~0);
Florin Corasdc0ded72020-04-30 02:59:55 +00001449
Florin Coras0d427d82018-06-27 03:24:07 -07001450 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001451
1452 /*
1453 * Free the heap and fix vcm
1454 */
1455 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001456 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001457
1458 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001459 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001460}
1461
1462int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001463vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001464{
Florin Coras134a9962018-08-28 11:32:04 -07001465 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001466 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001467
Florin Coras134a9962018-08-28 11:32:04 -07001468 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001469
Florin Coras7e12d942018-06-27 14:32:43 -07001470 session->session_type = proto;
Florin Corasc127d5a2020-10-14 16:35:58 -07001471 session->session_state = VCL_STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001472 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001473 session->is_dgram = vcl_proto_is_dgram (proto);
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05301474 session->vpp_error = SESSION_E_NONE;
Dave Wallace543852a2017-08-03 02:11:34 -04001475
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001476 if (is_nonblocking)
Florin Corasac422d62020-10-19 20:51:36 -07001477 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001478
Florin Coras7e12d942018-06-27 14:32:43 -07001479 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1480 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001481
Florin Coras5e062572019-03-14 19:07:51 -07001482 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001483
Florin Coras134a9962018-08-28 11:32:04 -07001484 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001485}
1486
Florin Corasfe286f72021-06-04 10:07:55 -07001487static void
Florin Corasfa3884f2021-06-22 20:04:46 -07001488vcl_epoll_lt_add (vcl_worker_t *wrk, vcl_session_t *s)
Florin Corasfe286f72021-06-04 10:07:55 -07001489{
Florin Corasfa3884f2021-06-22 20:04:46 -07001490 vcl_session_t *cur, *prev;
Florin Corasfe286f72021-06-04 10:07:55 -07001491
Florin Corasc2a14172023-02-28 21:13:50 -08001492 ASSERT (s->vep.lt_next == VCL_INVALID_SESSION_INDEX);
1493
Florin Corasfa3884f2021-06-22 20:04:46 -07001494 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
Florin Corasfe286f72021-06-04 10:07:55 -07001495 {
Florin Corasfa3884f2021-06-22 20:04:46 -07001496 wrk->ep_lt_current = s->session_index;
1497 s->vep.lt_next = s->session_index;
1498 s->vep.lt_prev = s->session_index;
1499 return;
Florin Corasfe286f72021-06-04 10:07:55 -07001500 }
Florin Corasfa3884f2021-06-22 20:04:46 -07001501
1502 cur = vcl_session_get (wrk, wrk->ep_lt_current);
1503 prev = vcl_session_get (wrk, cur->vep.lt_prev);
1504
1505 prev->vep.lt_next = s->session_index;
1506 s->vep.lt_prev = prev->session_index;
1507
1508 s->vep.lt_next = cur->session_index;
1509 cur->vep.lt_prev = s->session_index;
1510}
1511
1512static void
1513vcl_epoll_lt_del (vcl_worker_t *wrk, vcl_session_t *s)
1514{
1515 vcl_session_t *prev, *next;
1516
Florin Corasc2a14172023-02-28 21:13:50 -08001517 ASSERT (s->vep.lt_next != VCL_INVALID_SESSION_INDEX);
1518
Florin Corasfa3884f2021-06-22 20:04:46 -07001519 if (s->vep.lt_next == s->session_index)
1520 {
1521 wrk->ep_lt_current = VCL_INVALID_SESSION_INDEX;
1522 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasc2a14172023-02-28 21:13:50 -08001523 s->vep.lt_prev = VCL_INVALID_SESSION_INDEX;
Florin Corasfa3884f2021-06-22 20:04:46 -07001524 return;
1525 }
1526
1527 prev = vcl_session_get (wrk, s->vep.lt_prev);
1528 next = vcl_session_get (wrk, s->vep.lt_next);
1529
1530 prev->vep.lt_next = next->session_index;
1531 next->vep.lt_prev = prev->session_index;
1532
1533 if (s->session_index == wrk->ep_lt_current)
1534 wrk->ep_lt_current = s->vep.lt_next;
1535
1536 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasc2a14172023-02-28 21:13:50 -08001537 s->vep.lt_prev = VCL_INVALID_SESSION_INDEX;
Florin Corasfe286f72021-06-04 10:07:55 -07001538}
1539
Dave Wallace543852a2017-08-03 02:11:34 -04001540int
Florin Corasc127d5a2020-10-14 16:35:58 -07001541vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * s,
Florin Corasf9240dc2019-01-15 08:03:17 -08001542 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001543{
Florin Coras134a9962018-08-28 11:32:04 -07001544 int rv = VPPCOM_OK;
Florin Coras47c40e22018-11-26 17:01:36 -08001545
Florin Coras6c3b2182020-10-19 18:36:48 -07001546 VDBG (1, "session %u [0x%llx] closing", s->session_index, s->vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001547
Florin Coras6c3b2182020-10-19 18:36:48 -07001548 if (s->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace543852a2017-08-03 02:11:34 -04001549 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001550 u32 next_sh = s->vep.next_sh;
Florin Coras134a9962018-08-28 11:32:04 -07001551 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001552 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001553 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001554 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001555 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras6c3b2182020-10-19 18:36:48 -07001556 " failed! rv %d (%s)", s->vpp_handle, next_sh,
1557 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Florin Corasc127d5a2020-10-14 16:35:58 -07001558 next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001559 }
Florin Corase4306b62020-10-28 12:51:10 -07001560 goto free_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001561 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001562
Florin Coras6c3b2182020-10-19 18:36:48 -07001563 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001564 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001565 rv = vppcom_epoll_ctl (s->vep.vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001566 if (rv < 0)
1567 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
Florin Coras6c3b2182020-10-19 18:36:48 -07001568 "failed! rv %d (%s)", s->session_index, s->vpp_handle,
1569 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001570 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001571
Florin Coras9ace36d2019-10-28 13:14:17 -07001572 if (!do_disconnect)
1573 {
1574 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Coras6c3b2182020-10-19 18:36:48 -07001575 s->session_index, s->vpp_handle);
Florin Coras9ace36d2019-10-28 13:14:17 -07001576 goto cleanup;
1577 }
1578
Florin Coras6c3b2182020-10-19 18:36:48 -07001579 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras9ace36d2019-10-28 13:14:17 -07001580 {
1581 rv = vppcom_session_unbind (sh);
1582 if (PREDICT_FALSE (rv < 0))
1583 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
Florin Coras6c3b2182020-10-19 18:36:48 -07001584 "rv %d (%s)", s->session_index, s->vpp_handle, rv,
Florin Coras9ace36d2019-10-28 13:14:17 -07001585 vppcom_retval_str (rv));
1586 return rv;
1587 }
Florin Coras1bc919e2020-10-18 20:17:49 -07001588 else if (vcl_session_is_ready (s)
Florin Corasc127d5a2020-10-14 16:35:58 -07001589 || (vcl_session_is_connectable_listener (wrk, s)))
Florin Coras9ace36d2019-10-28 13:14:17 -07001590 {
1591 rv = vppcom_session_disconnect (sh);
1592 if (PREDICT_FALSE (rv < 0))
1593 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
Florin Coras6c3b2182020-10-19 18:36:48 -07001594 " rv %d (%s)", s->session_index, s->vpp_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001595 rv, vppcom_retval_str (rv));
1596 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001597 else if (s->session_state == VCL_STATE_DISCONNECT)
Florin Coras9ace36d2019-10-28 13:14:17 -07001598 {
Florin Coras52dd29f2020-11-18 19:02:17 -08001599 vcl_send_session_reset_reply (wrk, s, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001600 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001601 else if (s->session_state == VCL_STATE_DETACHED)
Florin Corasadcfb152020-02-12 08:50:29 +00001602 {
Florin Corasc127d5a2020-10-14 16:35:58 -07001603 VDBG (0, "vpp freed session %d before close", s->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001604
1605 if (!(s->flags & VCL_SESSION_F_PENDING_DISCONNECT))
1606 goto free_session;
1607
1608 /* Disconnect/reset messages pending but vpp transport and session
1609 * cleanups already done. Free only after messages drained. */
1610 s->flags |= VCL_SESSION_F_PENDING_FREE;
Florin Corasadcfb152020-02-12 08:50:29 +00001611 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001612
Florin Corasc127d5a2020-10-14 16:35:58 -07001613 s->session_state = VCL_STATE_CLOSED;
Florin Coras54140622020-02-04 19:04:34 +00001614
Florin Coras9ace36d2019-10-28 13:14:17 -07001615 /* Session is removed only after vpp confirms the disconnect */
1616 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001617
Florin Corasf9240dc2019-01-15 08:03:17 -08001618cleanup:
Florin Coras6c3b2182020-10-19 18:36:48 -07001619 vcl_session_table_del_vpp_handle (wrk, s->vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001620free_session:
Florin Corasc127d5a2020-10-14 16:35:58 -07001621 vcl_session_free (wrk, s);
1622 vcl_evt (VCL_EVT_CLOSE, s, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001623
Dave Wallace543852a2017-08-03 02:11:34 -04001624 return rv;
1625}
1626
1627int
Florin Corasf9240dc2019-01-15 08:03:17 -08001628vppcom_session_close (uint32_t session_handle)
1629{
1630 vcl_worker_t *wrk = vcl_worker_get_current ();
1631 vcl_session_t *session;
1632
1633 session = vcl_session_get_w_handle (wrk, session_handle);
1634 if (!session)
1635 return VPPCOM_EBADFD;
1636 return vcl_session_cleanup (wrk, session, session_handle,
1637 1 /* do_disconnect */ );
1638}
1639
1640int
Florin Coras134a9962018-08-28 11:32:04 -07001641vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001642{
Florin Coras134a9962018-08-28 11:32:04 -07001643 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001644 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001645
1646 if (!ep || !ep->ip)
1647 return VPPCOM_EINVAL;
1648
Florin Coras134a9962018-08-28 11:32:04 -07001649 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001650 if (!session)
1651 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001652
Florin Coras6c3b2182020-10-19 18:36:48 -07001653 if (session->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001654 {
Florin Coras5e062572019-03-14 19:07:51 -07001655 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1656 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001657 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001658 }
1659
Florin Coras7e12d942018-06-27 14:32:43 -07001660 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001661 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001662 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1663 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001664 else
Dave Barach178cf492018-11-13 16:34:13 -05001665 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1666 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001667 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001668
Florin Coras60687192021-11-29 21:00:47 -08001669 VDBG (0,
1670 "session %u handle %u: binding to local %s address %U port %u, "
1671 "proto %s",
1672 session->session_index, session_handle,
1673 session->transport.is_ip4 ? "IPv4" : "IPv6", vcl_format_ip46_address,
1674 &session->transport.lcl_ip,
Florin Coras7e12d942018-06-27 14:32:43 -07001675 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1676 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001677 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001678 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001679
1680 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001681 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001682
Florin Coras070453d2018-08-24 17:04:27 -07001683 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001684}
1685
1686int
Florin Coras134a9962018-08-28 11:32:04 -07001687vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001688{
Florin Coras134a9962018-08-28 11:32:04 -07001689 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001690 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001691 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001692 int rv;
1693
Florin Coras134a9962018-08-28 11:32:04 -07001694 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras6c3b2182020-10-19 18:36:48 -07001695 if (!listen_session || (listen_session->flags & VCL_SESSION_F_IS_VEP))
Florin Coras070453d2018-08-24 17:04:27 -07001696 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001697
Dave Wallaceee45d412017-11-24 21:44:06 -05001698 listen_vpp_handle = listen_session->vpp_handle;
Florin Corasc127d5a2020-10-14 16:35:58 -07001699 if (listen_session->session_state == VCL_STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001700 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001701 VDBG (0, "session %u [0x%llx]: already in listen state!",
1702 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001703 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001704 }
1705
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001706 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001707
Florin Coras070453d2018-08-24 17:04:27 -07001708 /*
1709 * Send listen request to vpp and wait for reply
1710 */
Florin Coras458089b2019-08-21 16:20:44 -07001711 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001712 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
Florin Corasc127d5a2020-10-14 16:35:58 -07001713 VCL_STATE_LISTEN,
Florin Coras134a9962018-08-28 11:32:04 -07001714 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001715
Florin Coras070453d2018-08-24 17:04:27 -07001716 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001717 {
Florin Coras134a9962018-08-28 11:32:04 -07001718 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001719 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1720 listen_sh, listen_session->vpp_handle, rv,
1721 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001722 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001723 }
1724
Florin Coras070453d2018-08-24 17:04:27 -07001725 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001726}
1727
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001728int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001729vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1730{
1731 if (!strcmp (proto_str, "TCP"))
1732 *proto = VPPCOM_PROTO_TCP;
1733 else if (!strcmp (proto_str, "tcp"))
1734 *proto = VPPCOM_PROTO_TCP;
1735 else if (!strcmp (proto_str, "UDP"))
1736 *proto = VPPCOM_PROTO_UDP;
1737 else if (!strcmp (proto_str, "udp"))
1738 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001739 else if (!strcmp (proto_str, "TLS"))
1740 *proto = VPPCOM_PROTO_TLS;
1741 else if (!strcmp (proto_str, "tls"))
1742 *proto = VPPCOM_PROTO_TLS;
1743 else if (!strcmp (proto_str, "QUIC"))
1744 *proto = VPPCOM_PROTO_QUIC;
1745 else if (!strcmp (proto_str, "quic"))
1746 *proto = VPPCOM_PROTO_QUIC;
Florin Coras4b47ee22020-11-19 13:38:26 -08001747 else if (!strcmp (proto_str, "DTLS"))
1748 *proto = VPPCOM_PROTO_DTLS;
1749 else if (!strcmp (proto_str, "dtls"))
1750 *proto = VPPCOM_PROTO_DTLS;
Florin Coras6621abf2021-01-06 17:35:17 -08001751 else if (!strcmp (proto_str, "SRTP"))
1752 *proto = VPPCOM_PROTO_SRTP;
1753 else if (!strcmp (proto_str, "srtp"))
1754 *proto = VPPCOM_PROTO_SRTP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001755 else
1756 return 1;
1757 return 0;
1758}
1759
1760int
Florin Coras32881932023-02-06 13:30:13 -08001761vppcom_session_accept (uint32_t ls_handle, vppcom_endpt_t *ep, uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001762{
Florin Coras32881932023-02-06 13:30:13 -08001763 u32 client_session_index = ~0, ls_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001764 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001765 session_accepted_msg_t accepted_msg;
Florin Coras32881932023-02-06 13:30:13 -08001766 vcl_session_t *ls, *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001767 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001768 u8 is_nonblocking;
Dave Wallace543852a2017-08-03 02:11:34 -04001769
Florin Coras5398dfb2021-01-25 20:31:27 -08001770again:
1771
Florin Coras32881932023-02-06 13:30:13 -08001772 ls = vcl_session_get_w_handle (wrk, ls_handle);
1773 if (!ls)
Florin Coras070453d2018-08-24 17:04:27 -07001774 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001775
Florin Coras32881932023-02-06 13:30:13 -08001776 if ((ls->session_state != VCL_STATE_LISTEN) &&
1777 (ls->session_state != VCL_STATE_LISTEN_NO_MQ) &&
1778 (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001779 {
Florin Coras32881932023-02-06 13:30:13 -08001780 VDBG (0, "ERROR: session [0x%llx]: not in listen state! state (%s)",
1781 ls->vpp_handle, vcl_session_state_str (ls->session_state));
1782 return VPPCOM_EBADFD;
1783 }
1784
1785 ls_index = ls->session_index;
1786
1787 if (clib_fifo_elts (ls->accept_evts_fifo))
1788 {
1789 clib_fifo_sub2 (ls->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001790 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001791 accepted_msg = evt->accepted_msg;
1792 goto handle;
1793 }
1794
Florin Coras32881932023-02-06 13:30:13 -08001795 is_nonblocking = vcl_session_has_attr (ls, VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001796 while (1)
1797 {
Carl Smith592a9092019-11-12 14:57:37 +13001798 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1799 return VPPCOM_EAGAIN;
1800
Florin Coras5398dfb2021-01-25 20:31:27 -08001801 svm_msg_q_wait (wrk->app_event_queue, SVM_MQ_WAIT_EMPTY);
1802 vcl_worker_flush_mq_events (wrk);
1803 goto again;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001804 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001805
Florin Coras54693d22018-07-17 10:46:29 -07001806handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001807
Florin Coras32881932023-02-06 13:30:13 -08001808 client_session_index =
1809 vcl_session_accepted_handler (wrk, &accepted_msg, ls_index);
Florin Coras00cca802019-06-06 09:38:44 -07001810 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1811 return VPPCOM_ECONNABORTED;
1812
Florin Coras32881932023-02-06 13:30:13 -08001813 ls = vcl_session_get (wrk, ls_index);
Florin Coras134a9962018-08-28 11:32:04 -07001814 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001815
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001816 if (flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07001817 vcl_session_set_attr (client_session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001818
Florin Coras32881932023-02-06 13:30:13 -08001819 VDBG (1,
1820 "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1821 " flags %d, is_nonblocking %u",
1822 ls->session_index, ls->vpp_handle, client_session_index,
Florin Coras5e062572019-03-14 19:07:51 -07001823 client_session->vpp_handle, flags,
Florin Corasac422d62020-10-19 20:51:36 -07001824 vcl_session_has_attr (client_session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001825
Dave Wallace048b1d62018-01-03 22:24:41 -05001826 if (ep)
1827 {
Florin Coras7e12d942018-06-27 14:32:43 -07001828 ep->is_ip4 = client_session->transport.is_ip4;
1829 ep->port = client_session->transport.rmt_port;
1830 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001831 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1832 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001833 else
Dave Barach178cf492018-11-13 16:34:13 -05001834 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1835 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001836 }
Dave Wallace60caa062017-11-10 17:07:13 -05001837
Florin Coras60687192021-11-29 21:00:47 -08001838 VDBG (0,
1839 "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1840 "local: %U:%u",
Florin Coras32881932023-02-06 13:30:13 -08001841 ls_handle, ls->vpp_handle, client_session_index,
1842 client_session->vpp_handle, vcl_format_ip46_address,
1843 &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001844 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001845 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras60687192021-11-29 21:00:47 -08001846 vcl_format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001847 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001848 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras32881932023-02-06 13:30:13 -08001849 vcl_evt (VCL_EVT_ACCEPT, client_session, ls, client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001850
Florin Coras3c7d4f92018-12-14 11:28:43 -08001851 /*
1852 * Session might have been closed already
1853 */
1854 if (accept_flags)
1855 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001856 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasc127d5a2020-10-14 16:35:58 -07001857 client_session->session_state = VCL_STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001858 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasc127d5a2020-10-14 16:35:58 -07001859 client_session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001860 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001861 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001862}
1863
1864int
Florin Coras134a9962018-08-28 11:32:04 -07001865vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001866{
Florin Coras134a9962018-08-28 11:32:04 -07001867 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001868 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001869 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001870 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001871
Florin Coras134a9962018-08-28 11:32:04 -07001872 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001873 if (!session)
1874 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001875 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001876
Florin Coras6c3b2182020-10-19 18:36:48 -07001877 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04001878 {
Florin Coras5ffb9642021-12-03 17:24:13 -08001879 VWRN ("cannot connect epoll session %u!", session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001880 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001881 }
1882
Florin Corasc127d5a2020-10-14 16:35:58 -07001883 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Dave Wallace543852a2017-08-03 02:11:34 -04001884 {
Florin Coras60687192021-11-29 21:00:47 -08001885 VDBG (0,
Florin Coras5ffb9642021-12-03 17:24:13 -08001886 "session %u [0x%llx]: already connected to %U:%d proto %s,"
1887 " state (%s)",
1888 session->session_index, session->vpp_handle,
Florin Coras60687192021-11-29 21:00:47 -08001889 vcl_format_ip46_address, &session->transport.rmt_ip,
1890 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001891 clib_net_to_host_u16 (session->transport.rmt_port),
Florin Coras5ffb9642021-12-03 17:24:13 -08001892 vppcom_proto_str (session->session_type),
Florin Coras60687192021-11-29 21:00:47 -08001893 vcl_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001894 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001895 }
1896
Florin Coras0a1e1832020-03-29 18:54:04 +00001897 /* Attempt to connect a connectionless listener */
Florin Corasc127d5a2020-10-14 16:35:58 -07001898 if (PREDICT_FALSE (session->session_state == VCL_STATE_LISTEN))
Florin Coras0a1e1832020-03-29 18:54:04 +00001899 {
1900 if (session->session_type != VPPCOM_PROTO_UDP)
1901 return VPPCOM_EINVAL;
1902 vcl_send_session_unlisten (wrk, session);
Florin Corasc127d5a2020-10-14 16:35:58 -07001903 session->session_state = VCL_STATE_CLOSED;
Florin Coras0a1e1832020-03-29 18:54:04 +00001904 }
1905
Florin Coras7e12d942018-06-27 14:32:43 -07001906 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001907 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001908 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001909 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001910 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001911
Florin Coras5ffb9642021-12-03 17:24:13 -08001912 VDBG (0, "session %u: connecting to peer %U:%d proto %s",
1913 session->session_index, vcl_format_ip46_address,
Florin Coras60687192021-11-29 21:00:47 -08001914 &session->transport.rmt_ip,
1915 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001916 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001917 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001918
Florin Coras458089b2019-08-21 16:20:44 -07001919 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001920
Florin Corasac422d62020-10-19 20:51:36 -07001921 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001922 {
fanyfa49d59d2020-10-13 17:07:16 +08001923 /* State set to STATE_UPDATED to ensure the session is not assumed
Florin Corasdfffdd72020-10-15 10:54:47 -07001924 * to be ready and to also allow the app to close it prior to vpp's
fanyfa49d59d2020-10-13 17:07:16 +08001925 * connected reply. */
Florin Corasc127d5a2020-10-14 16:35:58 -07001926 session->session_state = VCL_STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001927 return VPPCOM_EINPROGRESS;
1928 }
Florin Coras57c88932019-08-29 12:03:17 -07001929
1930 /*
1931 * Wait for reply from vpp if blocking
1932 */
Florin Corasdfffdd72020-10-15 10:54:47 -07001933 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Florin Coras070453d2018-08-24 17:04:27 -07001934 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001935
Florin Coras134a9962018-08-28 11:32:04 -07001936 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001937 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1938 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001939
Dave Wallace4878cbe2017-11-21 03:45:09 -05001940 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001941}
1942
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001943int
1944vppcom_session_stream_connect (uint32_t session_handle,
1945 uint32_t parent_session_handle)
1946{
1947 vcl_worker_t *wrk = vcl_worker_get_current ();
1948 vcl_session_t *session, *parent_session;
1949 u32 session_index, parent_session_index;
1950 int rv;
1951
1952 session = vcl_session_get_w_handle (wrk, session_handle);
1953 if (!session)
1954 return VPPCOM_EBADFD;
1955 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1956 if (!parent_session)
1957 return VPPCOM_EBADFD;
1958
1959 session_index = session->session_index;
1960 parent_session_index = parent_session->session_index;
Florin Coras6c3b2182020-10-19 18:36:48 -07001961 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001962 {
1963 VDBG (0, "ERROR: cannot connect epoll session %u!",
1964 session->session_index);
1965 return VPPCOM_EBADFD;
1966 }
1967
Florin Corasc127d5a2020-10-14 16:35:58 -07001968 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001969 {
Florin Coras60687192021-11-29 21:00:47 -08001970 VDBG (0,
1971 "session handle %u [0x%llx]: session already "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001972 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
Florin Coras60687192021-11-29 21:00:47 -08001973 session_handle, session->vpp_handle, parent_session_handle,
1974 parent_session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001975 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras60687192021-11-29 21:00:47 -08001976 vcl_session_state_str (session->session_state));
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001977 return VPPCOM_OK;
1978 }
1979
1980 /* Connect to quic session specifics */
1981 session->transport.is_ip4 = parent_session->transport.is_ip4;
1982 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1983 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001984 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001985
1986 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1987 session_handle, parent_session_handle, parent_session->vpp_handle);
1988
1989 /*
1990 * Send connect request and wait for reply from vpp
1991 */
Florin Coras458089b2019-08-21 16:20:44 -07001992 vcl_send_session_connect (wrk, session);
Florin Corasdfffdd72020-10-15 10:54:47 -07001993 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001994 vcm->cfg.session_timeout);
1995
1996 session->listener_index = parent_session_index;
1997 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001998 if (parent_session)
1999 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02002000
2001 session = vcl_session_get (wrk, session_index);
2002 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
2003 session->vpp_handle, rv ? "failed" : "succeeded");
2004
2005 return rv;
2006}
2007
Steven58f464e2017-10-25 12:33:12 -07002008static inline int
Florin Coras134a9962018-08-28 11:32:04 -07002009vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07002010 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04002011{
Florin Coras134a9962018-08-28 11:32:04 -07002012 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07002013 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002014 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04002015 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002016 session_event_t *e;
2017 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07002018 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002019
Florin Coras070453d2018-08-24 17:04:27 -07002020 if (PREDICT_FALSE (!buf))
wanghanlin72228a22021-07-06 17:18:29 +08002021 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04002022
Florin Coras134a9962018-08-28 11:32:04 -07002023 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002024 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras070453d2018-08-24 17:04:27 -07002025 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002026
Florin Coras6d0106e2019-01-29 20:11:58 -08002027 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002028 {
Florin Coras5e062572019-03-14 19:07:51 -07002029 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08002030 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002031 vcl_session_state_str (s->session_state));
Florin Coras6d0106e2019-01-29 20:11:58 -08002032 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002033 }
2034
liuyacan55c952e2021-06-13 14:54:55 +08002035 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
2036 {
2037 /* Vpp would ack the incoming data and enqueue it for reading.
2038 * So even if SHUT_RD is set, we can still read() the data if
2039 * the session is ready.
2040 */
2041 if (!vcl_session_read_ready (s))
2042 {
2043 return 0;
2044 }
2045 }
2046
Florin Corasac422d62020-10-19 20:51:36 -07002047 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07002048 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002049 mq = wrk->app_event_queue;
2050 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002051 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002052
Sirshak Das28aa5392019-02-05 01:33:33 -06002053 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002054 {
Florin Coras54693d22018-07-17 10:46:29 -07002055 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08002056 {
Yu Pingb2955352019-12-04 06:49:04 +08002057 if (vcl_session_is_closing (s))
2058 return vcl_session_closing_error (s);
Florin Corasd6894562020-10-28 00:37:15 -07002059 if (is_ct)
2060 svm_fifo_unset_event (s->rx_fifo);
2061 svm_fifo_unset_event (rx_fifo);
Florin Corasc0737e92019-03-04 14:19:39 -08002062 return VPPCOM_EWOULDBLOCK;
2063 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002064 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002065 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002066 if (vcl_session_is_closing (s))
2067 return vcl_session_closing_error (s);
2068
Florin Corasd6894562020-10-28 00:37:15 -07002069 if (is_ct)
2070 svm_fifo_unset_event (s->rx_fifo);
2071 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07002072
Florin Coras5398dfb2021-01-25 20:31:27 -08002073 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2074 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002075 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002076 }
Florin Coras54693d22018-07-17 10:46:29 -07002077
Florin Coras4a2c7942020-09-10 12:27:14 -07002078read_again:
2079
Florin Coras460dce62018-07-27 05:45:06 -07002080 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07002081 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002082 else
Florin Coras4a2c7942020-09-10 12:27:14 -07002083 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
2084
2085 ASSERT (rv >= 0);
Florin Coras23368312021-06-04 16:28:18 -07002086
2087 if (peek)
2088 return rv;
2089
Florin Coras4a2c7942020-09-10 12:27:14 -07002090 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07002091
Sirshak Das28aa5392019-02-05 01:33:33 -06002092 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07002093 {
Florin Corasd6894562020-10-28 00:37:15 -07002094 if (is_ct)
2095 svm_fifo_unset_event (s->rx_fifo);
2096 svm_fifo_unset_event (rx_fifo);
Florin Corasc34118b2020-08-12 18:58:25 -07002097 if (!svm_fifo_is_empty_cons (rx_fifo)
Florin Corasd6894562020-10-28 00:37:15 -07002098 && svm_fifo_set_event (rx_fifo) && is_nonblocking)
Florin Corasc34118b2020-08-12 18:58:25 -07002099 {
Florin Corasc34118b2020-08-12 18:58:25 -07002100 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2101 e->event_type = SESSION_IO_EVT_RX;
2102 e->session_index = s->session_index;
2103 }
2104 }
Florin Coras54fe32c2020-11-25 20:26:32 -08002105 else if (PREDICT_FALSE (rv < n && !s->is_dgram))
Florin Coras4a2c7942020-09-10 12:27:14 -07002106 {
2107 /* More data enqueued while reading. Try to drain it
Florin Coras54fe32c2020-11-25 20:26:32 -08002108 * or fill the buffer. Avoid doing that for dgrams */
Florin Coras4a2c7942020-09-10 12:27:14 -07002109 buf += rv;
2110 n -= rv;
2111 goto read_again;
2112 }
Florin Coras41c9e042018-09-11 00:10:41 -07002113
Florin Coras17ec5772020-08-12 20:46:29 -07002114 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07002115 {
Florin Coras17ec5772020-08-12 20:46:29 -07002116 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -08002117 app_send_io_evt_to_vpp (s->vpp_evt_q,
2118 s->rx_fifo->shr->master_session_index,
Florin Coras317b8e02019-04-17 09:57:46 -07002119 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07002120 }
2121
Florin Coras5e062572019-03-14 19:07:51 -07002122 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
2123 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002124
Florin Coras54693d22018-07-17 10:46:29 -07002125 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04002126}
2127
Steven58f464e2017-10-25 12:33:12 -07002128int
Florin Coras134a9962018-08-28 11:32:04 -07002129vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07002130{
Florin Coras134a9962018-08-28 11:32:04 -07002131 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07002132}
2133
2134static int
Florin Coras134a9962018-08-28 11:32:04 -07002135vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07002136{
Florin Coras134a9962018-08-28 11:32:04 -07002137 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07002138}
2139
Florin Coras2cba8532018-09-11 16:33:36 -07002140int
2141vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07002142 vppcom_data_segment_t * ds, uint32_t n_segments,
2143 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002144{
2145 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08002146 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07002147 vcl_session_t *s = 0;
2148 svm_fifo_t *rx_fifo;
Florin Coras2cba8532018-09-11 16:33:36 -07002149 svm_msg_q_t *mq;
2150 u8 is_ct;
2151
2152 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002153 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002154 return VPPCOM_EBADFD;
2155
Florin Coras6d0106e2019-01-29 20:11:58 -08002156 if (PREDICT_FALSE (!vcl_session_is_open (s)))
2157 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07002158
Florin Corasac422d62020-10-19 20:51:36 -07002159 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras2cba8532018-09-11 16:33:36 -07002160 is_ct = vcl_session_is_ct (s);
Florin Corasac422d62020-10-19 20:51:36 -07002161 mq = wrk->app_event_queue;
Florin Coras62877022020-10-28 21:22:04 -07002162 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002163 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2cba8532018-09-11 16:33:36 -07002164
Sirshak Das28aa5392019-02-05 01:33:33 -06002165 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002166 {
2167 if (is_nonblocking)
2168 {
Florin Coras62877022020-10-28 21:22:04 -07002169 if (is_ct)
2170 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002171 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07002172 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07002173 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002174 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002175 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002176 if (vcl_session_is_closing (s))
2177 return vcl_session_closing_error (s);
2178
Florin Coras62877022020-10-28 21:22:04 -07002179 if (is_ct)
2180 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002181 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002182
Florin Coras5398dfb2021-01-25 20:31:27 -08002183 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2184 vcl_worker_flush_mq_events (wrk);
Florin Coras2cba8532018-09-11 16:33:36 -07002185 }
2186 }
2187
Florin Corasd1cc38d2020-10-11 11:05:04 -07002188 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
Florin Corasb85de192022-01-18 20:51:08 -08002189 (svm_fifo_seg_t *) ds, &n_segments, max_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002190 if (n_read < 0)
2191 return VPPCOM_EAGAIN;
2192
2193 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
2194 {
Florin Coras62877022020-10-28 21:22:04 -07002195 if (is_ct)
2196 svm_fifo_unset_event (s->rx_fifo);
2197 svm_fifo_unset_event (rx_fifo);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002198 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
Florin Coras62877022020-10-28 21:22:04 -07002199 && svm_fifo_set_event (rx_fifo)
Florin Corasac422d62020-10-19 20:51:36 -07002200 && vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
Florin Corasd1cc38d2020-10-11 11:05:04 -07002201 {
2202 session_event_t *e;
2203 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2204 e->event_type = SESSION_IO_EVT_RX;
2205 e->session_index = s->session_index;
2206 }
2207 }
2208
2209 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07002210 return n_read;
2211}
2212
2213void
Florin Corasd68faf82020-09-25 15:18:13 -07002214vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002215{
2216 vcl_worker_t *wrk = vcl_worker_get_current ();
2217 vcl_session_t *s;
Florin Coras62877022020-10-28 21:22:04 -07002218 u8 is_ct;
Florin Coras2cba8532018-09-11 16:33:36 -07002219
2220 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002221 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002222 return;
2223
Florin Coras62877022020-10-28 21:22:04 -07002224 is_ct = vcl_session_is_ct (s);
2225 svm_fifo_dequeue_drop (is_ct ? s->ct_rx_fifo : s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002226
Florin Coras8cc93212021-09-10 11:37:12 -07002227 ASSERT (s->rx_bytes_pending >= n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002228 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07002229}
2230
Florin Coras7a2abce2020-04-05 19:25:44 +00002231always_inline u8
2232vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002233{
Florin Coras7a2abce2020-04-05 19:25:44 +00002234 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2235 if (is_dgram)
2236 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2237 else
2238 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002239}
2240
2241always_inline int
Dou Chao243a0432022-11-29 19:41:34 +08002242vppcom_session_write_inline (vcl_worker_t *wrk, vcl_session_t *s, void *buf,
Florin Coraseff5f7a2023-02-07 17:36:17 -08002243 size_t n, u8 is_flush, u8 is_dgram)
Florin Coras7a2abce2020-04-05 19:25:44 +00002244{
Florin Coras6d0106e2019-01-29 20:11:58 -08002245 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002246 session_evt_type_t et;
Florin Coras14ed6df2019-03-06 21:13:42 -08002247 svm_fifo_t *tx_fifo;
Florin Coras3c2fed52018-07-04 04:15:05 -07002248 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002249 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002250
Florin Coras0b0d28e2021-06-04 17:31:53 -07002251 /* Accept zero length writes but just return */
2252 if (PREDICT_FALSE (!n))
2253 return VPPCOM_OK;
2254
2255 if (PREDICT_FALSE (!buf))
2256 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04002257
Florin Coras6c3b2182020-10-19 18:36:48 -07002258 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04002259 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002260 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2261 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002262 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002263 }
2264
liuyacan55c952e2021-06-13 14:54:55 +08002265 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002266 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002267 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2268 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002269 vcl_session_state_str (s->session_state));
Florin Coras6d0106e2019-01-29 20:11:58 -08002270 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002271 }
2272
liuyacan55c952e2021-06-13 14:54:55 +08002273 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_WR_SHUTDOWN))
2274 {
2275 VDBG (1, "session %u [0x%llx]: is shutdown! state 0x%x (%s)",
2276 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002277 vcl_session_state_str (s->session_state));
liuyacan55c952e2021-06-13 14:54:55 +08002278 return VPPCOM_EPIPE;
2279 }
2280
Florin Coras0e88e852018-09-17 22:09:02 -07002281 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002282 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002283 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002284
Florin Coras653e43f2019-03-04 10:56:23 -08002285 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002286 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002287 {
Florin Coras54693d22018-07-17 10:46:29 -07002288 if (is_nonblocking)
2289 {
Florin Coras070453d2018-08-24 17:04:27 -07002290 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002291 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002292 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002293 {
Florin Coras2d379d82019-06-28 12:45:12 -07002294 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002295 if (vcl_session_is_closing (s))
2296 return vcl_session_closing_error (s);
Florin Coras0e88e852018-09-17 22:09:02 -07002297
Florin Coras5398dfb2021-01-25 20:31:27 -08002298 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2299 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002300 }
Dave Wallace543852a2017-08-03 02:11:34 -04002301 }
Dave Wallace543852a2017-08-03 02:11:34 -04002302
Florin Coras653e43f2019-03-04 10:56:23 -08002303 et = SESSION_IO_EVT_TX;
2304 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002305 et = SESSION_IO_EVT_TX_FLUSH;
2306
Florin Coras7a2abce2020-04-05 19:25:44 +00002307 if (is_dgram)
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002308 {
2309 et = vcl_session_dgram_tx_evt (s, et);
2310 n_write =
2311 app_send_dgram_raw_gso (tx_fifo, &s->transport, s->vpp_evt_q, buf, n,
2312 s->gso_size, et, 0 /* do_evt */, SVM_Q_WAIT);
2313 }
Florin Coras460dce62018-07-27 05:45:06 -07002314 else
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002315 {
2316 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
2317 0 /* do_evt */, SVM_Q_WAIT);
2318 }
Florin Coras653e43f2019-03-04 10:56:23 -08002319
Florin Coras14ed6df2019-03-06 21:13:42 -08002320 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002321 app_send_io_evt_to_vpp (
2322 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002323
Florin Coras56230092020-09-02 20:52:58 -07002324 /* The underlying fifo segment can run out of memory */
2325 if (PREDICT_FALSE (n_write < 0))
2326 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002327
Florin Coras6d0106e2019-01-29 20:11:58 -08002328 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2329 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002330
Florin Coras54693d22018-07-17 10:46:29 -07002331 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002332}
2333
Florin Coras42ceddb2018-12-12 10:56:01 -08002334int
2335vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2336{
Florin Coras7a2abce2020-04-05 19:25:44 +00002337 vcl_worker_t *wrk = vcl_worker_get_current ();
2338 vcl_session_t *s;
2339
2340 s = vcl_session_get_w_handle (wrk, session_handle);
2341 if (PREDICT_FALSE (!s))
2342 return VPPCOM_EBADFD;
2343
Florin Coraseff5f7a2023-02-07 17:36:17 -08002344 return vppcom_session_write_inline (wrk, s, buf, n, 0 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002345 s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002346}
2347
Florin Corasb0f662f2018-12-27 14:51:46 -08002348int
2349vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2350{
Florin Coras7a2abce2020-04-05 19:25:44 +00002351 vcl_worker_t *wrk = vcl_worker_get_current ();
2352 vcl_session_t *s;
2353
2354 s = vcl_session_get_w_handle (wrk, session_handle);
2355 if (PREDICT_FALSE (!s))
2356 return VPPCOM_EBADFD;
2357
Florin Coraseff5f7a2023-02-07 17:36:17 -08002358 return vppcom_session_write_inline (wrk, s, buf, n, 1 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002359 s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002360}
2361
Florin Corasc0737e92019-03-04 14:19:39 -08002362#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002363if (PREDICT_FALSE (!_s->rx_fifo)) \
2364 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002365if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2366 { \
2367 if (!vcl_session_is_ct (_s)) \
2368 { \
2369 svm_fifo_unset_event (_s->rx_fifo); \
2370 if (svm_fifo_is_empty (_s->rx_fifo)) \
2371 break; \
2372 } \
2373 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2374 { \
Florin Coras2f630182020-08-13 00:17:51 -07002375 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002376 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2377 break; \
2378 } \
2379 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002380
Florin Coras86f04502018-09-12 16:08:01 -07002381static void
2382vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2383 unsigned long n_bits, unsigned long *read_map,
2384 unsigned long *write_map,
2385 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002386{
2387 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002388 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002389 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002390 u32 sid;
2391
2392 switch (e->event_type)
2393 {
Florin Corasc0737e92019-03-04 14:19:39 -08002394 case SESSION_IO_EVT_RX:
2395 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002396 s = vcl_session_get (wrk, sid);
2397 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002398 break;
Florin Corasb242d312020-10-26 15:35:40 -07002399 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002400 if (sid < n_bits && read_map)
2401 {
David Johnsond9818dd2018-12-14 14:53:41 -05002402 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002403 *bits_set += 1;
2404 }
2405 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002406 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002407 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002408 s = vcl_session_get (wrk, sid);
2409 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002410 break;
2411 if (sid < n_bits && write_map)
2412 {
David Johnsond9818dd2018-12-14 14:53:41 -05002413 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002414 *bits_set += 1;
2415 }
2416 break;
Florin Coras86f04502018-09-12 16:08:01 -07002417 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002418 if (!e->postponed)
2419 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2420 else
2421 s = vcl_session_get (wrk, e->session_index);
2422 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002423 break;
Florin Corasb242d312020-10-26 15:35:40 -07002424 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002425 if (sid < n_bits && read_map)
2426 {
David Johnsond9818dd2018-12-14 14:53:41 -05002427 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002428 *bits_set += 1;
2429 }
2430 break;
2431 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002432 if (!e->postponed)
2433 {
2434 connected_msg = (session_connected_msg_t *) e->data;
2435 sid = vcl_session_connected_handler (wrk, connected_msg);
2436 }
2437 else
2438 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002439 if (sid == VCL_INVALID_SESSION_INDEX)
2440 break;
Florin Coras66c675e2023-03-09 16:43:02 -08002441 if (!(sid < n_bits && write_map))
2442 break;
2443 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2444 *bits_set += 1;
2445 s = vcl_session_get (wrk, sid);
Florin Coras66c675e2023-03-09 16:43:02 -08002446 /* We didn't have a fifo when the event was added */
Florin Coras607eb202023-05-29 16:19:38 -07002447 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras86f04502018-09-12 16:08:01 -07002448 break;
2449 case SESSION_CTRL_EVT_DISCONNECTED:
2450 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002451 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2452 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002453 break;
Florin Corasb242d312020-10-26 15:35:40 -07002454 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002455 if (sid < n_bits && except_map)
2456 {
David Johnsond9818dd2018-12-14 14:53:41 -05002457 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002458 *bits_set += 1;
2459 }
2460 break;
2461 case SESSION_CTRL_EVT_RESET:
2462 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2463 if (sid < n_bits && except_map)
2464 {
David Johnsond9818dd2018-12-14 14:53:41 -05002465 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002466 *bits_set += 1;
2467 }
2468 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002469 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2470 vcl_session_unlisten_reply_handler (wrk, e->data);
2471 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002472 case SESSION_CTRL_EVT_MIGRATED:
2473 vcl_session_migrated_handler (wrk, e->data);
2474 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002475 case SESSION_CTRL_EVT_CLEANUP:
2476 vcl_session_cleanup_handler (wrk, e->data);
2477 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002478 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2479 vcl_session_worker_update_reply_handler (wrk, e->data);
2480 break;
2481 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2482 vcl_session_req_worker_update_handler (wrk, e->data);
2483 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002484 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2485 vcl_session_app_add_segment_handler (wrk, e->data);
2486 break;
2487 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2488 vcl_session_app_del_segment_handler (wrk, e->data);
2489 break;
hanlina3a48962020-07-13 11:09:15 +08002490 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002491 vcl_worker_rpc_handler (wrk, e->data);
2492 break;
Florin Coras86f04502018-09-12 16:08:01 -07002493 default:
2494 clib_warning ("unhandled: %u", e->event_type);
2495 break;
2496 }
2497}
2498
2499static int
2500vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2501 unsigned long n_bits, unsigned long *read_map,
2502 unsigned long *write_map, unsigned long *except_map,
2503 double time_to_wait, u32 * bits_set)
2504{
Florin Coras99368312018-08-02 10:45:44 -07002505 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002506 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002507 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002508
Florin Coras54693d22018-07-17 10:46:29 -07002509 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002510 {
Florin Coras54693d22018-07-17 10:46:29 -07002511 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002512 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002513
Florin Coras54693d22018-07-17 10:46:29 -07002514 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002515 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002516 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002517 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002518 else
2519 {
2520 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002521 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002522 }
2523 }
Florin Corase003a1b2019-06-05 10:47:16 -07002524 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002525
Florin Coras134a9962018-08-28 11:32:04 -07002526 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002527 {
Florin Coras134a9962018-08-28 11:32:04 -07002528 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002529 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002530 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2531 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002532 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002533 }
Florin Coras134a9962018-08-28 11:32:04 -07002534 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002535 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002536 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002537}
2538
Florin Coras99368312018-08-02 10:45:44 -07002539static int
Florin Coras294afe22019-01-07 17:49:17 -08002540vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2541 vcl_si_set * read_map, vcl_si_set * write_map,
2542 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002543 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002544{
Florin Coras14ed6df2019-03-06 21:13:42 -08002545 double wait = 0, start = 0;
2546
2547 if (!*bits_set)
2548 {
2549 wait = time_to_wait;
2550 start = clib_time_now (&wrk->clib_time);
2551 }
2552
2553 do
2554 {
2555 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2556 write_map, except_map, wait, bits_set);
2557 if (*bits_set)
2558 return *bits_set;
2559 if (wait == -1)
2560 continue;
2561
2562 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2563 }
2564 while (wait > 0);
2565
2566 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002567}
2568
2569static int
Florin Coras294afe22019-01-07 17:49:17 -08002570vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2571 vcl_si_set * read_map, vcl_si_set * write_map,
2572 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002573 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002574{
2575 vcl_mq_evt_conn_t *mqc;
2576 int __clib_unused n_read;
2577 int n_mq_evts, i;
2578 u64 buf;
2579
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002580 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
2581 {
2582 vcl_api_retry_attach (wrk);
2583 return 0;
2584 }
2585
Florin Coras134a9962018-08-28 11:32:04 -07002586 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2587 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2588 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002589 for (i = 0; i < n_mq_evts; i++)
2590 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002591 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
2592 {
2593 vcl_api_handle_disconnect (wrk);
2594 continue;
2595 }
2596
Florin Coras134a9962018-08-28 11:32:04 -07002597 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002598 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002599 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002600 except_map, 0, bits_set);
2601 }
2602
2603 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2604}
2605
Dave Wallace543852a2017-08-03 02:11:34 -04002606int
Florin Coras294afe22019-01-07 17:49:17 -08002607vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2608 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002609{
Florin Coras54693d22018-07-17 10:46:29 -07002610 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002611 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002612 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002613 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002614
Dave Wallace7876d392017-10-19 03:53:57 -04002615 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002616 {
Florin Coras134a9962018-08-28 11:32:04 -07002617 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002618 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002619 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2620 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002621 }
Dave Wallace7876d392017-10-19 03:53:57 -04002622 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002623 {
Florin Coras134a9962018-08-28 11:32:04 -07002624 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002625 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002626 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2627 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002628 }
Dave Wallace7876d392017-10-19 03:53:57 -04002629 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002630 {
Florin Coras134a9962018-08-28 11:32:04 -07002631 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002632 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002633 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2634 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002635 }
2636
Florin Coras54693d22018-07-17 10:46:29 -07002637 if (!n_bits)
2638 return 0;
2639
2640 if (!write_map)
2641 goto check_rd;
2642
Florin Coras096a1d52021-01-27 15:33:51 -08002643 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2644 {
2645 if (!(s = vcl_session_get (wrk, sid)))
2646 {
2647 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2648 bits_set++;
2649 continue;
2650 }
Florin Coras54693d22018-07-17 10:46:29 -07002651
Florin Coras096a1d52021-01-27 15:33:51 -08002652 if (vcl_session_write_ready (s))
2653 {
2654 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2655 bits_set++;
2656 }
Florin Coras607eb202023-05-29 16:19:38 -07002657 else
Florin Coras096a1d52021-01-27 15:33:51 -08002658 {
Florin Coras607eb202023-05-29 16:19:38 -07002659 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras096a1d52021-01-27 15:33:51 -08002660 }
2661 }
Florin Coras54693d22018-07-17 10:46:29 -07002662
2663check_rd:
2664 if (!read_map)
2665 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002666
Florin Coras096a1d52021-01-27 15:33:51 -08002667 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2668 {
2669 if (!(s = vcl_session_get (wrk, sid)))
2670 {
2671 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2672 bits_set++;
2673 continue;
2674 }
Florin Coras54693d22018-07-17 10:46:29 -07002675
Florin Coras096a1d52021-01-27 15:33:51 -08002676 if (vcl_session_read_ready (s))
2677 {
2678 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2679 bits_set++;
2680 }
2681 }
Florin Coras54693d22018-07-17 10:46:29 -07002682
2683check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002684
Florin Coras86f04502018-09-12 16:08:01 -07002685 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2686 {
2687 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2688 read_map, write_map, except_map, &bits_set);
2689 }
2690 vec_reset_length (wrk->unhandled_evts_vector);
2691
Florin Coras99368312018-08-02 10:45:44 -07002692 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002693 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002694 time_to_wait, &bits_set);
2695 else
Florin Coras134a9962018-08-28 11:32:04 -07002696 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002697 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002698
Dave Wallace543852a2017-08-03 02:11:34 -04002699 return (bits_set);
2700}
2701
Dave Wallacef7f809c2017-10-03 01:48:42 -04002702static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002703vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002704{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002705 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002706 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002707 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002708
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002709 if (VPPCOM_DEBUG <= 3)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002710 return;
2711
Florin Coras6c3b2182020-10-19 18:36:48 -07002712 s = vcl_session_get_w_handle (wrk, vep_handle);
2713 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002714 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002715 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002716 goto done;
2717 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002718 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002719 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002720 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002721 goto done;
2722 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002723 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002724 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002725 "{\n"
2726 " is_vep = %u\n"
2727 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002728 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002729 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2730 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002731
Florin Coras7e5e62b2019-07-30 14:08:23 -07002732 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002733 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002734 s = vcl_session_get_w_handle (wrk, sh);
2735 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002736 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002737 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002738 goto done;
2739 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002740 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002741 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002742 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002743 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002744 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002745 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002746 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002747 goto done;
2748 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002749 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002750 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2751 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002752 sh, s->vep.vep_sh, vep_handle);
2753 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002754 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002755 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002756 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002757 " next_sh = 0x%x (%u)\n"
2758 " prev_sh = 0x%x (%u)\n"
2759 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002760 " ev.events = 0x%x\n"
2761 " ev.data.u64 = 0x%llx\n"
2762 " et_mask = 0x%x\n"
2763 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002764 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002765 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2766 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002767 }
2768 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002769
2770done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002771 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002772}
2773
2774int
2775vppcom_epoll_create (void)
2776{
Florin Coras134a9962018-08-28 11:32:04 -07002777 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002778 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002779
Florin Coras134a9962018-08-28 11:32:04 -07002780 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002781
Florin Coras6c3b2182020-10-19 18:36:48 -07002782 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002783 vep_session->vep.vep_sh = ~0;
2784 vep_session->vep.next_sh = ~0;
2785 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002786 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002787
Florin Corasa7a1a222018-12-30 17:11:31 -08002788 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2789 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002790
Florin Corasab2f6db2018-08-31 14:31:41 -07002791 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002792}
2793
Florin Corasb0116a12023-02-07 09:11:47 -08002794static void
2795vcl_epoll_ctl_add_unhandled_event (vcl_worker_t *wrk, vcl_session_t *s,
2796 u8 is_epollet, session_evt_type_t evt)
2797{
2798 if (!is_epollet)
2799 {
Florin Corasc2a14172023-02-28 21:13:50 -08002800 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
2801 vcl_epoll_lt_add (wrk, s);
Florin Corasb0116a12023-02-07 09:11:47 -08002802 return;
2803 }
2804
2805 session_event_t e = { 0 };
2806 e.session_index = s->session_index;
2807 e.event_type = evt;
2808 if (evt == SESSION_IO_EVT_RX)
2809 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
2810 vec_add1 (wrk->unhandled_evts_vector, e);
2811}
2812
Dave Wallacef7f809c2017-10-03 01:48:42 -04002813int
Florin Coras134a9962018-08-28 11:32:04 -07002814vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002815 struct epoll_event *event)
2816{
Florin Coras134a9962018-08-28 11:32:04 -07002817 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras87f76002021-06-28 19:13:29 -07002818 int rv = VPPCOM_OK, add_evt = 0;
Florin Coras7e12d942018-06-27 14:32:43 -07002819 vcl_session_t *vep_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002820 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002821
Florin Coras134a9962018-08-28 11:32:04 -07002822 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002823 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002824 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002825 return VPPCOM_EINVAL;
2826 }
2827
Florin Coras134a9962018-08-28 11:32:04 -07002828 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002829 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002830 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002831 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002832 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002833 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002834 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002835 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002836 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002837 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002838 }
2839
Florin Coras134a9962018-08-28 11:32:04 -07002840 ASSERT (vep_session->vep.vep_sh == ~0);
2841 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002842
Florin Coras17ec5772020-08-12 20:46:29 -07002843 s = vcl_session_get_w_handle (wrk, session_handle);
2844 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002845 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002846 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002847 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002848 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002849 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002850 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002851 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002852 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002853 }
2854
2855 switch (op)
2856 {
2857 case EPOLL_CTL_ADD:
2858 if (PREDICT_FALSE (!event))
2859 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002860 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002861 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002862 }
Florin Coras2645f682021-06-04 15:59:41 -07002863 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
2864 {
2865 VDBG (0, "EPOLL_CTL_ADD: %u already epolled!", s->session_index);
2866 rv = VPPCOM_EEXIST;
2867 goto done;
2868 }
Florin Coras134a9962018-08-28 11:32:04 -07002869 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002870 {
Florin Coras7e12d942018-06-27 14:32:43 -07002871 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002872 next_session = vcl_session_get_w_handle (wrk,
2873 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002874 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002875 {
Florin Coras5e062572019-03-14 19:07:51 -07002876 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002877 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002878 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002879 }
Florin Coras134a9962018-08-28 11:32:04 -07002880 ASSERT (next_session->vep.prev_sh == vep_handle);
2881 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002882 }
Florin Coras17ec5772020-08-12 20:46:29 -07002883 s->vep.next_sh = vep_session->vep.next_sh;
2884 s->vep.prev_sh = vep_handle;
2885 s->vep.vep_sh = vep_handle;
2886 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
Florin Corasfa3884f2021-06-22 20:04:46 -07002887 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras17ec5772020-08-12 20:46:29 -07002888 s->vep.ev = *event;
Florin Coras30ecfa82023-06-14 11:15:36 -07002889 s->vep.ev.events |= EPOLLHUP | EPOLLERR;
Florin Coras6c3b2182020-10-19 18:36:48 -07002890 s->flags &= ~VCL_SESSION_F_IS_VEP;
2891 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002892 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002893
Florin Coras470d72f2023-06-01 21:50:03 -07002894 if ((event->events & EPOLLOUT))
hanlin475c9d72019-12-26 11:44:28 +08002895 {
Florin Coras470d72f2023-06-01 21:50:03 -07002896 int write_ready = vcl_session_write_ready (s);
2897
2898 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2899 if (write_ready > 0)
2900 {
2901 /* Generate EPOLLOUT if tx fifo not full */
2902 vcl_epoll_ctl_add_unhandled_event (
2903 wrk, s, event->events & EPOLLET, SESSION_IO_EVT_TX);
2904 add_evt = 1;
2905 }
2906 else
2907 {
2908 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF);
2909 }
hanlin475c9d72019-12-26 11:44:28 +08002910 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002911 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002912 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002913 {
Florin Corasb0116a12023-02-07 09:11:47 -08002914 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2915 SESSION_IO_EVT_RX);
Florin Coras87f76002021-06-28 19:13:29 -07002916 add_evt = 1;
2917 }
2918 if (!add_evt && vcl_session_is_closing (s))
2919 {
2920 session_event_t e = { 0 };
2921 if (s->session_state == VCL_STATE_VPP_CLOSING)
2922 e.event_type = SESSION_CTRL_EVT_DISCONNECTED;
2923 else
2924 e.event_type = SESSION_CTRL_EVT_RESET;
2925 e.session_index = s->session_index;
2926 e.postponed = 1;
2927 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras6e3c1f82020-01-15 01:30:46 +00002928 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002929 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2930 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002931 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002932 break;
2933
2934 case EPOLL_CTL_MOD:
2935 if (PREDICT_FALSE (!event))
2936 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002937 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002938 rv = VPPCOM_EINVAL;
2939 goto done;
2940 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002941 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002942 {
Florin Coras5e062572019-03-14 19:07:51 -07002943 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002944 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002945 goto done;
2946 }
Florin Coras17ec5772020-08-12 20:46:29 -07002947 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002948 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002949 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002950 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002951 rv = VPPCOM_EINVAL;
2952 goto done;
2953 }
hanlin475c9d72019-12-26 11:44:28 +08002954
Florin Coras470d72f2023-06-01 21:50:03 -07002955 /* Generate EPOLLOUT if session write ready and event was not on */
2956 if ((event->events & EPOLLOUT) && !(s->vep.ev.events & EPOLLOUT))
2957 {
2958 /* Fifo size load acq synchronized with update store rel */
2959 int write_ready = vcl_session_write_ready (s);
2960
2961 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2962 if (write_ready > 0)
2963 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2964 SESSION_IO_EVT_TX);
2965 else
2966 /* Request deq ntf in case dequeue happened while updating flag */
2967 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF);
2968 }
2969 else if (!(event->events & EPOLLOUT))
Florin Coras607eb202023-05-29 16:19:38 -07002970 vcl_session_del_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Corasbc4d5b02023-05-17 23:20:56 -07002971
Florin Coras2645f682021-06-04 15:59:41 -07002972 /* Generate EPOLLIN if session read ready and event was not on */
2973 if ((event->events & EPOLLIN) && !(s->vep.ev.events & EPOLLIN) &&
2974 (vcl_session_read_ready (s) > 0))
2975 {
Florin Corasb0116a12023-02-07 09:11:47 -08002976 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2977 SESSION_IO_EVT_RX);
Florin Coras2645f682021-06-04 15:59:41 -07002978 }
Florin Coras17ec5772020-08-12 20:46:29 -07002979 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2980 s->vep.ev = *event;
Florin Coras30ecfa82023-06-14 11:15:36 -07002981 s->vep.ev.events |= EPOLLHUP | EPOLLERR;
Florin Corasbc4d5b02023-05-17 23:20:56 -07002982
Florin Corasa7a1a222018-12-30 17:11:31 -08002983 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2984 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002985 break;
2986
2987 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07002988 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002989 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002990 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002991 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002992 goto done;
2993 }
Florin Coras17ec5772020-08-12 20:46:29 -07002994 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002995 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002996 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002997 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002998 rv = VPPCOM_EINVAL;
2999 goto done;
3000 }
3001
Florin Coras17ec5772020-08-12 20:46:29 -07003002 if (s->vep.prev_sh == vep_handle)
3003 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003004 else
3005 {
Florin Coras7e12d942018-06-27 14:32:43 -07003006 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07003007 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07003008 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003009 {
Florin Coras5e062572019-03-14 19:07:51 -07003010 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07003011 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003012 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003013 }
Florin Coras134a9962018-08-28 11:32:04 -07003014 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003015 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003016 }
Florin Coras17ec5772020-08-12 20:46:29 -07003017 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04003018 {
Florin Coras7e12d942018-06-27 14:32:43 -07003019 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07003020 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07003021 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003022 {
Florin Coras5e062572019-03-14 19:07:51 -07003023 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07003024 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003025 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003026 }
Florin Coras134a9962018-08-28 11:32:04 -07003027 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003028 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003029 }
3030
Florin Corasfa3884f2021-06-22 20:04:46 -07003031 if (s->vep.lt_next != VCL_INVALID_SESSION_INDEX)
3032 vcl_epoll_lt_del (wrk, s);
3033
Florin Coras17ec5772020-08-12 20:46:29 -07003034 memset (&s->vep, 0, sizeof (s->vep));
3035 s->vep.next_sh = ~0;
3036 s->vep.prev_sh = ~0;
3037 s->vep.vep_sh = ~0;
Florin Corasfa3884f2021-06-22 20:04:46 -07003038 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras6c3b2182020-10-19 18:36:48 -07003039 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08003040
Florin Corasf1ddeeb2021-06-10 08:08:53 -07003041 if (vcl_session_is_open (s))
Florin Coras607eb202023-05-29 16:19:38 -07003042 vcl_session_del_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08003043
Florin Coras5e062572019-03-14 19:07:51 -07003044 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08003045 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003046 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003047 break;
3048
3049 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08003050 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003051 rv = VPPCOM_EINVAL;
3052 }
3053
Florin Coras134a9962018-08-28 11:32:04 -07003054 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003055
3056done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04003057 return rv;
3058}
3059
Florin Coras30ecfa82023-06-14 11:15:36 -07003060always_inline u8
3061vcl_ep_session_needs_evt (vcl_session_t *s, u32 evt)
3062{
3063 /* No event if not epolled / events reset on hup or level-trigger on */
3064 return ((s->vep.ev.events & evt) &&
3065 s->vep.lt_next == VCL_INVALID_SESSION_INDEX);
3066}
3067
Florin Coras86f04502018-09-12 16:08:01 -07003068static inline void
3069vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
3070 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07003071{
3072 session_disconnected_msg_t *disconnected_msg;
3073 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07003074 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08003075 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07003076 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07003077 u8 add_event = 0;
3078
3079 switch (e->event_type)
3080 {
Florin Coras653e43f2019-03-04 10:56:23 -08003081 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08003082 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003083 s = vcl_session_get (wrk, sid);
3084 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003085 break;
Florin Corasb242d312020-10-26 15:35:40 -07003086 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras30ecfa82023-06-14 11:15:36 -07003087 if (!vcl_ep_session_needs_evt (s, EPOLLIN) ||
3088 (s->flags & VCL_SESSION_F_HAS_RX_EVT))
Florin Coras86f04502018-09-12 16:08:01 -07003089 break;
Florin Coras30ecfa82023-06-14 11:15:36 -07003090 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 = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003093 session_evt_data = s->vep.ev.data.u64;
3094 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07003095 break;
Florin Coras653e43f2019-03-04 10:56:23 -08003096 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08003097 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003098 s = vcl_session_get (wrk, sid);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003099 if (!s || !vcl_session_is_open (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003100 break;
Florin Coras48178552023-05-17 22:59:40 -07003101 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ? s->ct_tx_fifo :
3102 s->tx_fifo);
Florin Coras30ecfa82023-06-14 11:15:36 -07003103 if (!vcl_ep_session_needs_evt (s, EPOLLOUT))
Florin Coras86f04502018-09-12 16:08:01 -07003104 break;
Florin Coras30ecfa82023-06-14 11:15:36 -07003105 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003106 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003107 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003108 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003109 break;
Florin Coras86f04502018-09-12 16:08:01 -07003110 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07003111 if (!e->postponed)
3112 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
3113 else
3114 s = vcl_session_get (wrk, e->session_index);
Florin Coras30ecfa82023-06-14 11:15:36 -07003115 if (!s || !vcl_ep_session_needs_evt (s, EPOLLIN))
Florin Coras3c7d4f92018-12-14 11:28:43 -08003116 break;
Florin Corasb242d312020-10-26 15:35:40 -07003117 sid = s->session_index;
Florin Coras30ecfa82023-06-14 11:15:36 -07003118 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003119 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003120 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003121 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003122 break;
3123 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07003124 if (!e->postponed)
3125 {
3126 connected_msg = (session_connected_msg_t *) e->data;
3127 sid = vcl_session_connected_handler (wrk, connected_msg);
3128 }
3129 else
3130 sid = e->session_index;
3131 s = vcl_session_get (wrk, sid);
Florin Coras30ecfa82023-06-14 11:15:36 -07003132 if (vcl_session_is_closed (s) || !vcl_ep_session_needs_evt (s, EPOLLOUT))
Florin Coras72f77822019-01-22 19:05:52 -08003133 break;
Florin Coras1d84abc2023-01-13 09:44:14 -08003134 /* We didn't have a fifo when the event was added */
Florin Coras607eb202023-05-29 16:19:38 -07003135 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras72f77822019-01-22 19:05:52 -08003136 add_event = 1;
Florin Coras30ecfa82023-06-14 11:15:36 -07003137 session_events = s->vep.ev.events;
3138 /* Generate EPOLLOUT because there's no connected event */
wanghanlin9e42cc22021-06-25 17:40:13 +08003139 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003140 session_evt_data = s->vep.ev.data.u64;
3141 if (s->session_state == VCL_STATE_DETACHED)
Florin Coras30ecfa82023-06-14 11:15:36 -07003142 {
3143 events[*num_ev].events |= EPOLLHUP;
3144 s->vep.ev.events = 0;
3145 }
Florin Coras86f04502018-09-12 16:08:01 -07003146 break;
3147 case SESSION_CTRL_EVT_DISCONNECTED:
Florin Coras87f76002021-06-28 19:13:29 -07003148 if (!e->postponed)
3149 {
3150 disconnected_msg = (session_disconnected_msg_t *) e->data;
3151 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
3152 }
3153 else
3154 {
3155 s = vcl_session_get (wrk, e->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003156 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
Florin Coras87f76002021-06-28 19:13:29 -07003157 }
Florin Coras30ecfa82023-06-14 11:15:36 -07003158 if (vcl_session_is_closed (s) || !vcl_ep_session_needs_evt (s, EPOLLHUP))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003159 {
Florin Coras74254b52021-12-08 11:03:08 -08003160 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003161 vcl_session_free (wrk, s);
3162 break;
3163 }
Florin Corasb242d312020-10-26 15:35:40 -07003164 sid = s->session_index;
3165 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003166 add_event = 1;
liuyacanffd9ddb2021-11-01 10:22:09 +08003167 if (EPOLLRDHUP & session_events)
3168 {
3169 /* If app can distinguish between RDHUP and HUP,
3170 * we make finer control */
3171 events[*num_ev].events = EPOLLRDHUP;
3172 if (s->flags & VCL_SESSION_F_WR_SHUTDOWN)
3173 {
3174 events[*num_ev].events |= EPOLLHUP;
3175 }
3176 }
3177 else
3178 {
3179 events[*num_ev].events = EPOLLHUP;
3180 }
Florin Corasb242d312020-10-26 15:35:40 -07003181 session_evt_data = s->vep.ev.data.u64;
Florin Coras30ecfa82023-06-14 11:15:36 -07003182 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003183 break;
Florin Coras01ee7a72023-03-01 00:49:25 -08003184 case SESSION_CTRL_EVT_BOUND:
3185 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
3186 break;
Florin Coras86f04502018-09-12 16:08:01 -07003187 case SESSION_CTRL_EVT_RESET:
Florin Coras87f76002021-06-28 19:13:29 -07003188 if (!e->postponed)
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003189 {
3190 sid =
3191 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
3192 s = vcl_session_get (wrk, sid);
3193 }
Florin Coras87f76002021-06-28 19:13:29 -07003194 else
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003195 {
3196 sid = e->session_index;
3197 s = vcl_session_get (wrk, sid);
3198 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
3199 }
Florin Coras30ecfa82023-06-14 11:15:36 -07003200 if (vcl_session_is_closed (s) || !vcl_ep_session_needs_evt (s, EPOLLHUP))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003201 {
Florin Coras74254b52021-12-08 11:03:08 -08003202 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003203 vcl_session_free (wrk, s);
3204 break;
3205 }
Florin Corasb242d312020-10-26 15:35:40 -07003206 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003207 add_event = 1;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003208 events[*num_ev].events = EPOLLERR | EPOLLHUP;
3209 if ((EPOLLRDHUP & session_events) &&
3210 (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3211 {
Yacan Liuab157702022-09-26 16:41:32 +08003212 events[*num_ev].events |= EPOLLRDHUP;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003213 }
3214 if ((EPOLLIN & session_events) && (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3215 {
3216 events[*num_ev].events |= EPOLLIN;
3217 }
Florin Corasb242d312020-10-26 15:35:40 -07003218 session_evt_data = s->vep.ev.data.u64;
Florin Coras30ecfa82023-06-14 11:15:36 -07003219 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003220 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08003221 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
3222 vcl_session_unlisten_reply_handler (wrk, e->data);
3223 break;
Florin Coras68b7e582020-01-21 18:33:23 -08003224 case SESSION_CTRL_EVT_MIGRATED:
3225 vcl_session_migrated_handler (wrk, e->data);
3226 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07003227 case SESSION_CTRL_EVT_CLEANUP:
3228 vcl_session_cleanup_handler (wrk, e->data);
3229 break;
Florin Coras30e79c22019-01-02 19:31:22 -08003230 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
3231 vcl_session_req_worker_update_handler (wrk, e->data);
3232 break;
3233 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
3234 vcl_session_worker_update_reply_handler (wrk, e->data);
3235 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07003236 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
3237 vcl_session_app_add_segment_handler (wrk, e->data);
3238 break;
3239 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
3240 vcl_session_app_del_segment_handler (wrk, e->data);
3241 break;
hanlina3a48962020-07-13 11:09:15 +08003242 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07003243 vcl_worker_rpc_handler (wrk, e->data);
3244 break;
Florin Coras86f04502018-09-12 16:08:01 -07003245 default:
3246 VDBG (0, "unhandled: %u", e->event_type);
3247 break;
3248 }
3249
3250 if (add_event)
3251 {
Florin Coras30ecfa82023-06-14 11:15:36 -07003252 ASSERT (s->flags & VCL_SESSION_F_IS_VEP_SESSION);
Florin Coras86f04502018-09-12 16:08:01 -07003253 events[*num_ev].data.u64 = session_evt_data;
3254 if (EPOLLONESHOT & session_events)
3255 {
Florin Corasb242d312020-10-26 15:35:40 -07003256 s = vcl_session_get (wrk, sid);
Florin Coras30ecfa82023-06-14 11:15:36 -07003257 if (!(events[*num_ev].events & EPOLLHUP))
3258 s->vep.ev.events = EPOLLHUP | EPOLLERR;
Florin Coras86f04502018-09-12 16:08:01 -07003259 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003260 else if (!(EPOLLET & session_events))
Florin Corasfe286f72021-06-04 10:07:55 -07003261 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003262 s = vcl_session_get (wrk, sid);
3263 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
3264 vcl_epoll_lt_add (wrk, s);
Florin Corasfe286f72021-06-04 10:07:55 -07003265 }
Florin Coras86f04502018-09-12 16:08:01 -07003266 *num_ev += 1;
3267 }
3268}
3269
3270static int
3271vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
3272 struct epoll_event *events, u32 maxevents,
3273 double wait_for_time, u32 * num_ev)
3274{
Florin Coras99368312018-08-02 10:45:44 -07003275 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07003276 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07003277 int i;
3278
Florin Coras539663c2018-09-28 14:59:37 -07003279 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
3280 goto handle_dequeued;
3281
Florin Coras54693d22018-07-17 10:46:29 -07003282 if (svm_msg_q_is_empty (mq))
3283 {
3284 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08003285 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003286 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08003287 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07003288 else
3289 {
Florin Coras60f1fc12018-08-16 14:57:31 -07003290 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08003291 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003292 }
3293 }
Florin Corase003a1b2019-06-05 10:47:16 -07003294 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08003295 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07003296
Florin Coras539663c2018-09-28 14:59:37 -07003297handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07003298 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07003299 {
Florin Coras134a9962018-08-28 11:32:04 -07003300 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07003301 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08003302 if (*num_ev < maxevents)
3303 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
3304 else
3305 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07003306 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07003307 }
Florin Corasaa27eb92018-10-13 12:20:01 -07003308 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08003309 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07003310 return *num_ev;
3311}
3312
Florin Coras99368312018-08-02 10:45:44 -07003313static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003314vppcom_epoll_wait_condvar (vcl_worker_t *wrk, struct epoll_event *events,
3315 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003316{
Florin Corasccdb8b82021-04-28 13:01:06 -07003317 double end = -1;
Florin Coras14ed6df2019-03-06 21:13:42 -08003318
3319 if (!n_evts)
3320 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003321 if (timeout_ms > 0)
3322 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras14ed6df2019-03-06 21:13:42 -08003323 }
3324
3325 do
3326 {
3327 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
Florin Corasccdb8b82021-04-28 13:01:06 -07003328 timeout_ms, &n_evts);
3329 if (n_evts || !timeout_ms)
Florin Coras14ed6df2019-03-06 21:13:42 -08003330 return n_evts;
Florin Coras14ed6df2019-03-06 21:13:42 -08003331 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003332 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Coras14ed6df2019-03-06 21:13:42 -08003333
3334 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003335}
3336
3337static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003338vppcom_epoll_wait_eventfd (vcl_worker_t *wrk, struct epoll_event *events,
3339 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003340{
Florin Coras99368312018-08-02 10:45:44 -07003341 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08003342 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07003343 int n_mq_evts, i;
Florin Corasccdb8b82021-04-28 13:01:06 -07003344 double end = -1;
Florin Coras99368312018-08-02 10:45:44 -07003345 u64 buf;
3346
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003347 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
3348 {
3349 vcl_api_retry_attach (wrk);
3350 return n_evts;
3351 }
3352
Florin Coras134a9962018-08-28 11:32:04 -07003353 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08003354 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07003355 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003356 if (timeout_ms > 0)
3357 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras99368312018-08-02 10:45:44 -07003358 }
3359
Florin Corasb13ba132021-01-27 16:05:24 -08003360 do
3361 {
3362 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
Florin Corasccdb8b82021-04-28 13:01:06 -07003363 vec_len (wrk->mq_events), timeout_ms);
Florin Corasb13ba132021-01-27 16:05:24 -08003364 if (n_mq_evts < 0)
3365 {
3366 VDBG (0, "epoll_wait error %u", errno);
3367 return n_evts;
3368 }
3369
3370 for (i = 0; i < n_mq_evts; i++)
3371 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003372 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
3373 {
3374 /* api socket was closed */
3375 vcl_api_handle_disconnect (wrk);
3376 continue;
3377 }
3378
Florin Corasb13ba132021-01-27 16:05:24 -08003379 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3380 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3381 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
3382 &n_evts);
3383 }
3384
Florin Corasccdb8b82021-04-28 13:01:06 -07003385 if (n_evts || !timeout_ms)
Florin Corasb13ba132021-01-27 16:05:24 -08003386 return n_evts;
Florin Corasb13ba132021-01-27 16:05:24 -08003387 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003388 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Corasb13ba132021-01-27 16:05:24 -08003389
3390 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003391}
3392
Florin Corasfe286f72021-06-04 10:07:55 -07003393static void
Florin Corasfe286f72021-06-04 10:07:55 -07003394vcl_epoll_wait_handle_lt (vcl_worker_t *wrk, struct epoll_event *events,
3395 int maxevents, u32 *n_evts)
3396{
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003397 u32 add_event = 0, evt_flags = 0, next, *to_remove = 0, *si;
Florin Corasfe286f72021-06-04 10:07:55 -07003398 vcl_session_t *s;
3399 u64 evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003400 int rv;
Florin Corasfe286f72021-06-04 10:07:55 -07003401
Florin Corasfa3884f2021-06-22 20:04:46 -07003402 ASSERT (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX);
Florin Corasfe286f72021-06-04 10:07:55 -07003403 if (*n_evts >= maxevents)
Florin Corasfa3884f2021-06-22 20:04:46 -07003404 return;
Florin Corasfe286f72021-06-04 10:07:55 -07003405
Florin Corasfa3884f2021-06-22 20:04:46 -07003406 next = wrk->ep_lt_current;
3407 do
Florin Corasfe286f72021-06-04 10:07:55 -07003408 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003409 s = vcl_session_get (wrk, next);
3410 next = s->vep.lt_next;
3411
Florin Coras30ecfa82023-06-14 11:15:36 -07003412 if (s->vep.ev.events == 0)
3413 {
3414 vec_add1 (to_remove, s->session_index);
3415 continue;
3416 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003417 if ((s->vep.ev.events & EPOLLIN) && (rv = vcl_session_read_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003418 {
3419 add_event = 1;
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003420 evt_flags |= rv > 0 ? EPOLLIN : EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003421 evt_data = s->vep.ev.data.u64;
3422 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003423 if ((s->vep.ev.events & EPOLLOUT) && (rv = vcl_session_write_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003424 {
3425 add_event = 1;
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003426 evt_flags |= rv > 0 ? EPOLLOUT : EPOLLHUP | EPOLLRDHUP;
Florin Corasfa3884f2021-06-22 20:04:46 -07003427 evt_data = s->vep.ev.data.u64;
3428 }
3429 if (!add_event && s->session_state > VCL_STATE_READY)
3430 {
3431 add_event = 1;
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003432 evt_flags |= EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003433 evt_data = s->vep.ev.data.u64;
3434 }
3435 if (add_event)
3436 {
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003437 events[*n_evts].events = evt_flags;
Florin Corasfe286f72021-06-04 10:07:55 -07003438 events[*n_evts].data.u64 = evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003439 if (EPOLLONESHOT & s->vep.ev.events)
Florin Coras30ecfa82023-06-14 11:15:36 -07003440 s->vep.ev.events = EPOLLHUP | EPOLLERR;
3441 if (evt_flags & EPOLLHUP)
Florin Corasfa3884f2021-06-22 20:04:46 -07003442 s->vep.ev.events = 0;
Florin Coras5cca6692023-06-20 08:47:37 -07003443 *n_evts += 1;
3444 add_event = 0;
3445 evt_flags = 0;
Florin Corasfe286f72021-06-04 10:07:55 -07003446 if (*n_evts == maxevents)
3447 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003448 wrk->ep_lt_current = next;
Florin Corasfe286f72021-06-04 10:07:55 -07003449 break;
3450 }
3451 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003452 else
3453 {
Florin Coras7ff72742023-05-16 13:05:28 -07003454 vec_add1 (to_remove, s->session_index);
Florin Corasfa3884f2021-06-22 20:04:46 -07003455 }
Florin Corasfe286f72021-06-04 10:07:55 -07003456 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003457 while (next != wrk->ep_lt_current);
Florin Coras7ff72742023-05-16 13:05:28 -07003458
3459 vec_foreach (si, to_remove)
3460 {
3461 s = vcl_session_get (wrk, *si);
3462 vcl_epoll_lt_del (wrk, s);
3463 }
3464 vec_free (to_remove);
Florin Corasfe286f72021-06-04 10:07:55 -07003465}
3466
Dave Wallacef7f809c2017-10-03 01:48:42 -04003467int
Florin Coras134a9962018-08-28 11:32:04 -07003468vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003469 int maxevents, double wait_for_time)
3470{
Florin Coras134a9962018-08-28 11:32:04 -07003471 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003472 vcl_session_t *vep_session;
Florin Corasfa3884f2021-06-22 20:04:46 -07003473 u32 n_evts = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003474 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003475
3476 if (PREDICT_FALSE (maxevents <= 0))
3477 {
Florin Coras5e062572019-03-14 19:07:51 -07003478 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003479 return VPPCOM_EINVAL;
3480 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003481
Florin Coras134a9962018-08-28 11:32:04 -07003482 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003483 if (!vep_session)
3484 return VPPCOM_EBADFD;
3485
Florin Coras6c3b2182020-10-19 18:36:48 -07003486 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003487 {
Florin Coras5e062572019-03-14 19:07:51 -07003488 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003489 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003490 }
Florin Coras54693d22018-07-17 10:46:29 -07003491
Florin Coras86f04502018-09-12 16:08:01 -07003492 if (vec_len (wrk->unhandled_evts_vector))
3493 {
3494 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3495 {
3496 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3497 events, &n_evts);
3498 if (n_evts == maxevents)
3499 {
Florin Corase003a1b2019-06-05 10:47:16 -07003500 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3501 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003502 }
3503 }
Florin Corase003a1b2019-06-05 10:47:16 -07003504 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003505 }
liuyacancba87102021-09-10 15:14:05 +08003506
3507 if (PREDICT_FALSE (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX))
3508 vcl_epoll_wait_handle_lt (wrk, events, maxevents, &n_evts);
3509
wanghanlin8919fec2021-03-18 20:00:41 +08003510 /* Request to only drain unhandled */
3511 if ((int) wait_for_time == -2)
3512 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003513
Florin Coras86f04502018-09-12 16:08:01 -07003514
Florin Corasfe286f72021-06-04 10:07:55 -07003515 if (vcm->cfg.use_mq_eventfd)
3516 n_evts = vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3517 wait_for_time);
3518 else
3519 n_evts = vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3520 wait_for_time);
3521
Florin Corasfe286f72021-06-04 10:07:55 -07003522 return n_evts;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003523}
3524
Dave Wallace35830af2017-10-09 01:43:42 -04003525int
Florin Coras134a9962018-08-28 11:32:04 -07003526vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003527 void *buffer, uint32_t * buflen)
3528{
Florin Coras134a9962018-08-28 11:32:04 -07003529 vcl_worker_t *wrk = vcl_worker_get_current ();
liuyacan55c952e2021-06-13 14:54:55 +08003530 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07003531 vppcom_endpt_t *ep = buffer;
Florin Coras04ae8272021-04-12 19:55:37 -07003532 transport_endpt_attr_t tea;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003533 vcl_session_t *session;
3534 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003535
Florin Coras134a9962018-08-28 11:32:04 -07003536 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003537 if (!session)
3538 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003539
Dave Wallace35830af2017-10-09 01:43:42 -04003540 switch (op)
3541 {
3542 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003543 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003544 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3545 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003546 break;
3547
Dave Wallace227867f2017-11-13 21:21:53 -05003548 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003549 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003550 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3551 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003552 break;
3553
3554 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003555 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003556 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003557 *flags =
3558 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003559 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003560 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003561 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003562 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3563 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003564 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003565 }
3566 else
3567 rv = VPPCOM_EINVAL;
3568 break;
3569
3570 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003571 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003572 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003573 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003574 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003575 else
Florin Corasac422d62020-10-19 20:51:36 -07003576 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003577
Florin Coras5e062572019-03-14 19:07:51 -07003578 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3579 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003580 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003581 }
3582 else
3583 rv = VPPCOM_EINVAL;
3584 break;
3585
3586 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003587 if (PREDICT_TRUE (buffer && buflen &&
3588 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003589 {
Florin Coras7e12d942018-06-27 14:32:43 -07003590 ep->is_ip4 = session->transport.is_ip4;
3591 ep->port = session->transport.rmt_port;
3592 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003593 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3594 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003595 else
Dave Barach178cf492018-11-13 16:34:13 -05003596 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3597 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003598 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003599 VDBG (1,
3600 "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3601 "addr = %U, port %u",
3602 session_handle, ep->is_ip4, vcl_format_ip46_address,
3603 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003604 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3605 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003606 }
3607 else
3608 rv = VPPCOM_EINVAL;
3609 break;
3610
3611 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003612 if (PREDICT_TRUE (buffer && buflen &&
3613 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003614 {
Florin Coras7e12d942018-06-27 14:32:43 -07003615 ep->is_ip4 = session->transport.is_ip4;
3616 ep->port = session->transport.lcl_port;
3617 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003618 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3619 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003620 else
Dave Barach178cf492018-11-13 16:34:13 -05003621 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3622 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003623 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003624 VDBG (1,
3625 "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3626 " port %d",
3627 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003628 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003629 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3630 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003631 }
3632 else
3633 rv = VPPCOM_EINVAL;
3634 break;
Stevenb5a11602017-10-11 09:59:30 -07003635
qinyangaf9b7152023-06-27 01:11:53 -07003636 case VPPCOM_ATTR_GET_ORIGINAL_DST:
3637 if (!session->transport.is_ip4)
3638 {
3639 /* now original dst only support ipv4*/
3640 rv = VPPCOM_EAFNOSUPPORT;
3641 break;
3642 }
3643 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*ep)) &&
3644 ep->ip))
3645 {
3646 ep->is_ip4 = session->transport.is_ip4;
3647 ep->port = session->original_dst_port;
3648 clib_memcpy_fast (ep->ip, &session->original_dst_ip4,
3649 sizeof (ip4_address_t));
3650 *buflen = sizeof (*ep);
3651 VDBG (1,
3652 "VPPCOM_ATTR_GET_ORIGINAL_DST: sh %u, is_ip4 = %u, addr = %U"
3653 " port %d",
3654 session_handle, ep->is_ip4, vcl_format_ip4_address,
3655 (ip4_address_t *) (&session->original_dst_ip4),
3656 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3657 clib_net_to_host_u16 (ep->port));
3658 }
3659 else
3660 rv = VPPCOM_EINVAL;
3661 break;
3662
Florin Corasef7cbf62019-10-17 09:56:27 -07003663 case VPPCOM_ATTR_SET_LCL_ADDR:
3664 if (PREDICT_TRUE (buffer && buflen &&
3665 (*buflen >= sizeof (*ep)) && ep->ip))
3666 {
3667 session->transport.is_ip4 = ep->is_ip4;
3668 session->transport.lcl_port = ep->port;
3669 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3670 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003671 VDBG (1,
3672 "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3673 " port %d",
3674 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Corasef7cbf62019-10-17 09:56:27 -07003675 &session->transport.lcl_ip,
3676 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3677 clib_net_to_host_u16 (ep->port));
3678 }
3679 else
3680 rv = VPPCOM_EINVAL;
3681 break;
3682
Dave Wallace048b1d62018-01-03 22:24:41 -05003683 case VPPCOM_ATTR_GET_LIBC_EPFD:
3684 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003685 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003686 break;
3687
3688 case VPPCOM_ATTR_SET_LIBC_EPFD:
3689 if (PREDICT_TRUE (buffer && buflen &&
3690 (*buflen == sizeof (session->libc_epfd))))
3691 {
3692 session->libc_epfd = *(int *) buffer;
3693 *buflen = sizeof (session->libc_epfd);
3694
Florin Coras5e062572019-03-14 19:07:51 -07003695 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3696 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003697 }
3698 else
3699 rv = VPPCOM_EINVAL;
3700 break;
3701
3702 case VPPCOM_ATTR_GET_PROTOCOL:
3703 if (buffer && buflen && (*buflen >= sizeof (int)))
3704 {
Florin Coras7e12d942018-06-27 14:32:43 -07003705 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003706 *buflen = sizeof (int);
3707
Florin Coras5e062572019-03-14 19:07:51 -07003708 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3709 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003710 }
3711 else
3712 rv = VPPCOM_EINVAL;
3713 break;
3714
3715 case VPPCOM_ATTR_GET_LISTEN:
3716 if (buffer && buflen && (*buflen >= sizeof (int)))
3717 {
Florin Corasac422d62020-10-19 20:51:36 -07003718 *(int *) buffer = vcl_session_has_attr (session,
3719 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003720 *buflen = sizeof (int);
3721
Florin Coras5e062572019-03-14 19:07:51 -07003722 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3723 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003724 }
3725 else
3726 rv = VPPCOM_EINVAL;
3727 break;
3728
3729 case VPPCOM_ATTR_GET_ERROR:
3730 if (buffer && buflen && (*buflen >= sizeof (int)))
3731 {
3732 *(int *) buffer = 0;
3733 *buflen = sizeof (int);
3734
Florin Coras5e062572019-03-14 19:07:51 -07003735 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3736 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003737 }
3738 else
3739 rv = VPPCOM_EINVAL;
3740 break;
3741
3742 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3743 if (buffer && buflen && (*buflen >= sizeof (u32)))
3744 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003745
3746 /* VPP-TBD */
3747 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003748 session->tx_fifo ?
3749 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003750 vcm->cfg.tx_fifo_size);
3751 *buflen = sizeof (u32);
3752
Florin Coras5e062572019-03-14 19:07:51 -07003753 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3754 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3755 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003756 }
3757 else
3758 rv = VPPCOM_EINVAL;
3759 break;
3760
Filip Tehlar2f09bfc2021-11-15 10:26:56 +00003761 case VPPCOM_ATTR_SET_DSCP:
3762 if (buffer && buflen && (*buflen >= sizeof (u8)))
3763 {
3764 session->dscp = *(u8 *) buffer;
3765
3766 VDBG (2, "VPPCOM_ATTR_SET_DSCP: %u (0x%x), buflen %d,",
3767 *(u8 *) buffer, *(u8 *) buffer, *buflen);
3768 }
3769 else
3770 rv = VPPCOM_EINVAL;
3771 break;
3772
Dave Wallace048b1d62018-01-03 22:24:41 -05003773 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3774 if (buffer && buflen && (*buflen == sizeof (u32)))
3775 {
3776 /* VPP-TBD */
3777 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003778 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3779 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3780 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003781 }
3782 else
3783 rv = VPPCOM_EINVAL;
3784 break;
3785
3786 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3787 if (buffer && buflen && (*buflen >= sizeof (u32)))
3788 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003789
3790 /* VPP-TBD */
3791 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003792 session->rx_fifo ?
3793 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003794 vcm->cfg.rx_fifo_size);
3795 *buflen = sizeof (u32);
3796
Florin Coras5e062572019-03-14 19:07:51 -07003797 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3798 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003799 }
3800 else
3801 rv = VPPCOM_EINVAL;
3802 break;
3803
3804 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3805 if (buffer && buflen && (*buflen == sizeof (u32)))
3806 {
3807 /* VPP-TBD */
3808 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003809 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3810 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3811 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003812 }
3813 else
3814 rv = VPPCOM_EINVAL;
3815 break;
3816
3817 case VPPCOM_ATTR_GET_REUSEADDR:
3818 if (buffer && buflen && (*buflen >= sizeof (int)))
3819 {
3820 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003821 *(int *) buffer = vcl_session_has_attr (session,
3822 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003823 *buflen = sizeof (int);
3824
Florin Coras5e062572019-03-14 19:07:51 -07003825 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3826 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003827 }
3828 else
3829 rv = VPPCOM_EINVAL;
3830 break;
3831
Stevenb5a11602017-10-11 09:59:30 -07003832 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003833 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003834 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003835 {
3836 /* VPP-TBD */
3837 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003838 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003839 else
Florin Corasac422d62020-10-19 20:51:36 -07003840 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003841
Florin Coras5e062572019-03-14 19:07:51 -07003842 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003843 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003844 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003845 }
3846 else
3847 rv = VPPCOM_EINVAL;
3848 break;
3849
3850 case VPPCOM_ATTR_GET_REUSEPORT:
3851 if (buffer && buflen && (*buflen >= sizeof (int)))
3852 {
3853 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003854 *(int *) buffer = vcl_session_has_attr (session,
3855 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003856 *buflen = sizeof (int);
3857
Florin Coras5e062572019-03-14 19:07:51 -07003858 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3859 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003860 }
3861 else
3862 rv = VPPCOM_EINVAL;
3863 break;
3864
3865 case VPPCOM_ATTR_SET_REUSEPORT:
3866 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003867 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003868 {
3869 /* VPP-TBD */
3870 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003871 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003872 else
Florin Corasac422d62020-10-19 20:51:36 -07003873 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003874
Florin Coras5e062572019-03-14 19:07:51 -07003875 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003876 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003877 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003878 }
3879 else
3880 rv = VPPCOM_EINVAL;
3881 break;
3882
3883 case VPPCOM_ATTR_GET_BROADCAST:
3884 if (buffer && buflen && (*buflen >= sizeof (int)))
3885 {
3886 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003887 *(int *) buffer = vcl_session_has_attr (session,
3888 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003889 *buflen = sizeof (int);
3890
Florin Coras5e062572019-03-14 19:07:51 -07003891 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3892 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003893 }
3894 else
3895 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003896 break;
3897
3898 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003899 if (buffer && buflen && (*buflen == sizeof (int)))
3900 {
3901 /* VPP-TBD */
3902 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003903 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003904 else
Florin Corasac422d62020-10-19 20:51:36 -07003905 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003906
Florin Coras5e062572019-03-14 19:07:51 -07003907 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003908 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003909 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003910 }
3911 else
3912 rv = VPPCOM_EINVAL;
3913 break;
3914
3915 case VPPCOM_ATTR_GET_V6ONLY:
3916 if (buffer && buflen && (*buflen >= sizeof (int)))
3917 {
3918 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003919 *(int *) buffer = vcl_session_has_attr (session,
3920 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003921 *buflen = sizeof (int);
3922
Florin Coras5e062572019-03-14 19:07:51 -07003923 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3924 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003925 }
3926 else
3927 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003928 break;
3929
3930 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003931 if (buffer && buflen && (*buflen == sizeof (int)))
3932 {
3933 /* VPP-TBD */
3934 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003935 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003936 else
Florin Corasac422d62020-10-19 20:51:36 -07003937 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003938
Florin Coras5e062572019-03-14 19:07:51 -07003939 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003940 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003941 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003942 }
3943 else
3944 rv = VPPCOM_EINVAL;
3945 break;
3946
3947 case VPPCOM_ATTR_GET_KEEPALIVE:
3948 if (buffer && buflen && (*buflen >= sizeof (int)))
3949 {
3950 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003951 *(int *) buffer = vcl_session_has_attr (session,
3952 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003953 *buflen = sizeof (int);
3954
Florin Coras5e062572019-03-14 19:07:51 -07003955 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3956 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003957 }
3958 else
3959 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003960 break;
Stevenbccd3392017-10-12 20:42:21 -07003961
3962 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003963 if (buffer && buflen && (*buflen == sizeof (int)))
3964 {
3965 /* VPP-TBD */
3966 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003967 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003968 else
Florin Corasac422d62020-10-19 20:51:36 -07003969 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003970
Florin Coras5e062572019-03-14 19:07:51 -07003971 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003972 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07003973 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003974 }
3975 else
3976 rv = VPPCOM_EINVAL;
3977 break;
3978
3979 case VPPCOM_ATTR_GET_TCP_NODELAY:
3980 if (buffer && buflen && (*buflen >= sizeof (int)))
3981 {
3982 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003983 *(int *) buffer = vcl_session_has_attr (session,
3984 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003985 *buflen = sizeof (int);
3986
Florin Coras5e062572019-03-14 19:07:51 -07003987 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3988 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003989 }
3990 else
3991 rv = VPPCOM_EINVAL;
3992 break;
3993
3994 case VPPCOM_ATTR_SET_TCP_NODELAY:
3995 if (buffer && buflen && (*buflen == sizeof (int)))
3996 {
3997 /* VPP-TBD */
3998 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003999 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05004000 else
Florin Corasac422d62020-10-19 20:51:36 -07004001 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05004002
Florin Coras5e062572019-03-14 19:07:51 -07004003 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004004 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07004005 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004006 }
4007 else
4008 rv = VPPCOM_EINVAL;
4009 break;
4010
4011 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
4012 if (buffer && buflen && (*buflen >= sizeof (int)))
4013 {
4014 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07004015 *(int *) buffer = vcl_session_has_attr (session,
4016 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004017 *buflen = sizeof (int);
4018
Florin Coras5e062572019-03-14 19:07:51 -07004019 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
4020 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004021 }
4022 else
4023 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07004024 break;
4025
4026 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05004027 if (buffer && buflen && (*buflen == sizeof (int)))
4028 {
4029 /* VPP-TBD */
4030 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07004031 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004032 else
Florin Corasac422d62020-10-19 20:51:36 -07004033 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004034
Florin Coras5e062572019-03-14 19:07:51 -07004035 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004036 vcl_session_has_attr (session,
4037 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004038 }
4039 else
4040 rv = VPPCOM_EINVAL;
4041 break;
4042
4043 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
4044 if (buffer && buflen && (*buflen >= sizeof (int)))
4045 {
4046 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07004047 *(int *) buffer = vcl_session_has_attr (session,
4048 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05004049 *buflen = sizeof (int);
4050
Florin Coras5e062572019-03-14 19:07:51 -07004051 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
4052 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004053 }
4054 else
4055 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07004056 break;
4057
4058 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05004059 if (buffer && buflen && (*buflen == sizeof (int)))
4060 {
4061 /* VPP-TBD */
4062 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07004063 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05004064 else
Florin Corasac422d62020-10-19 20:51:36 -07004065 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05004066
Florin Coras5e062572019-03-14 19:07:51 -07004067 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004068 vcl_session_has_attr (session,
4069 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004070 }
4071 else
4072 rv = VPPCOM_EINVAL;
4073 break;
4074
4075 case VPPCOM_ATTR_GET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004076 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004077 {
Florin Coras04ae8272021-04-12 19:55:37 -07004078 rv = VPPCOM_EINVAL;
4079 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004080 }
Florin Coras04ae8272021-04-12 19:55:37 -07004081
4082 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4083 tea.mss = *(u32 *) buffer;
4084 if (vcl_session_transport_attr (wrk, session, 1 /* is_get */, &tea))
4085 rv = VPPCOM_ENOPROTOOPT;
4086
4087 if (!rv)
4088 {
4089 *(u32 *) buffer = tea.mss;
4090 *buflen = sizeof (int);
4091 }
4092
4093 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d", *(int *) buffer,
4094 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004095 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004096 case VPPCOM_ATTR_SET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004097 if (!(buffer && buflen && (*buflen == sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004098 {
Florin Coras04ae8272021-04-12 19:55:37 -07004099 rv = VPPCOM_EINVAL;
4100 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004101 }
Florin Coras04ae8272021-04-12 19:55:37 -07004102
4103 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4104 tea.mss = *(u32 *) buffer;
4105 if (vcl_session_transport_attr (wrk, session, 0 /* is_get */, &tea))
4106 rv = VPPCOM_ENOPROTOOPT;
4107
4108 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d", tea.mss,
4109 *buflen);
Stevenbccd3392017-10-12 20:42:21 -07004110 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04004111
Florin Coras1e966172020-05-16 18:18:14 +00004112 case VPPCOM_ATTR_SET_CONNECTED:
4113 session->flags |= VCL_SESSION_F_CONNECTED;
4114 break;
4115
Florin Corasa5a9efd2021-01-05 17:03:29 -08004116 case VPPCOM_ATTR_SET_CKPAIR:
4117 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
4118 !vcl_session_has_crypto (session))
4119 {
4120 rv = VPPCOM_EINVAL;
4121 break;
4122 }
Florin Corasa54b62d2021-04-21 09:05:56 -07004123 if (!session->ext_config)
4124 {
Florin Coras87f63892021-05-01 16:01:40 -07004125 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_CRYPTO,
4126 sizeof (transport_endpt_ext_cfg_t));
Florin Corasa54b62d2021-04-21 09:05:56 -07004127 }
4128 else if (session->ext_config->type != TRANSPORT_ENDPT_EXT_CFG_CRYPTO)
4129 {
4130 rv = VPPCOM_EINVAL;
4131 break;
4132 }
4133
4134 session->ext_config->crypto.ckpair_index = *(uint32_t *) buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08004135 break;
4136
Florin Coras6a6555a2021-01-28 11:39:27 -08004137 case VPPCOM_ATTR_SET_VRF:
4138 if (!(buffer && buflen && (*buflen == sizeof (u32))))
4139 {
4140 rv = VPPCOM_EINVAL;
4141 break;
4142 }
4143 session->vrf = *(u32 *) buffer;
4144 break;
4145
4146 case VPPCOM_ATTR_GET_VRF:
4147 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
4148 {
4149 rv = VPPCOM_EINVAL;
4150 break;
4151 }
4152 *(u32 *) buffer = session->vrf;
4153 *buflen = sizeof (u32);
4154 break;
4155
wanghanlin0674f852021-02-22 10:38:36 +08004156 case VPPCOM_ATTR_GET_DOMAIN:
Florin Corasd77325c2021-02-23 12:03:03 -08004157 if (!(buffer && buflen && (*buflen >= sizeof (int))))
wanghanlin0674f852021-02-22 10:38:36 +08004158 {
Florin Corasd77325c2021-02-23 12:03:03 -08004159 rv = VPPCOM_EINVAL;
4160 break;
wanghanlin0674f852021-02-22 10:38:36 +08004161 }
Florin Corasd77325c2021-02-23 12:03:03 -08004162
4163 if (session->transport.is_ip4)
4164 *(int *) buffer = AF_INET;
wanghanlin0674f852021-02-22 10:38:36 +08004165 else
Florin Corasd77325c2021-02-23 12:03:03 -08004166 *(int *) buffer = AF_INET6;
4167 *buflen = sizeof (int);
4168
wanghanlin0674f852021-02-22 10:38:36 +08004169 VDBG (2, "VPPCOM_ATTR_GET_DOMAIN: %d, buflen %u", *(int *) buffer,
4170 *buflen);
4171 break;
4172
Florin Coras87f63892021-05-01 16:01:40 -07004173 case VPPCOM_ATTR_SET_ENDPT_EXT_CFG:
4174 if (!(buffer && buflen && (*buflen > 0)))
4175 {
4176 rv = VPPCOM_EINVAL;
4177 break;
4178 }
4179 if (session->ext_config)
4180 {
4181 rv = VPPCOM_EINVAL;
4182 break;
4183 }
4184 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_NONE,
4185 *buflen + sizeof (u32));
4186 clib_memcpy (session->ext_config->data, buffer, *buflen);
4187 session->ext_config->len = *buflen;
4188 break;
Florin Coraseff5f7a2023-02-07 17:36:17 -08004189 case VPPCOM_ATTR_SET_IP_PKTINFO:
4190 if (buffer && buflen && (*buflen == sizeof (int)) &&
4191 !vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO))
4192 {
4193 if (*(int *) buffer)
4194 vcl_session_set_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4195 else
4196 vcl_session_clear_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4197
4198 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d",
4199 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO),
4200 *buflen);
4201 }
4202 else
4203 rv = VPPCOM_EINVAL;
4204 break;
4205
4206 case VPPCOM_ATTR_GET_IP_PKTINFO:
4207 if (buffer && buflen && (*buflen >= sizeof (int)))
4208 {
4209 *(int *) buffer =
4210 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4211 *buflen = sizeof (int);
4212
4213 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d", *(int *) buffer,
4214 *buflen);
4215 }
4216 else
4217 rv = VPPCOM_EINVAL;
4218 break;
Florin Coras87f63892021-05-01 16:01:40 -07004219
Dave Wallacee22aa742017-10-20 12:30:38 -04004220 default:
4221 rv = VPPCOM_EINVAL;
4222 break;
Dave Wallace35830af2017-10-09 01:43:42 -04004223 }
4224
Dave Wallace35830af2017-10-09 01:43:42 -04004225 return rv;
4226}
4227
Stevenac1f96d2017-10-24 16:03:58 -07004228int
Florin Coras134a9962018-08-28 11:32:04 -07004229vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004230 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4231{
Florin Coras134a9962018-08-28 11:32:04 -07004232 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00004233 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07004234 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07004235
4236 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07004237 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004238 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07004239 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004240 else
4241 {
Florin Corasa7a1a222018-12-30 17:11:31 -08004242 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07004243 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07004244 }
4245
Florin Coras0a1e1832020-03-29 18:54:04 +00004246 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07004247 {
Florin Coras5da10c42020-04-01 04:31:21 +00004248 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07004249 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05004250 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
4251 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07004252 else
Dave Barach178cf492018-11-13 16:34:13 -05004253 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
4254 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00004255 ep->is_ip4 = session->transport.is_ip4;
4256 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07004257 }
Florin Coras460dce62018-07-27 05:45:06 -07004258
Stevenac1f96d2017-10-24 16:03:58 -07004259 return rv;
4260}
4261
Florin Coraseff5f7a2023-02-07 17:36:17 -08004262static void
4263vcl_handle_ep_app_tlvs (vcl_session_t *s, vppcom_endpt_t *ep)
4264{
4265 vppcom_endpt_tlv_t *tlv = ep->app_tlvs;
4266
4267 do
4268 {
4269 switch (tlv->data_type)
4270 {
4271 case VCL_UDP_SEGMENT:
4272 s->gso_size = *(u16 *) tlv->data;
4273 break;
4274 case VCL_IP_PKTINFO:
4275 clib_memcpy_fast (&s->transport.lcl_ip, (ip4_address_t *) tlv->data,
4276 sizeof (ip4_address_t));
4277 break;
4278 default:
4279 VDBG (0, "Ignorning unsupported app tlv %u", tlv->data_type);
4280 break;
4281 }
4282 tlv = VCL_EP_NEXT_APP_TLV (ep, tlv);
4283 }
4284 while (tlv);
4285}
4286
Stevenac1f96d2017-10-24 16:03:58 -07004287int
Florin Coras134a9962018-08-28 11:32:04 -07004288vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004289 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4290{
Florin Coras7a2abce2020-04-05 19:25:44 +00004291 vcl_worker_t *wrk = vcl_worker_get_current ();
4292 vcl_session_t *s;
4293
4294 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras0b0d28e2021-06-04 17:31:53 -07004295 if (PREDICT_FALSE (!s))
Florin Coras7a2abce2020-04-05 19:25:44 +00004296 return VPPCOM_EBADFD;
4297
Dave Wallace617dffa2017-10-26 14:47:06 -04004298 if (ep)
4299 {
Florin Coras5824cc52020-10-20 18:44:41 -07004300 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00004301 return VPPCOM_EINVAL;
4302
liuyacanbc0c7542021-08-02 20:15:05 +08004303 s->transport.is_ip4 = ep->is_ip4;
4304 s->transport.rmt_port = ep->port;
4305 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
4306
Florin Coraseff5f7a2023-02-07 17:36:17 -08004307 if (ep->app_tlvs)
4308 vcl_handle_ep_app_tlvs (s, ep);
Dou Chao243a0432022-11-29 19:41:34 +08004309
Florin Coras5da10c42020-04-01 04:31:21 +00004310 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07004311 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00004312 {
Florin Coras5824cc52020-10-20 18:44:41 -07004313 u32 session_index = s->session_index;
4314 f64 timeout = vcm->cfg.session_timeout;
4315 int rv;
4316
Florin Coras5da10c42020-04-01 04:31:21 +00004317 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07004318 rv = vppcom_wait_for_session_state_change (session_index,
4319 VCL_STATE_READY,
4320 timeout);
4321 if (rv < 0)
4322 return rv;
4323 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00004324 }
Dave Wallace617dffa2017-10-26 14:47:06 -04004325 }
4326
4327 if (flags)
4328 {
4329 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07004330 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04004331 }
4332
Florin Coraseff5f7a2023-02-07 17:36:17 -08004333 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
Florin Coras7a2abce2020-04-05 19:25:44 +00004334 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07004335}
4336
Dave Wallace048b1d62018-01-03 22:24:41 -05004337int
4338vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
4339{
Florin Coras134a9962018-08-28 11:32:04 -07004340 vcl_worker_t *wrk = vcl_worker_get_current ();
4341 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05004342 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08004343 svm_msg_q_msg_t msg;
4344 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05004345 int rv, num_ev = 0;
4346
Florin Coras5e062572019-03-14 19:07:51 -07004347 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05004348
4349 if (!vp)
4350 return VPPCOM_EFAULT;
4351
4352 do
4353 {
Florin Coras7e12d942018-06-27 14:32:43 -07004354 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05004355
Florin Coras6917b942018-11-13 22:44:54 -08004356 /* Dequeue all events and drop all unhandled io events */
4357 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
4358 {
4359 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
4360 vcl_handle_mq_event (wrk, e);
4361 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
4362 }
4363 vec_reset_length (wrk->unhandled_evts_vector);
4364
Dave Wallace048b1d62018-01-03 22:24:41 -05004365 for (i = 0; i < n_sids; i++)
4366 {
Florin Coras7baeb712019-01-04 17:05:43 -08004367 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07004368 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08004369 {
4370 vp[i].revents = POLLHUP;
4371 num_ev++;
4372 continue;
4373 }
Dave Wallace048b1d62018-01-03 22:24:41 -05004374
Florin Coras6917b942018-11-13 22:44:54 -08004375 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004376
4377 if (POLLIN & vp[i].events)
4378 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004379 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004380 if (rv > 0)
4381 {
Florin Coras6917b942018-11-13 22:44:54 -08004382 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05004383 num_ev++;
4384 }
4385 else if (rv < 0)
4386 {
4387 switch (rv)
4388 {
4389 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004390 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004391 break;
4392
4393 default:
Florin Coras6917b942018-11-13 22:44:54 -08004394 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004395 break;
4396 }
4397 num_ev++;
4398 }
4399 }
4400
4401 if (POLLOUT & vp[i].events)
4402 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004403 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004404 if (rv > 0)
4405 {
Florin Coras6917b942018-11-13 22:44:54 -08004406 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05004407 num_ev++;
4408 }
4409 else if (rv < 0)
4410 {
4411 switch (rv)
4412 {
4413 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004414 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004415 break;
4416
4417 default:
Florin Coras6917b942018-11-13 22:44:54 -08004418 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004419 break;
4420 }
4421 num_ev++;
4422 }
4423 }
4424
Dave Wallace7e607a72018-06-18 18:41:32 -04004425 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05004426 {
Florin Coras6917b942018-11-13 22:44:54 -08004427 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05004428 num_ev++;
4429 }
4430 }
4431 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07004432 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004433 }
4434 while ((num_ev == 0) && keep_trying);
4435
Dave Wallace048b1d62018-01-03 22:24:41 -05004436 return num_ev;
4437}
4438
Florin Coras99368312018-08-02 10:45:44 -07004439int
4440vppcom_mq_epoll_fd (void)
4441{
Florin Coras134a9962018-08-28 11:32:04 -07004442 vcl_worker_t *wrk = vcl_worker_get_current ();
4443 return wrk->mqs_epfd;
4444}
4445
4446int
Florin Coras30e79c22019-01-02 19:31:22 -08004447vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07004448{
4449 return session_handle & 0xFFFFFF;
4450}
4451
4452int
Florin Coras30e79c22019-01-02 19:31:22 -08004453vppcom_session_worker (vcl_session_handle_t session_handle)
4454{
4455 return session_handle >> 24;
4456}
4457
4458int
Florin Coras134a9962018-08-28 11:32:04 -07004459vppcom_worker_register (void)
4460{
Florin Coras47c40e22018-11-26 17:01:36 -08004461 if (!vcl_worker_alloc_and_init ())
4462 return VPPCOM_EEXIST;
4463
Florin Coras47c40e22018-11-26 17:01:36 -08004464 if (vcl_worker_register_with_vpp ())
4465 return VPPCOM_EEXIST;
4466
4467 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07004468}
4469
Florin Coras369db832019-07-08 12:34:45 -07004470void
4471vppcom_worker_unregister (void)
4472{
4473 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
4474 vcl_set_worker_index (~0);
4475}
4476
Pivo6017ff02020-05-04 17:57:33 +02004477void
4478vppcom_worker_index_set (int index)
4479{
4480 vcl_set_worker_index (index);
4481}
4482
Florin Corasdfe4cf42018-11-28 22:13:45 -08004483int
4484vppcom_worker_index (void)
4485{
4486 return vcl_get_worker_index ();
4487}
4488
Florin Corase0982e52019-01-25 13:19:56 -08004489int
4490vppcom_worker_mqs_epfd (void)
4491{
4492 vcl_worker_t *wrk = vcl_worker_get_current ();
4493 if (!vcm->cfg.use_mq_eventfd)
4494 return -1;
4495 return wrk->mqs_epfd;
4496}
4497
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02004498int
4499vppcom_session_is_connectable_listener (uint32_t session_handle)
4500{
4501 vcl_session_t *session;
4502 vcl_worker_t *wrk = vcl_worker_get_current ();
4503 session = vcl_session_get_w_handle (wrk, session_handle);
4504 if (!session)
4505 return VPPCOM_EBADFD;
4506 return vcl_session_is_connectable_listener (wrk, session);
4507}
4508
4509int
4510vppcom_session_listener (uint32_t session_handle)
4511{
4512 vcl_worker_t *wrk = vcl_worker_get_current ();
4513 vcl_session_t *listen_session, *session;
4514 session = vcl_session_get_w_handle (wrk, session_handle);
4515 if (!session)
4516 return VPPCOM_EBADFD;
4517 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
4518 return VPPCOM_EBADFD;
4519 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
4520 if (!listen_session)
4521 return VPPCOM_EBADFD;
4522 return vcl_session_handle (listen_session);
4523}
4524
4525int
4526vppcom_session_n_accepted (uint32_t session_handle)
4527{
4528 vcl_worker_t *wrk = vcl_worker_get_current ();
4529 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
4530 if (!session)
4531 return VPPCOM_EBADFD;
4532 return session->n_accepted_sessions;
4533}
4534
Florin Coras66ec4672020-06-15 07:59:40 -07004535const char *
4536vppcom_proto_str (vppcom_proto_t proto)
4537{
4538 char const *proto_str;
4539
4540 switch (proto)
4541 {
4542 case VPPCOM_PROTO_TCP:
4543 proto_str = "TCP";
4544 break;
4545 case VPPCOM_PROTO_UDP:
4546 proto_str = "UDP";
4547 break;
4548 case VPPCOM_PROTO_TLS:
4549 proto_str = "TLS";
4550 break;
4551 case VPPCOM_PROTO_QUIC:
4552 proto_str = "QUIC";
4553 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08004554 case VPPCOM_PROTO_DTLS:
4555 proto_str = "DTLS";
4556 break;
Florin Coras6621abf2021-01-06 17:35:17 -08004557 case VPPCOM_PROTO_SRTP:
4558 proto_str = "SRTP";
4559 break;
Florin Coras66ec4672020-06-15 07:59:40 -07004560 default:
4561 proto_str = "UNKNOWN";
4562 break;
4563 }
4564 return proto_str;
4565}
4566
4567const char *
4568vppcom_retval_str (int retval)
4569{
4570 char const *st;
4571
4572 switch (retval)
4573 {
4574 case VPPCOM_OK:
4575 st = "VPPCOM_OK";
4576 break;
4577
4578 case VPPCOM_EAGAIN:
4579 st = "VPPCOM_EAGAIN";
4580 break;
4581
4582 case VPPCOM_EFAULT:
4583 st = "VPPCOM_EFAULT";
4584 break;
4585
4586 case VPPCOM_ENOMEM:
4587 st = "VPPCOM_ENOMEM";
4588 break;
4589
4590 case VPPCOM_EINVAL:
4591 st = "VPPCOM_EINVAL";
4592 break;
4593
4594 case VPPCOM_EBADFD:
4595 st = "VPPCOM_EBADFD";
4596 break;
4597
4598 case VPPCOM_EAFNOSUPPORT:
4599 st = "VPPCOM_EAFNOSUPPORT";
4600 break;
4601
4602 case VPPCOM_ECONNABORTED:
4603 st = "VPPCOM_ECONNABORTED";
4604 break;
4605
4606 case VPPCOM_ECONNRESET:
4607 st = "VPPCOM_ECONNRESET";
4608 break;
4609
4610 case VPPCOM_ENOTCONN:
4611 st = "VPPCOM_ENOTCONN";
4612 break;
4613
4614 case VPPCOM_ECONNREFUSED:
4615 st = "VPPCOM_ECONNREFUSED";
4616 break;
4617
4618 case VPPCOM_ETIMEDOUT:
4619 st = "VPPCOM_ETIMEDOUT";
4620 break;
4621
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304622 case VPPCOM_EADDRINUSE:
4623 st = "VPPCOM_EADDRINUSE";
4624 break;
4625
Florin Coras66ec4672020-06-15 07:59:40 -07004626 default:
4627 st = "UNKNOWN_STATE";
4628 break;
4629 }
4630
4631 return st;
4632}
4633
Florin Corasa5a9efd2021-01-05 17:03:29 -08004634int
4635vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4636{
4637 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004638 return vcl_sapi_add_cert_key_pair (ckpair);
4639 else
4640 return vcl_bapi_add_cert_key_pair (ckpair);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004641}
4642
4643int
4644vppcom_del_cert_key_pair (uint32_t ckpair_index)
4645{
4646 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004647 return vcl_sapi_del_cert_key_pair (ckpair_index);
4648 else
4649 return vcl_bapi_del_cert_key_pair (ckpair_index);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004650}
4651
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304652int
4653vppcom_session_get_error (uint32_t session_handle)
4654{
4655 vcl_worker_t *wrk = vcl_worker_get_current ();
4656 vcl_session_t *session = 0;
4657
4658 session = vcl_session_get_w_handle (wrk, session_handle);
4659 if (!session)
4660 return VPPCOM_EBADFD;
4661
4662 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
4663 {
4664 VWRN ("epoll session %u! will not have connect", session->session_index);
4665 return VPPCOM_EBADFD;
4666 }
4667
4668 if (session->vpp_error == SESSION_E_PORTINUSE)
4669 return VPPCOM_EADDRINUSE;
4670 else if (session->vpp_error == SESSION_E_REFUSED)
4671 return VPPCOM_ECONNREFUSED;
4672 else if (session->vpp_error != SESSION_E_NONE)
4673 return VPPCOM_EFAULT;
4674 else
4675 return VPPCOM_OK;
4676}
4677
Maros Ondrejicka6ff8e902022-10-06 18:17:05 +02004678int
4679vppcom_worker_is_detached (void)
4680{
4681 vcl_worker_t *wrk = vcl_worker_get_current ();
4682
4683 if (!vcm->cfg.use_mq_eventfd)
4684 return VPPCOM_ENOTSUP;
4685
4686 return wrk->api_client_handle == ~0;
4687}
4688
Dave Wallacee22aa742017-10-20 12:30:38 -04004689/*
4690 * fd.io coding-style-patch-verification: ON
4691 *
4692 * Local Variables:
4693 * eval: (c-set-style "gnu")
4694 * End:
4695 */