blob: b170b39a07dea4b03916fcd42e07dec03126cc7b [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;
Florin Coras09d18c22019-04-24 11:10:02 -0700354 session->transport.rmt_port = mp->rmt.port;
355 session->transport.is_ip4 = mp->rmt.is_ip4;
356 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500357 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700358
Florin Coras134a9962018-08-28 11:32:04 -0700359 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras67c90a32021-03-09 18:36:06 -0800360 session->transport.lcl_port = mp->lcl.port;
361 session->transport.lcl_ip = mp->lcl.ip;
Florin Coras460dce62018-07-27 05:45:06 -0700362 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200363 session->is_dgram = vcl_proto_is_dgram (session->session_type);
364 session->listener_index = listen_session->session_index;
365 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700366
Florin Coras54693d22018-07-17 10:46:29 -0700367 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
368
Florin Coras00cca802019-06-06 09:38:44 -0700369 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
370 session->vpp_handle, 0);
371
Florin Coras134a9962018-08-28 11:32:04 -0700372 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700373
374error:
Florin Corasb4624182020-12-11 13:58:12 -0800375 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0),
376 mp->vpp_event_queue_address, mp->mq_index, &evt_q);
Florin Coras00cca802019-06-06 09:38:44 -0700377 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
378 VNET_API_ERROR_INVALID_ARGUMENT);
379 vcl_session_free (wrk, session);
380 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700381}
382
383static u32
Florin Coras134a9962018-08-28 11:32:04 -0700384vcl_session_connected_handler (vcl_worker_t * wrk,
385 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700386{
Florin Coras99368312018-08-02 10:45:44 -0700387 vcl_session_t *session = 0;
Florin Coras52dd29f2020-11-18 19:02:17 -0800388 u32 session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700389
390 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700391 session = vcl_session_get (wrk, session_index);
Florin Corasef2c0f12021-11-10 22:44:52 -0800392 if (PREDICT_FALSE (!session))
Florin Coras070453d2018-08-24 17:04:27 -0700393 {
Florin Coras8d42c752021-11-29 23:26:19 -0800394 VERR ("vpp handle 0x%llx has no session index (%u)!", mp->handle,
395 session_index);
Florin Corasef2c0f12021-11-10 22:44:52 -0800396 /* Should not happen but if it does, force vpp session cleanup */
397 vcl_session_t tmp_session = {
398 .vpp_handle = mp->handle,
399 .vpp_evt_q = 0,
400 };
401 vcl_segment_attach_session (
402 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
403 mp->vpp_event_queue_address, mp->mq_index, 0, session);
404 if (tmp_session.vpp_evt_q)
405 vcl_send_session_disconnect (wrk, &tmp_session);
Florin Coras070453d2018-08-24 17:04:27 -0700406 return VCL_INVALID_SESSION_INDEX;
407 }
Florin Coras8d42c752021-11-29 23:26:19 -0800408
Florin Coras54693d22018-07-17 10:46:29 -0700409 if (mp->retval)
410 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800411 VDBG (0, "session %u: connect failed! %U", session_index,
Florin Coras8d42c752021-11-29 23:26:19 -0800412 format_session_error, mp->retval);
Florin Corasc127d5a2020-10-14 16:35:58 -0700413 session->session_state = VCL_STATE_DETACHED;
Florin Coras8d42c752021-11-29 23:26:19 -0800414 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +0530415 session->vpp_error = mp->retval;
Florin Coras070453d2018-08-24 17:04:27 -0700416 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700417 }
418
Florin Corasdbc9c592019-09-25 16:37:43 -0700419 session->vpp_handle = mp->handle;
Florin Corasc547e912020-12-08 17:50:45 -0800420
Florin Coras8d42c752021-11-29 23:26:19 -0800421 /* Add to lookup table. Even if something fails, session cannot be
422 * cleaned up prior to notifying vpp and going through the cleanup
423 * "procedure" see @ref vcl_session_cleanup_handler */
424 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
425
Florin Corasf6e284b2021-07-21 18:17:20 -0700426 if (vcl_segment_attach_session (
427 mp->segment_handle, mp->server_rx_fifo, mp->server_tx_fifo,
428 mp->vpp_event_queue_address, mp->mq_index, 0, session))
Florin Corasd85de682018-11-29 17:02:29 -0800429 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800430 VDBG (0, "session %u [0x%llx]: failed to attach fifos",
431 session->session_index, session->vpp_handle);
Florin Coras8d42c752021-11-29 23:26:19 -0800432 session->session_state = VCL_STATE_UPDATED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700433 vcl_send_session_disconnect (wrk, session);
434 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800435 }
436
Florin Coras653e43f2019-03-04 10:56:23 -0800437 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700438 {
Florin Corasc547e912020-12-08 17:50:45 -0800439 if (vcl_segment_attach_session (mp->ct_segment_handle, mp->ct_rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700440 mp->ct_tx_fifo, (uword) ~0, ~0, 1,
441 session))
Florin Coras653e43f2019-03-04 10:56:23 -0800442 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800443 VDBG (0, "session %u [0x%llx]: failed to attach ct fifos",
444 session->session_index, session->vpp_handle);
Florin Coras8d42c752021-11-29 23:26:19 -0800445 session->session_state = VCL_STATE_UPDATED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700446 vcl_send_session_disconnect (wrk, session);
447 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800448 }
Florin Coras99368312018-08-02 10:45:44 -0700449 }
Florin Coras54693d22018-07-17 10:46:29 -0700450
Florin Coras09d18c22019-04-24 11:10:02 -0700451 session->transport.is_ip4 = mp->lcl.is_ip4;
452 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500453 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700454 session->transport.lcl_port = mp->lcl.port;
Florin Corasa5ea8212020-08-24 21:23:51 -0700455
456 /* Application closed session before connect reply */
Florin Corasac422d62020-10-19 20:51:36 -0700457 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK)
Florin Corasc127d5a2020-10-14 16:35:58 -0700458 && session->session_state == VCL_STATE_CLOSED)
Florin Corasa5ea8212020-08-24 21:23:51 -0700459 vcl_send_session_disconnect (wrk, session);
460 else
Florin Corasdfffdd72020-10-15 10:54:47 -0700461 session->session_state = VCL_STATE_READY;
Florin Coras54693d22018-07-17 10:46:29 -0700462
Florin Coras5ffb9642021-12-03 17:24:13 -0800463 VDBG (0, "session %u [0x%llx] connected local: %U:%u remote %U:%u",
464 session->session_index, session->vpp_handle, vcl_format_ip46_address,
465 &session->transport.lcl_ip,
466 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
467 clib_net_to_host_u16 (session->transport.lcl_port),
468 vcl_format_ip46_address, &session->transport.rmt_ip,
469 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
470 clib_net_to_host_u16 (session->transport.rmt_port));
Florin Coras070453d2018-08-24 17:04:27 -0700471
Florin Coras54693d22018-07-17 10:46:29 -0700472 return session_index;
473}
474
Florin Coras3c7d4f92018-12-14 11:28:43 -0800475static int
476vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
477{
478 vcl_session_msg_t *accepted_msg;
479 int i;
480
481 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
482 {
483 accepted_msg = &session->accept_evts_fifo[i];
484 if (accepted_msg->accepted_msg.handle == handle)
485 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800486 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800487 return 1;
488 }
489 }
490 return 0;
491}
492
Florin Corasc9fbd662018-08-24 12:59:56 -0700493static u32
Florin Coras134a9962018-08-28 11:32:04 -0700494vcl_session_reset_handler (vcl_worker_t * wrk,
495 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700496{
497 vcl_session_t *session;
498 u32 sid;
499
Florin Coras134a9962018-08-28 11:32:04 -0700500 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
501 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700502 if (!session)
503 {
504 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
505 return VCL_INVALID_SESSION_INDEX;
506 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800507
508 /* Caught a reset before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700509 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800510 {
511
512 if (!vcl_flag_accepted_session (session, reset_msg->handle,
513 VCL_ACCEPTED_F_RESET))
514 VDBG (0, "session was not accepted!");
515 return VCL_INVALID_SESSION_INDEX;
516 }
517
Florin Corasc127d5a2020-10-14 16:35:58 -0700518 if (session->session_state != VCL_STATE_CLOSED)
519 session->session_state = VCL_STATE_DISCONNECT;
Yacan Liuf5e0a172022-09-20 14:19:19 +0800520
521 session->flags |= (VCL_SESSION_F_RD_SHUTDOWN | VCL_SESSION_F_WR_SHUTDOWN);
Florin Coras5ffb9642021-12-03 17:24:13 -0800522 VDBG (0, "session %u [0x%llx]: reset", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700523 return sid;
524}
525
Florin Coras60116992018-08-27 09:52:18 -0700526static u32
Florin Coras134a9962018-08-28 11:32:04 -0700527vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700528{
529 vcl_session_t *session;
530 u32 sid = mp->context;
531
Florin Coras134a9962018-08-28 11:32:04 -0700532 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700533 if (mp->retval)
534 {
Florin Coras5e062572019-03-14 19:07:51 -0700535 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700536 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700537 if (session)
538 {
Florin Corasc127d5a2020-10-14 16:35:58 -0700539 session->session_state = VCL_STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700540 session->vpp_handle = mp->handle;
541 return sid;
542 }
543 else
544 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800545 VDBG (0, "session %u [0x%llx]: Invalid session index!", sid,
546 mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700547 return VCL_INVALID_SESSION_INDEX;
548 }
549 }
550
551 session->vpp_handle = mp->handle;
552 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500553 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
554 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700555 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700556 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Corasc127d5a2020-10-14 16:35:58 -0700557 session->session_state = VCL_STATE_LISTEN;
Florin Coras32881932023-02-06 13:30:13 -0800558 session->flags &= ~VCL_SESSION_F_PENDING_LISTEN;
Florin Coras5f45e012019-01-23 09:21:30 -0800559
Florin Coras6e3c1f82020-01-15 01:30:46 +0000560 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700561 {
Florin Corasc547e912020-12-08 17:50:45 -0800562 if (vcl_segment_attach_session (mp->segment_handle, mp->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700563 mp->tx_fifo, mp->vpp_evt_q, mp->mq_index,
564 0, session))
Florin Corasc547e912020-12-08 17:50:45 -0800565 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800566 VDBG (0, "session %u [0x%llx]: failed to attach fifos",
567 session->session_index, session->vpp_handle);
Florin Corasc547e912020-12-08 17:50:45 -0800568 session->session_state = VCL_STATE_DETACHED;
569 return VCL_INVALID_SESSION_INDEX;
570 }
Florin Coras60116992018-08-27 09:52:18 -0700571 }
572
Florin Coras05ecfcc2018-12-12 18:19:39 -0800573 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700574 return sid;
575}
576
Florin Corasdfae9f92019-02-20 19:48:31 -0800577static void
578vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
579{
580 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
581 vcl_session_t *s;
582
583 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000584 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800585 {
586 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
587 return;
588 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700589 if (s->session_state != VCL_STATE_DISCONNECT)
Florin Coras0a1e1832020-03-29 18:54:04 +0000590 {
591 /* Connected udp listener */
592 if (s->session_type == VPPCOM_PROTO_UDP
Florin Corasc127d5a2020-10-14 16:35:58 -0700593 && s->session_state == VCL_STATE_CLOSED)
Florin Coras0a1e1832020-03-29 18:54:04 +0000594 return;
595
596 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
597 return;
598 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800599
600 if (mp->retval)
601 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700602 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800603
604 if (mp->context != wrk->wrk_index)
605 VDBG (0, "wrong context");
606
607 vcl_session_table_del_vpp_handle (wrk, mp->handle);
608 vcl_session_free (wrk, s);
609}
610
Florin Coras68b7e582020-01-21 18:33:23 -0800611static void
612vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
613{
614 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
615 vcl_session_t *s;
Florin Corasc547e912020-12-08 17:50:45 -0800616 u32 fs_index;
Florin Coras68b7e582020-01-21 18:33:23 -0800617
618 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
619 if (!s)
620 {
621 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
622 return;
623 }
624
Florin Coras1bb74942021-02-10 15:26:37 -0800625 /* Only validate if a value is provided */
626 if (mp->segment_handle != SESSION_INVALID_HANDLE)
Florin Corasc547e912020-12-08 17:50:45 -0800627 {
Florin Coras1bb74942021-02-10 15:26:37 -0800628 fs_index = vcl_segment_table_lookup (mp->segment_handle);
629 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
630 {
631 VDBG (0, "segment %lx for session %u is not mounted!",
632 mp->segment_handle, s->session_index);
633 s->session_state = VCL_STATE_DETACHED;
634 return;
635 }
Florin Corasc547e912020-12-08 17:50:45 -0800636 }
637
Florin Coras57660d92020-04-04 22:45:34 +0000638 s->vpp_handle = mp->new_handle;
Florin Corasb4624182020-12-11 13:58:12 -0800639
640 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0), mp->vpp_evt_q,
641 mp->vpp_thread_index, &s->vpp_evt_q);
Florin Coras68b7e582020-01-21 18:33:23 -0800642
Florin Coras68b7e582020-01-21 18:33:23 -0800643 vcl_session_table_del_vpp_handle (wrk, mp->handle);
644 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
645
646 /* Generate new tx event if we have outstanding data */
647 if (svm_fifo_has_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -0800648 app_send_io_evt_to_vpp (s->vpp_evt_q,
649 s->tx_fifo->shr->master_session_index,
Florin Coras68b7e582020-01-21 18:33:23 -0800650 SESSION_IO_EVT_TX, SVM_Q_WAIT);
651
Florin Coras57660d92020-04-04 22:45:34 +0000652 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
Florin Coras52dd29f2020-11-18 19:02:17 -0800653 mp->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800654}
655
Florin Coras3c7d4f92018-12-14 11:28:43 -0800656static vcl_session_t *
657vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
658{
659 vcl_session_msg_t *vcl_msg;
660 vcl_session_t *session;
661
662 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
663 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800664 VWRN ("session overlap handle %lu state %u!", msg->handle,
665 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800666
667 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
668 if (!session)
669 {
670 VERR ("couldn't find listen session: listener handle %llx",
671 msg->listener_handle);
672 return 0;
673 }
674
675 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000676 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800677 vcl_msg->accepted_msg = *msg;
678 /* Session handle points to listener until fully accepted by app */
679 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
680
681 return session;
682}
683
684static vcl_session_t *
685vcl_session_disconnected_handler (vcl_worker_t * wrk,
686 session_disconnected_msg_t * msg)
687{
688 vcl_session_t *session;
689
690 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
691 if (!session)
692 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800693 VWRN ("request to disconnect unknown handle 0x%llx", msg->handle);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800694 return 0;
695 }
696
Florin Corasadcfb152020-02-12 08:50:29 +0000697 /* Late disconnect notification on a session that has been closed */
Florin Corasc127d5a2020-10-14 16:35:58 -0700698 if (session->session_state == VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000699 return 0;
700
Florin Coras3c7d4f92018-12-14 11:28:43 -0800701 /* Caught a disconnect before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700702 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800703 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800704 if (!vcl_flag_accepted_session (session, msg->handle,
705 VCL_ACCEPTED_F_CLOSED))
706 VDBG (0, "session was not accepted!");
707 return 0;
708 }
709
Florin Corasadcfb152020-02-12 08:50:29 +0000710 /* If not already reset change state */
Florin Corasc127d5a2020-10-14 16:35:58 -0700711 if (session->session_state != VCL_STATE_DISCONNECT)
712 session->session_state = VCL_STATE_VPP_CLOSING;
Florin Corasadcfb152020-02-12 08:50:29 +0000713
Florin Coras3c7d4f92018-12-14 11:28:43 -0800714 return session;
715}
716
liuyacan534468e2021-05-09 03:50:40 +0000717int
liuyacan55c952e2021-06-13 14:54:55 +0800718vppcom_session_shutdown (uint32_t session_handle, int how)
liuyacan534468e2021-05-09 03:50:40 +0000719{
720 vcl_worker_t *wrk = vcl_worker_get_current ();
721 vcl_session_t *session;
722 vcl_session_state_t state;
723 u64 vpp_handle;
724
725 session = vcl_session_get_w_handle (wrk, session_handle);
726 if (PREDICT_FALSE (!session))
727 return VPPCOM_EBADFD;
728
729 vpp_handle = session->vpp_handle;
730 state = session->session_state;
731
732 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
Florin Coras60687192021-11-29 21:00:47 -0800733 vpp_handle, state, vcl_session_state_str (state));
liuyacan534468e2021-05-09 03:50:40 +0000734
735 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
736 {
737 VDBG (0, "ERROR: Cannot shutdown a listen socket!");
738 return VPPCOM_EBADFD;
739 }
740
liuyacan55c952e2021-06-13 14:54:55 +0800741 if (how == SHUT_RD || how == SHUT_RDWR)
742 {
743 session->flags |= VCL_SESSION_F_RD_SHUTDOWN;
744 if (how == SHUT_RD)
745 return VPPCOM_OK;
746 }
747 session->flags |= VCL_SESSION_F_WR_SHUTDOWN;
748
liuyacan534468e2021-05-09 03:50:40 +0000749 if (PREDICT_TRUE (state == VCL_STATE_READY))
750 {
751 VDBG (1, "session %u [0x%llx]: sending shutdown...",
752 session->session_index, vpp_handle);
753
754 vcl_send_session_shutdown (wrk, session);
liuyacan534468e2021-05-09 03:50:40 +0000755 }
756
757 return VPPCOM_OK;
758}
759
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700760static int
761vppcom_session_disconnect (u32 session_handle)
762{
763 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700764 vcl_session_t *session, *listen_session;
765 vcl_session_state_t state;
766 u64 vpp_handle;
767
768 session = vcl_session_get_w_handle (wrk, session_handle);
769 if (!session)
770 return VPPCOM_EBADFD;
771
772 vpp_handle = session->vpp_handle;
773 state = session->session_state;
774
Florin Coras5ffb9642021-12-03 17:24:13 -0800775 VDBG (1, "session %u [0x%llx]: disconnecting state (%s)",
776 session->session_index, vpp_handle, vcl_session_state_str (state));
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700777
778 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
779 {
780 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
781 return VPPCOM_EBADFD;
782 }
783
784 if (state == VCL_STATE_VPP_CLOSING)
785 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800786 vcl_send_session_disconnected_reply (wrk, session, 0);
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700787 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
788 session->session_index, vpp_handle);
789 }
790 else
791 {
792 /* Session doesn't have an event queue yet. Probably a non-blocking
793 * connect. Wait for the reply */
794 if (PREDICT_FALSE (!session->vpp_evt_q))
795 return VPPCOM_OK;
796
Florin Coras5ffb9642021-12-03 17:24:13 -0800797 VDBG (1, "session %u [0x%llx]: sending disconnect",
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700798 session->session_index, vpp_handle);
799 vcl_send_session_disconnect (wrk, session);
800 }
801
802 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
803 {
804 listen_session = vcl_session_get (wrk, session->listener_index);
Florin Corasb52bd3a2022-06-28 20:01:20 -0700805 if (listen_session)
806 listen_session->n_accepted_sessions--;
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700807 }
808
809 return VPPCOM_OK;
810}
811
Florin Coras30e79c22019-01-02 19:31:22 -0800812static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700813vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
814{
815 session_cleanup_msg_t *msg;
816 vcl_session_t *session;
817
818 msg = (session_cleanup_msg_t *) data;
819 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
820 if (!session)
821 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800822 VWRN ("disconnect confirmed for unknown handle 0x%llx", msg->handle);
Florin Coras9ace36d2019-10-28 13:14:17 -0700823 return;
824 }
825
Florin Coras36d49392020-04-24 23:00:11 +0000826 if (msg->type == SESSION_CLEANUP_TRANSPORT)
827 {
828 /* Transport was cleaned up before we confirmed close. Probably the
829 * app is still waiting for some data that cannot be delivered.
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700830 * Confirm close to make sure everything is cleaned up.
831 * Move to undetermined state to ensure that the session is not
832 * removed before both vpp and the app cleanup.
833 * - If the app closes first, the session is moved to CLOSED state
834 * and the session cleanup notification from vpp removes the
835 * session.
836 * - If vpp cleans up the session first, the session is moved to
837 * DETACHED state lower and subsequently the close from the app
838 * frees the session
839 */
840 if (session->session_state == VCL_STATE_VPP_CLOSING)
Florin Coras0ff7eec2020-08-03 18:55:40 -0700841 {
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700842 vppcom_session_disconnect (vcl_session_handle (session));
843 session->session_state = VCL_STATE_UPDATED;
844 }
845 else if (session->session_state == VCL_STATE_DISCONNECT)
846 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800847 vcl_send_session_reset_reply (wrk, session, 0);
Florin Coras0ff7eec2020-08-03 18:55:40 -0700848 session->session_state = VCL_STATE_UPDATED;
849 }
Florin Coras36d49392020-04-24 23:00:11 +0000850 return;
851 }
852
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800853 /* VPP will reuse the handle so clean it up now */
Florin Coras9ace36d2019-10-28 13:14:17 -0700854 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800855
856 /* App did not close the connection yet so don't free it. */
Florin Corasc127d5a2020-10-14 16:35:58 -0700857 if (session->session_state != VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000858 {
Florin Coras5ffb9642021-12-03 17:24:13 -0800859 VDBG (0, "session %u: app did not close", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700860 session->session_state = VCL_STATE_DETACHED;
Florin Corasadcfb152020-02-12 08:50:29 +0000861 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
862 return;
863 }
Florin Corasf0fe1ea2021-12-03 17:03:37 -0800864
865 /* Session probably tracked with epoll, disconnect not yet handled and
866 * 1) both transport and session cleanup completed 2) app closed. Wait
867 * until message is drained to free the session.
868 * See @ref vcl_handle_mq_event */
869 if (session->flags & VCL_SESSION_F_PENDING_DISCONNECT)
870 {
871 session->flags |= VCL_SESSION_F_PENDING_FREE;
872 return;
873 }
874
Florin Coras9ace36d2019-10-28 13:14:17 -0700875 vcl_session_free (wrk, session);
876}
877
878static void
Florin Coras30e79c22019-01-02 19:31:22 -0800879vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
880{
881 session_req_worker_update_msg_t *msg;
882 vcl_session_t *s;
883
884 msg = (session_req_worker_update_msg_t *) data;
885 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
886 if (!s)
887 return;
888
889 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
890}
891
892static void
893vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
894{
895 session_worker_update_reply_msg_t *msg;
896 vcl_session_t *s;
897
898 msg = (session_worker_update_reply_msg_t *) data;
899 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
900 if (!s)
901 {
902 VDBG (0, "unknown handle 0x%llx", msg->handle);
903 return;
904 }
Florin Coras30e79c22019-01-02 19:31:22 -0800905
Florin Coras5f45e012019-01-23 09:21:30 -0800906 if (s->rx_fifo)
907 {
Florin Corasc547e912020-12-08 17:50:45 -0800908 if (vcl_segment_attach_session (msg->segment_handle, msg->rx_fifo,
Florin Corasf6e284b2021-07-21 18:17:20 -0700909 msg->tx_fifo, (uword) ~0, ~0, 0, s))
Florin Corasc547e912020-12-08 17:50:45 -0800910 {
911 VDBG (0, "failed to attach fifos for %u", s->session_index);
912 return;
913 }
Florin Coras5f45e012019-01-23 09:21:30 -0800914 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700915 s->session_state = VCL_STATE_UPDATED;
Florin Coras30e79c22019-01-02 19:31:22 -0800916
Florin Coras30e79c22019-01-02 19:31:22 -0800917 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
918 s->vpp_handle, wrk->wrk_index);
919}
920
Florin Coras935ce752020-09-08 22:43:47 -0700921static int
922vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
923{
924
925 if (vcm->cfg.vpp_app_socket_api)
926 return vcl_sapi_recv_fds (wrk, fds, n_fds);
927
928 return vcl_bapi_recv_fds (wrk, fds, n_fds);
929}
930
Florin Corasc4c4cf52019-08-24 18:17:34 -0700931static void
932vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
933{
934 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
935 session_app_add_segment_msg_t *msg;
936 u64 segment_handle;
937 int fd = -1;
938
939 msg = (session_app_add_segment_msg_t *) data;
940
941 if (msg->fd_flags)
942 {
Florin Coras935ce752020-09-08 22:43:47 -0700943 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700944 seg_type = SSVM_SEGMENT_MEMFD;
945 }
946
947 segment_handle = msg->segment_handle;
948 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
949 {
950 clib_warning ("invalid segment handle");
951 return;
952 }
953
954 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
955 seg_type, fd))
956 {
957 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
958 return;
959 }
960
961 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
962 msg->segment_size);
963}
964
965static void
966vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
967{
968 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
969 vcl_segment_detach (msg->segment_handle);
970 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
971}
972
Florin Coras40c07ce2020-07-16 20:46:17 -0700973static void
974vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
975{
976 if (!vcm->wrk_rpc_fn)
977 return;
978
hanlina3a48962020-07-13 11:09:15 +0800979 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700980}
981
Florin Coras04ae8272021-04-12 19:55:37 -0700982static void
983vcl_session_transport_attr_reply_handler (vcl_worker_t *wrk, void *data)
984{
985 session_transport_attr_reply_msg_t *mp;
986
987 if (!wrk->session_attr_op)
988 return;
989
990 mp = (session_transport_attr_reply_msg_t *) data;
991
992 wrk->session_attr_op_rv = mp->retval;
993 wrk->session_attr_op = 0;
994 wrk->session_attr_rv = mp->attr;
995}
996
Florin Coras86f04502018-09-12 16:08:01 -0700997static int
998vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700999{
Florin Coras54693d22018-07-17 10:46:29 -07001000 session_disconnected_msg_t *disconnected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07001001 session_connected_msg_t *connected_msg;
1002 session_reset_msg_t *reset_msg;
1003 session_event_t *ecpy;
Florin Corasc127d5a2020-10-14 16:35:58 -07001004 vcl_session_t *s;
Florin Corasb242d312020-10-26 15:35:40 -07001005 u32 sid;
Florin Coras54693d22018-07-17 10:46:29 -07001006
1007 switch (e->event_type)
1008 {
Florin Coras653e43f2019-03-04 10:56:23 -08001009 case SESSION_IO_EVT_RX:
1010 case SESSION_IO_EVT_TX:
Florin Corasc127d5a2020-10-14 16:35:58 -07001011 s = vcl_session_get (wrk, e->session_index);
Florin Coras1bc919e2020-10-18 20:17:49 -07001012 if (!s || !vcl_session_is_open (s))
Florin Coras653e43f2019-03-04 10:56:23 -08001013 break;
Florin Coras86f04502018-09-12 16:08:01 -07001014 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -07001015 break;
Florin Corasb242d312020-10-26 15:35:40 -07001016 case SESSION_CTRL_EVT_BOUND:
1017 /* We can only wait for only one listen so not postponed */
1018 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
1019 break;
Florin Coras54693d22018-07-17 10:46:29 -07001020 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07001021 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
1022 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1023 {
1024 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1025 *ecpy = *e;
1026 ecpy->postponed = 1;
1027 ecpy->session_index = s->session_index;
1028 }
Florin Coras54693d22018-07-17 10:46:29 -07001029 break;
1030 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07001031 connected_msg = (session_connected_msg_t *) e->data;
1032 sid = vcl_session_connected_handler (wrk, connected_msg);
1033 if (!(s = vcl_session_get (wrk, sid)))
1034 break;
1035 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1036 {
1037 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1038 *ecpy = *e;
1039 ecpy->postponed = 1;
1040 ecpy->session_index = s->session_index;
1041 }
Florin Coras54693d22018-07-17 10:46:29 -07001042 break;
1043 case SESSION_CTRL_EVT_DISCONNECTED:
1044 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07001045 if (!(s = vcl_session_get_w_vpp_handle (wrk, disconnected_msg->handle)))
1046 break;
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001047 if (s->session_state == VCL_STATE_CLOSED)
1048 break;
Florin Corasb242d312020-10-26 15:35:40 -07001049 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1050 {
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001051 s->session_state = VCL_STATE_VPP_CLOSING;
1052 s->flags |= VCL_SESSION_F_PENDING_DISCONNECT;
1053 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1054 *ecpy = *e;
1055 ecpy->postponed = 1;
1056 ecpy->session_index = s->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07001057 break;
1058 }
1059 if (!(s = vcl_session_disconnected_handler (wrk, disconnected_msg)))
Florin Coras3c7d4f92018-12-14 11:28:43 -08001060 break;
Florin Corasc127d5a2020-10-14 16:35:58 -07001061 VDBG (0, "disconnected session %u [0x%llx]", s->session_index,
1062 s->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -07001063 break;
1064 case SESSION_CTRL_EVT_RESET:
Florin Corasb242d312020-10-26 15:35:40 -07001065 reset_msg = (session_reset_msg_t *) e->data;
1066 if (!(s = vcl_session_get_w_vpp_handle (wrk, reset_msg->handle)))
1067 break;
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001068 if (s->session_state == VCL_STATE_CLOSED)
1069 break;
Florin Corasb242d312020-10-26 15:35:40 -07001070 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1071 {
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001072 s->flags |= VCL_SESSION_F_PENDING_DISCONNECT;
1073 s->session_state = VCL_STATE_DISCONNECT;
Yacan Liuf5e0a172022-09-20 14:19:19 +08001074 s->flags |= (VCL_SESSION_F_RD_SHUTDOWN | VCL_SESSION_F_WR_SHUTDOWN);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001075 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
1076 *ecpy = *e;
1077 ecpy->postponed = 1;
1078 ecpy->session_index = s->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07001079 break;
1080 }
Florin Coras134a9962018-08-28 11:32:04 -07001081 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -07001082 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08001083 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
1084 vcl_session_unlisten_reply_handler (wrk, e->data);
1085 break;
Florin Coras68b7e582020-01-21 18:33:23 -08001086 case SESSION_CTRL_EVT_MIGRATED:
1087 vcl_session_migrated_handler (wrk, e->data);
1088 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07001089 case SESSION_CTRL_EVT_CLEANUP:
1090 vcl_session_cleanup_handler (wrk, e->data);
1091 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001092 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1093 vcl_session_req_worker_update_handler (wrk, e->data);
1094 break;
1095 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1096 vcl_session_worker_update_reply_handler (wrk, e->data);
1097 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07001098 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
1099 vcl_session_app_add_segment_handler (wrk, e->data);
1100 break;
1101 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
1102 vcl_session_app_del_segment_handler (wrk, e->data);
1103 break;
hanlina3a48962020-07-13 11:09:15 +08001104 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07001105 vcl_worker_rpc_handler (wrk, e->data);
1106 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001107 case SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY:
1108 vcl_session_transport_attr_reply_handler (wrk, e->data);
1109 break;
Florin Coras54693d22018-07-17 10:46:29 -07001110 default:
1111 clib_warning ("unhandled %u", e->event_type);
1112 }
1113 return VPPCOM_OK;
1114}
1115
Florin Coras30e79c22019-01-02 19:31:22 -08001116static int
Florin Coras697faea2018-06-27 17:10:49 -07001117vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -08001118 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -07001119 f64 wait_for_time)
1120{
Florin Coras134a9962018-08-28 11:32:04 -07001121 vcl_worker_t *wrk = vcl_worker_get_current ();
1122 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001123 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001124 svm_msg_q_msg_t msg;
1125 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001126
Florin Coras697faea2018-06-27 17:10:49 -07001127 do
Dave Wallace543852a2017-08-03 02:11:34 -04001128 {
Florin Coras134a9962018-08-28 11:32:04 -07001129 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001130 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001131 {
Florin Coras070453d2018-08-24 17:04:27 -07001132 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001133 }
Florin Corasdfffdd72020-10-15 10:54:47 -07001134 if (session->session_state == state)
Florin Coras697faea2018-06-27 17:10:49 -07001135 {
Florin Coras697faea2018-06-27 17:10:49 -07001136 return VPPCOM_OK;
1137 }
Florin Corasc127d5a2020-10-14 16:35:58 -07001138 if (session->session_state == VCL_STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001139 {
Florin Coras697faea2018-06-27 17:10:49 -07001140 return VPPCOM_ECONNREFUSED;
1141 }
Florin Coras54693d22018-07-17 10:46:29 -07001142
Florin Coras134a9962018-08-28 11:32:04 -07001143 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001144 {
1145 usleep (100);
1146 continue;
1147 }
Florin Coras134a9962018-08-28 11:32:04 -07001148 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001149 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001150 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001151 }
Florin Coras134a9962018-08-28 11:32:04 -07001152 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001153
Florin Coras05ecfcc2018-12-12 18:19:39 -08001154 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras60687192021-11-29 21:00:47 -08001155 vcl_session_state_str (state));
Florin Coras697faea2018-06-27 17:10:49 -07001156 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001157
Florin Coras697faea2018-06-27 17:10:49 -07001158 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001159}
1160
Florin Coras30e79c22019-01-02 19:31:22 -08001161static void
1162vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1163{
Florin Coras288eaab2019-02-03 15:26:14 -08001164 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001165 vcl_session_t *s;
1166 u32 *sip;
1167
1168 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1169 return;
1170
1171 vec_foreach (sip, wrk->pending_session_wrk_updates)
1172 {
1173 s = vcl_session_get (wrk, *sip);
1174 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1175 state = s->session_state;
Florin Corasc127d5a2020-10-14 16:35:58 -07001176 vppcom_wait_for_session_state_change (s->session_index, VCL_STATE_UPDATED,
1177 5);
Florin Coras30e79c22019-01-02 19:31:22 -08001178 s->session_state = state;
1179 }
1180 vec_reset_length (wrk->pending_session_wrk_updates);
1181}
1182
Florin Corasf9240dc2019-01-15 08:03:17 -08001183void
Florin Coras5398dfb2021-01-25 20:31:27 -08001184vcl_worker_flush_mq_events (vcl_worker_t *wrk)
Florin Coras30e79c22019-01-02 19:31:22 -08001185{
Florin Coras30e79c22019-01-02 19:31:22 -08001186 svm_msg_q_msg_t *msg;
1187 session_event_t *e;
1188 svm_msg_q_t *mq;
1189 int i;
1190
1191 mq = wrk->app_event_queue;
Florin Corase003a1b2019-06-05 10:47:16 -07001192 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001193
1194 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1195 {
1196 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1197 e = svm_msg_q_msg_data (mq, msg);
1198 vcl_handle_mq_event (wrk, e);
1199 svm_msg_q_free_msg (mq, msg);
1200 }
1201 vec_reset_length (wrk->mq_msg_vector);
1202 vcl_handle_pending_wrk_updates (wrk);
1203}
1204
Florin Coras5398dfb2021-01-25 20:31:27 -08001205void
1206vcl_flush_mq_events (void)
1207{
1208 vcl_worker_flush_mq_events (vcl_worker_get_current ());
1209}
1210
Florin Coras697faea2018-06-27 17:10:49 -07001211static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001212vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001213{
Florin Coras134a9962018-08-28 11:32:04 -07001214 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001215 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001216 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001217 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001218
Florin Corasab2f6db2018-08-31 14:31:41 -07001219 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001220 if (!session)
1221 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001222
Florin Corasaaff5ee2019-07-08 13:00:00 -07001223 /* Flush pending accept events, if any */
1224 while (clib_fifo_elts (session->accept_evts_fifo))
1225 {
1226 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1227 accepted_msg = &evt->accepted_msg;
1228 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1229 vcl_send_session_accepted_reply (session->vpp_evt_q,
1230 accepted_msg->context,
wanghanlin785b6ea2020-12-10 19:12:22 +08001231 accepted_msg->handle, -1);
Florin Corasaaff5ee2019-07-08 13:00:00 -07001232 }
1233 clib_fifo_free (session->accept_evts_fifo);
1234
Florin Coras458089b2019-08-21 16:20:44 -07001235 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001236
Florin Coras32881932023-02-06 13:30:13 -08001237 VDBG (0, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001238 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001239 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001240
1241 session->vpp_handle = ~0;
Florin Corasc127d5a2020-10-14 16:35:58 -07001242 session->session_state = VCL_STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001243
Florin Coras070453d2018-08-24 17:04:27 -07001244 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001245}
1246
Florin Coras940f78f2018-11-30 12:11:20 -08001247/**
1248 * Handle app exit
1249 *
1250 * Notify vpp of the disconnect and mark the worker as free. If we're the
1251 * last worker, do a full cleanup otherwise, since we're probably a forked
1252 * child, avoid syscalls as much as possible. We might've lost privileges.
1253 */
1254void
1255vppcom_app_exit (void)
1256{
1257 if (!pool_elts (vcm->workers))
1258 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001259 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1260 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001261 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001262}
1263
Florin Coras935ce752020-09-08 22:43:47 -07001264static int
1265vcl_api_attach (void)
1266{
1267 if (vcm->cfg.vpp_app_socket_api)
1268 return vcl_sapi_attach ();
1269
1270 return vcl_bapi_attach ();
1271}
1272
Maros Ondrejicka0db15752022-10-12 22:58:01 +02001273int
1274vcl_is_first_reattach_to_execute ()
1275{
1276 if (vcm->reattach_count == 0)
1277 return 1;
1278
1279 return 0;
1280}
1281
1282void
1283vcl_set_reattach_counter ()
1284{
1285 ++vcm->reattach_count;
1286
1287 if (vcm->reattach_count == vec_len (vcm->workers))
1288 vcm->reattach_count = 0;
1289}
1290
1291/**
1292 * Reattach vcl to vpp after it has previously been disconnected.
1293 *
1294 * The logic should be:
1295 * - first worker to hit `vcl_api_retry_attach` should attach to vpp,
1296 * to reproduce the `vcl_api_attach` in `vppcom_app_create`.
1297 * - the rest of the workers should `reproduce vcl_worker_register_with_vpp`
1298 * from `vppcom_worker_register` since they were already allocated.
1299 */
1300
Florin Coras935ce752020-09-08 22:43:47 -07001301static void
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00001302vcl_api_retry_attach (vcl_worker_t *wrk)
1303{
1304 vcl_session_t *s;
1305
Maros Ondrejicka0db15752022-10-12 22:58:01 +02001306 clib_spinlock_lock (&vcm->workers_lock);
1307 if (vcl_is_first_reattach_to_execute ())
1308 {
1309 if (vcl_api_attach ())
1310 {
1311 clib_spinlock_unlock (&vcm->workers_lock);
1312 return;
1313 }
1314 vcl_set_reattach_counter ();
1315 clib_spinlock_unlock (&vcm->workers_lock);
1316 }
1317 else
1318 {
1319 vcl_set_reattach_counter ();
1320 clib_spinlock_unlock (&vcm->workers_lock);
1321 vcl_worker_register_with_vpp ();
1322 }
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00001323
1324 /* Treat listeners as configuration that needs to be re-added to vpp */
1325 pool_foreach (s, wrk->sessions)
1326 {
1327 if (s->flags & VCL_SESSION_F_IS_VEP)
1328 continue;
1329 if (s->session_state == VCL_STATE_LISTEN_NO_MQ)
1330 vppcom_session_listen (vcl_session_handle (s), 10);
1331 else
1332 VDBG (0, "internal error: unexpected state %d", s->session_state);
1333 }
1334}
1335
1336static void
1337vcl_api_handle_disconnect (vcl_worker_t *wrk)
1338{
1339 wrk->api_client_handle = ~0;
1340 vcl_worker_detach_sessions (wrk);
1341}
1342
1343static void
Florin Coras935ce752020-09-08 22:43:47 -07001344vcl_api_detach (vcl_worker_t * wrk)
1345{
Florin Corasd04ea442022-03-30 16:08:25 -07001346 if (wrk->api_client_handle == ~0)
1347 return;
1348
Florin Coras935ce752020-09-08 22:43:47 -07001349 vcl_send_app_detach (wrk);
1350
1351 if (vcm->cfg.vpp_app_socket_api)
1352 return vcl_sapi_detach (wrk);
1353
1354 return vcl_bapi_disconnect_from_vpp ();
1355}
1356
Dave Wallace543852a2017-08-03 02:11:34 -04001357/*
1358 * VPPCOM Public API functions
1359 */
1360int
Florin Coras66ec4672020-06-15 07:59:40 -07001361vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001362{
Dave Wallace543852a2017-08-03 02:11:34 -04001363 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001364 int rv;
1365
Florin Coras47c40e22018-11-26 17:01:36 -08001366 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001367 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001368 VDBG (1, "already initialized");
1369 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001370 }
1371
Florin Coras47c40e22018-11-26 17:01:36 -08001372 vcm->is_init = 1;
1373 vppcom_cfg (&vcm->cfg);
1374 vcl_cfg = &vcm->cfg;
1375
1376 vcm->main_cpu = pthread_self ();
1377 vcm->main_pid = getpid ();
1378 vcm->app_name = format (0, "%s", app_name);
Florin Coras41bc8612021-10-01 14:57:03 -07001379 fifo_segment_main_init (&vcm->segment_main, (uword) ~0,
1380 20 /* timeout in secs */);
Florin Coras47c40e22018-11-26 17:01:36 -08001381 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1382 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001383 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001384 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001385 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001386
1387 /* Allocate default worker */
1388 vcl_worker_alloc_and_init ();
1389
Florin Coras935ce752020-09-08 22:43:47 -07001390 if ((rv = vcl_api_attach ()))
Florin Corasd04ea442022-03-30 16:08:25 -07001391 {
1392 vppcom_app_destroy ();
1393 return rv;
1394 }
Florin Coras47c40e22018-11-26 17:01:36 -08001395
1396 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001397 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001398
1399 return VPPCOM_OK;
1400}
1401
1402void
1403vppcom_app_destroy (void)
1404{
Florin Corasdc0ded72020-04-30 02:59:55 +00001405 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001406 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001407
Florin Coras940f78f2018-11-30 12:11:20 -08001408 if (!pool_elts (vcm->workers))
1409 return;
1410
Florin Coras0d427d82018-06-27 03:24:07 -07001411 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001412
Florin Corasdc0ded72020-04-30 02:59:55 +00001413 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001414
Florin Corasce815de2020-04-16 18:47:27 +00001415 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001416 pool_foreach (wrk, vcm->workers) {
Florin Corasdc0ded72020-04-30 02:59:55 +00001417 if (current_wrk != wrk)
1418 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Damjan Marionb2c31b62020-12-13 21:47:40 +01001419 }
Florin Corasce815de2020-04-16 18:47:27 +00001420 /* *INDENT-ON* */
1421
Florin Coras935ce752020-09-08 22:43:47 -07001422 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001423 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
Florin Corasd04ea442022-03-30 16:08:25 -07001424 vcl_set_worker_index (~0);
Florin Corasdc0ded72020-04-30 02:59:55 +00001425
Florin Coras0d427d82018-06-27 03:24:07 -07001426 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001427
1428 /*
1429 * Free the heap and fix vcm
1430 */
1431 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001432 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001433
1434 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001435 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001436}
1437
1438int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001439vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001440{
Florin Coras134a9962018-08-28 11:32:04 -07001441 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001442 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001443
Florin Coras134a9962018-08-28 11:32:04 -07001444 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001445
Florin Coras7e12d942018-06-27 14:32:43 -07001446 session->session_type = proto;
Florin Corasc127d5a2020-10-14 16:35:58 -07001447 session->session_state = VCL_STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001448 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001449 session->is_dgram = vcl_proto_is_dgram (proto);
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05301450 session->vpp_error = SESSION_E_NONE;
Dave Wallace543852a2017-08-03 02:11:34 -04001451
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001452 if (is_nonblocking)
Florin Corasac422d62020-10-19 20:51:36 -07001453 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001454
Florin Coras7e12d942018-06-27 14:32:43 -07001455 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1456 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001457
Florin Coras5e062572019-03-14 19:07:51 -07001458 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001459
Florin Coras134a9962018-08-28 11:32:04 -07001460 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001461}
1462
Florin Corasfe286f72021-06-04 10:07:55 -07001463static void
Florin Corasfa3884f2021-06-22 20:04:46 -07001464vcl_epoll_lt_add (vcl_worker_t *wrk, vcl_session_t *s)
Florin Corasfe286f72021-06-04 10:07:55 -07001465{
Florin Corasfa3884f2021-06-22 20:04:46 -07001466 vcl_session_t *cur, *prev;
Florin Corasfe286f72021-06-04 10:07:55 -07001467
Florin Corasc2a14172023-02-28 21:13:50 -08001468 ASSERT (s->vep.lt_next == VCL_INVALID_SESSION_INDEX);
1469
Florin Corasfa3884f2021-06-22 20:04:46 -07001470 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
Florin Corasfe286f72021-06-04 10:07:55 -07001471 {
Florin Corasfa3884f2021-06-22 20:04:46 -07001472 wrk->ep_lt_current = s->session_index;
1473 s->vep.lt_next = s->session_index;
1474 s->vep.lt_prev = s->session_index;
1475 return;
Florin Corasfe286f72021-06-04 10:07:55 -07001476 }
Florin Corasfa3884f2021-06-22 20:04:46 -07001477
1478 cur = vcl_session_get (wrk, wrk->ep_lt_current);
1479 prev = vcl_session_get (wrk, cur->vep.lt_prev);
1480
1481 prev->vep.lt_next = s->session_index;
1482 s->vep.lt_prev = prev->session_index;
1483
1484 s->vep.lt_next = cur->session_index;
1485 cur->vep.lt_prev = s->session_index;
1486}
1487
1488static void
1489vcl_epoll_lt_del (vcl_worker_t *wrk, vcl_session_t *s)
1490{
1491 vcl_session_t *prev, *next;
1492
Florin Corasc2a14172023-02-28 21:13:50 -08001493 ASSERT (s->vep.lt_next != VCL_INVALID_SESSION_INDEX);
1494
Florin Corasfa3884f2021-06-22 20:04:46 -07001495 if (s->vep.lt_next == s->session_index)
1496 {
1497 wrk->ep_lt_current = VCL_INVALID_SESSION_INDEX;
1498 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasc2a14172023-02-28 21:13:50 -08001499 s->vep.lt_prev = VCL_INVALID_SESSION_INDEX;
Florin Corasfa3884f2021-06-22 20:04:46 -07001500 return;
1501 }
1502
1503 prev = vcl_session_get (wrk, s->vep.lt_prev);
1504 next = vcl_session_get (wrk, s->vep.lt_next);
1505
1506 prev->vep.lt_next = next->session_index;
1507 next->vep.lt_prev = prev->session_index;
1508
1509 if (s->session_index == wrk->ep_lt_current)
1510 wrk->ep_lt_current = s->vep.lt_next;
1511
1512 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Corasc2a14172023-02-28 21:13:50 -08001513 s->vep.lt_prev = VCL_INVALID_SESSION_INDEX;
Florin Corasfe286f72021-06-04 10:07:55 -07001514}
1515
Dave Wallace543852a2017-08-03 02:11:34 -04001516int
Florin Corasc127d5a2020-10-14 16:35:58 -07001517vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * s,
Florin Corasf9240dc2019-01-15 08:03:17 -08001518 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001519{
Florin Coras134a9962018-08-28 11:32:04 -07001520 int rv = VPPCOM_OK;
Florin Coras47c40e22018-11-26 17:01:36 -08001521
Florin Coras6c3b2182020-10-19 18:36:48 -07001522 VDBG (1, "session %u [0x%llx] closing", s->session_index, s->vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001523
Florin Coras6c3b2182020-10-19 18:36:48 -07001524 if (s->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace543852a2017-08-03 02:11:34 -04001525 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001526 u32 next_sh = s->vep.next_sh;
Florin Coras134a9962018-08-28 11:32:04 -07001527 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001528 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001529 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001530 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001531 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras6c3b2182020-10-19 18:36:48 -07001532 " failed! rv %d (%s)", s->vpp_handle, next_sh,
1533 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Florin Corasc127d5a2020-10-14 16:35:58 -07001534 next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001535 }
Florin Corase4306b62020-10-28 12:51:10 -07001536 goto free_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001537 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001538
Florin Coras6c3b2182020-10-19 18:36:48 -07001539 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001540 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001541 rv = vppcom_epoll_ctl (s->vep.vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001542 if (rv < 0)
1543 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
Florin Coras6c3b2182020-10-19 18:36:48 -07001544 "failed! rv %d (%s)", s->session_index, s->vpp_handle,
1545 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001546 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001547
Florin Coras9ace36d2019-10-28 13:14:17 -07001548 if (!do_disconnect)
1549 {
1550 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Coras6c3b2182020-10-19 18:36:48 -07001551 s->session_index, s->vpp_handle);
Florin Coras9ace36d2019-10-28 13:14:17 -07001552 goto cleanup;
1553 }
1554
Florin Coras6c3b2182020-10-19 18:36:48 -07001555 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras9ace36d2019-10-28 13:14:17 -07001556 {
1557 rv = vppcom_session_unbind (sh);
1558 if (PREDICT_FALSE (rv < 0))
1559 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
Florin Coras6c3b2182020-10-19 18:36:48 -07001560 "rv %d (%s)", s->session_index, s->vpp_handle, rv,
Florin Coras9ace36d2019-10-28 13:14:17 -07001561 vppcom_retval_str (rv));
1562 return rv;
1563 }
Florin Coras1bc919e2020-10-18 20:17:49 -07001564 else if (vcl_session_is_ready (s)
Florin Corasc127d5a2020-10-14 16:35:58 -07001565 || (vcl_session_is_connectable_listener (wrk, s)))
Florin Coras9ace36d2019-10-28 13:14:17 -07001566 {
1567 rv = vppcom_session_disconnect (sh);
1568 if (PREDICT_FALSE (rv < 0))
1569 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
Florin Coras6c3b2182020-10-19 18:36:48 -07001570 " rv %d (%s)", s->session_index, s->vpp_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001571 rv, vppcom_retval_str (rv));
1572 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001573 else if (s->session_state == VCL_STATE_DISCONNECT)
Florin Coras9ace36d2019-10-28 13:14:17 -07001574 {
Florin Coras52dd29f2020-11-18 19:02:17 -08001575 vcl_send_session_reset_reply (wrk, s, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001576 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001577 else if (s->session_state == VCL_STATE_DETACHED)
Florin Corasadcfb152020-02-12 08:50:29 +00001578 {
Florin Corasc127d5a2020-10-14 16:35:58 -07001579 VDBG (0, "vpp freed session %d before close", s->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08001580
1581 if (!(s->flags & VCL_SESSION_F_PENDING_DISCONNECT))
1582 goto free_session;
1583
1584 /* Disconnect/reset messages pending but vpp transport and session
1585 * cleanups already done. Free only after messages drained. */
1586 s->flags |= VCL_SESSION_F_PENDING_FREE;
Florin Corasadcfb152020-02-12 08:50:29 +00001587 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001588
Florin Corasc127d5a2020-10-14 16:35:58 -07001589 s->session_state = VCL_STATE_CLOSED;
Florin Coras54140622020-02-04 19:04:34 +00001590
Florin Coras9ace36d2019-10-28 13:14:17 -07001591 /* Session is removed only after vpp confirms the disconnect */
1592 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001593
Florin Corasf9240dc2019-01-15 08:03:17 -08001594cleanup:
Florin Coras6c3b2182020-10-19 18:36:48 -07001595 vcl_session_table_del_vpp_handle (wrk, s->vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001596free_session:
Florin Corasc127d5a2020-10-14 16:35:58 -07001597 vcl_session_free (wrk, s);
1598 vcl_evt (VCL_EVT_CLOSE, s, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001599
Dave Wallace543852a2017-08-03 02:11:34 -04001600 return rv;
1601}
1602
1603int
Florin Corasf9240dc2019-01-15 08:03:17 -08001604vppcom_session_close (uint32_t session_handle)
1605{
1606 vcl_worker_t *wrk = vcl_worker_get_current ();
1607 vcl_session_t *session;
1608
1609 session = vcl_session_get_w_handle (wrk, session_handle);
1610 if (!session)
1611 return VPPCOM_EBADFD;
1612 return vcl_session_cleanup (wrk, session, session_handle,
1613 1 /* do_disconnect */ );
1614}
1615
1616int
Florin Coras134a9962018-08-28 11:32:04 -07001617vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001618{
Florin Coras134a9962018-08-28 11:32:04 -07001619 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001620 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001621
1622 if (!ep || !ep->ip)
1623 return VPPCOM_EINVAL;
1624
Florin Coras134a9962018-08-28 11:32:04 -07001625 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001626 if (!session)
1627 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001628
Florin Coras6c3b2182020-10-19 18:36:48 -07001629 if (session->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001630 {
Florin Coras5e062572019-03-14 19:07:51 -07001631 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1632 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001633 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001634 }
1635
Florin Coras7e12d942018-06-27 14:32:43 -07001636 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001637 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001638 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1639 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001640 else
Dave Barach178cf492018-11-13 16:34:13 -05001641 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1642 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001643 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001644
Florin Coras60687192021-11-29 21:00:47 -08001645 VDBG (0,
1646 "session %u handle %u: binding to local %s address %U port %u, "
1647 "proto %s",
1648 session->session_index, session_handle,
1649 session->transport.is_ip4 ? "IPv4" : "IPv6", vcl_format_ip46_address,
1650 &session->transport.lcl_ip,
Florin Coras7e12d942018-06-27 14:32:43 -07001651 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1652 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001653 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001654 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001655
1656 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001657 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001658
Florin Coras070453d2018-08-24 17:04:27 -07001659 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001660}
1661
1662int
Florin Coras134a9962018-08-28 11:32:04 -07001663vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001664{
Florin Coras134a9962018-08-28 11:32:04 -07001665 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001666 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001667 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001668 int rv;
1669
Florin Coras134a9962018-08-28 11:32:04 -07001670 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras6c3b2182020-10-19 18:36:48 -07001671 if (!listen_session || (listen_session->flags & VCL_SESSION_F_IS_VEP))
Florin Coras070453d2018-08-24 17:04:27 -07001672 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001673
Dave Wallaceee45d412017-11-24 21:44:06 -05001674 listen_vpp_handle = listen_session->vpp_handle;
Florin Corasc127d5a2020-10-14 16:35:58 -07001675 if (listen_session->session_state == VCL_STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001676 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001677 VDBG (0, "session %u [0x%llx]: already in listen state!",
1678 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001679 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001680 }
1681
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001682 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001683
Florin Coras070453d2018-08-24 17:04:27 -07001684 /*
1685 * Send listen request to vpp and wait for reply
1686 */
Florin Coras458089b2019-08-21 16:20:44 -07001687 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001688 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
Florin Corasc127d5a2020-10-14 16:35:58 -07001689 VCL_STATE_LISTEN,
Florin Coras134a9962018-08-28 11:32:04 -07001690 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001691
Florin Coras070453d2018-08-24 17:04:27 -07001692 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001693 {
Florin Coras134a9962018-08-28 11:32:04 -07001694 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001695 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1696 listen_sh, listen_session->vpp_handle, rv,
1697 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001698 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001699 }
1700
Florin Coras070453d2018-08-24 17:04:27 -07001701 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001702}
1703
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001704int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001705vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1706{
1707 if (!strcmp (proto_str, "TCP"))
1708 *proto = VPPCOM_PROTO_TCP;
1709 else if (!strcmp (proto_str, "tcp"))
1710 *proto = VPPCOM_PROTO_TCP;
1711 else if (!strcmp (proto_str, "UDP"))
1712 *proto = VPPCOM_PROTO_UDP;
1713 else if (!strcmp (proto_str, "udp"))
1714 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001715 else if (!strcmp (proto_str, "TLS"))
1716 *proto = VPPCOM_PROTO_TLS;
1717 else if (!strcmp (proto_str, "tls"))
1718 *proto = VPPCOM_PROTO_TLS;
1719 else if (!strcmp (proto_str, "QUIC"))
1720 *proto = VPPCOM_PROTO_QUIC;
1721 else if (!strcmp (proto_str, "quic"))
1722 *proto = VPPCOM_PROTO_QUIC;
Florin Coras4b47ee22020-11-19 13:38:26 -08001723 else if (!strcmp (proto_str, "DTLS"))
1724 *proto = VPPCOM_PROTO_DTLS;
1725 else if (!strcmp (proto_str, "dtls"))
1726 *proto = VPPCOM_PROTO_DTLS;
Florin Coras6621abf2021-01-06 17:35:17 -08001727 else if (!strcmp (proto_str, "SRTP"))
1728 *proto = VPPCOM_PROTO_SRTP;
1729 else if (!strcmp (proto_str, "srtp"))
1730 *proto = VPPCOM_PROTO_SRTP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001731 else
1732 return 1;
1733 return 0;
1734}
1735
1736int
Florin Coras32881932023-02-06 13:30:13 -08001737vppcom_session_accept (uint32_t ls_handle, vppcom_endpt_t *ep, uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001738{
Florin Coras32881932023-02-06 13:30:13 -08001739 u32 client_session_index = ~0, ls_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001740 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001741 session_accepted_msg_t accepted_msg;
Florin Coras32881932023-02-06 13:30:13 -08001742 vcl_session_t *ls, *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001743 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001744 u8 is_nonblocking;
Dave Wallace543852a2017-08-03 02:11:34 -04001745
Florin Coras5398dfb2021-01-25 20:31:27 -08001746again:
1747
Florin Coras32881932023-02-06 13:30:13 -08001748 ls = vcl_session_get_w_handle (wrk, ls_handle);
1749 if (!ls)
Florin Coras070453d2018-08-24 17:04:27 -07001750 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001751
Florin Coras32881932023-02-06 13:30:13 -08001752 if ((ls->session_state != VCL_STATE_LISTEN) &&
1753 (ls->session_state != VCL_STATE_LISTEN_NO_MQ) &&
1754 (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001755 {
Florin Coras32881932023-02-06 13:30:13 -08001756 VDBG (0, "ERROR: session [0x%llx]: not in listen state! state (%s)",
1757 ls->vpp_handle, vcl_session_state_str (ls->session_state));
1758 return VPPCOM_EBADFD;
1759 }
1760
1761 ls_index = ls->session_index;
1762
1763 if (clib_fifo_elts (ls->accept_evts_fifo))
1764 {
1765 clib_fifo_sub2 (ls->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001766 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001767 accepted_msg = evt->accepted_msg;
1768 goto handle;
1769 }
1770
Florin Coras32881932023-02-06 13:30:13 -08001771 is_nonblocking = vcl_session_has_attr (ls, VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001772 while (1)
1773 {
Carl Smith592a9092019-11-12 14:57:37 +13001774 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1775 return VPPCOM_EAGAIN;
1776
Florin Coras5398dfb2021-01-25 20:31:27 -08001777 svm_msg_q_wait (wrk->app_event_queue, SVM_MQ_WAIT_EMPTY);
1778 vcl_worker_flush_mq_events (wrk);
1779 goto again;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001780 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001781
Florin Coras54693d22018-07-17 10:46:29 -07001782handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001783
Florin Coras32881932023-02-06 13:30:13 -08001784 client_session_index =
1785 vcl_session_accepted_handler (wrk, &accepted_msg, ls_index);
Florin Coras00cca802019-06-06 09:38:44 -07001786 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1787 return VPPCOM_ECONNABORTED;
1788
Florin Coras32881932023-02-06 13:30:13 -08001789 ls = vcl_session_get (wrk, ls_index);
Florin Coras134a9962018-08-28 11:32:04 -07001790 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001791
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001792 if (flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07001793 vcl_session_set_attr (client_session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001794
Florin Coras32881932023-02-06 13:30:13 -08001795 VDBG (1,
1796 "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1797 " flags %d, is_nonblocking %u",
1798 ls->session_index, ls->vpp_handle, client_session_index,
Florin Coras5e062572019-03-14 19:07:51 -07001799 client_session->vpp_handle, flags,
Florin Corasac422d62020-10-19 20:51:36 -07001800 vcl_session_has_attr (client_session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001801
Dave Wallace048b1d62018-01-03 22:24:41 -05001802 if (ep)
1803 {
Florin Coras7e12d942018-06-27 14:32:43 -07001804 ep->is_ip4 = client_session->transport.is_ip4;
1805 ep->port = client_session->transport.rmt_port;
1806 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001807 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1808 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001809 else
Dave Barach178cf492018-11-13 16:34:13 -05001810 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1811 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001812 }
Dave Wallace60caa062017-11-10 17:07:13 -05001813
Florin Coras60687192021-11-29 21:00:47 -08001814 VDBG (0,
1815 "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1816 "local: %U:%u",
Florin Coras32881932023-02-06 13:30:13 -08001817 ls_handle, ls->vpp_handle, client_session_index,
1818 client_session->vpp_handle, vcl_format_ip46_address,
1819 &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001820 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001821 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras60687192021-11-29 21:00:47 -08001822 vcl_format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001823 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001824 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras32881932023-02-06 13:30:13 -08001825 vcl_evt (VCL_EVT_ACCEPT, client_session, ls, client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001826
Florin Coras3c7d4f92018-12-14 11:28:43 -08001827 /*
1828 * Session might have been closed already
1829 */
1830 if (accept_flags)
1831 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001832 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasc127d5a2020-10-14 16:35:58 -07001833 client_session->session_state = VCL_STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001834 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasc127d5a2020-10-14 16:35:58 -07001835 client_session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001836 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001837 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001838}
1839
1840int
Florin Coras134a9962018-08-28 11:32:04 -07001841vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001842{
Florin Coras134a9962018-08-28 11:32:04 -07001843 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001844 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001845 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001846 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001847
Florin Coras134a9962018-08-28 11:32:04 -07001848 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001849 if (!session)
1850 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001851 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001852
Florin Coras6c3b2182020-10-19 18:36:48 -07001853 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04001854 {
Florin Coras5ffb9642021-12-03 17:24:13 -08001855 VWRN ("cannot connect epoll session %u!", session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001856 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001857 }
1858
Florin Corasc127d5a2020-10-14 16:35:58 -07001859 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Dave Wallace543852a2017-08-03 02:11:34 -04001860 {
Florin Coras60687192021-11-29 21:00:47 -08001861 VDBG (0,
Florin Coras5ffb9642021-12-03 17:24:13 -08001862 "session %u [0x%llx]: already connected to %U:%d proto %s,"
1863 " state (%s)",
1864 session->session_index, session->vpp_handle,
Florin Coras60687192021-11-29 21:00:47 -08001865 vcl_format_ip46_address, &session->transport.rmt_ip,
1866 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001867 clib_net_to_host_u16 (session->transport.rmt_port),
Florin Coras5ffb9642021-12-03 17:24:13 -08001868 vppcom_proto_str (session->session_type),
Florin Coras60687192021-11-29 21:00:47 -08001869 vcl_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001870 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001871 }
1872
Florin Coras0a1e1832020-03-29 18:54:04 +00001873 /* Attempt to connect a connectionless listener */
Florin Corasc127d5a2020-10-14 16:35:58 -07001874 if (PREDICT_FALSE (session->session_state == VCL_STATE_LISTEN))
Florin Coras0a1e1832020-03-29 18:54:04 +00001875 {
1876 if (session->session_type != VPPCOM_PROTO_UDP)
1877 return VPPCOM_EINVAL;
1878 vcl_send_session_unlisten (wrk, session);
Florin Corasc127d5a2020-10-14 16:35:58 -07001879 session->session_state = VCL_STATE_CLOSED;
Florin Coras0a1e1832020-03-29 18:54:04 +00001880 }
1881
Florin Coras7e12d942018-06-27 14:32:43 -07001882 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001883 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001884 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001885 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001886 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001887
Florin Coras5ffb9642021-12-03 17:24:13 -08001888 VDBG (0, "session %u: connecting to peer %U:%d proto %s",
1889 session->session_index, vcl_format_ip46_address,
Florin Coras60687192021-11-29 21:00:47 -08001890 &session->transport.rmt_ip,
1891 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001892 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001893 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001894
Florin Coras458089b2019-08-21 16:20:44 -07001895 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001896
Florin Corasac422d62020-10-19 20:51:36 -07001897 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001898 {
fanyfa49d59d2020-10-13 17:07:16 +08001899 /* State set to STATE_UPDATED to ensure the session is not assumed
Florin Corasdfffdd72020-10-15 10:54:47 -07001900 * to be ready and to also allow the app to close it prior to vpp's
fanyfa49d59d2020-10-13 17:07:16 +08001901 * connected reply. */
Florin Corasc127d5a2020-10-14 16:35:58 -07001902 session->session_state = VCL_STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001903 return VPPCOM_EINPROGRESS;
1904 }
Florin Coras57c88932019-08-29 12:03:17 -07001905
1906 /*
1907 * Wait for reply from vpp if blocking
1908 */
Florin Corasdfffdd72020-10-15 10:54:47 -07001909 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Florin Coras070453d2018-08-24 17:04:27 -07001910 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001911
Florin Coras134a9962018-08-28 11:32:04 -07001912 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001913 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1914 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001915
Dave Wallace4878cbe2017-11-21 03:45:09 -05001916 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001917}
1918
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001919int
1920vppcom_session_stream_connect (uint32_t session_handle,
1921 uint32_t parent_session_handle)
1922{
1923 vcl_worker_t *wrk = vcl_worker_get_current ();
1924 vcl_session_t *session, *parent_session;
1925 u32 session_index, parent_session_index;
1926 int rv;
1927
1928 session = vcl_session_get_w_handle (wrk, session_handle);
1929 if (!session)
1930 return VPPCOM_EBADFD;
1931 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1932 if (!parent_session)
1933 return VPPCOM_EBADFD;
1934
1935 session_index = session->session_index;
1936 parent_session_index = parent_session->session_index;
Florin Coras6c3b2182020-10-19 18:36:48 -07001937 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001938 {
1939 VDBG (0, "ERROR: cannot connect epoll session %u!",
1940 session->session_index);
1941 return VPPCOM_EBADFD;
1942 }
1943
Florin Corasc127d5a2020-10-14 16:35:58 -07001944 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001945 {
Florin Coras60687192021-11-29 21:00:47 -08001946 VDBG (0,
1947 "session handle %u [0x%llx]: session already "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001948 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
Florin Coras60687192021-11-29 21:00:47 -08001949 session_handle, session->vpp_handle, parent_session_handle,
1950 parent_session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001951 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras60687192021-11-29 21:00:47 -08001952 vcl_session_state_str (session->session_state));
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001953 return VPPCOM_OK;
1954 }
1955
1956 /* Connect to quic session specifics */
1957 session->transport.is_ip4 = parent_session->transport.is_ip4;
1958 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1959 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001960 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001961
1962 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1963 session_handle, parent_session_handle, parent_session->vpp_handle);
1964
1965 /*
1966 * Send connect request and wait for reply from vpp
1967 */
Florin Coras458089b2019-08-21 16:20:44 -07001968 vcl_send_session_connect (wrk, session);
Florin Corasdfffdd72020-10-15 10:54:47 -07001969 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001970 vcm->cfg.session_timeout);
1971
1972 session->listener_index = parent_session_index;
1973 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001974 if (parent_session)
1975 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001976
1977 session = vcl_session_get (wrk, session_index);
1978 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1979 session->vpp_handle, rv ? "failed" : "succeeded");
1980
1981 return rv;
1982}
1983
Steven58f464e2017-10-25 12:33:12 -07001984static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001985vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001986 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001987{
Florin Coras134a9962018-08-28 11:32:04 -07001988 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07001989 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001990 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001991 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001992 session_event_t *e;
1993 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001994 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001995
Florin Coras070453d2018-08-24 17:04:27 -07001996 if (PREDICT_FALSE (!buf))
wanghanlin72228a22021-07-06 17:18:29 +08001997 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04001998
Florin Coras134a9962018-08-28 11:32:04 -07001999 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002000 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras070453d2018-08-24 17:04:27 -07002001 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002002
Florin Coras6d0106e2019-01-29 20:11:58 -08002003 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002004 {
Florin Coras5e062572019-03-14 19:07:51 -07002005 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08002006 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002007 vcl_session_state_str (s->session_state));
Florin Coras6d0106e2019-01-29 20:11:58 -08002008 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002009 }
2010
liuyacan55c952e2021-06-13 14:54:55 +08002011 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
2012 {
2013 /* Vpp would ack the incoming data and enqueue it for reading.
2014 * So even if SHUT_RD is set, we can still read() the data if
2015 * the session is ready.
2016 */
2017 if (!vcl_session_read_ready (s))
2018 {
2019 return 0;
2020 }
2021 }
2022
Florin Corasac422d62020-10-19 20:51:36 -07002023 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07002024 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002025 mq = wrk->app_event_queue;
2026 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002027 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002028
Sirshak Das28aa5392019-02-05 01:33:33 -06002029 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002030 {
Florin Coras54693d22018-07-17 10:46:29 -07002031 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08002032 {
Yu Pingb2955352019-12-04 06:49:04 +08002033 if (vcl_session_is_closing (s))
2034 return vcl_session_closing_error (s);
Florin Corasd6894562020-10-28 00:37:15 -07002035 if (is_ct)
2036 svm_fifo_unset_event (s->rx_fifo);
2037 svm_fifo_unset_event (rx_fifo);
Florin Corasc0737e92019-03-04 14:19:39 -08002038 return VPPCOM_EWOULDBLOCK;
2039 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002040 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002041 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002042 if (vcl_session_is_closing (s))
2043 return vcl_session_closing_error (s);
2044
Florin Corasd6894562020-10-28 00:37:15 -07002045 if (is_ct)
2046 svm_fifo_unset_event (s->rx_fifo);
2047 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07002048
Florin Coras5398dfb2021-01-25 20:31:27 -08002049 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2050 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002051 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002052 }
Florin Coras54693d22018-07-17 10:46:29 -07002053
Florin Coras4a2c7942020-09-10 12:27:14 -07002054read_again:
2055
Florin Coras460dce62018-07-27 05:45:06 -07002056 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07002057 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002058 else
Florin Coras4a2c7942020-09-10 12:27:14 -07002059 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
2060
2061 ASSERT (rv >= 0);
Florin Coras23368312021-06-04 16:28:18 -07002062
2063 if (peek)
2064 return rv;
2065
Florin Coras4a2c7942020-09-10 12:27:14 -07002066 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07002067
Sirshak Das28aa5392019-02-05 01:33:33 -06002068 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07002069 {
Florin Corasd6894562020-10-28 00:37:15 -07002070 if (is_ct)
2071 svm_fifo_unset_event (s->rx_fifo);
2072 svm_fifo_unset_event (rx_fifo);
Florin Corasc34118b2020-08-12 18:58:25 -07002073 if (!svm_fifo_is_empty_cons (rx_fifo)
Florin Corasd6894562020-10-28 00:37:15 -07002074 && svm_fifo_set_event (rx_fifo) && is_nonblocking)
Florin Corasc34118b2020-08-12 18:58:25 -07002075 {
Florin Corasc34118b2020-08-12 18:58:25 -07002076 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2077 e->event_type = SESSION_IO_EVT_RX;
2078 e->session_index = s->session_index;
2079 }
2080 }
Florin Coras54fe32c2020-11-25 20:26:32 -08002081 else if (PREDICT_FALSE (rv < n && !s->is_dgram))
Florin Coras4a2c7942020-09-10 12:27:14 -07002082 {
2083 /* More data enqueued while reading. Try to drain it
Florin Coras54fe32c2020-11-25 20:26:32 -08002084 * or fill the buffer. Avoid doing that for dgrams */
Florin Coras4a2c7942020-09-10 12:27:14 -07002085 buf += rv;
2086 n -= rv;
2087 goto read_again;
2088 }
Florin Coras41c9e042018-09-11 00:10:41 -07002089
Florin Coras17ec5772020-08-12 20:46:29 -07002090 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07002091 {
Florin Coras17ec5772020-08-12 20:46:29 -07002092 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -08002093 app_send_io_evt_to_vpp (s->vpp_evt_q,
2094 s->rx_fifo->shr->master_session_index,
Florin Coras317b8e02019-04-17 09:57:46 -07002095 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07002096 }
2097
Florin Coras5e062572019-03-14 19:07:51 -07002098 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
2099 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002100
Florin Coras54693d22018-07-17 10:46:29 -07002101 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04002102}
2103
Steven58f464e2017-10-25 12:33:12 -07002104int
Florin Coras134a9962018-08-28 11:32:04 -07002105vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07002106{
Florin Coras134a9962018-08-28 11:32:04 -07002107 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07002108}
2109
2110static int
Florin Coras134a9962018-08-28 11:32:04 -07002111vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07002112{
Florin Coras134a9962018-08-28 11:32:04 -07002113 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07002114}
2115
Florin Coras2cba8532018-09-11 16:33:36 -07002116int
2117vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07002118 vppcom_data_segment_t * ds, uint32_t n_segments,
2119 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002120{
2121 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08002122 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07002123 vcl_session_t *s = 0;
2124 svm_fifo_t *rx_fifo;
Florin Coras2cba8532018-09-11 16:33:36 -07002125 svm_msg_q_t *mq;
2126 u8 is_ct;
2127
2128 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002129 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002130 return VPPCOM_EBADFD;
2131
Florin Coras6d0106e2019-01-29 20:11:58 -08002132 if (PREDICT_FALSE (!vcl_session_is_open (s)))
2133 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07002134
Florin Corasac422d62020-10-19 20:51:36 -07002135 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras2cba8532018-09-11 16:33:36 -07002136 is_ct = vcl_session_is_ct (s);
Florin Corasac422d62020-10-19 20:51:36 -07002137 mq = wrk->app_event_queue;
Florin Coras62877022020-10-28 21:22:04 -07002138 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002139 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2cba8532018-09-11 16:33:36 -07002140
Sirshak Das28aa5392019-02-05 01:33:33 -06002141 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002142 {
2143 if (is_nonblocking)
2144 {
Florin Coras62877022020-10-28 21:22:04 -07002145 if (is_ct)
2146 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002147 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07002148 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07002149 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002150 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002151 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002152 if (vcl_session_is_closing (s))
2153 return vcl_session_closing_error (s);
2154
Florin Coras62877022020-10-28 21:22:04 -07002155 if (is_ct)
2156 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002157 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07002158
Florin Coras5398dfb2021-01-25 20:31:27 -08002159 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2160 vcl_worker_flush_mq_events (wrk);
Florin Coras2cba8532018-09-11 16:33:36 -07002161 }
2162 }
2163
Florin Corasd1cc38d2020-10-11 11:05:04 -07002164 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
Florin Corasb85de192022-01-18 20:51:08 -08002165 (svm_fifo_seg_t *) ds, &n_segments, max_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002166 if (n_read < 0)
2167 return VPPCOM_EAGAIN;
2168
2169 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
2170 {
Florin Coras62877022020-10-28 21:22:04 -07002171 if (is_ct)
2172 svm_fifo_unset_event (s->rx_fifo);
2173 svm_fifo_unset_event (rx_fifo);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002174 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
Florin Coras62877022020-10-28 21:22:04 -07002175 && svm_fifo_set_event (rx_fifo)
Florin Corasac422d62020-10-19 20:51:36 -07002176 && vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
Florin Corasd1cc38d2020-10-11 11:05:04 -07002177 {
2178 session_event_t *e;
2179 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2180 e->event_type = SESSION_IO_EVT_RX;
2181 e->session_index = s->session_index;
2182 }
2183 }
2184
2185 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07002186 return n_read;
2187}
2188
2189void
Florin Corasd68faf82020-09-25 15:18:13 -07002190vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002191{
2192 vcl_worker_t *wrk = vcl_worker_get_current ();
2193 vcl_session_t *s;
Florin Coras62877022020-10-28 21:22:04 -07002194 u8 is_ct;
Florin Coras2cba8532018-09-11 16:33:36 -07002195
2196 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07002197 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07002198 return;
2199
Florin Coras62877022020-10-28 21:22:04 -07002200 is_ct = vcl_session_is_ct (s);
2201 svm_fifo_dequeue_drop (is_ct ? s->ct_rx_fifo : s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002202
Florin Coras8cc93212021-09-10 11:37:12 -07002203 ASSERT (s->rx_bytes_pending >= n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002204 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07002205}
2206
Florin Coras7a2abce2020-04-05 19:25:44 +00002207always_inline u8
2208vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002209{
Florin Coras7a2abce2020-04-05 19:25:44 +00002210 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2211 if (is_dgram)
2212 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2213 else
2214 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002215}
2216
2217always_inline int
Dou Chao243a0432022-11-29 19:41:34 +08002218vppcom_session_write_inline (vcl_worker_t *wrk, vcl_session_t *s, void *buf,
Florin Coraseff5f7a2023-02-07 17:36:17 -08002219 size_t n, u8 is_flush, u8 is_dgram)
Florin Coras7a2abce2020-04-05 19:25:44 +00002220{
Florin Coras6d0106e2019-01-29 20:11:58 -08002221 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002222 session_evt_type_t et;
Florin Coras14ed6df2019-03-06 21:13:42 -08002223 svm_fifo_t *tx_fifo;
Florin Coras3c2fed52018-07-04 04:15:05 -07002224 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002225 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002226
Florin Coras0b0d28e2021-06-04 17:31:53 -07002227 /* Accept zero length writes but just return */
2228 if (PREDICT_FALSE (!n))
2229 return VPPCOM_OK;
2230
2231 if (PREDICT_FALSE (!buf))
2232 return VPPCOM_EFAULT;
Dave Wallace543852a2017-08-03 02:11:34 -04002233
Florin Coras6c3b2182020-10-19 18:36:48 -07002234 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04002235 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002236 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2237 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002238 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002239 }
2240
liuyacan55c952e2021-06-13 14:54:55 +08002241 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002242 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002243 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2244 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002245 vcl_session_state_str (s->session_state));
Florin Coras6d0106e2019-01-29 20:11:58 -08002246 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002247 }
2248
liuyacan55c952e2021-06-13 14:54:55 +08002249 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_WR_SHUTDOWN))
2250 {
2251 VDBG (1, "session %u [0x%llx]: is shutdown! state 0x%x (%s)",
2252 s->session_index, s->vpp_handle, s->session_state,
Florin Coras60687192021-11-29 21:00:47 -08002253 vcl_session_state_str (s->session_state));
liuyacan55c952e2021-06-13 14:54:55 +08002254 return VPPCOM_EPIPE;
2255 }
2256
Florin Coras0e88e852018-09-17 22:09:02 -07002257 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002258 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002259 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002260
Florin Coras653e43f2019-03-04 10:56:23 -08002261 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002262 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002263 {
Florin Coras54693d22018-07-17 10:46:29 -07002264 if (is_nonblocking)
2265 {
Florin Coras070453d2018-08-24 17:04:27 -07002266 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002267 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002268 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002269 {
Florin Coras2d379d82019-06-28 12:45:12 -07002270 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002271 if (vcl_session_is_closing (s))
2272 return vcl_session_closing_error (s);
Florin Coras0e88e852018-09-17 22:09:02 -07002273
Florin Coras5398dfb2021-01-25 20:31:27 -08002274 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2275 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002276 }
Dave Wallace543852a2017-08-03 02:11:34 -04002277 }
Dave Wallace543852a2017-08-03 02:11:34 -04002278
Florin Coras653e43f2019-03-04 10:56:23 -08002279 et = SESSION_IO_EVT_TX;
2280 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002281 et = SESSION_IO_EVT_TX_FLUSH;
2282
Florin Coras7a2abce2020-04-05 19:25:44 +00002283 if (is_dgram)
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002284 {
2285 et = vcl_session_dgram_tx_evt (s, et);
2286 n_write =
2287 app_send_dgram_raw_gso (tx_fifo, &s->transport, s->vpp_evt_q, buf, n,
2288 s->gso_size, et, 0 /* do_evt */, SVM_Q_WAIT);
2289 }
Florin Coras460dce62018-07-27 05:45:06 -07002290 else
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002291 {
2292 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
2293 0 /* do_evt */, SVM_Q_WAIT);
2294 }
Florin Coras653e43f2019-03-04 10:56:23 -08002295
Florin Coras14ed6df2019-03-06 21:13:42 -08002296 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002297 app_send_io_evt_to_vpp (
2298 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002299
Florin Coras56230092020-09-02 20:52:58 -07002300 /* The underlying fifo segment can run out of memory */
2301 if (PREDICT_FALSE (n_write < 0))
2302 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002303
Florin Coras6d0106e2019-01-29 20:11:58 -08002304 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2305 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002306
Florin Coras54693d22018-07-17 10:46:29 -07002307 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002308}
2309
Florin Coras42ceddb2018-12-12 10:56:01 -08002310int
2311vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2312{
Florin Coras7a2abce2020-04-05 19:25:44 +00002313 vcl_worker_t *wrk = vcl_worker_get_current ();
2314 vcl_session_t *s;
2315
2316 s = vcl_session_get_w_handle (wrk, session_handle);
2317 if (PREDICT_FALSE (!s))
2318 return VPPCOM_EBADFD;
2319
Florin Coraseff5f7a2023-02-07 17:36:17 -08002320 return vppcom_session_write_inline (wrk, s, buf, n, 0 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002321 s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002322}
2323
Florin Corasb0f662f2018-12-27 14:51:46 -08002324int
2325vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2326{
Florin Coras7a2abce2020-04-05 19:25:44 +00002327 vcl_worker_t *wrk = vcl_worker_get_current ();
2328 vcl_session_t *s;
2329
2330 s = vcl_session_get_w_handle (wrk, session_handle);
2331 if (PREDICT_FALSE (!s))
2332 return VPPCOM_EBADFD;
2333
Florin Coraseff5f7a2023-02-07 17:36:17 -08002334 return vppcom_session_write_inline (wrk, s, buf, n, 1 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002335 s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002336}
2337
Florin Corasc0737e92019-03-04 14:19:39 -08002338#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002339if (PREDICT_FALSE (!_s->rx_fifo)) \
2340 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002341if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2342 { \
2343 if (!vcl_session_is_ct (_s)) \
2344 { \
2345 svm_fifo_unset_event (_s->rx_fifo); \
2346 if (svm_fifo_is_empty (_s->rx_fifo)) \
2347 break; \
2348 } \
2349 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2350 { \
Florin Coras2f630182020-08-13 00:17:51 -07002351 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002352 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2353 break; \
2354 } \
2355 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002356
Florin Coras86f04502018-09-12 16:08:01 -07002357static void
2358vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2359 unsigned long n_bits, unsigned long *read_map,
2360 unsigned long *write_map,
2361 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002362{
2363 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002364 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002365 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002366 u32 sid;
2367
2368 switch (e->event_type)
2369 {
Florin Corasc0737e92019-03-04 14:19:39 -08002370 case SESSION_IO_EVT_RX:
2371 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002372 s = vcl_session_get (wrk, sid);
2373 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002374 break;
Florin Corasb242d312020-10-26 15:35:40 -07002375 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002376 if (sid < n_bits && read_map)
2377 {
David Johnsond9818dd2018-12-14 14:53:41 -05002378 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002379 *bits_set += 1;
2380 }
2381 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002382 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002383 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002384 s = vcl_session_get (wrk, sid);
2385 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002386 break;
2387 if (sid < n_bits && write_map)
2388 {
David Johnsond9818dd2018-12-14 14:53:41 -05002389 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002390 *bits_set += 1;
2391 }
2392 break;
Florin Coras86f04502018-09-12 16:08:01 -07002393 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002394 if (!e->postponed)
2395 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2396 else
2397 s = vcl_session_get (wrk, e->session_index);
2398 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002399 break;
Florin Corasb242d312020-10-26 15:35:40 -07002400 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002401 if (sid < n_bits && read_map)
2402 {
David Johnsond9818dd2018-12-14 14:53:41 -05002403 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002404 *bits_set += 1;
2405 }
2406 break;
2407 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002408 if (!e->postponed)
2409 {
2410 connected_msg = (session_connected_msg_t *) e->data;
2411 sid = vcl_session_connected_handler (wrk, connected_msg);
2412 }
2413 else
2414 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002415 if (sid == VCL_INVALID_SESSION_INDEX)
2416 break;
Florin Coras66c675e2023-03-09 16:43:02 -08002417 if (!(sid < n_bits && write_map))
2418 break;
2419 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2420 *bits_set += 1;
2421 s = vcl_session_get (wrk, sid);
2422 if (!s->tx_fifo)
2423 break;
2424 /* We didn't have a fifo when the event was added */
2425 svm_fifo_add_want_deq_ntf (
2426 (vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo),
2427 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras86f04502018-09-12 16:08:01 -07002428 break;
2429 case SESSION_CTRL_EVT_DISCONNECTED:
2430 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002431 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2432 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002433 break;
Florin Corasb242d312020-10-26 15:35:40 -07002434 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002435 if (sid < n_bits && except_map)
2436 {
David Johnsond9818dd2018-12-14 14:53:41 -05002437 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002438 *bits_set += 1;
2439 }
2440 break;
2441 case SESSION_CTRL_EVT_RESET:
2442 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2443 if (sid < n_bits && except_map)
2444 {
David Johnsond9818dd2018-12-14 14:53:41 -05002445 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002446 *bits_set += 1;
2447 }
2448 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002449 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2450 vcl_session_unlisten_reply_handler (wrk, e->data);
2451 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002452 case SESSION_CTRL_EVT_MIGRATED:
2453 vcl_session_migrated_handler (wrk, e->data);
2454 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002455 case SESSION_CTRL_EVT_CLEANUP:
2456 vcl_session_cleanup_handler (wrk, e->data);
2457 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002458 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2459 vcl_session_worker_update_reply_handler (wrk, e->data);
2460 break;
2461 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2462 vcl_session_req_worker_update_handler (wrk, e->data);
2463 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002464 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2465 vcl_session_app_add_segment_handler (wrk, e->data);
2466 break;
2467 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2468 vcl_session_app_del_segment_handler (wrk, e->data);
2469 break;
hanlina3a48962020-07-13 11:09:15 +08002470 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002471 vcl_worker_rpc_handler (wrk, e->data);
2472 break;
Florin Coras86f04502018-09-12 16:08:01 -07002473 default:
2474 clib_warning ("unhandled: %u", e->event_type);
2475 break;
2476 }
2477}
2478
2479static int
2480vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2481 unsigned long n_bits, unsigned long *read_map,
2482 unsigned long *write_map, unsigned long *except_map,
2483 double time_to_wait, u32 * bits_set)
2484{
Florin Coras99368312018-08-02 10:45:44 -07002485 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002486 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002487 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002488
Florin Coras54693d22018-07-17 10:46:29 -07002489 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002490 {
Florin Coras54693d22018-07-17 10:46:29 -07002491 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002492 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002493
Florin Coras54693d22018-07-17 10:46:29 -07002494 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002495 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002496 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002497 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002498 else
2499 {
2500 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002501 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002502 }
2503 }
Florin Corase003a1b2019-06-05 10:47:16 -07002504 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002505
Florin Coras134a9962018-08-28 11:32:04 -07002506 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002507 {
Florin Coras134a9962018-08-28 11:32:04 -07002508 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002509 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002510 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2511 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002512 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002513 }
Florin Coras134a9962018-08-28 11:32:04 -07002514 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002515 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002516 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002517}
2518
Florin Coras99368312018-08-02 10:45:44 -07002519static int
Florin Coras294afe22019-01-07 17:49:17 -08002520vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2521 vcl_si_set * read_map, vcl_si_set * write_map,
2522 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002523 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002524{
Florin Coras14ed6df2019-03-06 21:13:42 -08002525 double wait = 0, start = 0;
2526
2527 if (!*bits_set)
2528 {
2529 wait = time_to_wait;
2530 start = clib_time_now (&wrk->clib_time);
2531 }
2532
2533 do
2534 {
2535 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2536 write_map, except_map, wait, bits_set);
2537 if (*bits_set)
2538 return *bits_set;
2539 if (wait == -1)
2540 continue;
2541
2542 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2543 }
2544 while (wait > 0);
2545
2546 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002547}
2548
2549static int
Florin Coras294afe22019-01-07 17:49:17 -08002550vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2551 vcl_si_set * read_map, vcl_si_set * write_map,
2552 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002553 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002554{
2555 vcl_mq_evt_conn_t *mqc;
2556 int __clib_unused n_read;
2557 int n_mq_evts, i;
2558 u64 buf;
2559
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002560 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
2561 {
2562 vcl_api_retry_attach (wrk);
2563 return 0;
2564 }
2565
Florin Coras134a9962018-08-28 11:32:04 -07002566 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2567 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2568 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002569 for (i = 0; i < n_mq_evts; i++)
2570 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002571 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
2572 {
2573 vcl_api_handle_disconnect (wrk);
2574 continue;
2575 }
2576
Florin Coras134a9962018-08-28 11:32:04 -07002577 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002578 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002579 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002580 except_map, 0, bits_set);
2581 }
2582
2583 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2584}
2585
Dave Wallace543852a2017-08-03 02:11:34 -04002586int
Florin Coras294afe22019-01-07 17:49:17 -08002587vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2588 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002589{
Florin Coras54693d22018-07-17 10:46:29 -07002590 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002591 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002592 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002593 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002594
Dave Wallace7876d392017-10-19 03:53:57 -04002595 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002596 {
Florin Coras134a9962018-08-28 11:32:04 -07002597 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002598 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002599 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2600 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002601 }
Dave Wallace7876d392017-10-19 03:53:57 -04002602 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002603 {
Florin Coras134a9962018-08-28 11:32:04 -07002604 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002605 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002606 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2607 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002608 }
Dave Wallace7876d392017-10-19 03:53:57 -04002609 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002610 {
Florin Coras134a9962018-08-28 11:32:04 -07002611 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002612 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002613 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2614 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002615 }
2616
Florin Coras54693d22018-07-17 10:46:29 -07002617 if (!n_bits)
2618 return 0;
2619
2620 if (!write_map)
2621 goto check_rd;
2622
Florin Coras096a1d52021-01-27 15:33:51 -08002623 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2624 {
2625 if (!(s = vcl_session_get (wrk, sid)))
2626 {
2627 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2628 bits_set++;
2629 continue;
2630 }
Florin Coras54693d22018-07-17 10:46:29 -07002631
Florin Coras096a1d52021-01-27 15:33:51 -08002632 if (vcl_session_write_ready (s))
2633 {
2634 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2635 bits_set++;
2636 }
Florin Coras66c675e2023-03-09 16:43:02 -08002637 else if (s->tx_fifo)
Florin Coras096a1d52021-01-27 15:33:51 -08002638 {
2639 svm_fifo_t *txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2640 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF);
2641 }
2642 }
Florin Coras54693d22018-07-17 10:46:29 -07002643
2644check_rd:
2645 if (!read_map)
2646 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002647
Florin Coras096a1d52021-01-27 15:33:51 -08002648 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2649 {
2650 if (!(s = vcl_session_get (wrk, sid)))
2651 {
2652 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2653 bits_set++;
2654 continue;
2655 }
Florin Coras54693d22018-07-17 10:46:29 -07002656
Florin Coras096a1d52021-01-27 15:33:51 -08002657 if (vcl_session_read_ready (s))
2658 {
2659 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2660 bits_set++;
2661 }
2662 }
Florin Coras54693d22018-07-17 10:46:29 -07002663
2664check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002665
Florin Coras86f04502018-09-12 16:08:01 -07002666 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2667 {
2668 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2669 read_map, write_map, except_map, &bits_set);
2670 }
2671 vec_reset_length (wrk->unhandled_evts_vector);
2672
Florin Coras99368312018-08-02 10:45:44 -07002673 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002674 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002675 time_to_wait, &bits_set);
2676 else
Florin Coras134a9962018-08-28 11:32:04 -07002677 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002678 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002679
Dave Wallace543852a2017-08-03 02:11:34 -04002680 return (bits_set);
2681}
2682
Dave Wallacef7f809c2017-10-03 01:48:42 -04002683static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002684vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002685{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002686 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002687 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002688 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002689
Florin Corasaeb7c1c2023-03-10 10:22:21 -08002690 if (VPPCOM_DEBUG <= 3)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002691 return;
2692
Florin Coras6c3b2182020-10-19 18:36:48 -07002693 s = vcl_session_get_w_handle (wrk, vep_handle);
2694 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002695 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002696 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002697 goto done;
2698 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002699 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002700 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002701 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002702 goto done;
2703 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002704 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002705 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002706 "{\n"
2707 " is_vep = %u\n"
2708 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002709 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002710 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2711 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002712
Florin Coras7e5e62b2019-07-30 14:08:23 -07002713 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002714 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002715 s = vcl_session_get_w_handle (wrk, sh);
2716 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002717 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002718 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002719 goto done;
2720 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002721 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002722 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002723 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002724 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002725 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002726 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002727 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002728 goto done;
2729 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002730 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002731 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2732 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002733 sh, s->vep.vep_sh, vep_handle);
2734 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002735 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002736 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002737 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002738 " next_sh = 0x%x (%u)\n"
2739 " prev_sh = 0x%x (%u)\n"
2740 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002741 " ev.events = 0x%x\n"
2742 " ev.data.u64 = 0x%llx\n"
2743 " et_mask = 0x%x\n"
2744 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002745 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002746 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2747 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002748 }
2749 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002750
2751done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002752 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002753}
2754
2755int
2756vppcom_epoll_create (void)
2757{
Florin Coras134a9962018-08-28 11:32:04 -07002758 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002759 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002760
Florin Coras134a9962018-08-28 11:32:04 -07002761 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002762
Florin Coras6c3b2182020-10-19 18:36:48 -07002763 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002764 vep_session->vep.vep_sh = ~0;
2765 vep_session->vep.next_sh = ~0;
2766 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002767 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002768
Florin Corasa7a1a222018-12-30 17:11:31 -08002769 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2770 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002771
Florin Corasab2f6db2018-08-31 14:31:41 -07002772 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002773}
2774
Florin Corasb0116a12023-02-07 09:11:47 -08002775static void
2776vcl_epoll_ctl_add_unhandled_event (vcl_worker_t *wrk, vcl_session_t *s,
2777 u8 is_epollet, session_evt_type_t evt)
2778{
2779 if (!is_epollet)
2780 {
Florin Corasc2a14172023-02-28 21:13:50 -08002781 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
2782 vcl_epoll_lt_add (wrk, s);
Florin Corasb0116a12023-02-07 09:11:47 -08002783 return;
2784 }
2785
2786 session_event_t e = { 0 };
2787 e.session_index = s->session_index;
2788 e.event_type = evt;
2789 if (evt == SESSION_IO_EVT_RX)
2790 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
2791 vec_add1 (wrk->unhandled_evts_vector, e);
2792}
2793
Dave Wallacef7f809c2017-10-03 01:48:42 -04002794int
Florin Coras134a9962018-08-28 11:32:04 -07002795vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002796 struct epoll_event *event)
2797{
Florin Coras134a9962018-08-28 11:32:04 -07002798 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras87f76002021-06-28 19:13:29 -07002799 int rv = VPPCOM_OK, add_evt = 0;
Florin Coras7e12d942018-06-27 14:32:43 -07002800 vcl_session_t *vep_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002801 vcl_session_t *s;
2802 svm_fifo_t *txf;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002803
Florin Coras134a9962018-08-28 11:32:04 -07002804 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002805 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002806 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002807 return VPPCOM_EINVAL;
2808 }
2809
Florin Coras134a9962018-08-28 11:32:04 -07002810 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002811 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002812 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002813 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002814 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002815 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002816 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002817 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002818 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002819 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002820 }
2821
Florin Coras134a9962018-08-28 11:32:04 -07002822 ASSERT (vep_session->vep.vep_sh == ~0);
2823 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002824
Florin Coras17ec5772020-08-12 20:46:29 -07002825 s = vcl_session_get_w_handle (wrk, session_handle);
2826 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002827 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002828 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002829 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002830 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002831 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002832 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002833 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002834 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002835 }
2836
2837 switch (op)
2838 {
2839 case EPOLL_CTL_ADD:
2840 if (PREDICT_FALSE (!event))
2841 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002842 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002843 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002844 }
Florin Coras2645f682021-06-04 15:59:41 -07002845 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
2846 {
2847 VDBG (0, "EPOLL_CTL_ADD: %u already epolled!", s->session_index);
2848 rv = VPPCOM_EEXIST;
2849 goto done;
2850 }
Florin Coras134a9962018-08-28 11:32:04 -07002851 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002852 {
Florin Coras7e12d942018-06-27 14:32:43 -07002853 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002854 next_session = vcl_session_get_w_handle (wrk,
2855 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002856 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002857 {
Florin Coras5e062572019-03-14 19:07:51 -07002858 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002859 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002860 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002861 }
Florin Coras134a9962018-08-28 11:32:04 -07002862 ASSERT (next_session->vep.prev_sh == vep_handle);
2863 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002864 }
Florin Coras17ec5772020-08-12 20:46:29 -07002865 s->vep.next_sh = vep_session->vep.next_sh;
2866 s->vep.prev_sh = vep_handle;
2867 s->vep.vep_sh = vep_handle;
2868 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
Florin Corasfa3884f2021-06-22 20:04:46 -07002869 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras17ec5772020-08-12 20:46:29 -07002870 s->vep.ev = *event;
Florin Coras6c3b2182020-10-19 18:36:48 -07002871 s->flags &= ~VCL_SESSION_F_IS_VEP;
2872 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002873 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002874
Florin Coras17ec5772020-08-12 20:46:29 -07002875 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2876 if (txf && (event->events & EPOLLOUT))
2877 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002878
Florin Coras6e3c1f82020-01-15 01:30:46 +00002879 /* Generate EPOLLOUT if tx fifo not full */
Florin Coras17ec5772020-08-12 20:46:29 -07002880 if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002881 {
Florin Corasb0116a12023-02-07 09:11:47 -08002882 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2883 SESSION_IO_EVT_TX);
Florin Coras87f76002021-06-28 19:13:29 -07002884 add_evt = 1;
hanlin475c9d72019-12-26 11:44:28 +08002885 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002886 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002887 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002888 {
Florin Corasb0116a12023-02-07 09:11:47 -08002889 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2890 SESSION_IO_EVT_RX);
Florin Coras87f76002021-06-28 19:13:29 -07002891 add_evt = 1;
2892 }
2893 if (!add_evt && vcl_session_is_closing (s))
2894 {
2895 session_event_t e = { 0 };
2896 if (s->session_state == VCL_STATE_VPP_CLOSING)
2897 e.event_type = SESSION_CTRL_EVT_DISCONNECTED;
2898 else
2899 e.event_type = SESSION_CTRL_EVT_RESET;
2900 e.session_index = s->session_index;
2901 e.postponed = 1;
2902 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras6e3c1f82020-01-15 01:30:46 +00002903 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002904 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2905 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002906 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002907 break;
2908
2909 case EPOLL_CTL_MOD:
2910 if (PREDICT_FALSE (!event))
2911 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002912 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002913 rv = VPPCOM_EINVAL;
2914 goto done;
2915 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002916 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002917 {
Florin Coras5e062572019-03-14 19:07:51 -07002918 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002919 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002920 goto done;
2921 }
Florin Coras17ec5772020-08-12 20:46:29 -07002922 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002923 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002924 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002925 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002926 rv = VPPCOM_EINVAL;
2927 goto done;
2928 }
hanlin475c9d72019-12-26 11:44:28 +08002929
Florin Coras2645f682021-06-04 15:59:41 -07002930 /* Generate EPOLLOUT if session write ready nd event was not on */
2931 if ((event->events & EPOLLOUT) && !(s->vep.ev.events & EPOLLOUT) &&
2932 (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002933 {
Florin Corasb0116a12023-02-07 09:11:47 -08002934 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2935 SESSION_IO_EVT_TX);
hanlin475c9d72019-12-26 11:44:28 +08002936 }
Florin Coras2645f682021-06-04 15:59:41 -07002937 /* Generate EPOLLIN if session read ready and event was not on */
2938 if ((event->events & EPOLLIN) && !(s->vep.ev.events & EPOLLIN) &&
2939 (vcl_session_read_ready (s) > 0))
2940 {
Florin Corasb0116a12023-02-07 09:11:47 -08002941 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2942 SESSION_IO_EVT_RX);
Florin Coras2645f682021-06-04 15:59:41 -07002943 }
Florin Coras17ec5772020-08-12 20:46:29 -07002944 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2945 s->vep.ev = *event;
2946 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras8fb22fd2021-02-17 17:35:32 -08002947 if (txf)
2948 {
2949 if (event->events & EPOLLOUT)
2950 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2951 else
2952 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2953 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002954 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2955 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002956 break;
2957
2958 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07002959 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002960 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002961 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002962 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002963 goto done;
2964 }
Florin Coras17ec5772020-08-12 20:46:29 -07002965 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002966 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002967 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002968 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002969 rv = VPPCOM_EINVAL;
2970 goto done;
2971 }
2972
Florin Coras17ec5772020-08-12 20:46:29 -07002973 if (s->vep.prev_sh == vep_handle)
2974 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002975 else
2976 {
Florin Coras7e12d942018-06-27 14:32:43 -07002977 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002978 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002979 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002980 {
Florin Coras5e062572019-03-14 19:07:51 -07002981 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002982 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002983 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002984 }
Florin Coras134a9962018-08-28 11:32:04 -07002985 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002986 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002987 }
Florin Coras17ec5772020-08-12 20:46:29 -07002988 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002989 {
Florin Coras7e12d942018-06-27 14:32:43 -07002990 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002991 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002992 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002993 {
Florin Coras5e062572019-03-14 19:07:51 -07002994 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002995 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002996 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002997 }
Florin Coras134a9962018-08-28 11:32:04 -07002998 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002999 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003000 }
3001
Florin Corasfa3884f2021-06-22 20:04:46 -07003002 if (s->vep.lt_next != VCL_INVALID_SESSION_INDEX)
3003 vcl_epoll_lt_del (wrk, s);
3004
Florin Coras17ec5772020-08-12 20:46:29 -07003005 memset (&s->vep, 0, sizeof (s->vep));
3006 s->vep.next_sh = ~0;
3007 s->vep.prev_sh = ~0;
3008 s->vep.vep_sh = ~0;
Florin Corasfa3884f2021-06-22 20:04:46 -07003009 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras6c3b2182020-10-19 18:36:48 -07003010 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08003011
Florin Corasf1ddeeb2021-06-10 08:08:53 -07003012 if (vcl_session_is_open (s))
3013 {
3014 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
3015 if (txf)
3016 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
3017 }
Florin Coras1bcad5c2019-01-09 20:04:38 -08003018
Florin Coras5e062572019-03-14 19:07:51 -07003019 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08003020 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003021 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003022 break;
3023
3024 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08003025 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003026 rv = VPPCOM_EINVAL;
3027 }
3028
Florin Coras134a9962018-08-28 11:32:04 -07003029 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003030
3031done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04003032 return rv;
3033}
3034
Florin Coras86f04502018-09-12 16:08:01 -07003035static inline void
3036vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
3037 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07003038{
3039 session_disconnected_msg_t *disconnected_msg;
3040 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07003041 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08003042 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07003043 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07003044 u8 add_event = 0;
3045
3046 switch (e->event_type)
3047 {
Florin Coras653e43f2019-03-04 10:56:23 -08003048 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08003049 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003050 s = vcl_session_get (wrk, sid);
3051 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003052 break;
Florin Corasb242d312020-10-26 15:35:40 -07003053 vcl_fifo_rx_evt_valid_or_break (s);
3054 session_events = s->vep.ev.events;
Florin Coras99e41452021-08-31 13:29:41 -07003055 if (!(EPOLLIN & s->vep.ev.events) ||
3056 (s->flags & VCL_SESSION_F_HAS_RX_EVT) ||
3057 (s->vep.lt_next != VCL_INVALID_SESSION_INDEX))
Florin Coras86f04502018-09-12 16:08:01 -07003058 break;
3059 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003060 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003061 session_evt_data = s->vep.ev.data.u64;
3062 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07003063 break;
Florin Coras653e43f2019-03-04 10:56:23 -08003064 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08003065 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003066 s = vcl_session_get (wrk, sid);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003067 if (!s || !vcl_session_is_open (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003068 break;
Florin Corasb242d312020-10-26 15:35:40 -07003069 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003070 if (!(EPOLLOUT & session_events))
3071 break;
3072 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003073 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003074 session_evt_data = s->vep.ev.data.u64;
3075 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ?
3076 s->ct_tx_fifo : s->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07003077 break;
Florin Coras86f04502018-09-12 16:08:01 -07003078 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07003079 if (!e->postponed)
3080 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
3081 else
3082 s = vcl_session_get (wrk, e->session_index);
3083 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08003084 break;
Florin Corasb242d312020-10-26 15:35:40 -07003085 session_events = s->vep.ev.events;
3086 sid = s->session_index;
liuyacancba87102021-09-10 15:14:05 +08003087 if (!(EPOLLIN & session_events) ||
3088 (s->vep.lt_next != VCL_INVALID_SESSION_INDEX))
Florin Coras86f04502018-09-12 16:08:01 -07003089 break;
Florin Coras86f04502018-09-12 16:08:01 -07003090 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003091 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003092 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003093 break;
3094 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07003095 if (!e->postponed)
3096 {
3097 connected_msg = (session_connected_msg_t *) e->data;
3098 sid = vcl_session_connected_handler (wrk, connected_msg);
3099 }
3100 else
3101 sid = e->session_index;
3102 s = vcl_session_get (wrk, sid);
3103 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003104 break;
Florin Corasb242d312020-10-26 15:35:40 -07003105 session_events = s->vep.ev.events;
3106 /* Generate EPOLLOUT because there's no connected event */
Florin Coras436c7ba2023-03-08 14:14:38 -08003107 if (!(EPOLLOUT & session_events) || !s->tx_fifo)
Florin Coras72f77822019-01-22 19:05:52 -08003108 break;
Florin Coras1d84abc2023-01-13 09:44:14 -08003109 /* We didn't have a fifo when the event was added */
3110 svm_fifo_add_want_deq_ntf (
3111 (vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo),
3112 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras72f77822019-01-22 19:05:52 -08003113 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003114 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003115 session_evt_data = s->vep.ev.data.u64;
3116 if (s->session_state == VCL_STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07003117 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07003118 break;
3119 case SESSION_CTRL_EVT_DISCONNECTED:
Florin Coras87f76002021-06-28 19:13:29 -07003120 if (!e->postponed)
3121 {
3122 disconnected_msg = (session_disconnected_msg_t *) e->data;
3123 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
3124 }
3125 else
3126 {
3127 s = vcl_session_get (wrk, e->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003128 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
Florin Coras87f76002021-06-28 19:13:29 -07003129 }
3130 if (vcl_session_is_closed (s) ||
3131 !(s->flags & VCL_SESSION_F_IS_VEP_SESSION))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003132 {
Florin Coras74254b52021-12-08 11:03:08 -08003133 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003134 vcl_session_free (wrk, s);
3135 break;
3136 }
Florin Corasb242d312020-10-26 15:35:40 -07003137 sid = s->session_index;
3138 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003139 add_event = 1;
liuyacanffd9ddb2021-11-01 10:22:09 +08003140 if (EPOLLRDHUP & session_events)
3141 {
3142 /* If app can distinguish between RDHUP and HUP,
3143 * we make finer control */
3144 events[*num_ev].events = EPOLLRDHUP;
3145 if (s->flags & VCL_SESSION_F_WR_SHUTDOWN)
3146 {
3147 events[*num_ev].events |= EPOLLHUP;
3148 }
3149 }
3150 else
3151 {
3152 events[*num_ev].events = EPOLLHUP;
3153 }
Florin Corasb242d312020-10-26 15:35:40 -07003154 session_evt_data = s->vep.ev.data.u64;
liuyacanffd9ddb2021-11-01 10:22:09 +08003155
Florin Coras86f04502018-09-12 16:08:01 -07003156 break;
Florin Coras01ee7a72023-03-01 00:49:25 -08003157 case SESSION_CTRL_EVT_BOUND:
3158 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
3159 break;
Florin Coras86f04502018-09-12 16:08:01 -07003160 case SESSION_CTRL_EVT_RESET:
Florin Coras87f76002021-06-28 19:13:29 -07003161 if (!e->postponed)
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003162 {
3163 sid =
3164 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
3165 s = vcl_session_get (wrk, sid);
3166 }
Florin Coras87f76002021-06-28 19:13:29 -07003167 else
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003168 {
3169 sid = e->session_index;
3170 s = vcl_session_get (wrk, sid);
3171 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
3172 }
Florin Coras87f76002021-06-28 19:13:29 -07003173 if (vcl_session_is_closed (s) ||
3174 !(s->flags & VCL_SESSION_F_IS_VEP_SESSION))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003175 {
Florin Coras74254b52021-12-08 11:03:08 -08003176 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003177 vcl_session_free (wrk, s);
3178 break;
3179 }
Florin Corasb242d312020-10-26 15:35:40 -07003180 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003181 add_event = 1;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003182 events[*num_ev].events = EPOLLERR | EPOLLHUP;
3183 if ((EPOLLRDHUP & session_events) &&
3184 (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3185 {
Yacan Liuab157702022-09-26 16:41:32 +08003186 events[*num_ev].events |= EPOLLRDHUP;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003187 }
3188 if ((EPOLLIN & session_events) && (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3189 {
3190 events[*num_ev].events |= EPOLLIN;
3191 }
Florin Corasb242d312020-10-26 15:35:40 -07003192 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003193 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08003194 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
3195 vcl_session_unlisten_reply_handler (wrk, e->data);
3196 break;
Florin Coras68b7e582020-01-21 18:33:23 -08003197 case SESSION_CTRL_EVT_MIGRATED:
3198 vcl_session_migrated_handler (wrk, e->data);
3199 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07003200 case SESSION_CTRL_EVT_CLEANUP:
3201 vcl_session_cleanup_handler (wrk, e->data);
3202 break;
Florin Coras30e79c22019-01-02 19:31:22 -08003203 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
3204 vcl_session_req_worker_update_handler (wrk, e->data);
3205 break;
3206 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
3207 vcl_session_worker_update_reply_handler (wrk, e->data);
3208 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07003209 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
3210 vcl_session_app_add_segment_handler (wrk, e->data);
3211 break;
3212 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
3213 vcl_session_app_del_segment_handler (wrk, e->data);
3214 break;
hanlina3a48962020-07-13 11:09:15 +08003215 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07003216 vcl_worker_rpc_handler (wrk, e->data);
3217 break;
Florin Coras86f04502018-09-12 16:08:01 -07003218 default:
3219 VDBG (0, "unhandled: %u", e->event_type);
3220 break;
3221 }
3222
3223 if (add_event)
3224 {
3225 events[*num_ev].data.u64 = session_evt_data;
3226 if (EPOLLONESHOT & session_events)
3227 {
Florin Corasb242d312020-10-26 15:35:40 -07003228 s = vcl_session_get (wrk, sid);
3229 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003230 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003231 else if (!(EPOLLET & session_events))
Florin Corasfe286f72021-06-04 10:07:55 -07003232 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003233 s = vcl_session_get (wrk, sid);
3234 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
3235 vcl_epoll_lt_add (wrk, s);
Florin Corasfe286f72021-06-04 10:07:55 -07003236 }
Florin Coras86f04502018-09-12 16:08:01 -07003237 *num_ev += 1;
3238 }
3239}
3240
3241static int
3242vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
3243 struct epoll_event *events, u32 maxevents,
3244 double wait_for_time, u32 * num_ev)
3245{
Florin Coras99368312018-08-02 10:45:44 -07003246 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07003247 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07003248 int i;
3249
Florin Coras539663c2018-09-28 14:59:37 -07003250 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
3251 goto handle_dequeued;
3252
Florin Coras54693d22018-07-17 10:46:29 -07003253 if (svm_msg_q_is_empty (mq))
3254 {
3255 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08003256 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003257 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08003258 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07003259 else
3260 {
Florin Coras60f1fc12018-08-16 14:57:31 -07003261 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08003262 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003263 }
3264 }
Florin Corase003a1b2019-06-05 10:47:16 -07003265 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08003266 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07003267
Florin Coras539663c2018-09-28 14:59:37 -07003268handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07003269 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07003270 {
Florin Coras134a9962018-08-28 11:32:04 -07003271 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07003272 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08003273 if (*num_ev < maxevents)
3274 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
3275 else
3276 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07003277 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07003278 }
Florin Corasaa27eb92018-10-13 12:20:01 -07003279 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08003280 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07003281 return *num_ev;
3282}
3283
Florin Coras99368312018-08-02 10:45:44 -07003284static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003285vppcom_epoll_wait_condvar (vcl_worker_t *wrk, struct epoll_event *events,
3286 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003287{
Florin Corasccdb8b82021-04-28 13:01:06 -07003288 double end = -1;
Florin Coras14ed6df2019-03-06 21:13:42 -08003289
3290 if (!n_evts)
3291 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003292 if (timeout_ms > 0)
3293 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras14ed6df2019-03-06 21:13:42 -08003294 }
3295
3296 do
3297 {
3298 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
Florin Corasccdb8b82021-04-28 13:01:06 -07003299 timeout_ms, &n_evts);
3300 if (n_evts || !timeout_ms)
Florin Coras14ed6df2019-03-06 21:13:42 -08003301 return n_evts;
Florin Coras14ed6df2019-03-06 21:13:42 -08003302 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003303 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Coras14ed6df2019-03-06 21:13:42 -08003304
3305 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003306}
3307
3308static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003309vppcom_epoll_wait_eventfd (vcl_worker_t *wrk, struct epoll_event *events,
3310 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003311{
Florin Coras99368312018-08-02 10:45:44 -07003312 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08003313 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07003314 int n_mq_evts, i;
Florin Corasccdb8b82021-04-28 13:01:06 -07003315 double end = -1;
Florin Coras99368312018-08-02 10:45:44 -07003316 u64 buf;
3317
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003318 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
3319 {
3320 vcl_api_retry_attach (wrk);
3321 return n_evts;
3322 }
3323
Florin Coras134a9962018-08-28 11:32:04 -07003324 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08003325 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07003326 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003327 if (timeout_ms > 0)
3328 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras99368312018-08-02 10:45:44 -07003329 }
3330
Florin Corasb13ba132021-01-27 16:05:24 -08003331 do
3332 {
3333 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
Florin Corasccdb8b82021-04-28 13:01:06 -07003334 vec_len (wrk->mq_events), timeout_ms);
Florin Corasb13ba132021-01-27 16:05:24 -08003335 if (n_mq_evts < 0)
3336 {
3337 VDBG (0, "epoll_wait error %u", errno);
3338 return n_evts;
3339 }
3340
3341 for (i = 0; i < n_mq_evts; i++)
3342 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003343 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
3344 {
3345 /* api socket was closed */
3346 vcl_api_handle_disconnect (wrk);
3347 continue;
3348 }
3349
Florin Corasb13ba132021-01-27 16:05:24 -08003350 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3351 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3352 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
3353 &n_evts);
3354 }
3355
Florin Corasccdb8b82021-04-28 13:01:06 -07003356 if (n_evts || !timeout_ms)
Florin Corasb13ba132021-01-27 16:05:24 -08003357 return n_evts;
Florin Corasb13ba132021-01-27 16:05:24 -08003358 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003359 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Corasb13ba132021-01-27 16:05:24 -08003360
3361 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003362}
3363
Florin Corasfe286f72021-06-04 10:07:55 -07003364static void
Florin Corasfe286f72021-06-04 10:07:55 -07003365vcl_epoll_wait_handle_lt (vcl_worker_t *wrk, struct epoll_event *events,
3366 int maxevents, u32 *n_evts)
3367{
Florin Coras734268f2021-06-30 07:54:29 -07003368 u32 add_event = 0, next;
Florin Corasfe286f72021-06-04 10:07:55 -07003369 vcl_session_t *s;
3370 u64 evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003371 int rv;
Florin Corasfe286f72021-06-04 10:07:55 -07003372
Florin Corasfa3884f2021-06-22 20:04:46 -07003373 ASSERT (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX);
Florin Corasfe286f72021-06-04 10:07:55 -07003374 if (*n_evts >= maxevents)
Florin Corasfa3884f2021-06-22 20:04:46 -07003375 return;
Florin Corasfe286f72021-06-04 10:07:55 -07003376
Florin Corasfa3884f2021-06-22 20:04:46 -07003377 next = wrk->ep_lt_current;
3378 do
Florin Corasfe286f72021-06-04 10:07:55 -07003379 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003380 s = vcl_session_get (wrk, next);
3381 next = s->vep.lt_next;
3382
3383 if ((s->vep.ev.events & EPOLLIN) && (rv = vcl_session_read_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003384 {
3385 add_event = 1;
Florin Corasfa3884f2021-06-22 20:04:46 -07003386 events[*n_evts].events |= rv > 0 ? EPOLLIN : EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003387 evt_data = s->vep.ev.data.u64;
3388 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003389 if ((s->vep.ev.events & EPOLLOUT) && (rv = vcl_session_write_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003390 {
3391 add_event = 1;
Florin Corasfa3884f2021-06-22 20:04:46 -07003392 events[*n_evts].events |= rv > 0 ? EPOLLOUT : EPOLLHUP | EPOLLRDHUP;
3393 evt_data = s->vep.ev.data.u64;
3394 }
3395 if (!add_event && s->session_state > VCL_STATE_READY)
3396 {
3397 add_event = 1;
3398 events[*n_evts].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003399 evt_data = s->vep.ev.data.u64;
3400 }
3401 if (add_event)
3402 {
3403 events[*n_evts].data.u64 = evt_data;
3404 *n_evts += 1;
3405 add_event = 0;
Florin Corasfa3884f2021-06-22 20:04:46 -07003406 if (EPOLLONESHOT & s->vep.ev.events)
3407 s->vep.ev.events = 0;
Florin Corasfe286f72021-06-04 10:07:55 -07003408 if (*n_evts == maxevents)
3409 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003410 wrk->ep_lt_current = next;
Florin Corasfe286f72021-06-04 10:07:55 -07003411 break;
3412 }
3413 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003414 else
3415 {
3416 vcl_epoll_lt_del (wrk, s);
3417 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
3418 break;
3419 }
Florin Corasfe286f72021-06-04 10:07:55 -07003420 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003421 while (next != wrk->ep_lt_current);
Florin Corasfe286f72021-06-04 10:07:55 -07003422}
3423
Dave Wallacef7f809c2017-10-03 01:48:42 -04003424int
Florin Coras134a9962018-08-28 11:32:04 -07003425vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003426 int maxevents, double wait_for_time)
3427{
Florin Coras134a9962018-08-28 11:32:04 -07003428 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003429 vcl_session_t *vep_session;
Florin Corasfa3884f2021-06-22 20:04:46 -07003430 u32 n_evts = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003431 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003432
3433 if (PREDICT_FALSE (maxevents <= 0))
3434 {
Florin Coras5e062572019-03-14 19:07:51 -07003435 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003436 return VPPCOM_EINVAL;
3437 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003438
Florin Coras134a9962018-08-28 11:32:04 -07003439 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003440 if (!vep_session)
3441 return VPPCOM_EBADFD;
3442
Florin Coras6c3b2182020-10-19 18:36:48 -07003443 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003444 {
Florin Coras5e062572019-03-14 19:07:51 -07003445 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003446 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003447 }
Florin Coras54693d22018-07-17 10:46:29 -07003448
Florin Coras86f04502018-09-12 16:08:01 -07003449 if (vec_len (wrk->unhandled_evts_vector))
3450 {
3451 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3452 {
3453 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3454 events, &n_evts);
3455 if (n_evts == maxevents)
3456 {
Florin Corase003a1b2019-06-05 10:47:16 -07003457 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3458 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003459 }
3460 }
Florin Corase003a1b2019-06-05 10:47:16 -07003461 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003462 }
liuyacancba87102021-09-10 15:14:05 +08003463
3464 if (PREDICT_FALSE (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX))
3465 vcl_epoll_wait_handle_lt (wrk, events, maxevents, &n_evts);
3466
wanghanlin8919fec2021-03-18 20:00:41 +08003467 /* Request to only drain unhandled */
3468 if ((int) wait_for_time == -2)
3469 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003470
Florin Coras86f04502018-09-12 16:08:01 -07003471
Florin Corasfe286f72021-06-04 10:07:55 -07003472 if (vcm->cfg.use_mq_eventfd)
3473 n_evts = vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3474 wait_for_time);
3475 else
3476 n_evts = vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3477 wait_for_time);
3478
Florin Corasfe286f72021-06-04 10:07:55 -07003479 return n_evts;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003480}
3481
Dave Wallace35830af2017-10-09 01:43:42 -04003482int
Florin Coras134a9962018-08-28 11:32:04 -07003483vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003484 void *buffer, uint32_t * buflen)
3485{
Florin Coras134a9962018-08-28 11:32:04 -07003486 vcl_worker_t *wrk = vcl_worker_get_current ();
liuyacan55c952e2021-06-13 14:54:55 +08003487 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07003488 vppcom_endpt_t *ep = buffer;
Florin Coras04ae8272021-04-12 19:55:37 -07003489 transport_endpt_attr_t tea;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003490 vcl_session_t *session;
3491 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003492
Florin Coras134a9962018-08-28 11:32:04 -07003493 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003494 if (!session)
3495 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003496
Dave Wallace35830af2017-10-09 01:43:42 -04003497 switch (op)
3498 {
3499 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003500 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003501 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3502 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003503 break;
3504
Dave Wallace227867f2017-11-13 21:21:53 -05003505 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003506 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003507 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3508 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003509 break;
3510
3511 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003512 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003513 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003514 *flags =
3515 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003516 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003517 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003518 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003519 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3520 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003521 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003522 }
3523 else
3524 rv = VPPCOM_EINVAL;
3525 break;
3526
3527 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003528 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003529 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003530 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003531 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003532 else
Florin Corasac422d62020-10-19 20:51:36 -07003533 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003534
Florin Coras5e062572019-03-14 19:07:51 -07003535 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3536 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003537 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003538 }
3539 else
3540 rv = VPPCOM_EINVAL;
3541 break;
3542
3543 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003544 if (PREDICT_TRUE (buffer && buflen &&
3545 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003546 {
Florin Coras7e12d942018-06-27 14:32:43 -07003547 ep->is_ip4 = session->transport.is_ip4;
3548 ep->port = session->transport.rmt_port;
3549 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003550 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3551 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003552 else
Dave Barach178cf492018-11-13 16:34:13 -05003553 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3554 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003555 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003556 VDBG (1,
3557 "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3558 "addr = %U, port %u",
3559 session_handle, ep->is_ip4, vcl_format_ip46_address,
3560 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003561 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3562 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003563 }
3564 else
3565 rv = VPPCOM_EINVAL;
3566 break;
3567
3568 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003569 if (PREDICT_TRUE (buffer && buflen &&
3570 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003571 {
Florin Coras7e12d942018-06-27 14:32:43 -07003572 ep->is_ip4 = session->transport.is_ip4;
3573 ep->port = session->transport.lcl_port;
3574 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003575 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3576 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003577 else
Dave Barach178cf492018-11-13 16:34:13 -05003578 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3579 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003580 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003581 VDBG (1,
3582 "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3583 " port %d",
3584 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003585 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003586 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3587 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003588 }
3589 else
3590 rv = VPPCOM_EINVAL;
3591 break;
Stevenb5a11602017-10-11 09:59:30 -07003592
Florin Corasef7cbf62019-10-17 09:56:27 -07003593 case VPPCOM_ATTR_SET_LCL_ADDR:
3594 if (PREDICT_TRUE (buffer && buflen &&
3595 (*buflen >= sizeof (*ep)) && ep->ip))
3596 {
3597 session->transport.is_ip4 = ep->is_ip4;
3598 session->transport.lcl_port = ep->port;
3599 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3600 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003601 VDBG (1,
3602 "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3603 " port %d",
3604 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Corasef7cbf62019-10-17 09:56:27 -07003605 &session->transport.lcl_ip,
3606 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3607 clib_net_to_host_u16 (ep->port));
3608 }
3609 else
3610 rv = VPPCOM_EINVAL;
3611 break;
3612
Dave Wallace048b1d62018-01-03 22:24:41 -05003613 case VPPCOM_ATTR_GET_LIBC_EPFD:
3614 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003615 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003616 break;
3617
3618 case VPPCOM_ATTR_SET_LIBC_EPFD:
3619 if (PREDICT_TRUE (buffer && buflen &&
3620 (*buflen == sizeof (session->libc_epfd))))
3621 {
3622 session->libc_epfd = *(int *) buffer;
3623 *buflen = sizeof (session->libc_epfd);
3624
Florin Coras5e062572019-03-14 19:07:51 -07003625 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3626 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003627 }
3628 else
3629 rv = VPPCOM_EINVAL;
3630 break;
3631
3632 case VPPCOM_ATTR_GET_PROTOCOL:
3633 if (buffer && buflen && (*buflen >= sizeof (int)))
3634 {
Florin Coras7e12d942018-06-27 14:32:43 -07003635 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003636 *buflen = sizeof (int);
3637
Florin Coras5e062572019-03-14 19:07:51 -07003638 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3639 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003640 }
3641 else
3642 rv = VPPCOM_EINVAL;
3643 break;
3644
3645 case VPPCOM_ATTR_GET_LISTEN:
3646 if (buffer && buflen && (*buflen >= sizeof (int)))
3647 {
Florin Corasac422d62020-10-19 20:51:36 -07003648 *(int *) buffer = vcl_session_has_attr (session,
3649 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003650 *buflen = sizeof (int);
3651
Florin Coras5e062572019-03-14 19:07:51 -07003652 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3653 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003654 }
3655 else
3656 rv = VPPCOM_EINVAL;
3657 break;
3658
3659 case VPPCOM_ATTR_GET_ERROR:
3660 if (buffer && buflen && (*buflen >= sizeof (int)))
3661 {
3662 *(int *) buffer = 0;
3663 *buflen = sizeof (int);
3664
Florin Coras5e062572019-03-14 19:07:51 -07003665 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3666 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003667 }
3668 else
3669 rv = VPPCOM_EINVAL;
3670 break;
3671
3672 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3673 if (buffer && buflen && (*buflen >= sizeof (u32)))
3674 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003675
3676 /* VPP-TBD */
3677 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003678 session->tx_fifo ?
3679 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003680 vcm->cfg.tx_fifo_size);
3681 *buflen = sizeof (u32);
3682
Florin Coras5e062572019-03-14 19:07:51 -07003683 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3684 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3685 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003686 }
3687 else
3688 rv = VPPCOM_EINVAL;
3689 break;
3690
Filip Tehlar2f09bfc2021-11-15 10:26:56 +00003691 case VPPCOM_ATTR_SET_DSCP:
3692 if (buffer && buflen && (*buflen >= sizeof (u8)))
3693 {
3694 session->dscp = *(u8 *) buffer;
3695
3696 VDBG (2, "VPPCOM_ATTR_SET_DSCP: %u (0x%x), buflen %d,",
3697 *(u8 *) buffer, *(u8 *) buffer, *buflen);
3698 }
3699 else
3700 rv = VPPCOM_EINVAL;
3701 break;
3702
Dave Wallace048b1d62018-01-03 22:24:41 -05003703 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3704 if (buffer && buflen && (*buflen == sizeof (u32)))
3705 {
3706 /* VPP-TBD */
3707 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003708 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3709 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3710 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003711 }
3712 else
3713 rv = VPPCOM_EINVAL;
3714 break;
3715
3716 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3717 if (buffer && buflen && (*buflen >= sizeof (u32)))
3718 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003719
3720 /* VPP-TBD */
3721 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003722 session->rx_fifo ?
3723 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003724 vcm->cfg.rx_fifo_size);
3725 *buflen = sizeof (u32);
3726
Florin Coras5e062572019-03-14 19:07:51 -07003727 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3728 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003729 }
3730 else
3731 rv = VPPCOM_EINVAL;
3732 break;
3733
3734 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3735 if (buffer && buflen && (*buflen == sizeof (u32)))
3736 {
3737 /* VPP-TBD */
3738 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003739 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3740 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3741 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003742 }
3743 else
3744 rv = VPPCOM_EINVAL;
3745 break;
3746
3747 case VPPCOM_ATTR_GET_REUSEADDR:
3748 if (buffer && buflen && (*buflen >= sizeof (int)))
3749 {
3750 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003751 *(int *) buffer = vcl_session_has_attr (session,
3752 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003753 *buflen = sizeof (int);
3754
Florin Coras5e062572019-03-14 19:07:51 -07003755 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3756 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003757 }
3758 else
3759 rv = VPPCOM_EINVAL;
3760 break;
3761
Stevenb5a11602017-10-11 09:59:30 -07003762 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003763 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003764 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003765 {
3766 /* VPP-TBD */
3767 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003768 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003769 else
Florin Corasac422d62020-10-19 20:51:36 -07003770 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003771
Florin Coras5e062572019-03-14 19:07:51 -07003772 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003773 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003774 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003775 }
3776 else
3777 rv = VPPCOM_EINVAL;
3778 break;
3779
3780 case VPPCOM_ATTR_GET_REUSEPORT:
3781 if (buffer && buflen && (*buflen >= sizeof (int)))
3782 {
3783 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003784 *(int *) buffer = vcl_session_has_attr (session,
3785 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003786 *buflen = sizeof (int);
3787
Florin Coras5e062572019-03-14 19:07:51 -07003788 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3789 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003790 }
3791 else
3792 rv = VPPCOM_EINVAL;
3793 break;
3794
3795 case VPPCOM_ATTR_SET_REUSEPORT:
3796 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003797 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003798 {
3799 /* VPP-TBD */
3800 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003801 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003802 else
Florin Corasac422d62020-10-19 20:51:36 -07003803 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003804
Florin Coras5e062572019-03-14 19:07:51 -07003805 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003806 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003807 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003808 }
3809 else
3810 rv = VPPCOM_EINVAL;
3811 break;
3812
3813 case VPPCOM_ATTR_GET_BROADCAST:
3814 if (buffer && buflen && (*buflen >= sizeof (int)))
3815 {
3816 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003817 *(int *) buffer = vcl_session_has_attr (session,
3818 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003819 *buflen = sizeof (int);
3820
Florin Coras5e062572019-03-14 19:07:51 -07003821 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3822 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003823 }
3824 else
3825 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003826 break;
3827
3828 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003829 if (buffer && buflen && (*buflen == sizeof (int)))
3830 {
3831 /* VPP-TBD */
3832 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003833 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003834 else
Florin Corasac422d62020-10-19 20:51:36 -07003835 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003836
Florin Coras5e062572019-03-14 19:07:51 -07003837 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003838 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003839 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003840 }
3841 else
3842 rv = VPPCOM_EINVAL;
3843 break;
3844
3845 case VPPCOM_ATTR_GET_V6ONLY:
3846 if (buffer && buflen && (*buflen >= sizeof (int)))
3847 {
3848 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003849 *(int *) buffer = vcl_session_has_attr (session,
3850 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003851 *buflen = sizeof (int);
3852
Florin Coras5e062572019-03-14 19:07:51 -07003853 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3854 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003855 }
3856 else
3857 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003858 break;
3859
3860 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003861 if (buffer && buflen && (*buflen == sizeof (int)))
3862 {
3863 /* VPP-TBD */
3864 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003865 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003866 else
Florin Corasac422d62020-10-19 20:51:36 -07003867 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003868
Florin Coras5e062572019-03-14 19:07:51 -07003869 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003870 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003871 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003872 }
3873 else
3874 rv = VPPCOM_EINVAL;
3875 break;
3876
3877 case VPPCOM_ATTR_GET_KEEPALIVE:
3878 if (buffer && buflen && (*buflen >= sizeof (int)))
3879 {
3880 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003881 *(int *) buffer = vcl_session_has_attr (session,
3882 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003883 *buflen = sizeof (int);
3884
Florin Coras5e062572019-03-14 19:07:51 -07003885 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3886 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003887 }
3888 else
3889 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003890 break;
Stevenbccd3392017-10-12 20:42:21 -07003891
3892 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003893 if (buffer && buflen && (*buflen == sizeof (int)))
3894 {
3895 /* VPP-TBD */
3896 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003897 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003898 else
Florin Corasac422d62020-10-19 20:51:36 -07003899 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003900
Florin Coras5e062572019-03-14 19:07:51 -07003901 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003902 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07003903 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003904 }
3905 else
3906 rv = VPPCOM_EINVAL;
3907 break;
3908
3909 case VPPCOM_ATTR_GET_TCP_NODELAY:
3910 if (buffer && buflen && (*buflen >= sizeof (int)))
3911 {
3912 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003913 *(int *) buffer = vcl_session_has_attr (session,
3914 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003915 *buflen = sizeof (int);
3916
Florin Coras5e062572019-03-14 19:07:51 -07003917 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3918 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003919 }
3920 else
3921 rv = VPPCOM_EINVAL;
3922 break;
3923
3924 case VPPCOM_ATTR_SET_TCP_NODELAY:
3925 if (buffer && buflen && (*buflen == sizeof (int)))
3926 {
3927 /* VPP-TBD */
3928 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003929 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003930 else
Florin Corasac422d62020-10-19 20:51:36 -07003931 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003932
Florin Coras5e062572019-03-14 19:07:51 -07003933 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003934 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07003935 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003936 }
3937 else
3938 rv = VPPCOM_EINVAL;
3939 break;
3940
3941 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3942 if (buffer && buflen && (*buflen >= sizeof (int)))
3943 {
3944 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003945 *(int *) buffer = vcl_session_has_attr (session,
3946 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003947 *buflen = sizeof (int);
3948
Florin Coras5e062572019-03-14 19:07:51 -07003949 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3950 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003951 }
3952 else
3953 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003954 break;
3955
3956 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003957 if (buffer && buflen && (*buflen == sizeof (int)))
3958 {
3959 /* VPP-TBD */
3960 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003961 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003962 else
Florin Corasac422d62020-10-19 20:51:36 -07003963 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003964
Florin Coras5e062572019-03-14 19:07:51 -07003965 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003966 vcl_session_has_attr (session,
3967 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003968 }
3969 else
3970 rv = VPPCOM_EINVAL;
3971 break;
3972
3973 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3974 if (buffer && buflen && (*buflen >= sizeof (int)))
3975 {
3976 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003977 *(int *) buffer = vcl_session_has_attr (session,
3978 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003979 *buflen = sizeof (int);
3980
Florin Coras5e062572019-03-14 19:07:51 -07003981 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3982 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003983 }
3984 else
3985 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003986 break;
3987
3988 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003989 if (buffer && buflen && (*buflen == sizeof (int)))
3990 {
3991 /* VPP-TBD */
3992 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003993 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003994 else
Florin Corasac422d62020-10-19 20:51:36 -07003995 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003996
Florin Coras5e062572019-03-14 19:07:51 -07003997 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003998 vcl_session_has_attr (session,
3999 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004000 }
4001 else
4002 rv = VPPCOM_EINVAL;
4003 break;
4004
4005 case VPPCOM_ATTR_GET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004006 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004007 {
Florin Coras04ae8272021-04-12 19:55:37 -07004008 rv = VPPCOM_EINVAL;
4009 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004010 }
Florin Coras04ae8272021-04-12 19:55:37 -07004011
4012 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4013 tea.mss = *(u32 *) buffer;
4014 if (vcl_session_transport_attr (wrk, session, 1 /* is_get */, &tea))
4015 rv = VPPCOM_ENOPROTOOPT;
4016
4017 if (!rv)
4018 {
4019 *(u32 *) buffer = tea.mss;
4020 *buflen = sizeof (int);
4021 }
4022
4023 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d", *(int *) buffer,
4024 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004025 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004026 case VPPCOM_ATTR_SET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004027 if (!(buffer && buflen && (*buflen == sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004028 {
Florin Coras04ae8272021-04-12 19:55:37 -07004029 rv = VPPCOM_EINVAL;
4030 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004031 }
Florin Coras04ae8272021-04-12 19:55:37 -07004032
4033 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4034 tea.mss = *(u32 *) buffer;
4035 if (vcl_session_transport_attr (wrk, session, 0 /* is_get */, &tea))
4036 rv = VPPCOM_ENOPROTOOPT;
4037
4038 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d", tea.mss,
4039 *buflen);
Stevenbccd3392017-10-12 20:42:21 -07004040 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04004041
Florin Coras1e966172020-05-16 18:18:14 +00004042 case VPPCOM_ATTR_SET_CONNECTED:
4043 session->flags |= VCL_SESSION_F_CONNECTED;
4044 break;
4045
Florin Corasa5a9efd2021-01-05 17:03:29 -08004046 case VPPCOM_ATTR_SET_CKPAIR:
4047 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
4048 !vcl_session_has_crypto (session))
4049 {
4050 rv = VPPCOM_EINVAL;
4051 break;
4052 }
Florin Corasa54b62d2021-04-21 09:05:56 -07004053 if (!session->ext_config)
4054 {
Florin Coras87f63892021-05-01 16:01:40 -07004055 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_CRYPTO,
4056 sizeof (transport_endpt_ext_cfg_t));
Florin Corasa54b62d2021-04-21 09:05:56 -07004057 }
4058 else if (session->ext_config->type != TRANSPORT_ENDPT_EXT_CFG_CRYPTO)
4059 {
4060 rv = VPPCOM_EINVAL;
4061 break;
4062 }
4063
4064 session->ext_config->crypto.ckpair_index = *(uint32_t *) buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08004065 break;
4066
Florin Coras6a6555a2021-01-28 11:39:27 -08004067 case VPPCOM_ATTR_SET_VRF:
4068 if (!(buffer && buflen && (*buflen == sizeof (u32))))
4069 {
4070 rv = VPPCOM_EINVAL;
4071 break;
4072 }
4073 session->vrf = *(u32 *) buffer;
4074 break;
4075
4076 case VPPCOM_ATTR_GET_VRF:
4077 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
4078 {
4079 rv = VPPCOM_EINVAL;
4080 break;
4081 }
4082 *(u32 *) buffer = session->vrf;
4083 *buflen = sizeof (u32);
4084 break;
4085
wanghanlin0674f852021-02-22 10:38:36 +08004086 case VPPCOM_ATTR_GET_DOMAIN:
Florin Corasd77325c2021-02-23 12:03:03 -08004087 if (!(buffer && buflen && (*buflen >= sizeof (int))))
wanghanlin0674f852021-02-22 10:38:36 +08004088 {
Florin Corasd77325c2021-02-23 12:03:03 -08004089 rv = VPPCOM_EINVAL;
4090 break;
wanghanlin0674f852021-02-22 10:38:36 +08004091 }
Florin Corasd77325c2021-02-23 12:03:03 -08004092
4093 if (session->transport.is_ip4)
4094 *(int *) buffer = AF_INET;
wanghanlin0674f852021-02-22 10:38:36 +08004095 else
Florin Corasd77325c2021-02-23 12:03:03 -08004096 *(int *) buffer = AF_INET6;
4097 *buflen = sizeof (int);
4098
wanghanlin0674f852021-02-22 10:38:36 +08004099 VDBG (2, "VPPCOM_ATTR_GET_DOMAIN: %d, buflen %u", *(int *) buffer,
4100 *buflen);
4101 break;
4102
Florin Coras87f63892021-05-01 16:01:40 -07004103 case VPPCOM_ATTR_SET_ENDPT_EXT_CFG:
4104 if (!(buffer && buflen && (*buflen > 0)))
4105 {
4106 rv = VPPCOM_EINVAL;
4107 break;
4108 }
4109 if (session->ext_config)
4110 {
4111 rv = VPPCOM_EINVAL;
4112 break;
4113 }
4114 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_NONE,
4115 *buflen + sizeof (u32));
4116 clib_memcpy (session->ext_config->data, buffer, *buflen);
4117 session->ext_config->len = *buflen;
4118 break;
Florin Coraseff5f7a2023-02-07 17:36:17 -08004119 case VPPCOM_ATTR_SET_IP_PKTINFO:
4120 if (buffer && buflen && (*buflen == sizeof (int)) &&
4121 !vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO))
4122 {
4123 if (*(int *) buffer)
4124 vcl_session_set_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4125 else
4126 vcl_session_clear_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4127
4128 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d",
4129 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO),
4130 *buflen);
4131 }
4132 else
4133 rv = VPPCOM_EINVAL;
4134 break;
4135
4136 case VPPCOM_ATTR_GET_IP_PKTINFO:
4137 if (buffer && buflen && (*buflen >= sizeof (int)))
4138 {
4139 *(int *) buffer =
4140 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4141 *buflen = sizeof (int);
4142
4143 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d", *(int *) buffer,
4144 *buflen);
4145 }
4146 else
4147 rv = VPPCOM_EINVAL;
4148 break;
Florin Coras87f63892021-05-01 16:01:40 -07004149
Dave Wallacee22aa742017-10-20 12:30:38 -04004150 default:
4151 rv = VPPCOM_EINVAL;
4152 break;
Dave Wallace35830af2017-10-09 01:43:42 -04004153 }
4154
Dave Wallace35830af2017-10-09 01:43:42 -04004155 return rv;
4156}
4157
Stevenac1f96d2017-10-24 16:03:58 -07004158int
Florin Coras134a9962018-08-28 11:32:04 -07004159vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004160 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4161{
Florin Coras134a9962018-08-28 11:32:04 -07004162 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00004163 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07004164 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07004165
4166 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07004167 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004168 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07004169 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004170 else
4171 {
Florin Corasa7a1a222018-12-30 17:11:31 -08004172 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07004173 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07004174 }
4175
Florin Coras0a1e1832020-03-29 18:54:04 +00004176 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07004177 {
Florin Coras5da10c42020-04-01 04:31:21 +00004178 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07004179 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05004180 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
4181 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07004182 else
Dave Barach178cf492018-11-13 16:34:13 -05004183 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
4184 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00004185 ep->is_ip4 = session->transport.is_ip4;
4186 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07004187 }
Florin Coras460dce62018-07-27 05:45:06 -07004188
Stevenac1f96d2017-10-24 16:03:58 -07004189 return rv;
4190}
4191
Florin Coraseff5f7a2023-02-07 17:36:17 -08004192static void
4193vcl_handle_ep_app_tlvs (vcl_session_t *s, vppcom_endpt_t *ep)
4194{
4195 vppcom_endpt_tlv_t *tlv = ep->app_tlvs;
4196
4197 do
4198 {
4199 switch (tlv->data_type)
4200 {
4201 case VCL_UDP_SEGMENT:
4202 s->gso_size = *(u16 *) tlv->data;
4203 break;
4204 case VCL_IP_PKTINFO:
4205 clib_memcpy_fast (&s->transport.lcl_ip, (ip4_address_t *) tlv->data,
4206 sizeof (ip4_address_t));
4207 break;
4208 default:
4209 VDBG (0, "Ignorning unsupported app tlv %u", tlv->data_type);
4210 break;
4211 }
4212 tlv = VCL_EP_NEXT_APP_TLV (ep, tlv);
4213 }
4214 while (tlv);
4215}
4216
Stevenac1f96d2017-10-24 16:03:58 -07004217int
Florin Coras134a9962018-08-28 11:32:04 -07004218vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004219 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4220{
Florin Coras7a2abce2020-04-05 19:25:44 +00004221 vcl_worker_t *wrk = vcl_worker_get_current ();
4222 vcl_session_t *s;
4223
4224 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras0b0d28e2021-06-04 17:31:53 -07004225 if (PREDICT_FALSE (!s))
Florin Coras7a2abce2020-04-05 19:25:44 +00004226 return VPPCOM_EBADFD;
4227
Dave Wallace617dffa2017-10-26 14:47:06 -04004228 if (ep)
4229 {
Florin Coras5824cc52020-10-20 18:44:41 -07004230 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00004231 return VPPCOM_EINVAL;
4232
liuyacanbc0c7542021-08-02 20:15:05 +08004233 s->transport.is_ip4 = ep->is_ip4;
4234 s->transport.rmt_port = ep->port;
4235 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
4236
Florin Coraseff5f7a2023-02-07 17:36:17 -08004237 if (ep->app_tlvs)
4238 vcl_handle_ep_app_tlvs (s, ep);
Dou Chao243a0432022-11-29 19:41:34 +08004239
Florin Coras5da10c42020-04-01 04:31:21 +00004240 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07004241 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00004242 {
Florin Coras5824cc52020-10-20 18:44:41 -07004243 u32 session_index = s->session_index;
4244 f64 timeout = vcm->cfg.session_timeout;
4245 int rv;
4246
Florin Coras5da10c42020-04-01 04:31:21 +00004247 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07004248 rv = vppcom_wait_for_session_state_change (session_index,
4249 VCL_STATE_READY,
4250 timeout);
4251 if (rv < 0)
4252 return rv;
4253 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00004254 }
Dave Wallace617dffa2017-10-26 14:47:06 -04004255 }
4256
4257 if (flags)
4258 {
4259 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07004260 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04004261 }
4262
Florin Coraseff5f7a2023-02-07 17:36:17 -08004263 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
Florin Coras7a2abce2020-04-05 19:25:44 +00004264 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07004265}
4266
Dave Wallace048b1d62018-01-03 22:24:41 -05004267int
4268vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
4269{
Florin Coras134a9962018-08-28 11:32:04 -07004270 vcl_worker_t *wrk = vcl_worker_get_current ();
4271 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05004272 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08004273 svm_msg_q_msg_t msg;
4274 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05004275 int rv, num_ev = 0;
4276
Florin Coras5e062572019-03-14 19:07:51 -07004277 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05004278
4279 if (!vp)
4280 return VPPCOM_EFAULT;
4281
4282 do
4283 {
Florin Coras7e12d942018-06-27 14:32:43 -07004284 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05004285
Florin Coras6917b942018-11-13 22:44:54 -08004286 /* Dequeue all events and drop all unhandled io events */
4287 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
4288 {
4289 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
4290 vcl_handle_mq_event (wrk, e);
4291 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
4292 }
4293 vec_reset_length (wrk->unhandled_evts_vector);
4294
Dave Wallace048b1d62018-01-03 22:24:41 -05004295 for (i = 0; i < n_sids; i++)
4296 {
Florin Coras7baeb712019-01-04 17:05:43 -08004297 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07004298 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08004299 {
4300 vp[i].revents = POLLHUP;
4301 num_ev++;
4302 continue;
4303 }
Dave Wallace048b1d62018-01-03 22:24:41 -05004304
Florin Coras6917b942018-11-13 22:44:54 -08004305 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004306
4307 if (POLLIN & vp[i].events)
4308 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004309 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004310 if (rv > 0)
4311 {
Florin Coras6917b942018-11-13 22:44:54 -08004312 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05004313 num_ev++;
4314 }
4315 else if (rv < 0)
4316 {
4317 switch (rv)
4318 {
4319 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004320 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004321 break;
4322
4323 default:
Florin Coras6917b942018-11-13 22:44:54 -08004324 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004325 break;
4326 }
4327 num_ev++;
4328 }
4329 }
4330
4331 if (POLLOUT & vp[i].events)
4332 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004333 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004334 if (rv > 0)
4335 {
Florin Coras6917b942018-11-13 22:44:54 -08004336 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05004337 num_ev++;
4338 }
4339 else if (rv < 0)
4340 {
4341 switch (rv)
4342 {
4343 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004344 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004345 break;
4346
4347 default:
Florin Coras6917b942018-11-13 22:44:54 -08004348 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004349 break;
4350 }
4351 num_ev++;
4352 }
4353 }
4354
Dave Wallace7e607a72018-06-18 18:41:32 -04004355 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05004356 {
Florin Coras6917b942018-11-13 22:44:54 -08004357 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05004358 num_ev++;
4359 }
4360 }
4361 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07004362 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004363 }
4364 while ((num_ev == 0) && keep_trying);
4365
Dave Wallace048b1d62018-01-03 22:24:41 -05004366 return num_ev;
4367}
4368
Florin Coras99368312018-08-02 10:45:44 -07004369int
4370vppcom_mq_epoll_fd (void)
4371{
Florin Coras134a9962018-08-28 11:32:04 -07004372 vcl_worker_t *wrk = vcl_worker_get_current ();
4373 return wrk->mqs_epfd;
4374}
4375
4376int
Florin Coras30e79c22019-01-02 19:31:22 -08004377vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07004378{
4379 return session_handle & 0xFFFFFF;
4380}
4381
4382int
Florin Coras30e79c22019-01-02 19:31:22 -08004383vppcom_session_worker (vcl_session_handle_t session_handle)
4384{
4385 return session_handle >> 24;
4386}
4387
4388int
Florin Coras134a9962018-08-28 11:32:04 -07004389vppcom_worker_register (void)
4390{
Florin Coras47c40e22018-11-26 17:01:36 -08004391 if (!vcl_worker_alloc_and_init ())
4392 return VPPCOM_EEXIST;
4393
Florin Coras47c40e22018-11-26 17:01:36 -08004394 if (vcl_worker_register_with_vpp ())
4395 return VPPCOM_EEXIST;
4396
4397 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07004398}
4399
Florin Coras369db832019-07-08 12:34:45 -07004400void
4401vppcom_worker_unregister (void)
4402{
4403 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
4404 vcl_set_worker_index (~0);
4405}
4406
Pivo6017ff02020-05-04 17:57:33 +02004407void
4408vppcom_worker_index_set (int index)
4409{
4410 vcl_set_worker_index (index);
4411}
4412
Florin Corasdfe4cf42018-11-28 22:13:45 -08004413int
4414vppcom_worker_index (void)
4415{
4416 return vcl_get_worker_index ();
4417}
4418
Florin Corase0982e52019-01-25 13:19:56 -08004419int
4420vppcom_worker_mqs_epfd (void)
4421{
4422 vcl_worker_t *wrk = vcl_worker_get_current ();
4423 if (!vcm->cfg.use_mq_eventfd)
4424 return -1;
4425 return wrk->mqs_epfd;
4426}
4427
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02004428int
4429vppcom_session_is_connectable_listener (uint32_t session_handle)
4430{
4431 vcl_session_t *session;
4432 vcl_worker_t *wrk = vcl_worker_get_current ();
4433 session = vcl_session_get_w_handle (wrk, session_handle);
4434 if (!session)
4435 return VPPCOM_EBADFD;
4436 return vcl_session_is_connectable_listener (wrk, session);
4437}
4438
4439int
4440vppcom_session_listener (uint32_t session_handle)
4441{
4442 vcl_worker_t *wrk = vcl_worker_get_current ();
4443 vcl_session_t *listen_session, *session;
4444 session = vcl_session_get_w_handle (wrk, session_handle);
4445 if (!session)
4446 return VPPCOM_EBADFD;
4447 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
4448 return VPPCOM_EBADFD;
4449 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
4450 if (!listen_session)
4451 return VPPCOM_EBADFD;
4452 return vcl_session_handle (listen_session);
4453}
4454
4455int
4456vppcom_session_n_accepted (uint32_t session_handle)
4457{
4458 vcl_worker_t *wrk = vcl_worker_get_current ();
4459 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
4460 if (!session)
4461 return VPPCOM_EBADFD;
4462 return session->n_accepted_sessions;
4463}
4464
Florin Coras66ec4672020-06-15 07:59:40 -07004465const char *
4466vppcom_proto_str (vppcom_proto_t proto)
4467{
4468 char const *proto_str;
4469
4470 switch (proto)
4471 {
4472 case VPPCOM_PROTO_TCP:
4473 proto_str = "TCP";
4474 break;
4475 case VPPCOM_PROTO_UDP:
4476 proto_str = "UDP";
4477 break;
4478 case VPPCOM_PROTO_TLS:
4479 proto_str = "TLS";
4480 break;
4481 case VPPCOM_PROTO_QUIC:
4482 proto_str = "QUIC";
4483 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08004484 case VPPCOM_PROTO_DTLS:
4485 proto_str = "DTLS";
4486 break;
Florin Coras6621abf2021-01-06 17:35:17 -08004487 case VPPCOM_PROTO_SRTP:
4488 proto_str = "SRTP";
4489 break;
Florin Coras66ec4672020-06-15 07:59:40 -07004490 default:
4491 proto_str = "UNKNOWN";
4492 break;
4493 }
4494 return proto_str;
4495}
4496
4497const char *
4498vppcom_retval_str (int retval)
4499{
4500 char const *st;
4501
4502 switch (retval)
4503 {
4504 case VPPCOM_OK:
4505 st = "VPPCOM_OK";
4506 break;
4507
4508 case VPPCOM_EAGAIN:
4509 st = "VPPCOM_EAGAIN";
4510 break;
4511
4512 case VPPCOM_EFAULT:
4513 st = "VPPCOM_EFAULT";
4514 break;
4515
4516 case VPPCOM_ENOMEM:
4517 st = "VPPCOM_ENOMEM";
4518 break;
4519
4520 case VPPCOM_EINVAL:
4521 st = "VPPCOM_EINVAL";
4522 break;
4523
4524 case VPPCOM_EBADFD:
4525 st = "VPPCOM_EBADFD";
4526 break;
4527
4528 case VPPCOM_EAFNOSUPPORT:
4529 st = "VPPCOM_EAFNOSUPPORT";
4530 break;
4531
4532 case VPPCOM_ECONNABORTED:
4533 st = "VPPCOM_ECONNABORTED";
4534 break;
4535
4536 case VPPCOM_ECONNRESET:
4537 st = "VPPCOM_ECONNRESET";
4538 break;
4539
4540 case VPPCOM_ENOTCONN:
4541 st = "VPPCOM_ENOTCONN";
4542 break;
4543
4544 case VPPCOM_ECONNREFUSED:
4545 st = "VPPCOM_ECONNREFUSED";
4546 break;
4547
4548 case VPPCOM_ETIMEDOUT:
4549 st = "VPPCOM_ETIMEDOUT";
4550 break;
4551
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304552 case VPPCOM_EADDRINUSE:
4553 st = "VPPCOM_EADDRINUSE";
4554 break;
4555
Florin Coras66ec4672020-06-15 07:59:40 -07004556 default:
4557 st = "UNKNOWN_STATE";
4558 break;
4559 }
4560
4561 return st;
4562}
4563
Florin Corasa5a9efd2021-01-05 17:03:29 -08004564int
4565vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4566{
4567 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004568 return vcl_sapi_add_cert_key_pair (ckpair);
4569 else
4570 return vcl_bapi_add_cert_key_pair (ckpair);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004571}
4572
4573int
4574vppcom_del_cert_key_pair (uint32_t ckpair_index)
4575{
4576 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004577 return vcl_sapi_del_cert_key_pair (ckpair_index);
4578 else
4579 return vcl_bapi_del_cert_key_pair (ckpair_index);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004580}
4581
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304582int
4583vppcom_session_get_error (uint32_t session_handle)
4584{
4585 vcl_worker_t *wrk = vcl_worker_get_current ();
4586 vcl_session_t *session = 0;
4587
4588 session = vcl_session_get_w_handle (wrk, session_handle);
4589 if (!session)
4590 return VPPCOM_EBADFD;
4591
4592 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
4593 {
4594 VWRN ("epoll session %u! will not have connect", session->session_index);
4595 return VPPCOM_EBADFD;
4596 }
4597
4598 if (session->vpp_error == SESSION_E_PORTINUSE)
4599 return VPPCOM_EADDRINUSE;
4600 else if (session->vpp_error == SESSION_E_REFUSED)
4601 return VPPCOM_ECONNREFUSED;
4602 else if (session->vpp_error != SESSION_E_NONE)
4603 return VPPCOM_EFAULT;
4604 else
4605 return VPPCOM_OK;
4606}
4607
Maros Ondrejicka6ff8e902022-10-06 18:17:05 +02004608int
4609vppcom_worker_is_detached (void)
4610{
4611 vcl_worker_t *wrk = vcl_worker_get_current ();
4612
4613 if (!vcm->cfg.use_mq_eventfd)
4614 return VPPCOM_ENOTSUP;
4615
4616 return wrk->api_client_handle == ~0;
4617}
4618
Dave Wallacee22aa742017-10-20 12:30:38 -04004619/*
4620 * fd.io coding-style-patch-verification: ON
4621 *
4622 * Local Variables:
4623 * eval: (c-set-style "gnu")
4624 * End:
4625 */