blob: d9c3b30afead42faeb6cfe58afad4432affd74fe [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;
Mohammed Hawarif4e3ee12023-10-30 10:52:19 +0100548 session->vpp_error = mp->retval;
Florin Coras60116992018-08-27 09:52:18 -0700549 return sid;
550 }
551 else
552 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800553 VDBG (0, "session %u [0x%llx]: Invalid session index!", sid,
554 mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700555 return VCL_INVALID_SESSION_INDEX;
556 }
557 }
558
559 session->vpp_handle = mp->handle;
560 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500561 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
562 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700563 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700564 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Corasc127d5a2020-10-14 16:35:58 -0700565 session->session_state = VCL_STATE_LISTEN;
Florin Coras32881932023-02-06 13:30:13 -0800566 session->flags &= ~VCL_SESSION_F_PENDING_LISTEN;
Florin Coras5f45e012019-01-23 09:21:30 -0800567
Florin Coras6e3c1f82020-01-15 01:30:46 +0000568 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700569 {
Florin Corasc547e912020-12-08 17:50:45 -0800570 if (vcl_segment_attach_session (mp->segment_handle, mp->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700571 mp->tx_fifo, mp->vpp_evt_q, mp->mq_index,
572 0, session))
Florin Corasc547e912020-12-08 17:50:45 -0800573 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800574 VDBG (0, "session %u [0x%llx]: failed to attach fifos",
575 session->session_index, session->vpp_handle);
Florin Corasc547e912020-12-08 17:50:45 -0800576 session->session_state = VCL_STATE_DETACHED;
577 return VCL_INVALID_SESSION_INDEX;
578 }
Florin Coras60116992018-08-27 09:52:18 -0700579 }
580
Florin Coras05ecfcc2018-12-12 18:19:39 -0800581 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700582 return sid;
583}
584
Florin Corasdfae9f92019-02-20 19:48:31 -0800585static void
586vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
587{
588 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
589 vcl_session_t *s;
590
591 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000592 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800593 {
594 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
595 return;
596 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700597 if (s->session_state != VCL_STATE_DISCONNECT)
Florin Coras0a1e1832020-03-29 18:54:04 +0000598 {
599 /* Connected udp listener */
600 if (s->session_type == VPPCOM_PROTO_UDP
Florin Corasc127d5a2020-10-14 16:35:58 -0700601 && s->session_state == VCL_STATE_CLOSED)
Florin Coras0a1e1832020-03-29 18:54:04 +0000602 return;
603
604 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
605 return;
606 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800607
608 if (mp->retval)
609 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700610 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800611
612 if (mp->context != wrk->wrk_index)
613 VDBG (0, "wrong context");
614
615 vcl_session_table_del_vpp_handle (wrk, mp->handle);
616 vcl_session_free (wrk, s);
617}
618
Florin Coras68b7e582020-01-21 18:33:23 -0800619static void
620vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
621{
622 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
623 vcl_session_t *s;
Florin Corasc547e912020-12-08 17:50:45 -0800624 u32 fs_index;
Florin Coras68b7e582020-01-21 18:33:23 -0800625
626 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
627 if (!s)
628 {
629 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
630 return;
631 }
632
Florin Coras1bb74942021-02-10 15:26:37 -0800633 /* Only validate if a value is provided */
634 if (mp->segment_handle != SESSION_INVALID_HANDLE)
Florin Corasc547e912020-12-08 17:50:45 -0800635 {
Florin Coras1bb74942021-02-10 15:26:37 -0800636 fs_index = vcl_segment_table_lookup (mp->segment_handle);
637 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
638 {
639 VDBG (0, "segment %lx for session %u is not mounted!",
640 mp->segment_handle, s->session_index);
641 s->session_state = VCL_STATE_DETACHED;
642 return;
643 }
Florin Corasc547e912020-12-08 17:50:45 -0800644 }
645
Florin Coras57660d92020-04-04 22:45:34 +0000646 s->vpp_handle = mp->new_handle;
Florin Corasb4624182020-12-11 13:58:12 -0800647
648 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0), mp->vpp_evt_q,
649 mp->vpp_thread_index, &s->vpp_evt_q);
Florin Coras68b7e582020-01-21 18:33:23 -0800650
Florin Coras68b7e582020-01-21 18:33:23 -0800651 vcl_session_table_del_vpp_handle (wrk, mp->handle);
652 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
653
654 /* Generate new tx event if we have outstanding data */
655 if (svm_fifo_has_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -0800656 app_send_io_evt_to_vpp (s->vpp_evt_q,
657 s->tx_fifo->shr->master_session_index,
Florin Coras68b7e582020-01-21 18:33:23 -0800658 SESSION_IO_EVT_TX, SVM_Q_WAIT);
659
Florin Coras57660d92020-04-04 22:45:34 +0000660 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
Florin Coras52dd29f2020-11-18 19:02:17 -0800661 mp->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800662}
663
Florin Coras3c7d4f92018-12-14 11:28:43 -0800664static vcl_session_t *
665vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
666{
667 vcl_session_msg_t *vcl_msg;
668 vcl_session_t *session;
669
670 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
671 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800672 VWRN ("session overlap handle %lu state %u!", msg->handle,
673 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800674
675 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
676 if (!session)
677 {
678 VERR ("couldn't find listen session: listener handle %llx",
679 msg->listener_handle);
680 return 0;
681 }
682
683 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000684 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800685 vcl_msg->accepted_msg = *msg;
686 /* Session handle points to listener until fully accepted by app */
687 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
688
689 return session;
690}
691
692static vcl_session_t *
693vcl_session_disconnected_handler (vcl_worker_t * wrk,
694 session_disconnected_msg_t * msg)
695{
696 vcl_session_t *session;
697
698 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
699 if (!session)
700 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800701 VWRN ("request to disconnect unknown handle 0x%llx", msg->handle);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800702 return 0;
703 }
704
Florin Corasadcfb152020-02-12 08:50:29 +0000705 /* Late disconnect notification on a session that has been closed */
Florin Corasc127d5a2020-10-14 16:35:58 -0700706 if (session->session_state == VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000707 return 0;
708
Florin Coras3c7d4f92018-12-14 11:28:43 -0800709 /* Caught a disconnect before actually accepting the session */
wanghanlin696db202023-08-07 17:23:53 +0800710 if (session->session_state == VCL_STATE_LISTEN ||
711 session->session_state == VCL_STATE_LISTEN_NO_MQ)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800712 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800713 if (!vcl_flag_accepted_session (session, msg->handle,
714 VCL_ACCEPTED_F_CLOSED))
715 VDBG (0, "session was not accepted!");
716 return 0;
717 }
718
Florin Corasadcfb152020-02-12 08:50:29 +0000719 /* If not already reset change state */
Florin Corasc127d5a2020-10-14 16:35:58 -0700720 if (session->session_state != VCL_STATE_DISCONNECT)
721 session->session_state = VCL_STATE_VPP_CLOSING;
Florin Corasadcfb152020-02-12 08:50:29 +0000722
Florin Coras3c7d4f92018-12-14 11:28:43 -0800723 return session;
724}
725
liuyacan534468e2021-05-09 03:50:40 +0000726int
liuyacan55c952e2021-06-13 14:54:55 +0800727vppcom_session_shutdown (uint32_t session_handle, int how)
liuyacan534468e2021-05-09 03:50:40 +0000728{
729 vcl_worker_t *wrk = vcl_worker_get_current ();
730 vcl_session_t *session;
731 vcl_session_state_t state;
732 u64 vpp_handle;
733
734 session = vcl_session_get_w_handle (wrk, session_handle);
735 if (PREDICT_FALSE (!session))
736 return VPPCOM_EBADFD;
737
738 vpp_handle = session->vpp_handle;
739 state = session->session_state;
740
741 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
Florin Coras60687192021-11-29 21:00:47 -0800742 vpp_handle, state, vcl_session_state_str (state));
liuyacan534468e2021-05-09 03:50:40 +0000743
744 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
745 {
746 VDBG (0, "ERROR: Cannot shutdown a listen socket!");
747 return VPPCOM_EBADFD;
748 }
749
liuyacan55c952e2021-06-13 14:54:55 +0800750 if (how == SHUT_RD || how == SHUT_RDWR)
751 {
752 session->flags |= VCL_SESSION_F_RD_SHUTDOWN;
753 if (how == SHUT_RD)
754 return VPPCOM_OK;
755 }
756 session->flags |= VCL_SESSION_F_WR_SHUTDOWN;
757
liuyacan534468e2021-05-09 03:50:40 +0000758 if (PREDICT_TRUE (state == VCL_STATE_READY))
759 {
760 VDBG (1, "session %u [0x%llx]: sending shutdown...",
761 session->session_index, vpp_handle);
762
763 vcl_send_session_shutdown (wrk, session);
liuyacan534468e2021-05-09 03:50:40 +0000764 }
765
766 return VPPCOM_OK;
767}
768
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700769static int
770vppcom_session_disconnect (u32 session_handle)
771{
772 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700773 vcl_session_t *session, *listen_session;
774 vcl_session_state_t state;
775 u64 vpp_handle;
776
777 session = vcl_session_get_w_handle (wrk, session_handle);
778 if (!session)
779 return VPPCOM_EBADFD;
780
781 vpp_handle = session->vpp_handle;
782 state = session->session_state;
783
Florin Coras5ffb9642021-12-03 17:24:13 -0800784 VDBG (1, "session %u [0x%llx]: disconnecting state (%s)",
785 session->session_index, vpp_handle, vcl_session_state_str (state));
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700786
787 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
788 {
789 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
790 return VPPCOM_EBADFD;
791 }
792
793 if (state == VCL_STATE_VPP_CLOSING)
794 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800795 vcl_send_session_disconnected_reply (wrk, session, 0);
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700796 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
797 session->session_index, vpp_handle);
798 }
799 else
800 {
801 /* Session doesn't have an event queue yet. Probably a non-blocking
802 * connect. Wait for the reply */
803 if (PREDICT_FALSE (!session->vpp_evt_q))
804 return VPPCOM_OK;
805
Florin Coras5ffb9642021-12-03 17:24:13 -0800806 VDBG (1, "session %u [0x%llx]: sending disconnect",
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700807 session->session_index, vpp_handle);
808 vcl_send_session_disconnect (wrk, session);
809 }
810
811 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
812 {
813 listen_session = vcl_session_get (wrk, session->listener_index);
Florin Corasb52bd3a2022-06-28 20:01:20 -0700814 if (listen_session)
815 listen_session->n_accepted_sessions--;
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700816 }
817
818 return VPPCOM_OK;
819}
820
Florin Coras30e79c22019-01-02 19:31:22 -0800821static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700822vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
823{
824 session_cleanup_msg_t *msg;
825 vcl_session_t *session;
826
827 msg = (session_cleanup_msg_t *) data;
828 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
829 if (!session)
830 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800831 VWRN ("disconnect confirmed for unknown handle 0x%llx", msg->handle);
Florin Coras9ace36d2019-10-28 13:14:17 -0700832 return;
833 }
834
Florin Coras36d49392020-04-24 23:00:11 +0000835 if (msg->type == SESSION_CLEANUP_TRANSPORT)
836 {
837 /* Transport was cleaned up before we confirmed close. Probably the
838 * app is still waiting for some data that cannot be delivered.
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700839 * Confirm close to make sure everything is cleaned up.
840 * Move to undetermined state to ensure that the session is not
841 * removed before both vpp and the app cleanup.
842 * - If the app closes first, the session is moved to CLOSED state
843 * and the session cleanup notification from vpp removes the
844 * session.
845 * - If vpp cleans up the session first, the session is moved to
846 * DETACHED state lower and subsequently the close from the app
847 * frees the session
848 */
849 if (session->session_state == VCL_STATE_VPP_CLOSING)
Florin Coras0ff7eec2020-08-03 18:55:40 -0700850 {
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700851 vppcom_session_disconnect (vcl_session_handle (session));
852 session->session_state = VCL_STATE_UPDATED;
853 }
854 else if (session->session_state == VCL_STATE_DISCONNECT)
855 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800856 vcl_send_session_reset_reply (wrk, session, 0);
Florin Coras0ff7eec2020-08-03 18:55:40 -0700857 session->session_state = VCL_STATE_UPDATED;
858 }
Florin Coras36d49392020-04-24 23:00:11 +0000859 return;
860 }
861
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800862 /* VPP will reuse the handle so clean it up now */
Florin Coras9ace36d2019-10-28 13:14:17 -0700863 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800864
865 /* App did not close the connection yet so don't free it. */
Florin Corasc127d5a2020-10-14 16:35:58 -0700866 if (session->session_state != VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000867 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800868 VDBG (0, "session %u: app did not close", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700869 session->session_state = VCL_STATE_DETACHED;
Florin Corasadcfb152020-02-12 08:50:29 +0000870 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
871 return;
872 }
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800873
874 /* Session probably tracked with epoll, disconnect not yet handled and
875 * 1) both transport and session cleanup completed 2) app closed. Wait
876 * until message is drained to free the session.
877 * See @ref vcl_handle_mq_event */
878 if (session->flags & VCL_SESSION_F_PENDING_DISCONNECT)
879 {
880 session->flags |= VCL_SESSION_F_PENDING_FREE;
881 return;
882 }
883
Florin Coras9ace36d2019-10-28 13:14:17 -0700884 vcl_session_free (wrk, session);
885}
886
887static void
Florin Coras30e79c22019-01-02 19:31:22 -0800888vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
889{
890 session_req_worker_update_msg_t *msg;
891 vcl_session_t *s;
892
893 msg = (session_req_worker_update_msg_t *) data;
894 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
895 if (!s)
896 return;
897
898 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
899}
900
901static void
902vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
903{
904 session_worker_update_reply_msg_t *msg;
905 vcl_session_t *s;
906
907 msg = (session_worker_update_reply_msg_t *) data;
908 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
909 if (!s)
910 {
911 VDBG (0, "unknown handle 0x%llx", msg->handle);
912 return;
913 }
Florin Coras30e79c22019-01-02 19:31:22 -0800914
Florin Coras5f45e012019-01-23 09:21:30 -0800915 if (s->rx_fifo)
916 {
Florin Corasc547e912020-12-08 17:50:45 -0800917 if (vcl_segment_attach_session (msg->segment_handle, msg->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700918 msg->tx_fifo, (uword) ~0, ~0, 0, s))
Florin Corasc547e912020-12-08 17:50:45 -0800919 {
920 VDBG (0, "failed to attach fifos for %u", s->session_index);
921 return;
922 }
Florin Coras5f45e012019-01-23 09:21:30 -0800923 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700924 s->session_state = VCL_STATE_UPDATED;
Florin Coras30e79c22019-01-02 19:31:22 -0800925
Florin Coras30e79c22019-01-02 19:31:22 -0800926 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
927 s->vpp_handle, wrk->wrk_index);
928}
929
Florin Coras935ce752020-09-08 22:43:47 -0700930static int
931vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
932{
933
934 if (vcm->cfg.vpp_app_socket_api)
935 return vcl_sapi_recv_fds (wrk, fds, n_fds);
936
937 return vcl_bapi_recv_fds (wrk, fds, n_fds);
938}
939
Florin Corasc4c4cf52019-08-24 18:17:34 -0700940static void
941vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
942{
943 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
944 session_app_add_segment_msg_t *msg;
945 u64 segment_handle;
946 int fd = -1;
947
948 msg = (session_app_add_segment_msg_t *) data;
949
950 if (msg->fd_flags)
951 {
Florin Coras935ce752020-09-08 22:43:47 -0700952 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700953 seg_type = SSVM_SEGMENT_MEMFD;
954 }
955
956 segment_handle = msg->segment_handle;
957 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
958 {
959 clib_warning ("invalid segment handle");
960 return;
961 }
962
963 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
964 seg_type, fd))
965 {
966 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
967 return;
968 }
969
970 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
971 msg->segment_size);
972}
973
974static void
975vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
976{
977 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
978 vcl_segment_detach (msg->segment_handle);
Florin Coras1f40ab42023-06-13 17:18:56 -0700979 VDBG (1, "Unmapped segment: %lx", msg->segment_handle);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700980}
981
Florin Coras40c07ce2020-07-16 20:46:17 -0700982static void
983vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
984{
985 if (!vcm->wrk_rpc_fn)
986 return;
987
hanlina3a48962020-07-13 11:09:15 +0800988 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700989}
990
Florin Coras04ae8272021-04-12 19:55:37 -0700991static void
992vcl_session_transport_attr_reply_handler (vcl_worker_t *wrk, void *data)
993{
994 session_transport_attr_reply_msg_t *mp;
995
996 if (!wrk->session_attr_op)
997 return;
998
999 mp = (session_transport_attr_reply_msg_t *) data;
1000
1001 wrk->session_attr_op_rv = mp->retval;
1002 wrk->session_attr_op = 0;
1003 wrk->session_attr_rv = mp->attr;
1004}
1005
Florin Coras86f04502018-09-12 16:08:01 -07001006static int
1007vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -07001008{
Florin Coras54693d22018-07-17 10:46:29 -07001009 session_disconnected_msg_t *disconnected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07001010 session_connected_msg_t *connected_msg;
1011 session_reset_msg_t *reset_msg;
1012 session_event_t *ecpy;
Florin Corasc127d5a2020-10-14 16:35:58 -07001013 vcl_session_t *s;
Florin Corasb242d312020-10-26 15:35:40 -07001014 u32 sid;
Florin Coras54693d22018-07-17 10:46:29 -07001015
1016 switch (e->event_type)
1017 {
Florin Coras653e43f2019-03-04 10:56:23 -08001018 case SESSION_IO_EVT_RX:
1019 case SESSION_IO_EVT_TX:
Florin Corasc127d5a2020-10-14 16:35:58 -07001020 s = vcl_session_get (wrk, e->session_index);
Florin Coras1bc919e2020-10-18 20:17:49 -07001021 if (!s || !vcl_session_is_open (s))
Florin Coras653e43f2019-03-04 10:56:23 -08001022 break;
Florin Coras86f04502018-09-12 16:08:01 -07001023 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -07001024 break;
Florin Corasb242d312020-10-26 15:35:40 -07001025 case SESSION_CTRL_EVT_BOUND:
1026 /* We can only wait for only one listen so not postponed */
1027 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
1028 break;
Florin Coras54693d22018-07-17 10:46:29 -07001029 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07001030 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
1031 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1032 {
1033 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1034 *ecpy = *e;
1035 ecpy->postponed = 1;
1036 ecpy->session_index = s->session_index;
1037 }
Florin Coras54693d22018-07-17 10:46:29 -07001038 break;
1039 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07001040 connected_msg = (session_connected_msg_t *) e->data;
1041 sid = vcl_session_connected_handler (wrk, connected_msg);
1042 if (!(s = vcl_session_get (wrk, sid)))
1043 break;
1044 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1045 {
1046 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1047 *ecpy = *e;
1048 ecpy->postponed = 1;
1049 ecpy->session_index = s->session_index;
1050 }
Florin Coras54693d22018-07-17 10:46:29 -07001051 break;
1052 case SESSION_CTRL_EVT_DISCONNECTED:
1053 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07001054 if (!(s = vcl_session_get_w_vpp_handle (wrk, disconnected_msg->handle)))
1055 break;
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001056 if (s->session_state == VCL_STATE_CLOSED)
1057 break;
wanghanlin4747b342023-08-08 10:40:04 +08001058 /* We do not postpone for blocking sessions or listen sessions because:
1059 * 1. Blocking sessions are not part of epoll instead they're used in a
1060 * synchronous manner, such as read/write and etc.
1061 * 2. Listen sessions that have not yet been accepted can't change to
1062 * VPP_CLOSING state instead can been marked as ACCEPTED_F_CLOSED.
1063 */
1064 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK) &&
1065 !(s->session_state == VCL_STATE_LISTEN ||
1066 s->session_state == VCL_STATE_LISTEN_NO_MQ))
Florin Corasb242d312020-10-26 15:35:40 -07001067 {
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001068 s->session_state = VCL_STATE_VPP_CLOSING;
1069 s->flags |= VCL_SESSION_F_PENDING_DISCONNECT;
1070 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1071 *ecpy = *e;
1072 ecpy->postponed = 1;
1073 ecpy->session_index = s->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07001074 break;
1075 }
1076 if (!(s = vcl_session_disconnected_handler (wrk, disconnected_msg)))
Florin Coras3c7d4f92018-12-14 11:28:43 -08001077 break;
Florin Corasc127d5a2020-10-14 16:35:58 -07001078 VDBG (0, "disconnected session %u [0x%llx]", s->session_index,
1079 s->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -07001080 break;
1081 case SESSION_CTRL_EVT_RESET:
Florin Corasb242d312020-10-26 15:35:40 -07001082 reset_msg = (session_reset_msg_t *) e->data;
1083 if (!(s = vcl_session_get_w_vpp_handle (wrk, reset_msg->handle)))
1084 break;
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001085 if (s->session_state == VCL_STATE_CLOSED)
1086 break;
wanghanlin4747b342023-08-08 10:40:04 +08001087 /* We do not postpone for blocking sessions or listen sessions because:
1088 * 1. Blocking sessions are not part of epoll instead they're used in a
1089 * synchronous manner, such as read/write and etc.
1090 * 2. Listen sessions that have not yet been accepted can't change to
1091 * DISCONNECT state instead can been marked as ACCEPTED_F_RESET.
1092 */
1093 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK) &&
1094 !(s->session_state == VCL_STATE_LISTEN ||
1095 s->session_state == VCL_STATE_LISTEN_NO_MQ))
Florin Corasb242d312020-10-26 15:35:40 -07001096 {
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001097 s->flags |= VCL_SESSION_F_PENDING_DISCONNECT;
1098 s->session_state = VCL_STATE_DISCONNECT;
Yacan Liuf5e0a172022-09-20 14:19:19 +08001099 s->flags |= (VCL_SESSION_F_RD_SHUTDOWN | VCL_SESSION_F_WR_SHUTDOWN);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001100 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1101 *ecpy = *e;
1102 ecpy->postponed = 1;
1103 ecpy->session_index = s->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07001104 break;
1105 }
Florin Coras134a9962018-08-28 11:32:04 -07001106 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -07001107 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08001108 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
1109 vcl_session_unlisten_reply_handler (wrk, e->data);
1110 break;
Florin Coras68b7e582020-01-21 18:33:23 -08001111 case SESSION_CTRL_EVT_MIGRATED:
1112 vcl_session_migrated_handler (wrk, e->data);
1113 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07001114 case SESSION_CTRL_EVT_CLEANUP:
1115 vcl_session_cleanup_handler (wrk, e->data);
1116 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001117 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1118 vcl_session_req_worker_update_handler (wrk, e->data);
1119 break;
1120 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1121 vcl_session_worker_update_reply_handler (wrk, e->data);
1122 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07001123 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
1124 vcl_session_app_add_segment_handler (wrk, e->data);
1125 break;
1126 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
1127 vcl_session_app_del_segment_handler (wrk, e->data);
1128 break;
hanlina3a48962020-07-13 11:09:15 +08001129 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07001130 vcl_worker_rpc_handler (wrk, e->data);
1131 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001132 case SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY:
1133 vcl_session_transport_attr_reply_handler (wrk, e->data);
1134 break;
Florin Coras54693d22018-07-17 10:46:29 -07001135 default:
1136 clib_warning ("unhandled %u", e->event_type);
1137 }
1138 return VPPCOM_OK;
1139}
1140
Florin Coras30e79c22019-01-02 19:31:22 -08001141static int
Florin Coras697faea2018-06-27 17:10:49 -07001142vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -08001143 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -07001144 f64 wait_for_time)
1145{
Florin Coras134a9962018-08-28 11:32:04 -07001146 vcl_worker_t *wrk = vcl_worker_get_current ();
1147 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001148 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001149 svm_msg_q_msg_t msg;
1150 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001151
Florin Coras697faea2018-06-27 17:10:49 -07001152 do
Dave Wallace543852a2017-08-03 02:11:34 -04001153 {
Florin Coras134a9962018-08-28 11:32:04 -07001154 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001155 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001156 {
Florin Coras070453d2018-08-24 17:04:27 -07001157 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001158 }
Florin Corasdfffdd72020-10-15 10:54:47 -07001159 if (session->session_state == state)
Florin Coras697faea2018-06-27 17:10:49 -07001160 {
Florin Coras697faea2018-06-27 17:10:49 -07001161 return VPPCOM_OK;
1162 }
Florin Corasc127d5a2020-10-14 16:35:58 -07001163 if (session->session_state == VCL_STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001164 {
Mohammed Hawarif4e3ee12023-10-30 10:52:19 +01001165 if (session->vpp_error == SESSION_E_ALREADY_LISTENING)
1166 return VPPCOM_EADDRINUSE;
1167 else
1168 return VPPCOM_ECONNREFUSED;
Florin Coras697faea2018-06-27 17:10:49 -07001169 }
Florin Coras54693d22018-07-17 10:46:29 -07001170
Florin Coras134a9962018-08-28 11:32:04 -07001171 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001172 {
1173 usleep (100);
1174 continue;
1175 }
Florin Coras134a9962018-08-28 11:32:04 -07001176 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001177 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001178 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001179 }
Florin Coras134a9962018-08-28 11:32:04 -07001180 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001181
Florin Coras05ecfcc2018-12-12 18:19:39 -08001182 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras60687192021-11-29 21:00:47 -08001183 vcl_session_state_str (state));
Florin Coras697faea2018-06-27 17:10:49 -07001184 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001185
Florin Coras697faea2018-06-27 17:10:49 -07001186 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001187}
1188
Florin Coras30e79c22019-01-02 19:31:22 -08001189static void
1190vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1191{
Florin Coras288eaab2019-02-03 15:26:14 -08001192 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001193 vcl_session_t *s;
1194 u32 *sip;
1195
1196 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1197 return;
1198
1199 vec_foreach (sip, wrk->pending_session_wrk_updates)
1200 {
1201 s = vcl_session_get (wrk, *sip);
1202 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1203 state = s->session_state;
Florin Corasc127d5a2020-10-14 16:35:58 -07001204 vppcom_wait_for_session_state_change (s->session_index, VCL_STATE_UPDATED,
1205 5);
Florin Coras30e79c22019-01-02 19:31:22 -08001206 s->session_state = state;
1207 }
1208 vec_reset_length (wrk->pending_session_wrk_updates);
1209}
1210
Florin Corasf9240dc2019-01-15 08:03:17 -08001211void
Florin Coras5398dfb2021-01-25 20:31:27 -08001212vcl_worker_flush_mq_events (vcl_worker_t *wrk)
Florin Coras30e79c22019-01-02 19:31:22 -08001213{
Florin Coras30e79c22019-01-02 19:31:22 -08001214 svm_msg_q_msg_t *msg;
1215 session_event_t *e;
1216 svm_msg_q_t *mq;
1217 int i;
1218
1219 mq = wrk->app_event_queue;
Florin Corase003a1b2019-06-05 10:47:16 -07001220 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001221
1222 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1223 {
1224 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1225 e = svm_msg_q_msg_data (mq, msg);
1226 vcl_handle_mq_event (wrk, e);
1227 svm_msg_q_free_msg (mq, msg);
1228 }
1229 vec_reset_length (wrk->mq_msg_vector);
1230 vcl_handle_pending_wrk_updates (wrk);
1231}
1232
Florin Coras5398dfb2021-01-25 20:31:27 -08001233void
1234vcl_flush_mq_events (void)
1235{
1236 vcl_worker_flush_mq_events (vcl_worker_get_current ());
1237}
1238
Florin Coras697faea2018-06-27 17:10:49 -07001239static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001240vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001241{
Florin Coras134a9962018-08-28 11:32:04 -07001242 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001243 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001244 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001245 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001246
Florin Corasab2f6db2018-08-31 14:31:41 -07001247 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001248 if (!session)
1249 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001250
Florin Corasaaff5ee2019-07-08 13:00:00 -07001251 /* Flush pending accept events, if any */
1252 while (clib_fifo_elts (session->accept_evts_fifo))
1253 {
1254 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1255 accepted_msg = &evt->accepted_msg;
1256 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1257 vcl_send_session_accepted_reply (session->vpp_evt_q,
1258 accepted_msg->context,
wanghanlin785b6ea2020-12-10 19:12:22 +08001259 accepted_msg->handle, -1);
Florin Corasaaff5ee2019-07-08 13:00:00 -07001260 }
1261 clib_fifo_free (session->accept_evts_fifo);
1262
Florin Coras458089b2019-08-21 16:20:44 -07001263 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001264
Florin Coras32881932023-02-06 13:30:13 -08001265 VDBG (0, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001266 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001267 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001268
1269 session->vpp_handle = ~0;
Florin Corasc127d5a2020-10-14 16:35:58 -07001270 session->session_state = VCL_STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001271
Florin Coras070453d2018-08-24 17:04:27 -07001272 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001273}
1274
Florin Coras940f78f2018-11-30 12:11:20 -08001275/**
1276 * Handle app exit
1277 *
1278 * Notify vpp of the disconnect and mark the worker as free. If we're the
1279 * last worker, do a full cleanup otherwise, since we're probably a forked
1280 * child, avoid syscalls as much as possible. We might've lost privileges.
1281 */
1282void
1283vppcom_app_exit (void)
1284{
1285 if (!pool_elts (vcm->workers))
1286 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001287 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1288 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001289 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001290}
1291
Florin Coras935ce752020-09-08 22:43:47 -07001292static int
1293vcl_api_attach (void)
1294{
1295 if (vcm->cfg.vpp_app_socket_api)
1296 return vcl_sapi_attach ();
1297
1298 return vcl_bapi_attach ();
1299}
1300
Maros Ondrejicka0db15752022-10-12 22:58:01 +02001301int
1302vcl_is_first_reattach_to_execute ()
1303{
1304 if (vcm->reattach_count == 0)
1305 return 1;
1306
1307 return 0;
1308}
1309
1310void
1311vcl_set_reattach_counter ()
1312{
1313 ++vcm->reattach_count;
1314
1315 if (vcm->reattach_count == vec_len (vcm->workers))
1316 vcm->reattach_count = 0;
1317}
1318
1319/**
1320 * Reattach vcl to vpp after it has previously been disconnected.
1321 *
1322 * The logic should be:
1323 * - first worker to hit `vcl_api_retry_attach` should attach to vpp,
1324 * to reproduce the `vcl_api_attach` in `vppcom_app_create`.
1325 * - the rest of the workers should `reproduce vcl_worker_register_with_vpp`
1326 * from `vppcom_worker_register` since they were already allocated.
1327 */
1328
Florin Coras935ce752020-09-08 22:43:47 -07001329static void
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00001330vcl_api_retry_attach (vcl_worker_t *wrk)
1331{
1332 vcl_session_t *s;
1333
Maros Ondrejicka0db15752022-10-12 22:58:01 +02001334 clib_spinlock_lock (&vcm->workers_lock);
1335 if (vcl_is_first_reattach_to_execute ())
1336 {
1337 if (vcl_api_attach ())
1338 {
1339 clib_spinlock_unlock (&vcm->workers_lock);
1340 return;
1341 }
1342 vcl_set_reattach_counter ();
1343 clib_spinlock_unlock (&vcm->workers_lock);
1344 }
1345 else
1346 {
1347 vcl_set_reattach_counter ();
1348 clib_spinlock_unlock (&vcm->workers_lock);
1349 vcl_worker_register_with_vpp ();
1350 }
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00001351
1352 /* Treat listeners as configuration that needs to be re-added to vpp */
1353 pool_foreach (s, wrk->sessions)
1354 {
1355 if (s->flags & VCL_SESSION_F_IS_VEP)
1356 continue;
1357 if (s->session_state == VCL_STATE_LISTEN_NO_MQ)
1358 vppcom_session_listen (vcl_session_handle (s), 10);
1359 else
1360 VDBG (0, "internal error: unexpected state %d", s->session_state);
1361 }
1362}
1363
1364static void
1365vcl_api_handle_disconnect (vcl_worker_t *wrk)
1366{
1367 wrk->api_client_handle = ~0;
1368 vcl_worker_detach_sessions (wrk);
1369}
1370
1371static void
Florin Coras935ce752020-09-08 22:43:47 -07001372vcl_api_detach (vcl_worker_t * wrk)
1373{
Florin Corasd04ea442022-03-30 16:08:25 -07001374 if (wrk->api_client_handle == ~0)
1375 return;
1376
Florin Coras935ce752020-09-08 22:43:47 -07001377 vcl_send_app_detach (wrk);
1378
1379 if (vcm->cfg.vpp_app_socket_api)
1380 return vcl_sapi_detach (wrk);
1381
1382 return vcl_bapi_disconnect_from_vpp ();
1383}
1384
Dave Wallace543852a2017-08-03 02:11:34 -04001385/*
1386 * VPPCOM Public API functions
1387 */
1388int
Florin Coras66ec4672020-06-15 07:59:40 -07001389vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001390{
Dave Wallace543852a2017-08-03 02:11:34 -04001391 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001392 int rv;
1393
Florin Coras47c40e22018-11-26 17:01:36 -08001394 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001395 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001396 VDBG (1, "already initialized");
1397 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001398 }
1399
Florin Coras47c40e22018-11-26 17:01:36 -08001400 vcm->is_init = 1;
1401 vppcom_cfg (&vcm->cfg);
1402 vcl_cfg = &vcm->cfg;
1403
1404 vcm->main_cpu = pthread_self ();
1405 vcm->main_pid = getpid ();
1406 vcm->app_name = format (0, "%s", app_name);
Florin Coras41bc8612021-10-01 14:57:03 -07001407 fifo_segment_main_init (&vcm->segment_main, (uword) ~0,
1408 20 /* timeout in secs */);
Florin Coras47c40e22018-11-26 17:01:36 -08001409 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1410 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001411 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001412 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001413 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001414
1415 /* Allocate default worker */
1416 vcl_worker_alloc_and_init ();
1417
Florin Coras935ce752020-09-08 22:43:47 -07001418 if ((rv = vcl_api_attach ()))
Florin Corasd04ea442022-03-30 16:08:25 -07001419 {
1420 vppcom_app_destroy ();
1421 return rv;
1422 }
Florin Coras47c40e22018-11-26 17:01:36 -08001423
1424 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001425 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001426
1427 return VPPCOM_OK;
1428}
1429
1430void
1431vppcom_app_destroy (void)
1432{
Florin Corasdc0ded72020-04-30 02:59:55 +00001433 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001434 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001435
Florin Coras940f78f2018-11-30 12:11:20 -08001436 if (!pool_elts (vcm->workers))
1437 return;
1438
Florin Coras0d427d82018-06-27 03:24:07 -07001439 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001440
Florin Corasdc0ded72020-04-30 02:59:55 +00001441 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001442
Florin Corasce815de2020-04-16 18:47:27 +00001443 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001444 pool_foreach (wrk, vcm->workers) {
Florin Corasdc0ded72020-04-30 02:59:55 +00001445 if (current_wrk != wrk)
1446 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Damjan Marionb2c31b62020-12-13 21:47:40 +01001447 }
Florin Corasce815de2020-04-16 18:47:27 +00001448 /* *INDENT-ON* */
1449
Florin Coras935ce752020-09-08 22:43:47 -07001450 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001451 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
Florin Corasd04ea442022-03-30 16:08:25 -07001452 vcl_set_worker_index (~0);
Florin Corasdc0ded72020-04-30 02:59:55 +00001453
Florin Coras0d427d82018-06-27 03:24:07 -07001454 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001455
1456 /*
1457 * Free the heap and fix vcm
1458 */
1459 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001460 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001461
1462 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001463 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001464}
1465
1466int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001467vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001468{
Florin Coras134a9962018-08-28 11:32:04 -07001469 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001470 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001471
Florin Coras134a9962018-08-28 11:32:04 -07001472 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001473
Florin Coras7e12d942018-06-27 14:32:43 -07001474 session->session_type = proto;
Florin Corasc127d5a2020-10-14 16:35:58 -07001475 session->session_state = VCL_STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001476 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001477 session->is_dgram = vcl_proto_is_dgram (proto);
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05301478 session->vpp_error = SESSION_E_NONE;
Dave Wallace543852a2017-08-03 02:11:34 -04001479
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001480 if (is_nonblocking)
Florin Corasac422d62020-10-19 20:51:36 -07001481 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001482
Florin Coras7e12d942018-06-27 14:32:43 -07001483 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1484 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001485
Florin Coras5e062572019-03-14 19:07:51 -07001486 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001487
Florin Coras134a9962018-08-28 11:32:04 -07001488 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001489}
1490
Florin Corasfe286f72021-06-04 10:07:55 -07001491static void
Florin Corasfa3884f2021-06-22 20:04:46 -07001492vcl_epoll_lt_add (vcl_worker_t *wrk, vcl_session_t *s)
Florin Corasfe286f72021-06-04 10:07:55 -07001493{
Florin Corasfa3884f2021-06-22 20:04:46 -07001494 vcl_session_t *cur, *prev;
Florin Corasfe286f72021-06-04 10:07:55 -07001495
Florin Corasc2a14172023-02-28 21:13:50 -08001496 ASSERT (s->vep.lt_next == VCL_INVALID_SESSION_INDEX);
1497
Florin Corasfa3884f2021-06-22 20:04:46 -07001498 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
Florin Corasfe286f72021-06-04 10:07:55 -07001499 {
Florin Corasfa3884f2021-06-22 20:04:46 -07001500 wrk->ep_lt_current = s->session_index;
1501 s->vep.lt_next = s->session_index;
1502 s->vep.lt_prev = s->session_index;
1503 return;
Florin Corasfe286f72021-06-04 10:07:55 -07001504 }
Florin Corasfa3884f2021-06-22 20:04:46 -07001505
1506 cur = vcl_session_get (wrk, wrk->ep_lt_current);
1507 prev = vcl_session_get (wrk, cur->vep.lt_prev);
1508
1509 prev->vep.lt_next = s->session_index;
1510 s->vep.lt_prev = prev->session_index;
1511
1512 s->vep.lt_next = cur->session_index;
1513 cur->vep.lt_prev = s->session_index;
1514}
1515
1516static void
1517vcl_epoll_lt_del (vcl_worker_t *wrk, vcl_session_t *s)
1518{
1519 vcl_session_t *prev, *next;
1520
Florin Corasc2a14172023-02-28 21:13:50 -08001521 ASSERT (s->vep.lt_next != VCL_INVALID_SESSION_INDEX);
1522
Florin Corasfa3884f2021-06-22 20:04:46 -07001523 if (s->vep.lt_next == s->session_index)
1524 {
1525 wrk->ep_lt_current = VCL_INVALID_SESSION_INDEX;
1526 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasc2a14172023-02-28 21:13:50 -08001527 s->vep.lt_prev = VCL_INVALID_SESSION_INDEX;
Florin Corasfa3884f2021-06-22 20:04:46 -07001528 return;
1529 }
1530
1531 prev = vcl_session_get (wrk, s->vep.lt_prev);
1532 next = vcl_session_get (wrk, s->vep.lt_next);
1533
1534 prev->vep.lt_next = next->session_index;
1535 next->vep.lt_prev = prev->session_index;
1536
1537 if (s->session_index == wrk->ep_lt_current)
1538 wrk->ep_lt_current = s->vep.lt_next;
1539
1540 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasc2a14172023-02-28 21:13:50 -08001541 s->vep.lt_prev = VCL_INVALID_SESSION_INDEX;
Florin Corasfe286f72021-06-04 10:07:55 -07001542}
1543
Dave Wallace543852a2017-08-03 02:11:34 -04001544int
Florin Corasc127d5a2020-10-14 16:35:58 -07001545vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * s,
Florin Corasf9240dc2019-01-15 08:03:17 -08001546 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001547{
Florin Coras134a9962018-08-28 11:32:04 -07001548 int rv = VPPCOM_OK;
Florin Coras47c40e22018-11-26 17:01:36 -08001549
Florin Coras6c3b2182020-10-19 18:36:48 -07001550 VDBG (1, "session %u [0x%llx] closing", s->session_index, s->vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001551
Florin Coras6c3b2182020-10-19 18:36:48 -07001552 if (s->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace543852a2017-08-03 02:11:34 -04001553 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001554 u32 next_sh = s->vep.next_sh;
Florin Coras134a9962018-08-28 11:32:04 -07001555 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001556 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001557 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001558 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001559 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras6c3b2182020-10-19 18:36:48 -07001560 " failed! rv %d (%s)", s->vpp_handle, next_sh,
1561 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Florin Corasc127d5a2020-10-14 16:35:58 -07001562 next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001563 }
Florin Corase4306b62020-10-28 12:51:10 -07001564 goto free_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001565 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001566
Florin Coras6c3b2182020-10-19 18:36:48 -07001567 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001568 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001569 rv = vppcom_epoll_ctl (s->vep.vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001570 if (rv < 0)
1571 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
Florin Coras6c3b2182020-10-19 18:36:48 -07001572 "failed! rv %d (%s)", s->session_index, s->vpp_handle,
1573 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001574 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001575
Florin Coras9ace36d2019-10-28 13:14:17 -07001576 if (!do_disconnect)
1577 {
1578 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Coras6c3b2182020-10-19 18:36:48 -07001579 s->session_index, s->vpp_handle);
Florin Coras9ace36d2019-10-28 13:14:17 -07001580 goto cleanup;
1581 }
1582
Florin Coras6c3b2182020-10-19 18:36:48 -07001583 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras9ace36d2019-10-28 13:14:17 -07001584 {
1585 rv = vppcom_session_unbind (sh);
1586 if (PREDICT_FALSE (rv < 0))
1587 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
Florin Coras6c3b2182020-10-19 18:36:48 -07001588 "rv %d (%s)", s->session_index, s->vpp_handle, rv,
Florin Coras9ace36d2019-10-28 13:14:17 -07001589 vppcom_retval_str (rv));
1590 return rv;
1591 }
Florin Coras1bc919e2020-10-18 20:17:49 -07001592 else if (vcl_session_is_ready (s)
Florin Corasc127d5a2020-10-14 16:35:58 -07001593 || (vcl_session_is_connectable_listener (wrk, s)))
Florin Coras9ace36d2019-10-28 13:14:17 -07001594 {
1595 rv = vppcom_session_disconnect (sh);
1596 if (PREDICT_FALSE (rv < 0))
1597 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
Florin Coras6c3b2182020-10-19 18:36:48 -07001598 " rv %d (%s)", s->session_index, s->vpp_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001599 rv, vppcom_retval_str (rv));
1600 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001601 else if (s->session_state == VCL_STATE_DISCONNECT)
Florin Coras9ace36d2019-10-28 13:14:17 -07001602 {
Florin Coras52dd29f2020-11-18 19:02:17 -08001603 vcl_send_session_reset_reply (wrk, s, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001604 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001605 else if (s->session_state == VCL_STATE_DETACHED)
Florin Corasadcfb152020-02-12 08:50:29 +00001606 {
Florin Corasc127d5a2020-10-14 16:35:58 -07001607 VDBG (0, "vpp freed session %d before close", s->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001608
1609 if (!(s->flags & VCL_SESSION_F_PENDING_DISCONNECT))
1610 goto free_session;
1611
1612 /* Disconnect/reset messages pending but vpp transport and session
1613 * cleanups already done. Free only after messages drained. */
1614 s->flags |= VCL_SESSION_F_PENDING_FREE;
Florin Corasadcfb152020-02-12 08:50:29 +00001615 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001616
Florin Corasc127d5a2020-10-14 16:35:58 -07001617 s->session_state = VCL_STATE_CLOSED;
Florin Coras54140622020-02-04 19:04:34 +00001618
Florin Coras9ace36d2019-10-28 13:14:17 -07001619 /* Session is removed only after vpp confirms the disconnect */
1620 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001621
Florin Corasf9240dc2019-01-15 08:03:17 -08001622cleanup:
Florin Coras6c3b2182020-10-19 18:36:48 -07001623 vcl_session_table_del_vpp_handle (wrk, s->vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001624free_session:
Florin Corasc127d5a2020-10-14 16:35:58 -07001625 vcl_session_free (wrk, s);
1626 vcl_evt (VCL_EVT_CLOSE, s, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001627
Dave Wallace543852a2017-08-03 02:11:34 -04001628 return rv;
1629}
1630
1631int
Florin Corasf9240dc2019-01-15 08:03:17 -08001632vppcom_session_close (uint32_t session_handle)
1633{
1634 vcl_worker_t *wrk = vcl_worker_get_current ();
1635 vcl_session_t *session;
1636
1637 session = vcl_session_get_w_handle (wrk, session_handle);
1638 if (!session)
1639 return VPPCOM_EBADFD;
1640 return vcl_session_cleanup (wrk, session, session_handle,
1641 1 /* do_disconnect */ );
1642}
1643
1644int
Florin Coras134a9962018-08-28 11:32:04 -07001645vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001646{
Florin Coras134a9962018-08-28 11:32:04 -07001647 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001648 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001649
1650 if (!ep || !ep->ip)
1651 return VPPCOM_EINVAL;
1652
Florin Coras134a9962018-08-28 11:32:04 -07001653 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001654 if (!session)
1655 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001656
Florin Coras6c3b2182020-10-19 18:36:48 -07001657 if (session->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001658 {
Florin Coras5e062572019-03-14 19:07:51 -07001659 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1660 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001661 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001662 }
1663
Florin Coras7e12d942018-06-27 14:32:43 -07001664 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001665 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001666 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1667 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001668 else
Dave Barach178cf492018-11-13 16:34:13 -05001669 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1670 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001671 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001672
Florin Coras60687192021-11-29 21:00:47 -08001673 VDBG (0,
1674 "session %u handle %u: binding to local %s address %U port %u, "
1675 "proto %s",
1676 session->session_index, session_handle,
1677 session->transport.is_ip4 ? "IPv4" : "IPv6", vcl_format_ip46_address,
1678 &session->transport.lcl_ip,
Florin Coras7e12d942018-06-27 14:32:43 -07001679 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1680 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001681 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001682 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001683
1684 if (session->session_type == VPPCOM_PROTO_UDP)
Mohammed Hawarif4e3ee12023-10-30 10:52:19 +01001685 return vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001686
Florin Coras070453d2018-08-24 17:04:27 -07001687 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001688}
1689
1690int
Florin Coras134a9962018-08-28 11:32:04 -07001691vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001692{
Florin Coras134a9962018-08-28 11:32:04 -07001693 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001694 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001695 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001696 int rv;
1697
Florin Coras134a9962018-08-28 11:32:04 -07001698 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras6c3b2182020-10-19 18:36:48 -07001699 if (!listen_session || (listen_session->flags & VCL_SESSION_F_IS_VEP))
Florin Coras070453d2018-08-24 17:04:27 -07001700 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001701
Dave Wallaceee45d412017-11-24 21:44:06 -05001702 listen_vpp_handle = listen_session->vpp_handle;
Florin Corasc127d5a2020-10-14 16:35:58 -07001703 if (listen_session->session_state == VCL_STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001704 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001705 VDBG (0, "session %u [0x%llx]: already in listen state!",
1706 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001707 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001708 }
1709
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001710 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001711
Florin Coras070453d2018-08-24 17:04:27 -07001712 /*
1713 * Send listen request to vpp and wait for reply
1714 */
Florin Coras458089b2019-08-21 16:20:44 -07001715 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001716 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
Florin Corasc127d5a2020-10-14 16:35:58 -07001717 VCL_STATE_LISTEN,
Florin Coras134a9962018-08-28 11:32:04 -07001718 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001719
Florin Coras070453d2018-08-24 17:04:27 -07001720 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001721 {
Florin Coras134a9962018-08-28 11:32:04 -07001722 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001723 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1724 listen_sh, listen_session->vpp_handle, rv,
1725 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001726 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001727 }
1728
Florin Coras070453d2018-08-24 17:04:27 -07001729 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001730}
1731
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001732int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001733vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1734{
1735 if (!strcmp (proto_str, "TCP"))
1736 *proto = VPPCOM_PROTO_TCP;
1737 else if (!strcmp (proto_str, "tcp"))
1738 *proto = VPPCOM_PROTO_TCP;
1739 else if (!strcmp (proto_str, "UDP"))
1740 *proto = VPPCOM_PROTO_UDP;
1741 else if (!strcmp (proto_str, "udp"))
1742 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001743 else if (!strcmp (proto_str, "TLS"))
1744 *proto = VPPCOM_PROTO_TLS;
1745 else if (!strcmp (proto_str, "tls"))
1746 *proto = VPPCOM_PROTO_TLS;
1747 else if (!strcmp (proto_str, "QUIC"))
1748 *proto = VPPCOM_PROTO_QUIC;
1749 else if (!strcmp (proto_str, "quic"))
1750 *proto = VPPCOM_PROTO_QUIC;
Florin Coras4b47ee22020-11-19 13:38:26 -08001751 else if (!strcmp (proto_str, "DTLS"))
1752 *proto = VPPCOM_PROTO_DTLS;
1753 else if (!strcmp (proto_str, "dtls"))
1754 *proto = VPPCOM_PROTO_DTLS;
Florin Coras6621abf2021-01-06 17:35:17 -08001755 else if (!strcmp (proto_str, "SRTP"))
1756 *proto = VPPCOM_PROTO_SRTP;
1757 else if (!strcmp (proto_str, "srtp"))
1758 *proto = VPPCOM_PROTO_SRTP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001759 else
1760 return 1;
1761 return 0;
1762}
1763
1764int
Florin Coras32881932023-02-06 13:30:13 -08001765vppcom_session_accept (uint32_t ls_handle, vppcom_endpt_t *ep, uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001766{
Florin Coras32881932023-02-06 13:30:13 -08001767 u32 client_session_index = ~0, ls_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001768 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001769 session_accepted_msg_t accepted_msg;
Florin Coras32881932023-02-06 13:30:13 -08001770 vcl_session_t *ls, *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001771 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001772 u8 is_nonblocking;
Dave Wallace543852a2017-08-03 02:11:34 -04001773
Florin Coras5398dfb2021-01-25 20:31:27 -08001774again:
1775
Florin Coras32881932023-02-06 13:30:13 -08001776 ls = vcl_session_get_w_handle (wrk, ls_handle);
1777 if (!ls)
Florin Coras070453d2018-08-24 17:04:27 -07001778 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001779
Florin Coras32881932023-02-06 13:30:13 -08001780 if ((ls->session_state != VCL_STATE_LISTEN) &&
1781 (ls->session_state != VCL_STATE_LISTEN_NO_MQ) &&
1782 (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001783 {
Florin Coras32881932023-02-06 13:30:13 -08001784 VDBG (0, "ERROR: session [0x%llx]: not in listen state! state (%s)",
1785 ls->vpp_handle, vcl_session_state_str (ls->session_state));
1786 return VPPCOM_EBADFD;
1787 }
1788
1789 ls_index = ls->session_index;
1790
1791 if (clib_fifo_elts (ls->accept_evts_fifo))
1792 {
1793 clib_fifo_sub2 (ls->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001794 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001795 accepted_msg = evt->accepted_msg;
1796 goto handle;
1797 }
1798
Florin Coras32881932023-02-06 13:30:13 -08001799 is_nonblocking = vcl_session_has_attr (ls, VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001800 while (1)
1801 {
Carl Smith592a9092019-11-12 14:57:37 +13001802 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1803 return VPPCOM_EAGAIN;
1804
Florin Coras5398dfb2021-01-25 20:31:27 -08001805 svm_msg_q_wait (wrk->app_event_queue, SVM_MQ_WAIT_EMPTY);
1806 vcl_worker_flush_mq_events (wrk);
1807 goto again;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001808 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001809
Florin Coras54693d22018-07-17 10:46:29 -07001810handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001811
Florin Coras32881932023-02-06 13:30:13 -08001812 client_session_index =
1813 vcl_session_accepted_handler (wrk, &accepted_msg, ls_index);
Florin Coras00cca802019-06-06 09:38:44 -07001814 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1815 return VPPCOM_ECONNABORTED;
1816
Florin Coras32881932023-02-06 13:30:13 -08001817 ls = vcl_session_get (wrk, ls_index);
Florin Coras134a9962018-08-28 11:32:04 -07001818 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001819
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001820 if (flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07001821 vcl_session_set_attr (client_session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001822
Florin Coras32881932023-02-06 13:30:13 -08001823 VDBG (1,
1824 "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1825 " flags %d, is_nonblocking %u",
1826 ls->session_index, ls->vpp_handle, client_session_index,
Florin Coras5e062572019-03-14 19:07:51 -07001827 client_session->vpp_handle, flags,
Florin Corasac422d62020-10-19 20:51:36 -07001828 vcl_session_has_attr (client_session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001829
Dave Wallace048b1d62018-01-03 22:24:41 -05001830 if (ep)
1831 {
Florin Coras7e12d942018-06-27 14:32:43 -07001832 ep->is_ip4 = client_session->transport.is_ip4;
1833 ep->port = client_session->transport.rmt_port;
1834 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001835 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1836 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001837 else
Dave Barach178cf492018-11-13 16:34:13 -05001838 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1839 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001840 }
Dave Wallace60caa062017-11-10 17:07:13 -05001841
Florin Coras60687192021-11-29 21:00:47 -08001842 VDBG (0,
1843 "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1844 "local: %U:%u",
Florin Coras32881932023-02-06 13:30:13 -08001845 ls_handle, ls->vpp_handle, client_session_index,
1846 client_session->vpp_handle, vcl_format_ip46_address,
1847 &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001848 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001849 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras60687192021-11-29 21:00:47 -08001850 vcl_format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001851 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001852 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras32881932023-02-06 13:30:13 -08001853 vcl_evt (VCL_EVT_ACCEPT, client_session, ls, client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001854
Florin Coras3c7d4f92018-12-14 11:28:43 -08001855 /*
1856 * Session might have been closed already
1857 */
1858 if (accept_flags)
1859 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001860 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasc127d5a2020-10-14 16:35:58 -07001861 client_session->session_state = VCL_STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001862 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasc127d5a2020-10-14 16:35:58 -07001863 client_session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001864 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001865 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001866}
1867
1868int
Florin Coras134a9962018-08-28 11:32:04 -07001869vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001870{
Florin Coras134a9962018-08-28 11:32:04 -07001871 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001872 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001873 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001874 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001875
Florin Coras134a9962018-08-28 11:32:04 -07001876 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001877 if (!session)
1878 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001879 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001880
Florin Coras6c3b2182020-10-19 18:36:48 -07001881 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04001882 {
Florin Coras5ffb9642021-12-03 17:24:13 -08001883 VWRN ("cannot connect epoll session %u!", session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001884 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001885 }
1886
Florin Corasc127d5a2020-10-14 16:35:58 -07001887 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Dave Wallace543852a2017-08-03 02:11:34 -04001888 {
Florin Coras60687192021-11-29 21:00:47 -08001889 VDBG (0,
Florin Coras5ffb9642021-12-03 17:24:13 -08001890 "session %u [0x%llx]: already connected to %U:%d proto %s,"
1891 " state (%s)",
1892 session->session_index, session->vpp_handle,
Florin Coras60687192021-11-29 21:00:47 -08001893 vcl_format_ip46_address, &session->transport.rmt_ip,
1894 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001895 clib_net_to_host_u16 (session->transport.rmt_port),
Florin Coras5ffb9642021-12-03 17:24:13 -08001896 vppcom_proto_str (session->session_type),
Florin Coras60687192021-11-29 21:00:47 -08001897 vcl_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001898 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001899 }
1900
Florin Coras0a1e1832020-03-29 18:54:04 +00001901 /* Attempt to connect a connectionless listener */
Florin Corasc127d5a2020-10-14 16:35:58 -07001902 if (PREDICT_FALSE (session->session_state == VCL_STATE_LISTEN))
Florin Coras0a1e1832020-03-29 18:54:04 +00001903 {
1904 if (session->session_type != VPPCOM_PROTO_UDP)
1905 return VPPCOM_EINVAL;
1906 vcl_send_session_unlisten (wrk, session);
Florin Corasc127d5a2020-10-14 16:35:58 -07001907 session->session_state = VCL_STATE_CLOSED;
Florin Coras0a1e1832020-03-29 18:54:04 +00001908 }
1909
Florin Coras7e12d942018-06-27 14:32:43 -07001910 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001911 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001912 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001913 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001914 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001915
Florin Coras5ffb9642021-12-03 17:24:13 -08001916 VDBG (0, "session %u: connecting to peer %U:%d proto %s",
1917 session->session_index, vcl_format_ip46_address,
Florin Coras60687192021-11-29 21:00:47 -08001918 &session->transport.rmt_ip,
1919 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001920 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001921 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001922
Florin Coras458089b2019-08-21 16:20:44 -07001923 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001924
Florin Corasac422d62020-10-19 20:51:36 -07001925 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001926 {
fanyfa49d59d2020-10-13 17:07:16 +08001927 /* State set to STATE_UPDATED to ensure the session is not assumed
Florin Corasdfffdd72020-10-15 10:54:47 -07001928 * to be ready and to also allow the app to close it prior to vpp's
fanyfa49d59d2020-10-13 17:07:16 +08001929 * connected reply. */
Florin Corasc127d5a2020-10-14 16:35:58 -07001930 session->session_state = VCL_STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001931 return VPPCOM_EINPROGRESS;
1932 }
Florin Coras57c88932019-08-29 12:03:17 -07001933
1934 /*
1935 * Wait for reply from vpp if blocking
1936 */
Florin Corasdfffdd72020-10-15 10:54:47 -07001937 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Florin Coras070453d2018-08-24 17:04:27 -07001938 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001939
Florin Coras134a9962018-08-28 11:32:04 -07001940 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001941 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1942 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001943
Dave Wallace4878cbe2017-11-21 03:45:09 -05001944 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001945}
1946
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001947int
1948vppcom_session_stream_connect (uint32_t session_handle,
1949 uint32_t parent_session_handle)
1950{
1951 vcl_worker_t *wrk = vcl_worker_get_current ();
1952 vcl_session_t *session, *parent_session;
1953 u32 session_index, parent_session_index;
1954 int rv;
1955
1956 session = vcl_session_get_w_handle (wrk, session_handle);
1957 if (!session)
1958 return VPPCOM_EBADFD;
1959 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1960 if (!parent_session)
1961 return VPPCOM_EBADFD;
1962
1963 session_index = session->session_index;
1964 parent_session_index = parent_session->session_index;
Florin Coras6c3b2182020-10-19 18:36:48 -07001965 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001966 {
1967 VDBG (0, "ERROR: cannot connect epoll session %u!",
1968 session->session_index);
1969 return VPPCOM_EBADFD;
1970 }
1971
Florin Corasc127d5a2020-10-14 16:35:58 -07001972 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001973 {
Florin Coras60687192021-11-29 21:00:47 -08001974 VDBG (0,
1975 "session handle %u [0x%llx]: session already "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001976 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
Florin Coras60687192021-11-29 21:00:47 -08001977 session_handle, session->vpp_handle, parent_session_handle,
1978 parent_session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001979 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras60687192021-11-29 21:00:47 -08001980 vcl_session_state_str (session->session_state));
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001981 return VPPCOM_OK;
1982 }
1983
1984 /* Connect to quic session specifics */
1985 session->transport.is_ip4 = parent_session->transport.is_ip4;
1986 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1987 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001988 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001989
1990 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1991 session_handle, parent_session_handle, parent_session->vpp_handle);
1992
1993 /*
1994 * Send connect request and wait for reply from vpp
1995 */
Florin Coras458089b2019-08-21 16:20:44 -07001996 vcl_send_session_connect (wrk, session);
Florin Corasdfffdd72020-10-15 10:54:47 -07001997 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001998 vcm->cfg.session_timeout);
1999
2000 session->listener_index = parent_session_index;
2001 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07002002 if (parent_session)
2003 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02002004
2005 session = vcl_session_get (wrk, session_index);
2006 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
2007 session->vpp_handle, rv ? "failed" : "succeeded");
2008
2009 return rv;
2010}
2011
Steven58f464e2017-10-25 12:33:12 -07002012static inline int
Florin Coras134a9962018-08-28 11:32:04 -07002013vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07002014 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04002015{
Florin Coras134a9962018-08-28 11:32:04 -07002016 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07002017 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002018 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04002019 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002020 session_event_t *e;
2021 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07002022 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002023
Florin Coras070453d2018-08-24 17:04:27 -07002024 if (PREDICT_FALSE (!buf))
wanghanlin72228a22021-07-06 17:18:29 +08002025 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04002026
Florin Coras134a9962018-08-28 11:32:04 -07002027 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002028 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras070453d2018-08-24 17:04:27 -07002029 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002030
Florin Coras6d0106e2019-01-29 20:11:58 -08002031 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002032 {
Florin Coras5e062572019-03-14 19:07:51 -07002033 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08002034 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002035 vcl_session_state_str (s->session_state));
Florin Coras6d0106e2019-01-29 20:11:58 -08002036 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002037 }
2038
liuyacan55c952e2021-06-13 14:54:55 +08002039 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
2040 {
2041 /* Vpp would ack the incoming data and enqueue it for reading.
2042 * So even if SHUT_RD is set, we can still read() the data if
2043 * the session is ready.
2044 */
2045 if (!vcl_session_read_ready (s))
2046 {
2047 return 0;
2048 }
2049 }
2050
Florin Corasac422d62020-10-19 20:51:36 -07002051 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07002052 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002053 mq = wrk->app_event_queue;
2054 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002055 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002056
Sirshak Das28aa5392019-02-05 01:33:33 -06002057 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002058 {
Florin Corasae036d32023-09-18 09:56:21 -07002059 if (is_ct)
2060 svm_fifo_unset_event (s->rx_fifo);
2061 svm_fifo_unset_event (rx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002062 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08002063 {
Yu Pingb2955352019-12-04 06:49:04 +08002064 if (vcl_session_is_closing (s))
2065 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08002066 return VPPCOM_EWOULDBLOCK;
2067 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002068 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002069 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002070 if (vcl_session_is_closing (s))
2071 return vcl_session_closing_error (s);
2072
Florin Corasd6894562020-10-28 00:37:15 -07002073 if (is_ct)
2074 svm_fifo_unset_event (s->rx_fifo);
2075 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07002076
Florin Coras5398dfb2021-01-25 20:31:27 -08002077 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2078 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002079 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002080 }
Florin Coras54693d22018-07-17 10:46:29 -07002081
Florin Coras4a2c7942020-09-10 12:27:14 -07002082read_again:
2083
Florin Coras460dce62018-07-27 05:45:06 -07002084 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07002085 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002086 else
Florin Coras4a2c7942020-09-10 12:27:14 -07002087 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
2088
2089 ASSERT (rv >= 0);
Florin Coras23368312021-06-04 16:28:18 -07002090
2091 if (peek)
2092 return rv;
2093
Florin Coras4a2c7942020-09-10 12:27:14 -07002094 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07002095
Sirshak Das28aa5392019-02-05 01:33:33 -06002096 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07002097 {
Florin Corasd6894562020-10-28 00:37:15 -07002098 if (is_ct)
2099 svm_fifo_unset_event (s->rx_fifo);
2100 svm_fifo_unset_event (rx_fifo);
Florin Corasc34118b2020-08-12 18:58:25 -07002101 if (!svm_fifo_is_empty_cons (rx_fifo)
Florin Corasd6894562020-10-28 00:37:15 -07002102 && svm_fifo_set_event (rx_fifo) && is_nonblocking)
Florin Corasc34118b2020-08-12 18:58:25 -07002103 {
Florin Corasc34118b2020-08-12 18:58:25 -07002104 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2105 e->event_type = SESSION_IO_EVT_RX;
2106 e->session_index = s->session_index;
2107 }
2108 }
Florin Coras54fe32c2020-11-25 20:26:32 -08002109 else if (PREDICT_FALSE (rv < n && !s->is_dgram))
Florin Coras4a2c7942020-09-10 12:27:14 -07002110 {
2111 /* More data enqueued while reading. Try to drain it
Florin Coras54fe32c2020-11-25 20:26:32 -08002112 * or fill the buffer. Avoid doing that for dgrams */
Florin Coras4a2c7942020-09-10 12:27:14 -07002113 buf += rv;
2114 n -= rv;
2115 goto read_again;
2116 }
Florin Coras41c9e042018-09-11 00:10:41 -07002117
Florin Coras17ec5772020-08-12 20:46:29 -07002118 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07002119 {
Florin Coras17ec5772020-08-12 20:46:29 -07002120 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -08002121 app_send_io_evt_to_vpp (s->vpp_evt_q,
2122 s->rx_fifo->shr->master_session_index,
Florin Coras317b8e02019-04-17 09:57:46 -07002123 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07002124 }
2125
Florin Coras5e062572019-03-14 19:07:51 -07002126 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
2127 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002128
Florin Coras54693d22018-07-17 10:46:29 -07002129 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04002130}
2131
Steven58f464e2017-10-25 12:33:12 -07002132int
Florin Coras134a9962018-08-28 11:32:04 -07002133vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07002134{
Florin Coras134a9962018-08-28 11:32:04 -07002135 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07002136}
2137
2138static int
Florin Coras134a9962018-08-28 11:32:04 -07002139vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07002140{
Florin Coras134a9962018-08-28 11:32:04 -07002141 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07002142}
2143
Florin Coras2cba8532018-09-11 16:33:36 -07002144int
2145vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07002146 vppcom_data_segment_t * ds, uint32_t n_segments,
2147 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002148{
2149 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08002150 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07002151 vcl_session_t *s = 0;
2152 svm_fifo_t *rx_fifo;
Florin Coras2cba8532018-09-11 16:33:36 -07002153 svm_msg_q_t *mq;
2154 u8 is_ct;
2155
2156 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002157 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002158 return VPPCOM_EBADFD;
2159
Florin Coras6d0106e2019-01-29 20:11:58 -08002160 if (PREDICT_FALSE (!vcl_session_is_open (s)))
2161 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07002162
Florin Corasac422d62020-10-19 20:51:36 -07002163 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras2cba8532018-09-11 16:33:36 -07002164 is_ct = vcl_session_is_ct (s);
Florin Corasac422d62020-10-19 20:51:36 -07002165 mq = wrk->app_event_queue;
Florin Coras62877022020-10-28 21:22:04 -07002166 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002167 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2cba8532018-09-11 16:33:36 -07002168
Sirshak Das28aa5392019-02-05 01:33:33 -06002169 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002170 {
Florin Corasae036d32023-09-18 09:56:21 -07002171 if (is_ct)
2172 svm_fifo_unset_event (s->rx_fifo);
2173 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002174 if (is_nonblocking)
2175 {
Florin Corasae036d32023-09-18 09:56:21 -07002176 if (vcl_session_is_closing (s))
2177 return vcl_session_closing_error (s);
Florin Corasaa27eb92018-10-13 12:20:01 -07002178 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07002179 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002180 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002181 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002182 if (vcl_session_is_closing (s))
2183 return vcl_session_closing_error (s);
2184
Florin Coras62877022020-10-28 21:22:04 -07002185 if (is_ct)
2186 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002187 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002188
Florin Coras5398dfb2021-01-25 20:31:27 -08002189 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2190 vcl_worker_flush_mq_events (wrk);
Florin Coras2cba8532018-09-11 16:33:36 -07002191 }
2192 }
2193
Florin Corasd1cc38d2020-10-11 11:05:04 -07002194 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
Florin Corasb85de192022-01-18 20:51:08 -08002195 (svm_fifo_seg_t *) ds, &n_segments, max_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002196 if (n_read < 0)
2197 return VPPCOM_EAGAIN;
2198
2199 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
2200 {
Florin Coras62877022020-10-28 21:22:04 -07002201 if (is_ct)
2202 svm_fifo_unset_event (s->rx_fifo);
2203 svm_fifo_unset_event (rx_fifo);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002204 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
Florin Coras62877022020-10-28 21:22:04 -07002205 && svm_fifo_set_event (rx_fifo)
Florin Corasac422d62020-10-19 20:51:36 -07002206 && vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
Florin Corasd1cc38d2020-10-11 11:05:04 -07002207 {
2208 session_event_t *e;
2209 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2210 e->event_type = SESSION_IO_EVT_RX;
2211 e->session_index = s->session_index;
2212 }
2213 }
2214
2215 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07002216 return n_read;
2217}
2218
2219void
Florin Corasd68faf82020-09-25 15:18:13 -07002220vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002221{
2222 vcl_worker_t *wrk = vcl_worker_get_current ();
2223 vcl_session_t *s;
Florin Coras62877022020-10-28 21:22:04 -07002224 u8 is_ct;
Florin Coras2cba8532018-09-11 16:33:36 -07002225
2226 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002227 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002228 return;
2229
Florin Coras62877022020-10-28 21:22:04 -07002230 is_ct = vcl_session_is_ct (s);
2231 svm_fifo_dequeue_drop (is_ct ? s->ct_rx_fifo : s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002232
Florin Coras8cc93212021-09-10 11:37:12 -07002233 ASSERT (s->rx_bytes_pending >= n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002234 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07002235}
2236
Florin Coras7a2abce2020-04-05 19:25:44 +00002237always_inline u8
2238vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002239{
Florin Coras7a2abce2020-04-05 19:25:44 +00002240 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2241 if (is_dgram)
2242 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2243 else
2244 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002245}
2246
2247always_inline int
Dou Chao243a0432022-11-29 19:41:34 +08002248vppcom_session_write_inline (vcl_worker_t *wrk, vcl_session_t *s, void *buf,
Florin Coraseff5f7a2023-02-07 17:36:17 -08002249 size_t n, u8 is_flush, u8 is_dgram)
Florin Coras7a2abce2020-04-05 19:25:44 +00002250{
Florin Coras6d0106e2019-01-29 20:11:58 -08002251 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002252 session_evt_type_t et;
Florin Coras14ed6df2019-03-06 21:13:42 -08002253 svm_fifo_t *tx_fifo;
Florin Coras3c2fed52018-07-04 04:15:05 -07002254 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002255 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002256
Florin Coras0b0d28e2021-06-04 17:31:53 -07002257 /* Accept zero length writes but just return */
2258 if (PREDICT_FALSE (!n))
2259 return VPPCOM_OK;
2260
2261 if (PREDICT_FALSE (!buf))
2262 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04002263
Florin Coras6c3b2182020-10-19 18:36:48 -07002264 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04002265 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002266 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2267 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002268 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002269 }
2270
liuyacan55c952e2021-06-13 14:54:55 +08002271 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002272 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002273 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2274 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002275 vcl_session_state_str (s->session_state));
Florin Coras6d0106e2019-01-29 20:11:58 -08002276 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002277 }
2278
liuyacan55c952e2021-06-13 14:54:55 +08002279 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_WR_SHUTDOWN))
2280 {
2281 VDBG (1, "session %u [0x%llx]: is shutdown! state 0x%x (%s)",
2282 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002283 vcl_session_state_str (s->session_state));
liuyacan55c952e2021-06-13 14:54:55 +08002284 return VPPCOM_EPIPE;
2285 }
2286
Florin Coras0e88e852018-09-17 22:09:02 -07002287 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002288 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002289 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002290
Florin Coras653e43f2019-03-04 10:56:23 -08002291 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002292 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002293 {
Florin Coras54693d22018-07-17 10:46:29 -07002294 if (is_nonblocking)
2295 {
Florin Coras070453d2018-08-24 17:04:27 -07002296 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002297 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002298 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002299 {
Florin Coras2d379d82019-06-28 12:45:12 -07002300 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002301 if (vcl_session_is_closing (s))
2302 return vcl_session_closing_error (s);
Florin Coras0e88e852018-09-17 22:09:02 -07002303
Florin Coras5398dfb2021-01-25 20:31:27 -08002304 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2305 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002306 }
Dave Wallace543852a2017-08-03 02:11:34 -04002307 }
Dave Wallace543852a2017-08-03 02:11:34 -04002308
Florin Coras653e43f2019-03-04 10:56:23 -08002309 et = SESSION_IO_EVT_TX;
2310 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002311 et = SESSION_IO_EVT_TX_FLUSH;
2312
Florin Coras7a2abce2020-04-05 19:25:44 +00002313 if (is_dgram)
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002314 {
2315 et = vcl_session_dgram_tx_evt (s, et);
2316 n_write =
2317 app_send_dgram_raw_gso (tx_fifo, &s->transport, s->vpp_evt_q, buf, n,
2318 s->gso_size, et, 0 /* do_evt */, SVM_Q_WAIT);
2319 }
Florin Coras460dce62018-07-27 05:45:06 -07002320 else
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002321 {
2322 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
2323 0 /* do_evt */, SVM_Q_WAIT);
2324 }
Florin Coras653e43f2019-03-04 10:56:23 -08002325
Florin Coras14ed6df2019-03-06 21:13:42 -08002326 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002327 app_send_io_evt_to_vpp (
2328 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002329
Florin Coras56230092020-09-02 20:52:58 -07002330 /* The underlying fifo segment can run out of memory */
2331 if (PREDICT_FALSE (n_write < 0))
2332 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002333
Florin Coras6d0106e2019-01-29 20:11:58 -08002334 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2335 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002336
Florin Coras54693d22018-07-17 10:46:29 -07002337 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002338}
2339
Florin Coras42ceddb2018-12-12 10:56:01 -08002340int
2341vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2342{
Florin Coras7a2abce2020-04-05 19:25:44 +00002343 vcl_worker_t *wrk = vcl_worker_get_current ();
2344 vcl_session_t *s;
2345
2346 s = vcl_session_get_w_handle (wrk, session_handle);
2347 if (PREDICT_FALSE (!s))
2348 return VPPCOM_EBADFD;
2349
Florin Coraseff5f7a2023-02-07 17:36:17 -08002350 return vppcom_session_write_inline (wrk, s, buf, n, 0 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002351 s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002352}
2353
Florin Corasb0f662f2018-12-27 14:51:46 -08002354int
2355vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2356{
Florin Coras7a2abce2020-04-05 19:25:44 +00002357 vcl_worker_t *wrk = vcl_worker_get_current ();
2358 vcl_session_t *s;
2359
2360 s = vcl_session_get_w_handle (wrk, session_handle);
2361 if (PREDICT_FALSE (!s))
2362 return VPPCOM_EBADFD;
2363
Florin Coraseff5f7a2023-02-07 17:36:17 -08002364 return vppcom_session_write_inline (wrk, s, buf, n, 1 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002365 s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002366}
2367
Florin Corasc0737e92019-03-04 14:19:39 -08002368#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002369if (PREDICT_FALSE (!_s->rx_fifo)) \
2370 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002371if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2372 { \
2373 if (!vcl_session_is_ct (_s)) \
2374 { \
2375 svm_fifo_unset_event (_s->rx_fifo); \
2376 if (svm_fifo_is_empty (_s->rx_fifo)) \
2377 break; \
2378 } \
2379 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2380 { \
Florin Coras2f630182020-08-13 00:17:51 -07002381 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002382 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2383 break; \
2384 } \
2385 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002386
Florin Coras86f04502018-09-12 16:08:01 -07002387static void
2388vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2389 unsigned long n_bits, unsigned long *read_map,
2390 unsigned long *write_map,
2391 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002392{
2393 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002394 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002395 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002396 u32 sid;
2397
2398 switch (e->event_type)
2399 {
Florin Corasc0737e92019-03-04 14:19:39 -08002400 case SESSION_IO_EVT_RX:
2401 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002402 s = vcl_session_get (wrk, sid);
2403 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002404 break;
Florin Corasb242d312020-10-26 15:35:40 -07002405 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002406 if (sid < n_bits && read_map)
2407 {
David Johnsond9818dd2018-12-14 14:53:41 -05002408 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002409 *bits_set += 1;
2410 }
2411 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002412 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002413 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002414 s = vcl_session_get (wrk, sid);
2415 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002416 break;
2417 if (sid < n_bits && write_map)
2418 {
David Johnsond9818dd2018-12-14 14:53:41 -05002419 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002420 *bits_set += 1;
2421 }
2422 break;
Florin Coras86f04502018-09-12 16:08:01 -07002423 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002424 if (!e->postponed)
2425 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2426 else
2427 s = vcl_session_get (wrk, e->session_index);
2428 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002429 break;
Florin Corasb242d312020-10-26 15:35:40 -07002430 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002431 if (sid < n_bits && read_map)
2432 {
David Johnsond9818dd2018-12-14 14:53:41 -05002433 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002434 *bits_set += 1;
2435 }
2436 break;
2437 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002438 if (!e->postponed)
2439 {
2440 connected_msg = (session_connected_msg_t *) e->data;
2441 sid = vcl_session_connected_handler (wrk, connected_msg);
2442 }
2443 else
2444 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002445 if (sid == VCL_INVALID_SESSION_INDEX)
2446 break;
Florin Coras66c675e2023-03-09 16:43:02 -08002447 if (!(sid < n_bits && write_map))
2448 break;
2449 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2450 *bits_set += 1;
2451 s = vcl_session_get (wrk, sid);
Florin Coras66c675e2023-03-09 16:43:02 -08002452 /* We didn't have a fifo when the event was added */
Florin Coras607eb202023-05-29 16:19:38 -07002453 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras86f04502018-09-12 16:08:01 -07002454 break;
2455 case SESSION_CTRL_EVT_DISCONNECTED:
Florin Coras5e9ed0d2023-08-15 11:16:34 -07002456 if (!e->postponed)
2457 {
2458 disconnected_msg = (session_disconnected_msg_t *) e->data;
2459 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2460 if (!s)
2461 break;
2462 }
2463 else
2464 {
2465 s = vcl_session_get (wrk, e->session_index);
2466 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
2467 }
2468 if (vcl_session_is_closed (s))
2469 {
2470 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
2471 vcl_session_free (wrk, s);
2472 break;
2473 }
Florin Corasb242d312020-10-26 15:35:40 -07002474 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002475 if (sid < n_bits && except_map)
2476 {
David Johnsond9818dd2018-12-14 14:53:41 -05002477 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002478 *bits_set += 1;
2479 }
2480 break;
2481 case SESSION_CTRL_EVT_RESET:
Florin Coras5e9ed0d2023-08-15 11:16:34 -07002482 if (!e->postponed)
2483 {
2484 sid =
2485 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2486 s = vcl_session_get (wrk, sid);
2487 }
2488 else
2489 {
2490 sid = e->session_index;
2491 s = vcl_session_get (wrk, sid);
2492 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
2493 }
2494 if (vcl_session_is_closed (s))
2495 {
2496 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
2497 vcl_session_free (wrk, s);
2498 break;
2499 }
Florin Coras86f04502018-09-12 16:08:01 -07002500 if (sid < n_bits && except_map)
2501 {
David Johnsond9818dd2018-12-14 14:53:41 -05002502 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002503 *bits_set += 1;
2504 }
2505 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002506 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2507 vcl_session_unlisten_reply_handler (wrk, e->data);
2508 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002509 case SESSION_CTRL_EVT_MIGRATED:
2510 vcl_session_migrated_handler (wrk, e->data);
2511 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002512 case SESSION_CTRL_EVT_CLEANUP:
2513 vcl_session_cleanup_handler (wrk, e->data);
2514 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002515 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2516 vcl_session_worker_update_reply_handler (wrk, e->data);
2517 break;
2518 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2519 vcl_session_req_worker_update_handler (wrk, e->data);
2520 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002521 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2522 vcl_session_app_add_segment_handler (wrk, e->data);
2523 break;
2524 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2525 vcl_session_app_del_segment_handler (wrk, e->data);
2526 break;
hanlina3a48962020-07-13 11:09:15 +08002527 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002528 vcl_worker_rpc_handler (wrk, e->data);
2529 break;
Florin Coras86f04502018-09-12 16:08:01 -07002530 default:
2531 clib_warning ("unhandled: %u", e->event_type);
2532 break;
2533 }
2534}
2535
2536static int
2537vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2538 unsigned long n_bits, unsigned long *read_map,
2539 unsigned long *write_map, unsigned long *except_map,
2540 double time_to_wait, u32 * bits_set)
2541{
Florin Coras99368312018-08-02 10:45:44 -07002542 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002543 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002544 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002545
Florin Coras54693d22018-07-17 10:46:29 -07002546 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002547 {
Florin Coras54693d22018-07-17 10:46:29 -07002548 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002549 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002550
Florin Coras54693d22018-07-17 10:46:29 -07002551 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002552 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002553 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002554 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002555 else
2556 {
2557 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002558 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002559 }
2560 }
Florin Corase003a1b2019-06-05 10:47:16 -07002561 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002562
Florin Coras134a9962018-08-28 11:32:04 -07002563 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002564 {
Florin Coras134a9962018-08-28 11:32:04 -07002565 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002566 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002567 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2568 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002569 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002570 }
Florin Coras134a9962018-08-28 11:32:04 -07002571 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002572 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002573 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002574}
2575
Florin Coras99368312018-08-02 10:45:44 -07002576static int
Florin Coras294afe22019-01-07 17:49:17 -08002577vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2578 vcl_si_set * read_map, vcl_si_set * write_map,
2579 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002580 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002581{
Florin Coras14ed6df2019-03-06 21:13:42 -08002582 double wait = 0, start = 0;
2583
2584 if (!*bits_set)
2585 {
2586 wait = time_to_wait;
2587 start = clib_time_now (&wrk->clib_time);
2588 }
2589
2590 do
2591 {
2592 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2593 write_map, except_map, wait, bits_set);
2594 if (*bits_set)
2595 return *bits_set;
2596 if (wait == -1)
2597 continue;
2598
2599 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2600 }
2601 while (wait > 0);
2602
2603 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002604}
2605
2606static int
Florin Coras294afe22019-01-07 17:49:17 -08002607vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2608 vcl_si_set * read_map, vcl_si_set * write_map,
2609 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002610 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002611{
2612 vcl_mq_evt_conn_t *mqc;
2613 int __clib_unused n_read;
2614 int n_mq_evts, i;
2615 u64 buf;
2616
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002617 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
2618 {
2619 vcl_api_retry_attach (wrk);
2620 return 0;
2621 }
2622
Florin Coras134a9962018-08-28 11:32:04 -07002623 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2624 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2625 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002626 for (i = 0; i < n_mq_evts; i++)
2627 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002628 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
2629 {
2630 vcl_api_handle_disconnect (wrk);
2631 continue;
2632 }
2633
Florin Coras134a9962018-08-28 11:32:04 -07002634 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002635 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002636 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002637 except_map, 0, bits_set);
2638 }
2639
2640 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2641}
2642
Dave Wallace543852a2017-08-03 02:11:34 -04002643int
Florin Coras294afe22019-01-07 17:49:17 -08002644vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2645 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002646{
Florin Coras54693d22018-07-17 10:46:29 -07002647 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002648 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002649 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002650 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002651
Dave Wallace7876d392017-10-19 03:53:57 -04002652 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002653 {
Florin Coras134a9962018-08-28 11:32:04 -07002654 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002655 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002656 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2657 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002658 }
Dave Wallace7876d392017-10-19 03:53:57 -04002659 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002660 {
Florin Coras134a9962018-08-28 11:32:04 -07002661 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002662 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002663 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2664 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002665 }
Dave Wallace7876d392017-10-19 03:53:57 -04002666 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002667 {
Florin Coras134a9962018-08-28 11:32:04 -07002668 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002669 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002670 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2671 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002672 }
2673
Florin Coras54693d22018-07-17 10:46:29 -07002674 if (!n_bits)
2675 return 0;
2676
2677 if (!write_map)
2678 goto check_rd;
2679
Florin Coras096a1d52021-01-27 15:33:51 -08002680 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2681 {
2682 if (!(s = vcl_session_get (wrk, sid)))
2683 {
2684 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2685 bits_set++;
2686 continue;
2687 }
Florin Coras54693d22018-07-17 10:46:29 -07002688
Florin Coras096a1d52021-01-27 15:33:51 -08002689 if (vcl_session_write_ready (s))
2690 {
2691 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2692 bits_set++;
2693 }
Florin Coras607eb202023-05-29 16:19:38 -07002694 else
Florin Coras096a1d52021-01-27 15:33:51 -08002695 {
Florin Coras607eb202023-05-29 16:19:38 -07002696 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras096a1d52021-01-27 15:33:51 -08002697 }
2698 }
Florin Coras54693d22018-07-17 10:46:29 -07002699
2700check_rd:
2701 if (!read_map)
2702 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002703
Florin Coras096a1d52021-01-27 15:33:51 -08002704 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2705 {
2706 if (!(s = vcl_session_get (wrk, sid)))
2707 {
2708 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2709 bits_set++;
2710 continue;
2711 }
Florin Coras54693d22018-07-17 10:46:29 -07002712
Florin Coras096a1d52021-01-27 15:33:51 -08002713 if (vcl_session_read_ready (s))
2714 {
2715 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2716 bits_set++;
2717 }
2718 }
Florin Coras54693d22018-07-17 10:46:29 -07002719
2720check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002721
Florin Coras86f04502018-09-12 16:08:01 -07002722 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2723 {
2724 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2725 read_map, write_map, except_map, &bits_set);
2726 }
2727 vec_reset_length (wrk->unhandled_evts_vector);
2728
Florin Coras99368312018-08-02 10:45:44 -07002729 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002730 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002731 time_to_wait, &bits_set);
2732 else
Florin Coras134a9962018-08-28 11:32:04 -07002733 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002734 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002735
Dave Wallace543852a2017-08-03 02:11:34 -04002736 return (bits_set);
2737}
2738
Dave Wallacef7f809c2017-10-03 01:48:42 -04002739static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002740vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002741{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002742 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002743 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002744 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002745
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002746 if (VPPCOM_DEBUG <= 3)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002747 return;
2748
Florin Coras6c3b2182020-10-19 18:36:48 -07002749 s = vcl_session_get_w_handle (wrk, vep_handle);
2750 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002751 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002752 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002753 goto done;
2754 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002755 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002756 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002757 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002758 goto done;
2759 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002760 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002761 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002762 "{\n"
2763 " is_vep = %u\n"
2764 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002765 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002766 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2767 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002768
Florin Coras7e5e62b2019-07-30 14:08:23 -07002769 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002770 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002771 s = vcl_session_get_w_handle (wrk, sh);
2772 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002773 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002774 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002775 goto done;
2776 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002777 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002778 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002779 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002780 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002781 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002782 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002783 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002784 goto done;
2785 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002786 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002787 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2788 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002789 sh, s->vep.vep_sh, vep_handle);
2790 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002791 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002792 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002793 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002794 " next_sh = 0x%x (%u)\n"
2795 " prev_sh = 0x%x (%u)\n"
2796 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002797 " ev.events = 0x%x\n"
2798 " ev.data.u64 = 0x%llx\n"
2799 " et_mask = 0x%x\n"
2800 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002801 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002802 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2803 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002804 }
2805 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002806
2807done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002808 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002809}
2810
2811int
2812vppcom_epoll_create (void)
2813{
Florin Coras134a9962018-08-28 11:32:04 -07002814 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002815 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002816
Florin Coras134a9962018-08-28 11:32:04 -07002817 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002818
Florin Coras6c3b2182020-10-19 18:36:48 -07002819 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002820 vep_session->vep.vep_sh = ~0;
2821 vep_session->vep.next_sh = ~0;
2822 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002823 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002824
Florin Corasa7a1a222018-12-30 17:11:31 -08002825 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2826 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002827
Florin Corasab2f6db2018-08-31 14:31:41 -07002828 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002829}
2830
Florin Corasb0116a12023-02-07 09:11:47 -08002831static void
2832vcl_epoll_ctl_add_unhandled_event (vcl_worker_t *wrk, vcl_session_t *s,
2833 u8 is_epollet, session_evt_type_t evt)
2834{
2835 if (!is_epollet)
2836 {
Florin Corasc2a14172023-02-28 21:13:50 -08002837 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
2838 vcl_epoll_lt_add (wrk, s);
Florin Corasb0116a12023-02-07 09:11:47 -08002839 return;
2840 }
2841
2842 session_event_t e = { 0 };
2843 e.session_index = s->session_index;
2844 e.event_type = evt;
2845 if (evt == SESSION_IO_EVT_RX)
2846 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
2847 vec_add1 (wrk->unhandled_evts_vector, e);
2848}
2849
Dave Wallacef7f809c2017-10-03 01:48:42 -04002850int
Florin Coras134a9962018-08-28 11:32:04 -07002851vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002852 struct epoll_event *event)
2853{
Florin Coras134a9962018-08-28 11:32:04 -07002854 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras87f76002021-06-28 19:13:29 -07002855 int rv = VPPCOM_OK, add_evt = 0;
Florin Coras7e12d942018-06-27 14:32:43 -07002856 vcl_session_t *vep_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002857 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002858
Florin Coras134a9962018-08-28 11:32:04 -07002859 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002860 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002861 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002862 return VPPCOM_EINVAL;
2863 }
2864
Florin Coras134a9962018-08-28 11:32:04 -07002865 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002866 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002867 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002868 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002869 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002870 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002871 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002872 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002873 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002874 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002875 }
2876
Florin Coras134a9962018-08-28 11:32:04 -07002877 ASSERT (vep_session->vep.vep_sh == ~0);
2878 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002879
Florin Coras17ec5772020-08-12 20:46:29 -07002880 s = vcl_session_get_w_handle (wrk, session_handle);
2881 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002882 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002883 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002884 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002885 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002886 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002887 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002888 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002889 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002890 }
2891
2892 switch (op)
2893 {
2894 case EPOLL_CTL_ADD:
2895 if (PREDICT_FALSE (!event))
2896 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002897 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002898 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002899 }
Florin Coras2645f682021-06-04 15:59:41 -07002900 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
2901 {
2902 VDBG (0, "EPOLL_CTL_ADD: %u already epolled!", s->session_index);
2903 rv = VPPCOM_EEXIST;
2904 goto done;
2905 }
Florin Coras134a9962018-08-28 11:32:04 -07002906 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002907 {
Florin Coras7e12d942018-06-27 14:32:43 -07002908 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002909 next_session = vcl_session_get_w_handle (wrk,
2910 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002911 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002912 {
Florin Coras5e062572019-03-14 19:07:51 -07002913 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002914 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002915 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002916 }
Florin Coras134a9962018-08-28 11:32:04 -07002917 ASSERT (next_session->vep.prev_sh == vep_handle);
2918 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002919 }
Florin Coras17ec5772020-08-12 20:46:29 -07002920 s->vep.next_sh = vep_session->vep.next_sh;
2921 s->vep.prev_sh = vep_handle;
2922 s->vep.vep_sh = vep_handle;
2923 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
Florin Corasfa3884f2021-06-22 20:04:46 -07002924 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras17ec5772020-08-12 20:46:29 -07002925 s->vep.ev = *event;
Florin Coras30ecfa82023-06-14 11:15:36 -07002926 s->vep.ev.events |= EPOLLHUP | EPOLLERR;
Florin Coras6c3b2182020-10-19 18:36:48 -07002927 s->flags &= ~VCL_SESSION_F_IS_VEP;
2928 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002929 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002930
Florin Coras470d72f2023-06-01 21:50:03 -07002931 if ((event->events & EPOLLOUT))
hanlin475c9d72019-12-26 11:44:28 +08002932 {
Florin Coras470d72f2023-06-01 21:50:03 -07002933 int write_ready = vcl_session_write_ready (s);
2934
2935 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2936 if (write_ready > 0)
2937 {
2938 /* Generate EPOLLOUT if tx fifo not full */
2939 vcl_epoll_ctl_add_unhandled_event (
2940 wrk, s, event->events & EPOLLET, SESSION_IO_EVT_TX);
2941 add_evt = 1;
2942 }
2943 else
2944 {
2945 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF);
2946 }
hanlin475c9d72019-12-26 11:44:28 +08002947 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002948 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002949 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002950 {
Florin Corasb0116a12023-02-07 09:11:47 -08002951 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2952 SESSION_IO_EVT_RX);
Florin Coras87f76002021-06-28 19:13:29 -07002953 add_evt = 1;
2954 }
2955 if (!add_evt && vcl_session_is_closing (s))
2956 {
2957 session_event_t e = { 0 };
2958 if (s->session_state == VCL_STATE_VPP_CLOSING)
2959 e.event_type = SESSION_CTRL_EVT_DISCONNECTED;
2960 else
2961 e.event_type = SESSION_CTRL_EVT_RESET;
2962 e.session_index = s->session_index;
2963 e.postponed = 1;
2964 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras6e3c1f82020-01-15 01:30:46 +00002965 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002966 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2967 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002968 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002969 break;
2970
2971 case EPOLL_CTL_MOD:
2972 if (PREDICT_FALSE (!event))
2973 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002974 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002975 rv = VPPCOM_EINVAL;
2976 goto done;
2977 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002978 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002979 {
Florin Coras5e062572019-03-14 19:07:51 -07002980 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002981 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002982 goto done;
2983 }
Florin Coras17ec5772020-08-12 20:46:29 -07002984 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002985 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002986 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002987 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002988 rv = VPPCOM_EINVAL;
2989 goto done;
2990 }
hanlin475c9d72019-12-26 11:44:28 +08002991
Florin Coras470d72f2023-06-01 21:50:03 -07002992 /* Generate EPOLLOUT if session write ready and event was not on */
2993 if ((event->events & EPOLLOUT) && !(s->vep.ev.events & EPOLLOUT))
2994 {
2995 /* Fifo size load acq synchronized with update store rel */
2996 int write_ready = vcl_session_write_ready (s);
2997
2998 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2999 if (write_ready > 0)
3000 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
3001 SESSION_IO_EVT_TX);
3002 else
3003 /* Request deq ntf in case dequeue happened while updating flag */
3004 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF);
3005 }
3006 else if (!(event->events & EPOLLOUT))
Florin Coras607eb202023-05-29 16:19:38 -07003007 vcl_session_del_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Corasbc4d5b02023-05-17 23:20:56 -07003008
Florin Coras2645f682021-06-04 15:59:41 -07003009 /* Generate EPOLLIN if session read ready and event was not on */
3010 if ((event->events & EPOLLIN) && !(s->vep.ev.events & EPOLLIN) &&
3011 (vcl_session_read_ready (s) > 0))
3012 {
Florin Corasb0116a12023-02-07 09:11:47 -08003013 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
3014 SESSION_IO_EVT_RX);
Florin Coras2645f682021-06-04 15:59:41 -07003015 }
Florin Coras17ec5772020-08-12 20:46:29 -07003016 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
3017 s->vep.ev = *event;
Florin Coras30ecfa82023-06-14 11:15:36 -07003018 s->vep.ev.events |= EPOLLHUP | EPOLLERR;
Florin Corasbc4d5b02023-05-17 23:20:56 -07003019
Florin Corasa7a1a222018-12-30 17:11:31 -08003020 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
3021 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003022 break;
3023
3024 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07003025 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003026 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003027 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07003028 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05003029 goto done;
3030 }
Florin Coras17ec5772020-08-12 20:46:29 -07003031 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05003032 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003033 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07003034 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003035 rv = VPPCOM_EINVAL;
3036 goto done;
3037 }
3038
Florin Coras17ec5772020-08-12 20:46:29 -07003039 if (s->vep.prev_sh == vep_handle)
3040 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003041 else
3042 {
Florin Coras7e12d942018-06-27 14:32:43 -07003043 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07003044 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07003045 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003046 {
Florin Coras5e062572019-03-14 19:07:51 -07003047 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07003048 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003049 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003050 }
Florin Coras134a9962018-08-28 11:32:04 -07003051 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003052 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003053 }
Florin Coras17ec5772020-08-12 20:46:29 -07003054 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04003055 {
Florin Coras7e12d942018-06-27 14:32:43 -07003056 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07003057 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07003058 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003059 {
Florin Coras5e062572019-03-14 19:07:51 -07003060 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07003061 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003062 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003063 }
Florin Coras134a9962018-08-28 11:32:04 -07003064 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003065 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003066 }
3067
Florin Corasfa3884f2021-06-22 20:04:46 -07003068 if (s->vep.lt_next != VCL_INVALID_SESSION_INDEX)
3069 vcl_epoll_lt_del (wrk, s);
3070
Florin Coras17ec5772020-08-12 20:46:29 -07003071 memset (&s->vep, 0, sizeof (s->vep));
3072 s->vep.next_sh = ~0;
3073 s->vep.prev_sh = ~0;
3074 s->vep.vep_sh = ~0;
Florin Corasfa3884f2021-06-22 20:04:46 -07003075 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras6c3b2182020-10-19 18:36:48 -07003076 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08003077
Florin Corasf1ddeeb2021-06-10 08:08:53 -07003078 if (vcl_session_is_open (s))
Florin Coras607eb202023-05-29 16:19:38 -07003079 vcl_session_del_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08003080
Florin Coras5e062572019-03-14 19:07:51 -07003081 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08003082 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003083 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003084 break;
3085
3086 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08003087 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003088 rv = VPPCOM_EINVAL;
3089 }
3090
Florin Coras134a9962018-08-28 11:32:04 -07003091 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003092
3093done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04003094 return rv;
3095}
3096
Florin Coras30ecfa82023-06-14 11:15:36 -07003097always_inline u8
3098vcl_ep_session_needs_evt (vcl_session_t *s, u32 evt)
3099{
3100 /* No event if not epolled / events reset on hup or level-trigger on */
3101 return ((s->vep.ev.events & evt) &&
3102 s->vep.lt_next == VCL_INVALID_SESSION_INDEX);
3103}
3104
Florin Coras86f04502018-09-12 16:08:01 -07003105static inline void
3106vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
3107 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07003108{
3109 session_disconnected_msg_t *disconnected_msg;
3110 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07003111 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08003112 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07003113 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07003114 u8 add_event = 0;
3115
3116 switch (e->event_type)
3117 {
Florin Coras653e43f2019-03-04 10:56:23 -08003118 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08003119 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003120 s = vcl_session_get (wrk, sid);
3121 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003122 break;
Florin Corasb242d312020-10-26 15:35:40 -07003123 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras30ecfa82023-06-14 11:15:36 -07003124 if (!vcl_ep_session_needs_evt (s, EPOLLIN) ||
3125 (s->flags & VCL_SESSION_F_HAS_RX_EVT))
Florin Coras86f04502018-09-12 16:08:01 -07003126 break;
Florin Coras30ecfa82023-06-14 11:15:36 -07003127 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003128 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003129 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003130 session_evt_data = s->vep.ev.data.u64;
3131 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07003132 break;
Florin Coras653e43f2019-03-04 10:56:23 -08003133 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08003134 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003135 s = vcl_session_get (wrk, sid);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003136 if (!s || !vcl_session_is_open (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003137 break;
Florin Coras48178552023-05-17 22:59:40 -07003138 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ? s->ct_tx_fifo :
3139 s->tx_fifo);
Florin Coras30ecfa82023-06-14 11:15:36 -07003140 if (!vcl_ep_session_needs_evt (s, EPOLLOUT))
Florin Coras86f04502018-09-12 16:08:01 -07003141 break;
Florin Coras30ecfa82023-06-14 11:15:36 -07003142 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003143 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003144 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003145 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003146 break;
Florin Coras86f04502018-09-12 16:08:01 -07003147 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07003148 if (!e->postponed)
3149 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
3150 else
3151 s = vcl_session_get (wrk, e->session_index);
Florin Coras30ecfa82023-06-14 11:15:36 -07003152 if (!s || !vcl_ep_session_needs_evt (s, EPOLLIN))
Florin Coras3c7d4f92018-12-14 11:28:43 -08003153 break;
Florin Corasb242d312020-10-26 15:35:40 -07003154 sid = s->session_index;
Florin Coras30ecfa82023-06-14 11:15:36 -07003155 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003156 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003157 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003158 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003159 break;
3160 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07003161 if (!e->postponed)
3162 {
3163 connected_msg = (session_connected_msg_t *) e->data;
3164 sid = vcl_session_connected_handler (wrk, connected_msg);
3165 }
3166 else
3167 sid = e->session_index;
3168 s = vcl_session_get (wrk, sid);
Florin Coras30ecfa82023-06-14 11:15:36 -07003169 if (vcl_session_is_closed (s) || !vcl_ep_session_needs_evt (s, EPOLLOUT))
Florin Coras72f77822019-01-22 19:05:52 -08003170 break;
Florin Coras1d84abc2023-01-13 09:44:14 -08003171 /* We didn't have a fifo when the event was added */
Florin Coras607eb202023-05-29 16:19:38 -07003172 vcl_session_add_want_deq_ntf (s, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras72f77822019-01-22 19:05:52 -08003173 add_event = 1;
Florin Coras30ecfa82023-06-14 11:15:36 -07003174 session_events = s->vep.ev.events;
3175 /* Generate EPOLLOUT because there's no connected event */
wanghanlin9e42cc22021-06-25 17:40:13 +08003176 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003177 session_evt_data = s->vep.ev.data.u64;
3178 if (s->session_state == VCL_STATE_DETACHED)
Florin Coras30ecfa82023-06-14 11:15:36 -07003179 {
3180 events[*num_ev].events |= EPOLLHUP;
3181 s->vep.ev.events = 0;
3182 }
Florin Coras86f04502018-09-12 16:08:01 -07003183 break;
3184 case SESSION_CTRL_EVT_DISCONNECTED:
Florin Coras87f76002021-06-28 19:13:29 -07003185 if (!e->postponed)
3186 {
3187 disconnected_msg = (session_disconnected_msg_t *) e->data;
3188 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
3189 }
3190 else
3191 {
3192 s = vcl_session_get (wrk, e->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003193 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
Florin Coras87f76002021-06-28 19:13:29 -07003194 }
Florin Coras30ecfa82023-06-14 11:15:36 -07003195 if (vcl_session_is_closed (s) || !vcl_ep_session_needs_evt (s, EPOLLHUP))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003196 {
Florin Coras74254b52021-12-08 11:03:08 -08003197 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003198 vcl_session_free (wrk, s);
3199 break;
3200 }
Florin Corasb242d312020-10-26 15:35:40 -07003201 sid = s->session_index;
3202 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003203 add_event = 1;
liuyacanffd9ddb2021-11-01 10:22:09 +08003204 if (EPOLLRDHUP & session_events)
3205 {
3206 /* If app can distinguish between RDHUP and HUP,
3207 * we make finer control */
3208 events[*num_ev].events = EPOLLRDHUP;
3209 if (s->flags & VCL_SESSION_F_WR_SHUTDOWN)
3210 {
3211 events[*num_ev].events |= EPOLLHUP;
3212 }
3213 }
3214 else
3215 {
3216 events[*num_ev].events = EPOLLHUP;
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 Coras01ee7a72023-03-01 00:49:25 -08003221 case SESSION_CTRL_EVT_BOUND:
3222 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
3223 break;
Florin Coras86f04502018-09-12 16:08:01 -07003224 case SESSION_CTRL_EVT_RESET:
Florin Coras87f76002021-06-28 19:13:29 -07003225 if (!e->postponed)
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003226 {
3227 sid =
3228 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
3229 s = vcl_session_get (wrk, sid);
3230 }
Florin Coras87f76002021-06-28 19:13:29 -07003231 else
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003232 {
3233 sid = e->session_index;
3234 s = vcl_session_get (wrk, sid);
3235 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
3236 }
Florin Coras30ecfa82023-06-14 11:15:36 -07003237 if (vcl_session_is_closed (s) || !vcl_ep_session_needs_evt (s, EPOLLHUP))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003238 {
Florin Coras74254b52021-12-08 11:03:08 -08003239 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003240 vcl_session_free (wrk, s);
3241 break;
3242 }
Florin Corasb242d312020-10-26 15:35:40 -07003243 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003244 add_event = 1;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003245 events[*num_ev].events = EPOLLERR | EPOLLHUP;
3246 if ((EPOLLRDHUP & session_events) &&
3247 (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3248 {
Yacan Liuab157702022-09-26 16:41:32 +08003249 events[*num_ev].events |= EPOLLRDHUP;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003250 }
3251 if ((EPOLLIN & session_events) && (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3252 {
3253 events[*num_ev].events |= EPOLLIN;
3254 }
Florin Corasb242d312020-10-26 15:35:40 -07003255 session_evt_data = s->vep.ev.data.u64;
Florin Coras30ecfa82023-06-14 11:15:36 -07003256 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003257 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08003258 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
3259 vcl_session_unlisten_reply_handler (wrk, e->data);
3260 break;
Florin Coras68b7e582020-01-21 18:33:23 -08003261 case SESSION_CTRL_EVT_MIGRATED:
3262 vcl_session_migrated_handler (wrk, e->data);
3263 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07003264 case SESSION_CTRL_EVT_CLEANUP:
3265 vcl_session_cleanup_handler (wrk, e->data);
3266 break;
Florin Coras30e79c22019-01-02 19:31:22 -08003267 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
3268 vcl_session_req_worker_update_handler (wrk, e->data);
3269 break;
3270 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
3271 vcl_session_worker_update_reply_handler (wrk, e->data);
3272 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07003273 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
3274 vcl_session_app_add_segment_handler (wrk, e->data);
3275 break;
3276 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
3277 vcl_session_app_del_segment_handler (wrk, e->data);
3278 break;
hanlina3a48962020-07-13 11:09:15 +08003279 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07003280 vcl_worker_rpc_handler (wrk, e->data);
3281 break;
Florin Coras86f04502018-09-12 16:08:01 -07003282 default:
3283 VDBG (0, "unhandled: %u", e->event_type);
3284 break;
3285 }
3286
3287 if (add_event)
3288 {
Florin Coras30ecfa82023-06-14 11:15:36 -07003289 ASSERT (s->flags & VCL_SESSION_F_IS_VEP_SESSION);
Florin Coras86f04502018-09-12 16:08:01 -07003290 events[*num_ev].data.u64 = session_evt_data;
3291 if (EPOLLONESHOT & session_events)
3292 {
Florin Corasb242d312020-10-26 15:35:40 -07003293 s = vcl_session_get (wrk, sid);
Florin Coras30ecfa82023-06-14 11:15:36 -07003294 if (!(events[*num_ev].events & EPOLLHUP))
3295 s->vep.ev.events = EPOLLHUP | EPOLLERR;
Florin Coras86f04502018-09-12 16:08:01 -07003296 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003297 else if (!(EPOLLET & session_events))
Florin Corasfe286f72021-06-04 10:07:55 -07003298 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003299 s = vcl_session_get (wrk, sid);
3300 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
3301 vcl_epoll_lt_add (wrk, s);
Florin Corasfe286f72021-06-04 10:07:55 -07003302 }
Florin Coras86f04502018-09-12 16:08:01 -07003303 *num_ev += 1;
3304 }
3305}
3306
3307static int
3308vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
3309 struct epoll_event *events, u32 maxevents,
3310 double wait_for_time, u32 * num_ev)
3311{
Florin Coras99368312018-08-02 10:45:44 -07003312 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07003313 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07003314 int i;
3315
Florin Coras539663c2018-09-28 14:59:37 -07003316 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
3317 goto handle_dequeued;
3318
Florin Coras54693d22018-07-17 10:46:29 -07003319 if (svm_msg_q_is_empty (mq))
3320 {
3321 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08003322 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003323 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08003324 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07003325 else
3326 {
Florin Coras60f1fc12018-08-16 14:57:31 -07003327 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08003328 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003329 }
3330 }
Florin Corase003a1b2019-06-05 10:47:16 -07003331 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08003332 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07003333
Florin Coras539663c2018-09-28 14:59:37 -07003334handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07003335 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07003336 {
Florin Coras134a9962018-08-28 11:32:04 -07003337 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07003338 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08003339 if (*num_ev < maxevents)
3340 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
3341 else
3342 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07003343 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07003344 }
Florin Corasaa27eb92018-10-13 12:20:01 -07003345 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08003346 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07003347 return *num_ev;
3348}
3349
Florin Coras99368312018-08-02 10:45:44 -07003350static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003351vppcom_epoll_wait_condvar (vcl_worker_t *wrk, struct epoll_event *events,
3352 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003353{
Florin Corasccdb8b82021-04-28 13:01:06 -07003354 double end = -1;
Florin Coras14ed6df2019-03-06 21:13:42 -08003355
3356 if (!n_evts)
3357 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003358 if (timeout_ms > 0)
3359 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras14ed6df2019-03-06 21:13:42 -08003360 }
3361
3362 do
3363 {
3364 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
Florin Corasccdb8b82021-04-28 13:01:06 -07003365 timeout_ms, &n_evts);
3366 if (n_evts || !timeout_ms)
Florin Coras14ed6df2019-03-06 21:13:42 -08003367 return n_evts;
Florin Coras14ed6df2019-03-06 21:13:42 -08003368 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003369 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Coras14ed6df2019-03-06 21:13:42 -08003370
3371 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003372}
3373
3374static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003375vppcom_epoll_wait_eventfd (vcl_worker_t *wrk, struct epoll_event *events,
3376 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003377{
Florin Coras99368312018-08-02 10:45:44 -07003378 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08003379 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07003380 int n_mq_evts, i;
Florin Corasccdb8b82021-04-28 13:01:06 -07003381 double end = -1;
Florin Coras99368312018-08-02 10:45:44 -07003382 u64 buf;
3383
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003384 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
3385 {
3386 vcl_api_retry_attach (wrk);
3387 return n_evts;
3388 }
3389
Florin Coras134a9962018-08-28 11:32:04 -07003390 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08003391 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07003392 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003393 if (timeout_ms > 0)
3394 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras99368312018-08-02 10:45:44 -07003395 }
3396
Florin Corasb13ba132021-01-27 16:05:24 -08003397 do
3398 {
3399 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
Florin Corasccdb8b82021-04-28 13:01:06 -07003400 vec_len (wrk->mq_events), timeout_ms);
Florin Corasb13ba132021-01-27 16:05:24 -08003401 if (n_mq_evts < 0)
3402 {
3403 VDBG (0, "epoll_wait error %u", errno);
3404 return n_evts;
3405 }
3406
3407 for (i = 0; i < n_mq_evts; i++)
3408 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003409 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
3410 {
3411 /* api socket was closed */
3412 vcl_api_handle_disconnect (wrk);
3413 continue;
3414 }
3415
Florin Corasb13ba132021-01-27 16:05:24 -08003416 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3417 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3418 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
3419 &n_evts);
3420 }
3421
Florin Corasccdb8b82021-04-28 13:01:06 -07003422 if (n_evts || !timeout_ms)
Florin Corasb13ba132021-01-27 16:05:24 -08003423 return n_evts;
Florin Corasb13ba132021-01-27 16:05:24 -08003424 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003425 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Corasb13ba132021-01-27 16:05:24 -08003426
3427 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003428}
3429
Florin Corasfe286f72021-06-04 10:07:55 -07003430static void
Florin Corasfe286f72021-06-04 10:07:55 -07003431vcl_epoll_wait_handle_lt (vcl_worker_t *wrk, struct epoll_event *events,
3432 int maxevents, u32 *n_evts)
3433{
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003434 u32 add_event = 0, evt_flags = 0, next, *to_remove = 0, *si;
Florin Corasfe286f72021-06-04 10:07:55 -07003435 vcl_session_t *s;
3436 u64 evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003437 int rv;
Florin Corasfe286f72021-06-04 10:07:55 -07003438
Florin Corasfa3884f2021-06-22 20:04:46 -07003439 ASSERT (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX);
Florin Corasfe286f72021-06-04 10:07:55 -07003440 if (*n_evts >= maxevents)
Florin Corasfa3884f2021-06-22 20:04:46 -07003441 return;
Florin Corasfe286f72021-06-04 10:07:55 -07003442
Florin Corasfa3884f2021-06-22 20:04:46 -07003443 next = wrk->ep_lt_current;
3444 do
Florin Corasfe286f72021-06-04 10:07:55 -07003445 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003446 s = vcl_session_get (wrk, next);
3447 next = s->vep.lt_next;
3448
Florin Coras30ecfa82023-06-14 11:15:36 -07003449 if (s->vep.ev.events == 0)
3450 {
3451 vec_add1 (to_remove, s->session_index);
3452 continue;
3453 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003454 if ((s->vep.ev.events & EPOLLIN) && (rv = vcl_session_read_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003455 {
3456 add_event = 1;
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003457 evt_flags |= rv > 0 ? EPOLLIN : EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003458 evt_data = s->vep.ev.data.u64;
3459 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003460 if ((s->vep.ev.events & EPOLLOUT) && (rv = vcl_session_write_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003461 {
3462 add_event = 1;
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003463 evt_flags |= rv > 0 ? EPOLLOUT : EPOLLHUP | EPOLLRDHUP;
Florin Corasfa3884f2021-06-22 20:04:46 -07003464 evt_data = s->vep.ev.data.u64;
3465 }
3466 if (!add_event && s->session_state > VCL_STATE_READY)
3467 {
3468 add_event = 1;
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003469 evt_flags |= EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003470 evt_data = s->vep.ev.data.u64;
3471 }
3472 if (add_event)
3473 {
Florin Corasdb3fbfc2023-05-22 09:19:57 -07003474 events[*n_evts].events = evt_flags;
Florin Corasfe286f72021-06-04 10:07:55 -07003475 events[*n_evts].data.u64 = evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003476 if (EPOLLONESHOT & s->vep.ev.events)
Florin Coras30ecfa82023-06-14 11:15:36 -07003477 s->vep.ev.events = EPOLLHUP | EPOLLERR;
3478 if (evt_flags & EPOLLHUP)
Florin Corasfa3884f2021-06-22 20:04:46 -07003479 s->vep.ev.events = 0;
Florin Coras5cca6692023-06-20 08:47:37 -07003480 *n_evts += 1;
3481 add_event = 0;
3482 evt_flags = 0;
Florin Corasfe286f72021-06-04 10:07:55 -07003483 if (*n_evts == maxevents)
3484 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003485 wrk->ep_lt_current = next;
Florin Corasfe286f72021-06-04 10:07:55 -07003486 break;
3487 }
3488 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003489 else
3490 {
Florin Coras7ff72742023-05-16 13:05:28 -07003491 vec_add1 (to_remove, s->session_index);
Florin Corasfa3884f2021-06-22 20:04:46 -07003492 }
Florin Corasfe286f72021-06-04 10:07:55 -07003493 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003494 while (next != wrk->ep_lt_current);
Florin Coras7ff72742023-05-16 13:05:28 -07003495
3496 vec_foreach (si, to_remove)
3497 {
3498 s = vcl_session_get (wrk, *si);
3499 vcl_epoll_lt_del (wrk, s);
3500 }
3501 vec_free (to_remove);
Florin Corasfe286f72021-06-04 10:07:55 -07003502}
3503
Dave Wallacef7f809c2017-10-03 01:48:42 -04003504int
Florin Coras134a9962018-08-28 11:32:04 -07003505vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003506 int maxevents, double wait_for_time)
3507{
Florin Coras134a9962018-08-28 11:32:04 -07003508 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003509 vcl_session_t *vep_session;
Florin Corasfa3884f2021-06-22 20:04:46 -07003510 u32 n_evts = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003511 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003512
3513 if (PREDICT_FALSE (maxevents <= 0))
3514 {
Florin Coras5e062572019-03-14 19:07:51 -07003515 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003516 return VPPCOM_EINVAL;
3517 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003518
Florin Coras134a9962018-08-28 11:32:04 -07003519 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003520 if (!vep_session)
3521 return VPPCOM_EBADFD;
3522
Florin Coras6c3b2182020-10-19 18:36:48 -07003523 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003524 {
Florin Coras5e062572019-03-14 19:07:51 -07003525 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003526 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003527 }
Florin Coras54693d22018-07-17 10:46:29 -07003528
Florin Coras86f04502018-09-12 16:08:01 -07003529 if (vec_len (wrk->unhandled_evts_vector))
3530 {
3531 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3532 {
3533 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3534 events, &n_evts);
3535 if (n_evts == maxevents)
3536 {
Florin Corase003a1b2019-06-05 10:47:16 -07003537 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3538 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003539 }
3540 }
Florin Corase003a1b2019-06-05 10:47:16 -07003541 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003542 }
liuyacancba87102021-09-10 15:14:05 +08003543
3544 if (PREDICT_FALSE (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX))
3545 vcl_epoll_wait_handle_lt (wrk, events, maxevents, &n_evts);
3546
wanghanlin8919fec2021-03-18 20:00:41 +08003547 /* Request to only drain unhandled */
3548 if ((int) wait_for_time == -2)
3549 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003550
Florin Coras86f04502018-09-12 16:08:01 -07003551
Florin Corasfe286f72021-06-04 10:07:55 -07003552 if (vcm->cfg.use_mq_eventfd)
3553 n_evts = vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3554 wait_for_time);
3555 else
3556 n_evts = vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3557 wait_for_time);
3558
Florin Corasfe286f72021-06-04 10:07:55 -07003559 return n_evts;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003560}
3561
Dave Wallace35830af2017-10-09 01:43:42 -04003562int
Florin Coras134a9962018-08-28 11:32:04 -07003563vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003564 void *buffer, uint32_t * buflen)
3565{
Florin Coras134a9962018-08-28 11:32:04 -07003566 vcl_worker_t *wrk = vcl_worker_get_current ();
liuyacan55c952e2021-06-13 14:54:55 +08003567 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07003568 vppcom_endpt_t *ep = buffer;
Florin Coras04ae8272021-04-12 19:55:37 -07003569 transport_endpt_attr_t tea;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003570 vcl_session_t *session;
3571 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003572
Florin Coras134a9962018-08-28 11:32:04 -07003573 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003574 if (!session)
3575 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003576
Dave Wallace35830af2017-10-09 01:43:42 -04003577 switch (op)
3578 {
3579 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003580 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003581 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3582 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003583 break;
3584
Dave Wallace227867f2017-11-13 21:21:53 -05003585 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003586 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003587 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3588 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003589 break;
3590
3591 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003592 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003593 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003594 *flags =
3595 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003596 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003597 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003598 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003599 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3600 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003601 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003602 }
3603 else
3604 rv = VPPCOM_EINVAL;
3605 break;
3606
3607 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003608 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003609 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003610 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003611 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003612 else
Florin Corasac422d62020-10-19 20:51:36 -07003613 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003614
Florin Coras5e062572019-03-14 19:07:51 -07003615 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3616 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003617 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003618 }
3619 else
3620 rv = VPPCOM_EINVAL;
3621 break;
3622
3623 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003624 if (PREDICT_TRUE (buffer && buflen &&
3625 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003626 {
Florin Coras7e12d942018-06-27 14:32:43 -07003627 ep->is_ip4 = session->transport.is_ip4;
3628 ep->port = session->transport.rmt_port;
3629 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003630 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3631 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003632 else
Dave Barach178cf492018-11-13 16:34:13 -05003633 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3634 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003635 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003636 VDBG (1,
3637 "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3638 "addr = %U, port %u",
3639 session_handle, ep->is_ip4, vcl_format_ip46_address,
3640 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003641 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3642 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003643 }
3644 else
3645 rv = VPPCOM_EINVAL;
3646 break;
3647
3648 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003649 if (PREDICT_TRUE (buffer && buflen &&
3650 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003651 {
Florin Coras7e12d942018-06-27 14:32:43 -07003652 ep->is_ip4 = session->transport.is_ip4;
3653 ep->port = session->transport.lcl_port;
3654 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003655 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3656 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003657 else
Dave Barach178cf492018-11-13 16:34:13 -05003658 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3659 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003660 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003661 VDBG (1,
3662 "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3663 " port %d",
3664 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003665 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003666 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3667 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003668 }
3669 else
3670 rv = VPPCOM_EINVAL;
3671 break;
Stevenb5a11602017-10-11 09:59:30 -07003672
qinyangaf9b7152023-06-27 01:11:53 -07003673 case VPPCOM_ATTR_GET_ORIGINAL_DST:
3674 if (!session->transport.is_ip4)
3675 {
3676 /* now original dst only support ipv4*/
3677 rv = VPPCOM_EAFNOSUPPORT;
3678 break;
3679 }
3680 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*ep)) &&
3681 ep->ip))
3682 {
3683 ep->is_ip4 = session->transport.is_ip4;
3684 ep->port = session->original_dst_port;
3685 clib_memcpy_fast (ep->ip, &session->original_dst_ip4,
3686 sizeof (ip4_address_t));
3687 *buflen = sizeof (*ep);
3688 VDBG (1,
3689 "VPPCOM_ATTR_GET_ORIGINAL_DST: sh %u, is_ip4 = %u, addr = %U"
3690 " port %d",
3691 session_handle, ep->is_ip4, vcl_format_ip4_address,
3692 (ip4_address_t *) (&session->original_dst_ip4),
3693 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3694 clib_net_to_host_u16 (ep->port));
3695 }
3696 else
3697 rv = VPPCOM_EINVAL;
3698 break;
3699
Florin Corasef7cbf62019-10-17 09:56:27 -07003700 case VPPCOM_ATTR_SET_LCL_ADDR:
3701 if (PREDICT_TRUE (buffer && buflen &&
3702 (*buflen >= sizeof (*ep)) && ep->ip))
3703 {
3704 session->transport.is_ip4 = ep->is_ip4;
3705 session->transport.lcl_port = ep->port;
3706 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3707 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003708 VDBG (1,
3709 "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3710 " port %d",
3711 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Corasef7cbf62019-10-17 09:56:27 -07003712 &session->transport.lcl_ip,
3713 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3714 clib_net_to_host_u16 (ep->port));
3715 }
3716 else
3717 rv = VPPCOM_EINVAL;
3718 break;
3719
Dave Wallace048b1d62018-01-03 22:24:41 -05003720 case VPPCOM_ATTR_GET_LIBC_EPFD:
3721 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003722 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003723 break;
3724
3725 case VPPCOM_ATTR_SET_LIBC_EPFD:
3726 if (PREDICT_TRUE (buffer && buflen &&
3727 (*buflen == sizeof (session->libc_epfd))))
3728 {
3729 session->libc_epfd = *(int *) buffer;
3730 *buflen = sizeof (session->libc_epfd);
3731
Florin Coras5e062572019-03-14 19:07:51 -07003732 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3733 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003734 }
3735 else
3736 rv = VPPCOM_EINVAL;
3737 break;
3738
3739 case VPPCOM_ATTR_GET_PROTOCOL:
3740 if (buffer && buflen && (*buflen >= sizeof (int)))
3741 {
Florin Coras7e12d942018-06-27 14:32:43 -07003742 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003743 *buflen = sizeof (int);
3744
Florin Coras5e062572019-03-14 19:07:51 -07003745 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3746 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003747 }
3748 else
3749 rv = VPPCOM_EINVAL;
3750 break;
3751
3752 case VPPCOM_ATTR_GET_LISTEN:
3753 if (buffer && buflen && (*buflen >= sizeof (int)))
3754 {
Florin Corasac422d62020-10-19 20:51:36 -07003755 *(int *) buffer = vcl_session_has_attr (session,
3756 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003757 *buflen = sizeof (int);
3758
Florin Coras5e062572019-03-14 19:07:51 -07003759 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3760 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003761 }
3762 else
3763 rv = VPPCOM_EINVAL;
3764 break;
3765
3766 case VPPCOM_ATTR_GET_ERROR:
3767 if (buffer && buflen && (*buflen >= sizeof (int)))
3768 {
3769 *(int *) buffer = 0;
3770 *buflen = sizeof (int);
3771
Florin Coras5e062572019-03-14 19:07:51 -07003772 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3773 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003774 }
3775 else
3776 rv = VPPCOM_EINVAL;
3777 break;
3778
3779 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3780 if (buffer && buflen && (*buflen >= sizeof (u32)))
3781 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003782
3783 /* VPP-TBD */
3784 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003785 session->tx_fifo ?
3786 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003787 vcm->cfg.tx_fifo_size);
3788 *buflen = sizeof (u32);
3789
Florin Coras5e062572019-03-14 19:07:51 -07003790 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3791 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3792 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003793 }
3794 else
3795 rv = VPPCOM_EINVAL;
3796 break;
3797
Filip Tehlar2f09bfc2021-11-15 10:26:56 +00003798 case VPPCOM_ATTR_SET_DSCP:
3799 if (buffer && buflen && (*buflen >= sizeof (u8)))
3800 {
3801 session->dscp = *(u8 *) buffer;
3802
3803 VDBG (2, "VPPCOM_ATTR_SET_DSCP: %u (0x%x), buflen %d,",
3804 *(u8 *) buffer, *(u8 *) buffer, *buflen);
3805 }
3806 else
3807 rv = VPPCOM_EINVAL;
3808 break;
3809
Dave Wallace048b1d62018-01-03 22:24:41 -05003810 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3811 if (buffer && buflen && (*buflen == sizeof (u32)))
3812 {
3813 /* VPP-TBD */
3814 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003815 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3816 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3817 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003818 }
3819 else
3820 rv = VPPCOM_EINVAL;
3821 break;
3822
3823 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3824 if (buffer && buflen && (*buflen >= sizeof (u32)))
3825 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003826
3827 /* VPP-TBD */
3828 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003829 session->rx_fifo ?
3830 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003831 vcm->cfg.rx_fifo_size);
3832 *buflen = sizeof (u32);
3833
Florin Coras5e062572019-03-14 19:07:51 -07003834 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3835 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003836 }
3837 else
3838 rv = VPPCOM_EINVAL;
3839 break;
3840
3841 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3842 if (buffer && buflen && (*buflen == sizeof (u32)))
3843 {
3844 /* VPP-TBD */
3845 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003846 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3847 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3848 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003849 }
3850 else
3851 rv = VPPCOM_EINVAL;
3852 break;
3853
3854 case VPPCOM_ATTR_GET_REUSEADDR:
3855 if (buffer && buflen && (*buflen >= sizeof (int)))
3856 {
3857 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003858 *(int *) buffer = vcl_session_has_attr (session,
3859 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003860 *buflen = sizeof (int);
3861
Florin Coras5e062572019-03-14 19:07:51 -07003862 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3863 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003864 }
3865 else
3866 rv = VPPCOM_EINVAL;
3867 break;
3868
Stevenb5a11602017-10-11 09:59:30 -07003869 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003870 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003871 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003872 {
3873 /* VPP-TBD */
3874 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003875 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003876 else
Florin Corasac422d62020-10-19 20:51:36 -07003877 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003878
Florin Coras5e062572019-03-14 19:07:51 -07003879 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003880 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003881 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003882 }
3883 else
3884 rv = VPPCOM_EINVAL;
3885 break;
3886
3887 case VPPCOM_ATTR_GET_REUSEPORT:
3888 if (buffer && buflen && (*buflen >= sizeof (int)))
3889 {
3890 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003891 *(int *) buffer = vcl_session_has_attr (session,
3892 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003893 *buflen = sizeof (int);
3894
Florin Coras5e062572019-03-14 19:07:51 -07003895 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3896 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003897 }
3898 else
3899 rv = VPPCOM_EINVAL;
3900 break;
3901
3902 case VPPCOM_ATTR_SET_REUSEPORT:
3903 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003904 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003905 {
3906 /* VPP-TBD */
3907 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003908 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003909 else
Florin Corasac422d62020-10-19 20:51:36 -07003910 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003911
Florin Coras5e062572019-03-14 19:07:51 -07003912 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003913 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003914 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003915 }
3916 else
3917 rv = VPPCOM_EINVAL;
3918 break;
3919
3920 case VPPCOM_ATTR_GET_BROADCAST:
3921 if (buffer && buflen && (*buflen >= sizeof (int)))
3922 {
3923 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003924 *(int *) buffer = vcl_session_has_attr (session,
3925 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003926 *buflen = sizeof (int);
3927
Florin Coras5e062572019-03-14 19:07:51 -07003928 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3929 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003930 }
3931 else
3932 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003933 break;
3934
3935 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003936 if (buffer && buflen && (*buflen == sizeof (int)))
3937 {
3938 /* VPP-TBD */
3939 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003940 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003941 else
Florin Corasac422d62020-10-19 20:51:36 -07003942 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003943
Florin Coras5e062572019-03-14 19:07:51 -07003944 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003945 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003946 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003947 }
3948 else
3949 rv = VPPCOM_EINVAL;
3950 break;
3951
3952 case VPPCOM_ATTR_GET_V6ONLY:
3953 if (buffer && buflen && (*buflen >= sizeof (int)))
3954 {
3955 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003956 *(int *) buffer = vcl_session_has_attr (session,
3957 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003958 *buflen = sizeof (int);
3959
Florin Coras5e062572019-03-14 19:07:51 -07003960 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3961 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003962 }
3963 else
3964 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003965 break;
3966
3967 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003968 if (buffer && buflen && (*buflen == sizeof (int)))
3969 {
3970 /* VPP-TBD */
3971 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003972 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003973 else
Florin Corasac422d62020-10-19 20:51:36 -07003974 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003975
Florin Coras5e062572019-03-14 19:07:51 -07003976 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003977 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003978 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003979 }
3980 else
3981 rv = VPPCOM_EINVAL;
3982 break;
3983
3984 case VPPCOM_ATTR_GET_KEEPALIVE:
3985 if (buffer && buflen && (*buflen >= sizeof (int)))
3986 {
3987 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003988 *(int *) buffer = vcl_session_has_attr (session,
3989 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003990 *buflen = sizeof (int);
3991
Florin Coras5e062572019-03-14 19:07:51 -07003992 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3993 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003994 }
3995 else
3996 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003997 break;
Stevenbccd3392017-10-12 20:42:21 -07003998
3999 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05004000 if (buffer && buflen && (*buflen == sizeof (int)))
4001 {
4002 /* VPP-TBD */
4003 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07004004 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004005 else
Florin Corasac422d62020-10-19 20:51:36 -07004006 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004007
Florin Coras5e062572019-03-14 19:07:51 -07004008 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004009 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07004010 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004011 }
4012 else
4013 rv = VPPCOM_EINVAL;
4014 break;
4015
4016 case VPPCOM_ATTR_GET_TCP_NODELAY:
4017 if (buffer && buflen && (*buflen >= sizeof (int)))
4018 {
4019 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07004020 *(int *) buffer = vcl_session_has_attr (session,
4021 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05004022 *buflen = sizeof (int);
4023
Florin Coras5e062572019-03-14 19:07:51 -07004024 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
4025 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004026 }
4027 else
4028 rv = VPPCOM_EINVAL;
4029 break;
4030
4031 case VPPCOM_ATTR_SET_TCP_NODELAY:
4032 if (buffer && buflen && (*buflen == sizeof (int)))
4033 {
4034 /* VPP-TBD */
4035 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07004036 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05004037 else
Florin Corasac422d62020-10-19 20:51:36 -07004038 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05004039
Florin Coras5e062572019-03-14 19:07:51 -07004040 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004041 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07004042 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004043 }
4044 else
4045 rv = VPPCOM_EINVAL;
4046 break;
4047
4048 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
4049 if (buffer && buflen && (*buflen >= sizeof (int)))
4050 {
4051 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07004052 *(int *) buffer = vcl_session_has_attr (session,
4053 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004054 *buflen = sizeof (int);
4055
Florin Coras5e062572019-03-14 19:07:51 -07004056 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
4057 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004058 }
4059 else
4060 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07004061 break;
4062
4063 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05004064 if (buffer && buflen && (*buflen == sizeof (int)))
4065 {
4066 /* VPP-TBD */
4067 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07004068 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004069 else
Florin Corasac422d62020-10-19 20:51:36 -07004070 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05004071
Florin Coras5e062572019-03-14 19:07:51 -07004072 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004073 vcl_session_has_attr (session,
4074 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004075 }
4076 else
4077 rv = VPPCOM_EINVAL;
4078 break;
4079
4080 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
4081 if (buffer && buflen && (*buflen >= sizeof (int)))
4082 {
4083 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07004084 *(int *) buffer = vcl_session_has_attr (session,
4085 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05004086 *buflen = sizeof (int);
4087
Florin Coras5e062572019-03-14 19:07:51 -07004088 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
4089 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004090 }
4091 else
4092 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07004093 break;
4094
4095 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05004096 if (buffer && buflen && (*buflen == sizeof (int)))
4097 {
4098 /* VPP-TBD */
4099 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07004100 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05004101 else
Florin Corasac422d62020-10-19 20:51:36 -07004102 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05004103
Florin Coras5e062572019-03-14 19:07:51 -07004104 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07004105 vcl_session_has_attr (session,
4106 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004107 }
4108 else
4109 rv = VPPCOM_EINVAL;
4110 break;
4111
4112 case VPPCOM_ATTR_GET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004113 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004114 {
Florin Coras04ae8272021-04-12 19:55:37 -07004115 rv = VPPCOM_EINVAL;
4116 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004117 }
Florin Coras04ae8272021-04-12 19:55:37 -07004118
4119 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4120 tea.mss = *(u32 *) buffer;
4121 if (vcl_session_transport_attr (wrk, session, 1 /* is_get */, &tea))
4122 rv = VPPCOM_ENOPROTOOPT;
4123
4124 if (!rv)
4125 {
4126 *(u32 *) buffer = tea.mss;
4127 *buflen = sizeof (int);
4128 }
4129
4130 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d", *(int *) buffer,
4131 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004132 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004133 case VPPCOM_ATTR_SET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004134 if (!(buffer && buflen && (*buflen == sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004135 {
Florin Coras04ae8272021-04-12 19:55:37 -07004136 rv = VPPCOM_EINVAL;
4137 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004138 }
Florin Coras04ae8272021-04-12 19:55:37 -07004139
4140 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4141 tea.mss = *(u32 *) buffer;
4142 if (vcl_session_transport_attr (wrk, session, 0 /* is_get */, &tea))
4143 rv = VPPCOM_ENOPROTOOPT;
4144
4145 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d", tea.mss,
4146 *buflen);
Stevenbccd3392017-10-12 20:42:21 -07004147 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04004148
Florin Coras1e966172020-05-16 18:18:14 +00004149 case VPPCOM_ATTR_SET_CONNECTED:
4150 session->flags |= VCL_SESSION_F_CONNECTED;
4151 break;
4152
Florin Corasa5a9efd2021-01-05 17:03:29 -08004153 case VPPCOM_ATTR_SET_CKPAIR:
4154 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
4155 !vcl_session_has_crypto (session))
4156 {
4157 rv = VPPCOM_EINVAL;
4158 break;
4159 }
Florin Corasa54b62d2021-04-21 09:05:56 -07004160 if (!session->ext_config)
4161 {
Florin Coras87f63892021-05-01 16:01:40 -07004162 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_CRYPTO,
4163 sizeof (transport_endpt_ext_cfg_t));
Florin Corasa54b62d2021-04-21 09:05:56 -07004164 }
4165 else if (session->ext_config->type != TRANSPORT_ENDPT_EXT_CFG_CRYPTO)
4166 {
4167 rv = VPPCOM_EINVAL;
4168 break;
4169 }
4170
4171 session->ext_config->crypto.ckpair_index = *(uint32_t *) buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08004172 break;
4173
Florin Coras6a6555a2021-01-28 11:39:27 -08004174 case VPPCOM_ATTR_SET_VRF:
4175 if (!(buffer && buflen && (*buflen == sizeof (u32))))
4176 {
4177 rv = VPPCOM_EINVAL;
4178 break;
4179 }
4180 session->vrf = *(u32 *) buffer;
4181 break;
4182
4183 case VPPCOM_ATTR_GET_VRF:
4184 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
4185 {
4186 rv = VPPCOM_EINVAL;
4187 break;
4188 }
4189 *(u32 *) buffer = session->vrf;
4190 *buflen = sizeof (u32);
4191 break;
4192
wanghanlin0674f852021-02-22 10:38:36 +08004193 case VPPCOM_ATTR_GET_DOMAIN:
Florin Corasd77325c2021-02-23 12:03:03 -08004194 if (!(buffer && buflen && (*buflen >= sizeof (int))))
wanghanlin0674f852021-02-22 10:38:36 +08004195 {
Florin Corasd77325c2021-02-23 12:03:03 -08004196 rv = VPPCOM_EINVAL;
4197 break;
wanghanlin0674f852021-02-22 10:38:36 +08004198 }
Florin Corasd77325c2021-02-23 12:03:03 -08004199
4200 if (session->transport.is_ip4)
4201 *(int *) buffer = AF_INET;
wanghanlin0674f852021-02-22 10:38:36 +08004202 else
Florin Corasd77325c2021-02-23 12:03:03 -08004203 *(int *) buffer = AF_INET6;
4204 *buflen = sizeof (int);
4205
wanghanlin0674f852021-02-22 10:38:36 +08004206 VDBG (2, "VPPCOM_ATTR_GET_DOMAIN: %d, buflen %u", *(int *) buffer,
4207 *buflen);
4208 break;
4209
Florin Coras87f63892021-05-01 16:01:40 -07004210 case VPPCOM_ATTR_SET_ENDPT_EXT_CFG:
4211 if (!(buffer && buflen && (*buflen > 0)))
4212 {
4213 rv = VPPCOM_EINVAL;
4214 break;
4215 }
4216 if (session->ext_config)
4217 {
4218 rv = VPPCOM_EINVAL;
4219 break;
4220 }
4221 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_NONE,
4222 *buflen + sizeof (u32));
4223 clib_memcpy (session->ext_config->data, buffer, *buflen);
4224 session->ext_config->len = *buflen;
4225 break;
Florin Coraseff5f7a2023-02-07 17:36:17 -08004226 case VPPCOM_ATTR_SET_IP_PKTINFO:
4227 if (buffer && buflen && (*buflen == sizeof (int)) &&
4228 !vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO))
4229 {
4230 if (*(int *) buffer)
4231 vcl_session_set_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4232 else
4233 vcl_session_clear_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4234
4235 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d",
4236 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO),
4237 *buflen);
4238 }
4239 else
4240 rv = VPPCOM_EINVAL;
4241 break;
4242
4243 case VPPCOM_ATTR_GET_IP_PKTINFO:
4244 if (buffer && buflen && (*buflen >= sizeof (int)))
4245 {
4246 *(int *) buffer =
4247 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4248 *buflen = sizeof (int);
4249
4250 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d", *(int *) buffer,
4251 *buflen);
4252 }
4253 else
4254 rv = VPPCOM_EINVAL;
4255 break;
Florin Coras87f63892021-05-01 16:01:40 -07004256
Dave Wallacee22aa742017-10-20 12:30:38 -04004257 default:
4258 rv = VPPCOM_EINVAL;
4259 break;
Dave Wallace35830af2017-10-09 01:43:42 -04004260 }
4261
Dave Wallace35830af2017-10-09 01:43:42 -04004262 return rv;
4263}
4264
Stevenac1f96d2017-10-24 16:03:58 -07004265int
Florin Coras134a9962018-08-28 11:32:04 -07004266vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004267 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4268{
Florin Coras134a9962018-08-28 11:32:04 -07004269 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00004270 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07004271 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07004272
4273 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07004274 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004275 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07004276 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004277 else
4278 {
Florin Corasa7a1a222018-12-30 17:11:31 -08004279 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07004280 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07004281 }
4282
Florin Coras0a1e1832020-03-29 18:54:04 +00004283 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07004284 {
Florin Coras5da10c42020-04-01 04:31:21 +00004285 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07004286 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05004287 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
4288 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07004289 else
Dave Barach178cf492018-11-13 16:34:13 -05004290 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
4291 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00004292 ep->is_ip4 = session->transport.is_ip4;
4293 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07004294 }
Florin Coras460dce62018-07-27 05:45:06 -07004295
Stevenac1f96d2017-10-24 16:03:58 -07004296 return rv;
4297}
4298
Florin Coraseff5f7a2023-02-07 17:36:17 -08004299static void
4300vcl_handle_ep_app_tlvs (vcl_session_t *s, vppcom_endpt_t *ep)
4301{
4302 vppcom_endpt_tlv_t *tlv = ep->app_tlvs;
4303
4304 do
4305 {
4306 switch (tlv->data_type)
4307 {
4308 case VCL_UDP_SEGMENT:
4309 s->gso_size = *(u16 *) tlv->data;
4310 break;
4311 case VCL_IP_PKTINFO:
4312 clib_memcpy_fast (&s->transport.lcl_ip, (ip4_address_t *) tlv->data,
4313 sizeof (ip4_address_t));
4314 break;
4315 default:
4316 VDBG (0, "Ignorning unsupported app tlv %u", tlv->data_type);
4317 break;
4318 }
4319 tlv = VCL_EP_NEXT_APP_TLV (ep, tlv);
4320 }
4321 while (tlv);
4322}
4323
Stevenac1f96d2017-10-24 16:03:58 -07004324int
Florin Coras134a9962018-08-28 11:32:04 -07004325vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004326 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4327{
Florin Coras7a2abce2020-04-05 19:25:44 +00004328 vcl_worker_t *wrk = vcl_worker_get_current ();
4329 vcl_session_t *s;
4330
4331 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras0b0d28e2021-06-04 17:31:53 -07004332 if (PREDICT_FALSE (!s))
Florin Coras7a2abce2020-04-05 19:25:44 +00004333 return VPPCOM_EBADFD;
4334
Dave Wallace617dffa2017-10-26 14:47:06 -04004335 if (ep)
4336 {
Florin Coras5824cc52020-10-20 18:44:41 -07004337 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00004338 return VPPCOM_EINVAL;
4339
liuyacanbc0c7542021-08-02 20:15:05 +08004340 s->transport.is_ip4 = ep->is_ip4;
4341 s->transport.rmt_port = ep->port;
4342 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
4343
Florin Coraseff5f7a2023-02-07 17:36:17 -08004344 if (ep->app_tlvs)
4345 vcl_handle_ep_app_tlvs (s, ep);
Dou Chao243a0432022-11-29 19:41:34 +08004346
Florin Coras5da10c42020-04-01 04:31:21 +00004347 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07004348 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00004349 {
Florin Coras5824cc52020-10-20 18:44:41 -07004350 u32 session_index = s->session_index;
4351 f64 timeout = vcm->cfg.session_timeout;
4352 int rv;
4353
Florin Coras5da10c42020-04-01 04:31:21 +00004354 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07004355 rv = vppcom_wait_for_session_state_change (session_index,
4356 VCL_STATE_READY,
4357 timeout);
4358 if (rv < 0)
4359 return rv;
4360 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00004361 }
Dave Wallace617dffa2017-10-26 14:47:06 -04004362 }
4363
4364 if (flags)
4365 {
4366 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07004367 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04004368 }
4369
Florin Coraseff5f7a2023-02-07 17:36:17 -08004370 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
Florin Coras7a2abce2020-04-05 19:25:44 +00004371 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07004372}
4373
Dave Wallace048b1d62018-01-03 22:24:41 -05004374int
4375vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
4376{
Florin Coras134a9962018-08-28 11:32:04 -07004377 vcl_worker_t *wrk = vcl_worker_get_current ();
4378 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05004379 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08004380 svm_msg_q_msg_t msg;
4381 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05004382 int rv, num_ev = 0;
4383
Florin Coras5e062572019-03-14 19:07:51 -07004384 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05004385
4386 if (!vp)
4387 return VPPCOM_EFAULT;
4388
4389 do
4390 {
Florin Coras7e12d942018-06-27 14:32:43 -07004391 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05004392
Florin Coras6917b942018-11-13 22:44:54 -08004393 /* Dequeue all events and drop all unhandled io events */
4394 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
4395 {
4396 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
4397 vcl_handle_mq_event (wrk, e);
4398 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
4399 }
4400 vec_reset_length (wrk->unhandled_evts_vector);
4401
Dave Wallace048b1d62018-01-03 22:24:41 -05004402 for (i = 0; i < n_sids; i++)
4403 {
Florin Coras7baeb712019-01-04 17:05:43 -08004404 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07004405 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08004406 {
4407 vp[i].revents = POLLHUP;
4408 num_ev++;
4409 continue;
4410 }
Dave Wallace048b1d62018-01-03 22:24:41 -05004411
Florin Coras6917b942018-11-13 22:44:54 -08004412 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004413
4414 if (POLLIN & vp[i].events)
4415 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004416 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004417 if (rv > 0)
4418 {
Florin Coras6917b942018-11-13 22:44:54 -08004419 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05004420 num_ev++;
4421 }
4422 else if (rv < 0)
4423 {
4424 switch (rv)
4425 {
4426 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004427 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004428 break;
4429
4430 default:
Florin Coras6917b942018-11-13 22:44:54 -08004431 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004432 break;
4433 }
4434 num_ev++;
4435 }
4436 }
4437
4438 if (POLLOUT & vp[i].events)
4439 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004440 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004441 if (rv > 0)
4442 {
Florin Coras6917b942018-11-13 22:44:54 -08004443 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05004444 num_ev++;
4445 }
4446 else if (rv < 0)
4447 {
4448 switch (rv)
4449 {
4450 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004451 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004452 break;
4453
4454 default:
Florin Coras6917b942018-11-13 22:44:54 -08004455 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004456 break;
4457 }
4458 num_ev++;
4459 }
4460 }
4461
Dave Wallace7e607a72018-06-18 18:41:32 -04004462 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05004463 {
Florin Coras6917b942018-11-13 22:44:54 -08004464 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05004465 num_ev++;
4466 }
4467 }
4468 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07004469 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004470 }
4471 while ((num_ev == 0) && keep_trying);
4472
Dave Wallace048b1d62018-01-03 22:24:41 -05004473 return num_ev;
4474}
4475
Florin Coras99368312018-08-02 10:45:44 -07004476int
4477vppcom_mq_epoll_fd (void)
4478{
Florin Coras134a9962018-08-28 11:32:04 -07004479 vcl_worker_t *wrk = vcl_worker_get_current ();
4480 return wrk->mqs_epfd;
4481}
4482
4483int
Florin Coras30e79c22019-01-02 19:31:22 -08004484vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07004485{
4486 return session_handle & 0xFFFFFF;
4487}
4488
4489int
Florin Coras30e79c22019-01-02 19:31:22 -08004490vppcom_session_worker (vcl_session_handle_t session_handle)
4491{
4492 return session_handle >> 24;
4493}
4494
4495int
Florin Coras134a9962018-08-28 11:32:04 -07004496vppcom_worker_register (void)
4497{
Florin Coras47c40e22018-11-26 17:01:36 -08004498 if (!vcl_worker_alloc_and_init ())
4499 return VPPCOM_EEXIST;
4500
Florin Coras47c40e22018-11-26 17:01:36 -08004501 if (vcl_worker_register_with_vpp ())
4502 return VPPCOM_EEXIST;
4503
4504 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07004505}
4506
Florin Coras369db832019-07-08 12:34:45 -07004507void
4508vppcom_worker_unregister (void)
4509{
4510 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
4511 vcl_set_worker_index (~0);
4512}
4513
Pivo6017ff02020-05-04 17:57:33 +02004514void
4515vppcom_worker_index_set (int index)
4516{
4517 vcl_set_worker_index (index);
4518}
4519
Florin Corasdfe4cf42018-11-28 22:13:45 -08004520int
4521vppcom_worker_index (void)
4522{
4523 return vcl_get_worker_index ();
4524}
4525
Florin Corase0982e52019-01-25 13:19:56 -08004526int
4527vppcom_worker_mqs_epfd (void)
4528{
4529 vcl_worker_t *wrk = vcl_worker_get_current ();
4530 if (!vcm->cfg.use_mq_eventfd)
4531 return -1;
4532 return wrk->mqs_epfd;
4533}
4534
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02004535int
4536vppcom_session_is_connectable_listener (uint32_t session_handle)
4537{
4538 vcl_session_t *session;
4539 vcl_worker_t *wrk = vcl_worker_get_current ();
4540 session = vcl_session_get_w_handle (wrk, session_handle);
4541 if (!session)
4542 return VPPCOM_EBADFD;
4543 return vcl_session_is_connectable_listener (wrk, session);
4544}
4545
4546int
4547vppcom_session_listener (uint32_t session_handle)
4548{
4549 vcl_worker_t *wrk = vcl_worker_get_current ();
4550 vcl_session_t *listen_session, *session;
4551 session = vcl_session_get_w_handle (wrk, session_handle);
4552 if (!session)
4553 return VPPCOM_EBADFD;
4554 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
4555 return VPPCOM_EBADFD;
4556 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
4557 if (!listen_session)
4558 return VPPCOM_EBADFD;
4559 return vcl_session_handle (listen_session);
4560}
4561
4562int
4563vppcom_session_n_accepted (uint32_t session_handle)
4564{
4565 vcl_worker_t *wrk = vcl_worker_get_current ();
4566 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
4567 if (!session)
4568 return VPPCOM_EBADFD;
4569 return session->n_accepted_sessions;
4570}
4571
Florin Coras66ec4672020-06-15 07:59:40 -07004572const char *
4573vppcom_proto_str (vppcom_proto_t proto)
4574{
4575 char const *proto_str;
4576
4577 switch (proto)
4578 {
4579 case VPPCOM_PROTO_TCP:
4580 proto_str = "TCP";
4581 break;
4582 case VPPCOM_PROTO_UDP:
4583 proto_str = "UDP";
4584 break;
4585 case VPPCOM_PROTO_TLS:
4586 proto_str = "TLS";
4587 break;
4588 case VPPCOM_PROTO_QUIC:
4589 proto_str = "QUIC";
4590 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08004591 case VPPCOM_PROTO_DTLS:
4592 proto_str = "DTLS";
4593 break;
Florin Coras6621abf2021-01-06 17:35:17 -08004594 case VPPCOM_PROTO_SRTP:
4595 proto_str = "SRTP";
4596 break;
Florin Coras66ec4672020-06-15 07:59:40 -07004597 default:
4598 proto_str = "UNKNOWN";
4599 break;
4600 }
4601 return proto_str;
4602}
4603
4604const char *
4605vppcom_retval_str (int retval)
4606{
4607 char const *st;
4608
4609 switch (retval)
4610 {
4611 case VPPCOM_OK:
4612 st = "VPPCOM_OK";
4613 break;
4614
4615 case VPPCOM_EAGAIN:
4616 st = "VPPCOM_EAGAIN";
4617 break;
4618
4619 case VPPCOM_EFAULT:
4620 st = "VPPCOM_EFAULT";
4621 break;
4622
4623 case VPPCOM_ENOMEM:
4624 st = "VPPCOM_ENOMEM";
4625 break;
4626
4627 case VPPCOM_EINVAL:
4628 st = "VPPCOM_EINVAL";
4629 break;
4630
4631 case VPPCOM_EBADFD:
4632 st = "VPPCOM_EBADFD";
4633 break;
4634
4635 case VPPCOM_EAFNOSUPPORT:
4636 st = "VPPCOM_EAFNOSUPPORT";
4637 break;
4638
4639 case VPPCOM_ECONNABORTED:
4640 st = "VPPCOM_ECONNABORTED";
4641 break;
4642
4643 case VPPCOM_ECONNRESET:
4644 st = "VPPCOM_ECONNRESET";
4645 break;
4646
4647 case VPPCOM_ENOTCONN:
4648 st = "VPPCOM_ENOTCONN";
4649 break;
4650
4651 case VPPCOM_ECONNREFUSED:
4652 st = "VPPCOM_ECONNREFUSED";
4653 break;
4654
4655 case VPPCOM_ETIMEDOUT:
4656 st = "VPPCOM_ETIMEDOUT";
4657 break;
4658
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304659 case VPPCOM_EADDRINUSE:
4660 st = "VPPCOM_EADDRINUSE";
4661 break;
4662
Florin Coras66ec4672020-06-15 07:59:40 -07004663 default:
4664 st = "UNKNOWN_STATE";
4665 break;
4666 }
4667
4668 return st;
4669}
4670
Florin Corasa5a9efd2021-01-05 17:03:29 -08004671int
4672vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4673{
4674 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004675 return vcl_sapi_add_cert_key_pair (ckpair);
4676 else
4677 return vcl_bapi_add_cert_key_pair (ckpair);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004678}
4679
4680int
4681vppcom_del_cert_key_pair (uint32_t ckpair_index)
4682{
4683 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004684 return vcl_sapi_del_cert_key_pair (ckpair_index);
4685 else
4686 return vcl_bapi_del_cert_key_pair (ckpair_index);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004687}
4688
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304689int
4690vppcom_session_get_error (uint32_t session_handle)
4691{
4692 vcl_worker_t *wrk = vcl_worker_get_current ();
4693 vcl_session_t *session = 0;
4694
4695 session = vcl_session_get_w_handle (wrk, session_handle);
4696 if (!session)
4697 return VPPCOM_EBADFD;
4698
4699 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
4700 {
4701 VWRN ("epoll session %u! will not have connect", session->session_index);
4702 return VPPCOM_EBADFD;
4703 }
4704
4705 if (session->vpp_error == SESSION_E_PORTINUSE)
4706 return VPPCOM_EADDRINUSE;
4707 else if (session->vpp_error == SESSION_E_REFUSED)
4708 return VPPCOM_ECONNREFUSED;
4709 else if (session->vpp_error != SESSION_E_NONE)
4710 return VPPCOM_EFAULT;
4711 else
4712 return VPPCOM_OK;
4713}
4714
Maros Ondrejicka6ff8e902022-10-06 18:17:05 +02004715int
4716vppcom_worker_is_detached (void)
4717{
4718 vcl_worker_t *wrk = vcl_worker_get_current ();
4719
4720 if (!vcm->cfg.use_mq_eventfd)
4721 return VPPCOM_ENOTSUP;
4722
4723 return wrk->api_client_handle == ~0;
4724}
4725
Dave Wallacee22aa742017-10-20 12:30:38 -04004726/*
4727 * fd.io coding-style-patch-verification: ON
4728 *
4729 * Local Variables:
4730 * eval: (c-set-style "gnu")
4731 * End:
4732 */