blob: 189e16a852c4ca30f95afd766e18873b2d43e6ff [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)
Dou Chao243a0432022-11-29 19:41:34 +08002284 n_write =
2285 app_send_dgram_raw_gso (tx_fifo, &s->transport, s->vpp_evt_q, buf, n,
Florin Coraseff5f7a2023-02-07 17:36:17 -08002286 s->gso_size, et, 0 /* do_evt */, SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002287 else
2288 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002289 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002290
Florin Coras14ed6df2019-03-06 21:13:42 -08002291 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002292 app_send_io_evt_to_vpp (
2293 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002294
Florin Coras56230092020-09-02 20:52:58 -07002295 /* The underlying fifo segment can run out of memory */
2296 if (PREDICT_FALSE (n_write < 0))
2297 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002298
Florin Coras6d0106e2019-01-29 20:11:58 -08002299 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2300 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002301
Florin Coras54693d22018-07-17 10:46:29 -07002302 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002303}
2304
Florin Coras42ceddb2018-12-12 10:56:01 -08002305int
2306vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2307{
Florin Coras7a2abce2020-04-05 19:25:44 +00002308 vcl_worker_t *wrk = vcl_worker_get_current ();
2309 vcl_session_t *s;
2310
2311 s = vcl_session_get_w_handle (wrk, session_handle);
2312 if (PREDICT_FALSE (!s))
2313 return VPPCOM_EBADFD;
2314
Florin Coraseff5f7a2023-02-07 17:36:17 -08002315 return vppcom_session_write_inline (wrk, s, buf, n, 0 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002316 s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002317}
2318
Florin Corasb0f662f2018-12-27 14:51:46 -08002319int
2320vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2321{
Florin Coras7a2abce2020-04-05 19:25:44 +00002322 vcl_worker_t *wrk = vcl_worker_get_current ();
2323 vcl_session_t *s;
2324
2325 s = vcl_session_get_w_handle (wrk, session_handle);
2326 if (PREDICT_FALSE (!s))
2327 return VPPCOM_EBADFD;
2328
Florin Coraseff5f7a2023-02-07 17:36:17 -08002329 return vppcom_session_write_inline (wrk, s, buf, n, 1 /* is_flush */,
Dou Chao243a0432022-11-29 19:41:34 +08002330 s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002331}
2332
Florin Corasc0737e92019-03-04 14:19:39 -08002333#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002334if (PREDICT_FALSE (!_s->rx_fifo)) \
2335 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002336if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2337 { \
2338 if (!vcl_session_is_ct (_s)) \
2339 { \
2340 svm_fifo_unset_event (_s->rx_fifo); \
2341 if (svm_fifo_is_empty (_s->rx_fifo)) \
2342 break; \
2343 } \
2344 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2345 { \
Florin Coras2f630182020-08-13 00:17:51 -07002346 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002347 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2348 break; \
2349 } \
2350 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002351
Florin Coras86f04502018-09-12 16:08:01 -07002352static void
2353vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2354 unsigned long n_bits, unsigned long *read_map,
2355 unsigned long *write_map,
2356 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002357{
2358 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002359 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002360 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002361 u32 sid;
2362
2363 switch (e->event_type)
2364 {
Florin Corasc0737e92019-03-04 14:19:39 -08002365 case SESSION_IO_EVT_RX:
2366 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002367 s = vcl_session_get (wrk, sid);
2368 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002369 break;
Florin Corasb242d312020-10-26 15:35:40 -07002370 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002371 if (sid < n_bits && read_map)
2372 {
David Johnsond9818dd2018-12-14 14:53:41 -05002373 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002374 *bits_set += 1;
2375 }
2376 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002377 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002378 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002379 s = vcl_session_get (wrk, sid);
2380 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002381 break;
2382 if (sid < n_bits && write_map)
2383 {
David Johnsond9818dd2018-12-14 14:53:41 -05002384 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002385 *bits_set += 1;
2386 }
2387 break;
Florin Coras86f04502018-09-12 16:08:01 -07002388 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002389 if (!e->postponed)
2390 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2391 else
2392 s = vcl_session_get (wrk, e->session_index);
2393 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002394 break;
Florin Corasb242d312020-10-26 15:35:40 -07002395 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002396 if (sid < n_bits && read_map)
2397 {
David Johnsond9818dd2018-12-14 14:53:41 -05002398 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002399 *bits_set += 1;
2400 }
2401 break;
2402 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002403 if (!e->postponed)
2404 {
2405 connected_msg = (session_connected_msg_t *) e->data;
2406 sid = vcl_session_connected_handler (wrk, connected_msg);
2407 }
2408 else
2409 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002410 if (sid == VCL_INVALID_SESSION_INDEX)
2411 break;
2412 if (sid < n_bits && write_map)
2413 {
2414 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2415 *bits_set += 1;
2416 }
Florin Coras86f04502018-09-12 16:08:01 -07002417 break;
2418 case SESSION_CTRL_EVT_DISCONNECTED:
2419 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002420 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2421 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002422 break;
Florin Corasb242d312020-10-26 15:35:40 -07002423 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002424 if (sid < n_bits && except_map)
2425 {
David Johnsond9818dd2018-12-14 14:53:41 -05002426 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002427 *bits_set += 1;
2428 }
2429 break;
2430 case SESSION_CTRL_EVT_RESET:
2431 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2432 if (sid < n_bits && except_map)
2433 {
David Johnsond9818dd2018-12-14 14:53:41 -05002434 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002435 *bits_set += 1;
2436 }
2437 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002438 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2439 vcl_session_unlisten_reply_handler (wrk, e->data);
2440 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002441 case SESSION_CTRL_EVT_MIGRATED:
2442 vcl_session_migrated_handler (wrk, e->data);
2443 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002444 case SESSION_CTRL_EVT_CLEANUP:
2445 vcl_session_cleanup_handler (wrk, e->data);
2446 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002447 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2448 vcl_session_worker_update_reply_handler (wrk, e->data);
2449 break;
2450 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2451 vcl_session_req_worker_update_handler (wrk, e->data);
2452 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002453 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2454 vcl_session_app_add_segment_handler (wrk, e->data);
2455 break;
2456 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2457 vcl_session_app_del_segment_handler (wrk, e->data);
2458 break;
hanlina3a48962020-07-13 11:09:15 +08002459 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002460 vcl_worker_rpc_handler (wrk, e->data);
2461 break;
Florin Coras86f04502018-09-12 16:08:01 -07002462 default:
2463 clib_warning ("unhandled: %u", e->event_type);
2464 break;
2465 }
2466}
2467
2468static int
2469vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2470 unsigned long n_bits, unsigned long *read_map,
2471 unsigned long *write_map, unsigned long *except_map,
2472 double time_to_wait, u32 * bits_set)
2473{
Florin Coras99368312018-08-02 10:45:44 -07002474 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002475 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002476 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002477
Florin Coras54693d22018-07-17 10:46:29 -07002478 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002479 {
Florin Coras54693d22018-07-17 10:46:29 -07002480 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002481 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002482
Florin Coras54693d22018-07-17 10:46:29 -07002483 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002484 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002485 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002486 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002487 else
2488 {
2489 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002490 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002491 }
2492 }
Florin Corase003a1b2019-06-05 10:47:16 -07002493 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002494
Florin Coras134a9962018-08-28 11:32:04 -07002495 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002496 {
Florin Coras134a9962018-08-28 11:32:04 -07002497 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002498 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002499 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2500 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002501 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002502 }
Florin Coras134a9962018-08-28 11:32:04 -07002503 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002504 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002505 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002506}
2507
Florin Coras99368312018-08-02 10:45:44 -07002508static int
Florin Coras294afe22019-01-07 17:49:17 -08002509vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2510 vcl_si_set * read_map, vcl_si_set * write_map,
2511 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002512 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002513{
Florin Coras14ed6df2019-03-06 21:13:42 -08002514 double wait = 0, start = 0;
2515
2516 if (!*bits_set)
2517 {
2518 wait = time_to_wait;
2519 start = clib_time_now (&wrk->clib_time);
2520 }
2521
2522 do
2523 {
2524 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2525 write_map, except_map, wait, bits_set);
2526 if (*bits_set)
2527 return *bits_set;
2528 if (wait == -1)
2529 continue;
2530
2531 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2532 }
2533 while (wait > 0);
2534
2535 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002536}
2537
2538static int
Florin Coras294afe22019-01-07 17:49:17 -08002539vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2540 vcl_si_set * read_map, vcl_si_set * write_map,
2541 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002542 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002543{
2544 vcl_mq_evt_conn_t *mqc;
2545 int __clib_unused n_read;
2546 int n_mq_evts, i;
2547 u64 buf;
2548
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002549 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
2550 {
2551 vcl_api_retry_attach (wrk);
2552 return 0;
2553 }
2554
Florin Coras134a9962018-08-28 11:32:04 -07002555 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2556 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2557 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002558 for (i = 0; i < n_mq_evts; i++)
2559 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00002560 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
2561 {
2562 vcl_api_handle_disconnect (wrk);
2563 continue;
2564 }
2565
Florin Coras134a9962018-08-28 11:32:04 -07002566 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002567 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002568 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002569 except_map, 0, bits_set);
2570 }
2571
2572 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2573}
2574
Dave Wallace543852a2017-08-03 02:11:34 -04002575int
Florin Coras294afe22019-01-07 17:49:17 -08002576vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2577 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002578{
Florin Coras54693d22018-07-17 10:46:29 -07002579 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002580 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002581 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002582 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002583
Dave Wallace7876d392017-10-19 03:53:57 -04002584 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002585 {
Florin Coras134a9962018-08-28 11:32:04 -07002586 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002587 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002588 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2589 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002590 }
Dave Wallace7876d392017-10-19 03:53:57 -04002591 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002592 {
Florin Coras134a9962018-08-28 11:32:04 -07002593 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002594 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002595 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2596 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002597 }
Dave Wallace7876d392017-10-19 03:53:57 -04002598 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002599 {
Florin Coras134a9962018-08-28 11:32:04 -07002600 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002601 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002602 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2603 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002604 }
2605
Florin Coras54693d22018-07-17 10:46:29 -07002606 if (!n_bits)
2607 return 0;
2608
2609 if (!write_map)
2610 goto check_rd;
2611
Florin Coras096a1d52021-01-27 15:33:51 -08002612 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2613 {
2614 if (!(s = vcl_session_get (wrk, sid)))
2615 {
2616 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2617 bits_set++;
2618 continue;
2619 }
Florin Coras54693d22018-07-17 10:46:29 -07002620
Florin Coras096a1d52021-01-27 15:33:51 -08002621 if (vcl_session_write_ready (s))
2622 {
2623 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2624 bits_set++;
2625 }
2626 else
2627 {
2628 svm_fifo_t *txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2629 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF);
2630 }
2631 }
Florin Coras54693d22018-07-17 10:46:29 -07002632
2633check_rd:
2634 if (!read_map)
2635 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002636
Florin Coras096a1d52021-01-27 15:33:51 -08002637 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2638 {
2639 if (!(s = vcl_session_get (wrk, sid)))
2640 {
2641 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2642 bits_set++;
2643 continue;
2644 }
Florin Coras54693d22018-07-17 10:46:29 -07002645
Florin Coras096a1d52021-01-27 15:33:51 -08002646 if (vcl_session_read_ready (s))
2647 {
2648 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2649 bits_set++;
2650 }
2651 }
Florin Coras54693d22018-07-17 10:46:29 -07002652
2653check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002654
Florin Coras86f04502018-09-12 16:08:01 -07002655 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2656 {
2657 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2658 read_map, write_map, except_map, &bits_set);
2659 }
2660 vec_reset_length (wrk->unhandled_evts_vector);
2661
Florin Coras99368312018-08-02 10:45:44 -07002662 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002663 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002664 time_to_wait, &bits_set);
2665 else
Florin Coras134a9962018-08-28 11:32:04 -07002666 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002667 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002668
Dave Wallace543852a2017-08-03 02:11:34 -04002669 return (bits_set);
2670}
2671
Dave Wallacef7f809c2017-10-03 01:48:42 -04002672static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002673vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002674{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002675 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002676 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002677 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002678
Florin Corasc0737e92019-03-04 14:19:39 -08002679 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002680 return;
2681
Florin Coras6c3b2182020-10-19 18:36:48 -07002682 s = vcl_session_get_w_handle (wrk, vep_handle);
2683 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002684 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002685 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002686 goto done;
2687 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002688 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002689 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002690 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002691 goto done;
2692 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002693 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002694 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002695 "{\n"
2696 " is_vep = %u\n"
2697 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002698 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002699 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2700 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002701
Florin Coras7e5e62b2019-07-30 14:08:23 -07002702 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002703 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002704 s = vcl_session_get_w_handle (wrk, sh);
2705 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002706 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002707 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002708 goto done;
2709 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002710 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002711 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002712 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002713 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002714 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002715 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002716 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002717 goto done;
2718 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002719 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002720 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2721 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002722 sh, s->vep.vep_sh, vep_handle);
2723 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002724 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002725 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002726 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002727 " next_sh = 0x%x (%u)\n"
2728 " prev_sh = 0x%x (%u)\n"
2729 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002730 " ev.events = 0x%x\n"
2731 " ev.data.u64 = 0x%llx\n"
2732 " et_mask = 0x%x\n"
2733 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002734 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002735 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2736 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002737 }
2738 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002739
2740done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002741 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002742}
2743
2744int
2745vppcom_epoll_create (void)
2746{
Florin Coras134a9962018-08-28 11:32:04 -07002747 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002748 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002749
Florin Coras134a9962018-08-28 11:32:04 -07002750 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002751
Florin Coras6c3b2182020-10-19 18:36:48 -07002752 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002753 vep_session->vep.vep_sh = ~0;
2754 vep_session->vep.next_sh = ~0;
2755 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002756 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002757
Florin Corasa7a1a222018-12-30 17:11:31 -08002758 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2759 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002760
Florin Corasab2f6db2018-08-31 14:31:41 -07002761 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002762}
2763
Florin Corasb0116a12023-02-07 09:11:47 -08002764static void
2765vcl_epoll_ctl_add_unhandled_event (vcl_worker_t *wrk, vcl_session_t *s,
2766 u8 is_epollet, session_evt_type_t evt)
2767{
2768 if (!is_epollet)
2769 {
Florin Corasc2a14172023-02-28 21:13:50 -08002770 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
2771 vcl_epoll_lt_add (wrk, s);
Florin Corasb0116a12023-02-07 09:11:47 -08002772 return;
2773 }
2774
2775 session_event_t e = { 0 };
2776 e.session_index = s->session_index;
2777 e.event_type = evt;
2778 if (evt == SESSION_IO_EVT_RX)
2779 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
2780 vec_add1 (wrk->unhandled_evts_vector, e);
2781}
2782
Dave Wallacef7f809c2017-10-03 01:48:42 -04002783int
Florin Coras134a9962018-08-28 11:32:04 -07002784vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002785 struct epoll_event *event)
2786{
Florin Coras134a9962018-08-28 11:32:04 -07002787 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras87f76002021-06-28 19:13:29 -07002788 int rv = VPPCOM_OK, add_evt = 0;
Florin Coras7e12d942018-06-27 14:32:43 -07002789 vcl_session_t *vep_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002790 vcl_session_t *s;
2791 svm_fifo_t *txf;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002792
Florin Coras134a9962018-08-28 11:32:04 -07002793 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002794 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002795 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002796 return VPPCOM_EINVAL;
2797 }
2798
Florin Coras134a9962018-08-28 11:32:04 -07002799 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002800 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002801 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002802 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002803 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002804 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002805 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002806 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002807 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002808 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002809 }
2810
Florin Coras134a9962018-08-28 11:32:04 -07002811 ASSERT (vep_session->vep.vep_sh == ~0);
2812 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002813
Florin Coras17ec5772020-08-12 20:46:29 -07002814 s = vcl_session_get_w_handle (wrk, session_handle);
2815 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002816 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002817 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002818 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002819 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002820 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002821 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002822 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002823 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002824 }
2825
2826 switch (op)
2827 {
2828 case EPOLL_CTL_ADD:
2829 if (PREDICT_FALSE (!event))
2830 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002831 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002832 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002833 }
Florin Coras2645f682021-06-04 15:59:41 -07002834 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
2835 {
2836 VDBG (0, "EPOLL_CTL_ADD: %u already epolled!", s->session_index);
2837 rv = VPPCOM_EEXIST;
2838 goto done;
2839 }
Florin Coras134a9962018-08-28 11:32:04 -07002840 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002841 {
Florin Coras7e12d942018-06-27 14:32:43 -07002842 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002843 next_session = vcl_session_get_w_handle (wrk,
2844 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002845 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002846 {
Florin Coras5e062572019-03-14 19:07:51 -07002847 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002848 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002849 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002850 }
Florin Coras134a9962018-08-28 11:32:04 -07002851 ASSERT (next_session->vep.prev_sh == vep_handle);
2852 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002853 }
Florin Coras17ec5772020-08-12 20:46:29 -07002854 s->vep.next_sh = vep_session->vep.next_sh;
2855 s->vep.prev_sh = vep_handle;
2856 s->vep.vep_sh = vep_handle;
2857 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
Florin Corasfa3884f2021-06-22 20:04:46 -07002858 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras17ec5772020-08-12 20:46:29 -07002859 s->vep.ev = *event;
Florin Coras6c3b2182020-10-19 18:36:48 -07002860 s->flags &= ~VCL_SESSION_F_IS_VEP;
2861 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002862 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002863
Florin Coras17ec5772020-08-12 20:46:29 -07002864 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2865 if (txf && (event->events & EPOLLOUT))
2866 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002867
Florin Coras6e3c1f82020-01-15 01:30:46 +00002868 /* Generate EPOLLOUT if tx fifo not full */
Florin Coras17ec5772020-08-12 20:46:29 -07002869 if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002870 {
Florin Corasb0116a12023-02-07 09:11:47 -08002871 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2872 SESSION_IO_EVT_TX);
Florin Coras87f76002021-06-28 19:13:29 -07002873 add_evt = 1;
hanlin475c9d72019-12-26 11:44:28 +08002874 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002875 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002876 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002877 {
Florin Corasb0116a12023-02-07 09:11:47 -08002878 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2879 SESSION_IO_EVT_RX);
Florin Coras87f76002021-06-28 19:13:29 -07002880 add_evt = 1;
2881 }
2882 if (!add_evt && vcl_session_is_closing (s))
2883 {
2884 session_event_t e = { 0 };
2885 if (s->session_state == VCL_STATE_VPP_CLOSING)
2886 e.event_type = SESSION_CTRL_EVT_DISCONNECTED;
2887 else
2888 e.event_type = SESSION_CTRL_EVT_RESET;
2889 e.session_index = s->session_index;
2890 e.postponed = 1;
2891 vec_add1 (wrk->unhandled_evts_vector, e);
Florin Coras6e3c1f82020-01-15 01:30:46 +00002892 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002893 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2894 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002895 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002896 break;
2897
2898 case EPOLL_CTL_MOD:
2899 if (PREDICT_FALSE (!event))
2900 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002901 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002902 rv = VPPCOM_EINVAL;
2903 goto done;
2904 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002905 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002906 {
Florin Coras5e062572019-03-14 19:07:51 -07002907 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002908 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002909 goto done;
2910 }
Florin Coras17ec5772020-08-12 20:46:29 -07002911 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002912 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002913 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002914 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002915 rv = VPPCOM_EINVAL;
2916 goto done;
2917 }
hanlin475c9d72019-12-26 11:44:28 +08002918
Florin Coras2645f682021-06-04 15:59:41 -07002919 /* Generate EPOLLOUT if session write ready nd event was not on */
2920 if ((event->events & EPOLLOUT) && !(s->vep.ev.events & EPOLLOUT) &&
2921 (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002922 {
Florin Corasb0116a12023-02-07 09:11:47 -08002923 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2924 SESSION_IO_EVT_TX);
hanlin475c9d72019-12-26 11:44:28 +08002925 }
Florin Coras2645f682021-06-04 15:59:41 -07002926 /* Generate EPOLLIN if session read ready and event was not on */
2927 if ((event->events & EPOLLIN) && !(s->vep.ev.events & EPOLLIN) &&
2928 (vcl_session_read_ready (s) > 0))
2929 {
Florin Corasb0116a12023-02-07 09:11:47 -08002930 vcl_epoll_ctl_add_unhandled_event (wrk, s, event->events & EPOLLET,
2931 SESSION_IO_EVT_RX);
Florin Coras2645f682021-06-04 15:59:41 -07002932 }
Florin Coras17ec5772020-08-12 20:46:29 -07002933 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2934 s->vep.ev = *event;
2935 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras8fb22fd2021-02-17 17:35:32 -08002936 if (txf)
2937 {
2938 if (event->events & EPOLLOUT)
2939 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2940 else
2941 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2942 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002943 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2944 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002945 break;
2946
2947 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07002948 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002949 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002950 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Florin Coras2645f682021-06-04 15:59:41 -07002951 rv = VPPCOM_ENOENT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002952 goto done;
2953 }
Florin Coras17ec5772020-08-12 20:46:29 -07002954 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002955 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002956 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002957 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002958 rv = VPPCOM_EINVAL;
2959 goto done;
2960 }
2961
Florin Coras17ec5772020-08-12 20:46:29 -07002962 if (s->vep.prev_sh == vep_handle)
2963 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002964 else
2965 {
Florin Coras7e12d942018-06-27 14:32:43 -07002966 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002967 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002968 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002969 {
Florin Coras5e062572019-03-14 19:07:51 -07002970 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002971 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002972 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002973 }
Florin Coras134a9962018-08-28 11:32:04 -07002974 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002975 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002976 }
Florin Coras17ec5772020-08-12 20:46:29 -07002977 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002978 {
Florin Coras7e12d942018-06-27 14:32:43 -07002979 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002980 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002981 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002982 {
Florin Coras5e062572019-03-14 19:07:51 -07002983 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002984 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002985 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002986 }
Florin Coras134a9962018-08-28 11:32:04 -07002987 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002988 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002989 }
2990
Florin Corasfa3884f2021-06-22 20:04:46 -07002991 if (s->vep.lt_next != VCL_INVALID_SESSION_INDEX)
2992 vcl_epoll_lt_del (wrk, s);
2993
Florin Coras17ec5772020-08-12 20:46:29 -07002994 memset (&s->vep, 0, sizeof (s->vep));
2995 s->vep.next_sh = ~0;
2996 s->vep.prev_sh = ~0;
2997 s->vep.vep_sh = ~0;
Florin Corasfa3884f2021-06-22 20:04:46 -07002998 s->vep.lt_next = VCL_INVALID_SESSION_INDEX;
Florin Coras6c3b2182020-10-19 18:36:48 -07002999 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08003000
Florin Corasf1ddeeb2021-06-10 08:08:53 -07003001 if (vcl_session_is_open (s))
3002 {
3003 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
3004 if (txf)
3005 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
3006 }
Florin Coras1bcad5c2019-01-09 20:04:38 -08003007
Florin Coras5e062572019-03-14 19:07:51 -07003008 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08003009 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07003010 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003011 break;
3012
3013 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08003014 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003015 rv = VPPCOM_EINVAL;
3016 }
3017
Florin Coras134a9962018-08-28 11:32:04 -07003018 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003019
3020done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04003021 return rv;
3022}
3023
Florin Coras86f04502018-09-12 16:08:01 -07003024static inline void
3025vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
3026 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07003027{
3028 session_disconnected_msg_t *disconnected_msg;
3029 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07003030 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08003031 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07003032 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07003033 u8 add_event = 0;
3034
3035 switch (e->event_type)
3036 {
Florin Coras653e43f2019-03-04 10:56:23 -08003037 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08003038 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003039 s = vcl_session_get (wrk, sid);
3040 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003041 break;
Florin Corasb242d312020-10-26 15:35:40 -07003042 vcl_fifo_rx_evt_valid_or_break (s);
3043 session_events = s->vep.ev.events;
Florin Coras99e41452021-08-31 13:29:41 -07003044 if (!(EPOLLIN & s->vep.ev.events) ||
3045 (s->flags & VCL_SESSION_F_HAS_RX_EVT) ||
3046 (s->vep.lt_next != VCL_INVALID_SESSION_INDEX))
Florin Coras86f04502018-09-12 16:08:01 -07003047 break;
3048 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003049 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003050 session_evt_data = s->vep.ev.data.u64;
3051 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07003052 break;
Florin Coras653e43f2019-03-04 10:56:23 -08003053 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08003054 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07003055 s = vcl_session_get (wrk, sid);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003056 if (!s || !vcl_session_is_open (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003057 break;
Florin Corasb242d312020-10-26 15:35:40 -07003058 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003059 if (!(EPOLLOUT & session_events))
3060 break;
3061 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003062 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003063 session_evt_data = s->vep.ev.data.u64;
3064 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ?
3065 s->ct_tx_fifo : s->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07003066 break;
Florin Coras86f04502018-09-12 16:08:01 -07003067 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07003068 if (!e->postponed)
3069 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
3070 else
3071 s = vcl_session_get (wrk, e->session_index);
3072 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08003073 break;
Florin Corasb242d312020-10-26 15:35:40 -07003074 session_events = s->vep.ev.events;
3075 sid = s->session_index;
liuyacancba87102021-09-10 15:14:05 +08003076 if (!(EPOLLIN & session_events) ||
3077 (s->vep.lt_next != VCL_INVALID_SESSION_INDEX))
Florin Coras86f04502018-09-12 16:08:01 -07003078 break;
Florin Coras86f04502018-09-12 16:08:01 -07003079 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003080 events[*num_ev].events = EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07003081 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003082 break;
3083 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07003084 if (!e->postponed)
3085 {
3086 connected_msg = (session_connected_msg_t *) e->data;
3087 sid = vcl_session_connected_handler (wrk, connected_msg);
3088 }
3089 else
3090 sid = e->session_index;
3091 s = vcl_session_get (wrk, sid);
3092 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08003093 break;
Florin Corasb242d312020-10-26 15:35:40 -07003094 session_events = s->vep.ev.events;
3095 /* Generate EPOLLOUT because there's no connected event */
Florin Coras72f77822019-01-22 19:05:52 -08003096 if (!(EPOLLOUT & session_events))
3097 break;
Florin Coras1d84abc2023-01-13 09:44:14 -08003098 /* We didn't have a fifo when the event was added */
3099 svm_fifo_add_want_deq_ntf (
3100 (vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo),
3101 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras72f77822019-01-22 19:05:52 -08003102 add_event = 1;
wanghanlin9e42cc22021-06-25 17:40:13 +08003103 events[*num_ev].events = EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07003104 session_evt_data = s->vep.ev.data.u64;
3105 if (s->session_state == VCL_STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07003106 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07003107 break;
3108 case SESSION_CTRL_EVT_DISCONNECTED:
Florin Coras87f76002021-06-28 19:13:29 -07003109 if (!e->postponed)
3110 {
3111 disconnected_msg = (session_disconnected_msg_t *) e->data;
3112 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
3113 }
3114 else
3115 {
3116 s = vcl_session_get (wrk, e->session_index);
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003117 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
Florin Coras87f76002021-06-28 19:13:29 -07003118 }
3119 if (vcl_session_is_closed (s) ||
3120 !(s->flags & VCL_SESSION_F_IS_VEP_SESSION))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003121 {
Florin Coras74254b52021-12-08 11:03:08 -08003122 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003123 vcl_session_free (wrk, s);
3124 break;
3125 }
Florin Corasb242d312020-10-26 15:35:40 -07003126 sid = s->session_index;
3127 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003128 add_event = 1;
liuyacanffd9ddb2021-11-01 10:22:09 +08003129 if (EPOLLRDHUP & session_events)
3130 {
3131 /* If app can distinguish between RDHUP and HUP,
3132 * we make finer control */
3133 events[*num_ev].events = EPOLLRDHUP;
3134 if (s->flags & VCL_SESSION_F_WR_SHUTDOWN)
3135 {
3136 events[*num_ev].events |= EPOLLHUP;
3137 }
3138 }
3139 else
3140 {
3141 events[*num_ev].events = EPOLLHUP;
3142 }
Florin Corasb242d312020-10-26 15:35:40 -07003143 session_evt_data = s->vep.ev.data.u64;
liuyacanffd9ddb2021-11-01 10:22:09 +08003144
Florin Coras86f04502018-09-12 16:08:01 -07003145 break;
Florin Coras01ee7a72023-03-01 00:49:25 -08003146 case SESSION_CTRL_EVT_BOUND:
3147 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
3148 break;
Florin Coras86f04502018-09-12 16:08:01 -07003149 case SESSION_CTRL_EVT_RESET:
Florin Coras87f76002021-06-28 19:13:29 -07003150 if (!e->postponed)
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003151 {
3152 sid =
3153 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
3154 s = vcl_session_get (wrk, sid);
3155 }
Florin Coras87f76002021-06-28 19:13:29 -07003156 else
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003157 {
3158 sid = e->session_index;
3159 s = vcl_session_get (wrk, sid);
3160 s->flags &= ~VCL_SESSION_F_PENDING_DISCONNECT;
3161 }
Florin Coras87f76002021-06-28 19:13:29 -07003162 if (vcl_session_is_closed (s) ||
3163 !(s->flags & VCL_SESSION_F_IS_VEP_SESSION))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003164 {
Florin Coras74254b52021-12-08 11:03:08 -08003165 if (s && (s->flags & VCL_SESSION_F_PENDING_FREE))
Florin Corasf0fe1ea2021-12-03 17:03:37 -08003166 vcl_session_free (wrk, s);
3167 break;
3168 }
Florin Corasb242d312020-10-26 15:35:40 -07003169 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07003170 add_event = 1;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003171 events[*num_ev].events = EPOLLERR | EPOLLHUP;
3172 if ((EPOLLRDHUP & session_events) &&
3173 (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3174 {
Yacan Liuab157702022-09-26 16:41:32 +08003175 events[*num_ev].events |= EPOLLRDHUP;
Yacan Liuf5e0a172022-09-20 14:19:19 +08003176 }
3177 if ((EPOLLIN & session_events) && (s->flags & VCL_SESSION_F_RD_SHUTDOWN))
3178 {
3179 events[*num_ev].events |= EPOLLIN;
3180 }
Florin Corasb242d312020-10-26 15:35:40 -07003181 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07003182 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08003183 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
3184 vcl_session_unlisten_reply_handler (wrk, e->data);
3185 break;
Florin Coras68b7e582020-01-21 18:33:23 -08003186 case SESSION_CTRL_EVT_MIGRATED:
3187 vcl_session_migrated_handler (wrk, e->data);
3188 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07003189 case SESSION_CTRL_EVT_CLEANUP:
3190 vcl_session_cleanup_handler (wrk, e->data);
3191 break;
Florin Coras30e79c22019-01-02 19:31:22 -08003192 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
3193 vcl_session_req_worker_update_handler (wrk, e->data);
3194 break;
3195 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
3196 vcl_session_worker_update_reply_handler (wrk, e->data);
3197 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07003198 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
3199 vcl_session_app_add_segment_handler (wrk, e->data);
3200 break;
3201 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
3202 vcl_session_app_del_segment_handler (wrk, e->data);
3203 break;
hanlina3a48962020-07-13 11:09:15 +08003204 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07003205 vcl_worker_rpc_handler (wrk, e->data);
3206 break;
Florin Coras86f04502018-09-12 16:08:01 -07003207 default:
3208 VDBG (0, "unhandled: %u", e->event_type);
3209 break;
3210 }
3211
3212 if (add_event)
3213 {
3214 events[*num_ev].data.u64 = session_evt_data;
3215 if (EPOLLONESHOT & session_events)
3216 {
Florin Corasb242d312020-10-26 15:35:40 -07003217 s = vcl_session_get (wrk, sid);
3218 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003219 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003220 else if (!(EPOLLET & session_events))
Florin Corasfe286f72021-06-04 10:07:55 -07003221 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003222 s = vcl_session_get (wrk, sid);
3223 if (s->vep.lt_next == VCL_INVALID_SESSION_INDEX)
3224 vcl_epoll_lt_add (wrk, s);
Florin Corasfe286f72021-06-04 10:07:55 -07003225 }
Florin Coras86f04502018-09-12 16:08:01 -07003226 *num_ev += 1;
3227 }
3228}
3229
3230static int
3231vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
3232 struct epoll_event *events, u32 maxevents,
3233 double wait_for_time, u32 * num_ev)
3234{
Florin Coras99368312018-08-02 10:45:44 -07003235 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07003236 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07003237 int i;
3238
Florin Coras539663c2018-09-28 14:59:37 -07003239 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
3240 goto handle_dequeued;
3241
Florin Coras54693d22018-07-17 10:46:29 -07003242 if (svm_msg_q_is_empty (mq))
3243 {
3244 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08003245 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003246 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08003247 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07003248 else
3249 {
Florin Coras60f1fc12018-08-16 14:57:31 -07003250 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08003251 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07003252 }
3253 }
Florin Corase003a1b2019-06-05 10:47:16 -07003254 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08003255 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07003256
Florin Coras539663c2018-09-28 14:59:37 -07003257handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07003258 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07003259 {
Florin Coras134a9962018-08-28 11:32:04 -07003260 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07003261 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08003262 if (*num_ev < maxevents)
3263 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
3264 else
3265 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07003266 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07003267 }
Florin Corasaa27eb92018-10-13 12:20:01 -07003268 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08003269 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07003270 return *num_ev;
3271}
3272
Florin Coras99368312018-08-02 10:45:44 -07003273static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003274vppcom_epoll_wait_condvar (vcl_worker_t *wrk, struct epoll_event *events,
3275 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003276{
Florin Corasccdb8b82021-04-28 13:01:06 -07003277 double end = -1;
Florin Coras14ed6df2019-03-06 21:13:42 -08003278
3279 if (!n_evts)
3280 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003281 if (timeout_ms > 0)
3282 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras14ed6df2019-03-06 21:13:42 -08003283 }
3284
3285 do
3286 {
3287 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
Florin Corasccdb8b82021-04-28 13:01:06 -07003288 timeout_ms, &n_evts);
3289 if (n_evts || !timeout_ms)
Florin Coras14ed6df2019-03-06 21:13:42 -08003290 return n_evts;
Florin Coras14ed6df2019-03-06 21:13:42 -08003291 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003292 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Coras14ed6df2019-03-06 21:13:42 -08003293
3294 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003295}
3296
3297static int
Florin Corasccdb8b82021-04-28 13:01:06 -07003298vppcom_epoll_wait_eventfd (vcl_worker_t *wrk, struct epoll_event *events,
3299 int maxevents, u32 n_evts, double timeout_ms)
Florin Coras99368312018-08-02 10:45:44 -07003300{
Florin Coras99368312018-08-02 10:45:44 -07003301 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08003302 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07003303 int n_mq_evts, i;
Florin Corasccdb8b82021-04-28 13:01:06 -07003304 double end = -1;
Florin Coras99368312018-08-02 10:45:44 -07003305 u64 buf;
3306
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003307 if (PREDICT_FALSE (wrk->api_client_handle == ~0))
3308 {
3309 vcl_api_retry_attach (wrk);
3310 return n_evts;
3311 }
3312
Florin Coras134a9962018-08-28 11:32:04 -07003313 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08003314 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07003315 {
Florin Corasccdb8b82021-04-28 13:01:06 -07003316 if (timeout_ms > 0)
3317 end = clib_time_now (&wrk->clib_time) + (timeout_ms / 1e3);
Florin Coras99368312018-08-02 10:45:44 -07003318 }
3319
Florin Corasb13ba132021-01-27 16:05:24 -08003320 do
3321 {
3322 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
Florin Corasccdb8b82021-04-28 13:01:06 -07003323 vec_len (wrk->mq_events), timeout_ms);
Florin Corasb13ba132021-01-27 16:05:24 -08003324 if (n_mq_evts < 0)
3325 {
3326 VDBG (0, "epoll_wait error %u", errno);
3327 return n_evts;
3328 }
3329
3330 for (i = 0; i < n_mq_evts; i++)
3331 {
Filip Tehlar8ccc6b32022-02-02 17:38:20 +00003332 if (PREDICT_FALSE (wrk->mq_events[i].data.u32 == ~0))
3333 {
3334 /* api socket was closed */
3335 vcl_api_handle_disconnect (wrk);
3336 continue;
3337 }
3338
Florin Corasb13ba132021-01-27 16:05:24 -08003339 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3340 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3341 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
3342 &n_evts);
3343 }
3344
Florin Corasccdb8b82021-04-28 13:01:06 -07003345 if (n_evts || !timeout_ms)
Florin Corasb13ba132021-01-27 16:05:24 -08003346 return n_evts;
Florin Corasb13ba132021-01-27 16:05:24 -08003347 }
Florin Corasccdb8b82021-04-28 13:01:06 -07003348 while (end == -1 || clib_time_now (&wrk->clib_time) < end);
Florin Corasb13ba132021-01-27 16:05:24 -08003349
3350 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003351}
3352
Florin Corasfe286f72021-06-04 10:07:55 -07003353static void
Florin Corasfe286f72021-06-04 10:07:55 -07003354vcl_epoll_wait_handle_lt (vcl_worker_t *wrk, struct epoll_event *events,
3355 int maxevents, u32 *n_evts)
3356{
Florin Coras734268f2021-06-30 07:54:29 -07003357 u32 add_event = 0, next;
Florin Corasfe286f72021-06-04 10:07:55 -07003358 vcl_session_t *s;
3359 u64 evt_data;
Florin Corasfa3884f2021-06-22 20:04:46 -07003360 int rv;
Florin Corasfe286f72021-06-04 10:07:55 -07003361
Florin Corasfa3884f2021-06-22 20:04:46 -07003362 ASSERT (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX);
Florin Corasfe286f72021-06-04 10:07:55 -07003363 if (*n_evts >= maxevents)
Florin Corasfa3884f2021-06-22 20:04:46 -07003364 return;
Florin Corasfe286f72021-06-04 10:07:55 -07003365
Florin Corasfa3884f2021-06-22 20:04:46 -07003366 next = wrk->ep_lt_current;
3367 do
Florin Corasfe286f72021-06-04 10:07:55 -07003368 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003369 s = vcl_session_get (wrk, next);
3370 next = s->vep.lt_next;
3371
3372 if ((s->vep.ev.events & EPOLLIN) && (rv = vcl_session_read_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003373 {
3374 add_event = 1;
Florin Corasfa3884f2021-06-22 20:04:46 -07003375 events[*n_evts].events |= rv > 0 ? EPOLLIN : EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003376 evt_data = s->vep.ev.data.u64;
3377 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003378 if ((s->vep.ev.events & EPOLLOUT) && (rv = vcl_session_write_ready (s)))
Florin Corasfe286f72021-06-04 10:07:55 -07003379 {
3380 add_event = 1;
Florin Corasfa3884f2021-06-22 20:04:46 -07003381 events[*n_evts].events |= rv > 0 ? EPOLLOUT : EPOLLHUP | EPOLLRDHUP;
3382 evt_data = s->vep.ev.data.u64;
3383 }
3384 if (!add_event && s->session_state > VCL_STATE_READY)
3385 {
3386 add_event = 1;
3387 events[*n_evts].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasfe286f72021-06-04 10:07:55 -07003388 evt_data = s->vep.ev.data.u64;
3389 }
3390 if (add_event)
3391 {
3392 events[*n_evts].data.u64 = evt_data;
3393 *n_evts += 1;
3394 add_event = 0;
Florin Corasfa3884f2021-06-22 20:04:46 -07003395 if (EPOLLONESHOT & s->vep.ev.events)
3396 s->vep.ev.events = 0;
Florin Corasfe286f72021-06-04 10:07:55 -07003397 if (*n_evts == maxevents)
3398 {
Florin Corasfa3884f2021-06-22 20:04:46 -07003399 wrk->ep_lt_current = next;
Florin Corasfe286f72021-06-04 10:07:55 -07003400 break;
3401 }
3402 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003403 else
3404 {
3405 vcl_epoll_lt_del (wrk, s);
3406 if (wrk->ep_lt_current == VCL_INVALID_SESSION_INDEX)
3407 break;
3408 }
Florin Corasfe286f72021-06-04 10:07:55 -07003409 }
Florin Corasfa3884f2021-06-22 20:04:46 -07003410 while (next != wrk->ep_lt_current);
Florin Corasfe286f72021-06-04 10:07:55 -07003411}
3412
Dave Wallacef7f809c2017-10-03 01:48:42 -04003413int
Florin Coras134a9962018-08-28 11:32:04 -07003414vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003415 int maxevents, double wait_for_time)
3416{
Florin Coras134a9962018-08-28 11:32:04 -07003417 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003418 vcl_session_t *vep_session;
Florin Corasfa3884f2021-06-22 20:04:46 -07003419 u32 n_evts = 0;
Florin Coras86f04502018-09-12 16:08:01 -07003420 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003421
3422 if (PREDICT_FALSE (maxevents <= 0))
3423 {
Florin Coras5e062572019-03-14 19:07:51 -07003424 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003425 return VPPCOM_EINVAL;
3426 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003427
Florin Coras134a9962018-08-28 11:32:04 -07003428 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003429 if (!vep_session)
3430 return VPPCOM_EBADFD;
3431
Florin Coras6c3b2182020-10-19 18:36:48 -07003432 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003433 {
Florin Coras5e062572019-03-14 19:07:51 -07003434 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003435 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003436 }
Florin Coras54693d22018-07-17 10:46:29 -07003437
Florin Coras86f04502018-09-12 16:08:01 -07003438 if (vec_len (wrk->unhandled_evts_vector))
3439 {
3440 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3441 {
3442 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3443 events, &n_evts);
3444 if (n_evts == maxevents)
3445 {
Florin Corase003a1b2019-06-05 10:47:16 -07003446 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3447 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003448 }
3449 }
Florin Corase003a1b2019-06-05 10:47:16 -07003450 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003451 }
liuyacancba87102021-09-10 15:14:05 +08003452
3453 if (PREDICT_FALSE (wrk->ep_lt_current != VCL_INVALID_SESSION_INDEX))
3454 vcl_epoll_wait_handle_lt (wrk, events, maxevents, &n_evts);
3455
wanghanlin8919fec2021-03-18 20:00:41 +08003456 /* Request to only drain unhandled */
3457 if ((int) wait_for_time == -2)
3458 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003459
Florin Coras86f04502018-09-12 16:08:01 -07003460
Florin Corasfe286f72021-06-04 10:07:55 -07003461 if (vcm->cfg.use_mq_eventfd)
3462 n_evts = vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3463 wait_for_time);
3464 else
3465 n_evts = vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3466 wait_for_time);
3467
Florin Corasfe286f72021-06-04 10:07:55 -07003468 return n_evts;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003469}
3470
Dave Wallace35830af2017-10-09 01:43:42 -04003471int
Florin Coras134a9962018-08-28 11:32:04 -07003472vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003473 void *buffer, uint32_t * buflen)
3474{
Florin Coras134a9962018-08-28 11:32:04 -07003475 vcl_worker_t *wrk = vcl_worker_get_current ();
liuyacan55c952e2021-06-13 14:54:55 +08003476 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07003477 vppcom_endpt_t *ep = buffer;
Florin Coras04ae8272021-04-12 19:55:37 -07003478 transport_endpt_attr_t tea;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003479 vcl_session_t *session;
3480 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003481
Florin Coras134a9962018-08-28 11:32:04 -07003482 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003483 if (!session)
3484 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003485
Dave Wallace35830af2017-10-09 01:43:42 -04003486 switch (op)
3487 {
3488 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003489 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003490 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3491 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003492 break;
3493
Dave Wallace227867f2017-11-13 21:21:53 -05003494 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003495 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003496 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3497 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003498 break;
3499
3500 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003501 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003502 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003503 *flags =
3504 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003505 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003506 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003507 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003508 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3509 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003510 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003511 }
3512 else
3513 rv = VPPCOM_EINVAL;
3514 break;
3515
3516 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003517 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003518 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003519 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003520 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003521 else
Florin Corasac422d62020-10-19 20:51:36 -07003522 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003523
Florin Coras5e062572019-03-14 19:07:51 -07003524 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3525 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003526 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003527 }
3528 else
3529 rv = VPPCOM_EINVAL;
3530 break;
3531
3532 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003533 if (PREDICT_TRUE (buffer && buflen &&
3534 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003535 {
Florin Coras7e12d942018-06-27 14:32:43 -07003536 ep->is_ip4 = session->transport.is_ip4;
3537 ep->port = session->transport.rmt_port;
3538 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003539 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3540 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003541 else
Dave Barach178cf492018-11-13 16:34:13 -05003542 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3543 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003544 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003545 VDBG (1,
3546 "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3547 "addr = %U, port %u",
3548 session_handle, ep->is_ip4, vcl_format_ip46_address,
3549 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003550 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3551 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003552 }
3553 else
3554 rv = VPPCOM_EINVAL;
3555 break;
3556
3557 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003558 if (PREDICT_TRUE (buffer && buflen &&
3559 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003560 {
Florin Coras7e12d942018-06-27 14:32:43 -07003561 ep->is_ip4 = session->transport.is_ip4;
3562 ep->port = session->transport.lcl_port;
3563 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003564 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3565 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003566 else
Dave Barach178cf492018-11-13 16:34:13 -05003567 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3568 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003569 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003570 VDBG (1,
3571 "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3572 " port %d",
3573 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003574 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003575 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3576 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003577 }
3578 else
3579 rv = VPPCOM_EINVAL;
3580 break;
Stevenb5a11602017-10-11 09:59:30 -07003581
Florin Corasef7cbf62019-10-17 09:56:27 -07003582 case VPPCOM_ATTR_SET_LCL_ADDR:
3583 if (PREDICT_TRUE (buffer && buflen &&
3584 (*buflen >= sizeof (*ep)) && ep->ip))
3585 {
3586 session->transport.is_ip4 = ep->is_ip4;
3587 session->transport.lcl_port = ep->port;
3588 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3589 *buflen = sizeof (*ep);
Florin Coras60687192021-11-29 21:00:47 -08003590 VDBG (1,
3591 "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3592 " port %d",
3593 session_handle, ep->is_ip4, vcl_format_ip46_address,
Florin Corasef7cbf62019-10-17 09:56:27 -07003594 &session->transport.lcl_ip,
3595 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3596 clib_net_to_host_u16 (ep->port));
3597 }
3598 else
3599 rv = VPPCOM_EINVAL;
3600 break;
3601
Dave Wallace048b1d62018-01-03 22:24:41 -05003602 case VPPCOM_ATTR_GET_LIBC_EPFD:
3603 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003604 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003605 break;
3606
3607 case VPPCOM_ATTR_SET_LIBC_EPFD:
3608 if (PREDICT_TRUE (buffer && buflen &&
3609 (*buflen == sizeof (session->libc_epfd))))
3610 {
3611 session->libc_epfd = *(int *) buffer;
3612 *buflen = sizeof (session->libc_epfd);
3613
Florin Coras5e062572019-03-14 19:07:51 -07003614 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3615 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003616 }
3617 else
3618 rv = VPPCOM_EINVAL;
3619 break;
3620
3621 case VPPCOM_ATTR_GET_PROTOCOL:
3622 if (buffer && buflen && (*buflen >= sizeof (int)))
3623 {
Florin Coras7e12d942018-06-27 14:32:43 -07003624 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003625 *buflen = sizeof (int);
3626
Florin Coras5e062572019-03-14 19:07:51 -07003627 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3628 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003629 }
3630 else
3631 rv = VPPCOM_EINVAL;
3632 break;
3633
3634 case VPPCOM_ATTR_GET_LISTEN:
3635 if (buffer && buflen && (*buflen >= sizeof (int)))
3636 {
Florin Corasac422d62020-10-19 20:51:36 -07003637 *(int *) buffer = vcl_session_has_attr (session,
3638 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003639 *buflen = sizeof (int);
3640
Florin Coras5e062572019-03-14 19:07:51 -07003641 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3642 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003643 }
3644 else
3645 rv = VPPCOM_EINVAL;
3646 break;
3647
3648 case VPPCOM_ATTR_GET_ERROR:
3649 if (buffer && buflen && (*buflen >= sizeof (int)))
3650 {
3651 *(int *) buffer = 0;
3652 *buflen = sizeof (int);
3653
Florin Coras5e062572019-03-14 19:07:51 -07003654 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3655 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003656 }
3657 else
3658 rv = VPPCOM_EINVAL;
3659 break;
3660
3661 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3662 if (buffer && buflen && (*buflen >= sizeof (u32)))
3663 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003664
3665 /* VPP-TBD */
3666 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003667 session->tx_fifo ?
3668 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003669 vcm->cfg.tx_fifo_size);
3670 *buflen = sizeof (u32);
3671
Florin Coras5e062572019-03-14 19:07:51 -07003672 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3673 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3674 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003675 }
3676 else
3677 rv = VPPCOM_EINVAL;
3678 break;
3679
Filip Tehlar2f09bfc2021-11-15 10:26:56 +00003680 case VPPCOM_ATTR_SET_DSCP:
3681 if (buffer && buflen && (*buflen >= sizeof (u8)))
3682 {
3683 session->dscp = *(u8 *) buffer;
3684
3685 VDBG (2, "VPPCOM_ATTR_SET_DSCP: %u (0x%x), buflen %d,",
3686 *(u8 *) buffer, *(u8 *) buffer, *buflen);
3687 }
3688 else
3689 rv = VPPCOM_EINVAL;
3690 break;
3691
Dave Wallace048b1d62018-01-03 22:24:41 -05003692 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3693 if (buffer && buflen && (*buflen == sizeof (u32)))
3694 {
3695 /* VPP-TBD */
3696 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003697 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3698 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3699 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003700 }
3701 else
3702 rv = VPPCOM_EINVAL;
3703 break;
3704
3705 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3706 if (buffer && buflen && (*buflen >= sizeof (u32)))
3707 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003708
3709 /* VPP-TBD */
3710 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003711 session->rx_fifo ?
3712 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003713 vcm->cfg.rx_fifo_size);
3714 *buflen = sizeof (u32);
3715
Florin Coras5e062572019-03-14 19:07:51 -07003716 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3717 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003718 }
3719 else
3720 rv = VPPCOM_EINVAL;
3721 break;
3722
3723 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3724 if (buffer && buflen && (*buflen == sizeof (u32)))
3725 {
3726 /* VPP-TBD */
3727 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003728 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3729 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3730 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003731 }
3732 else
3733 rv = VPPCOM_EINVAL;
3734 break;
3735
3736 case VPPCOM_ATTR_GET_REUSEADDR:
3737 if (buffer && buflen && (*buflen >= sizeof (int)))
3738 {
3739 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003740 *(int *) buffer = vcl_session_has_attr (session,
3741 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003742 *buflen = sizeof (int);
3743
Florin Coras5e062572019-03-14 19:07:51 -07003744 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3745 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003746 }
3747 else
3748 rv = VPPCOM_EINVAL;
3749 break;
3750
Stevenb5a11602017-10-11 09:59:30 -07003751 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003752 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003753 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003754 {
3755 /* VPP-TBD */
3756 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003757 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003758 else
Florin Corasac422d62020-10-19 20:51:36 -07003759 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003760
Florin Coras5e062572019-03-14 19:07:51 -07003761 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003762 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003763 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003764 }
3765 else
3766 rv = VPPCOM_EINVAL;
3767 break;
3768
3769 case VPPCOM_ATTR_GET_REUSEPORT:
3770 if (buffer && buflen && (*buflen >= sizeof (int)))
3771 {
3772 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003773 *(int *) buffer = vcl_session_has_attr (session,
3774 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003775 *buflen = sizeof (int);
3776
Florin Coras5e062572019-03-14 19:07:51 -07003777 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3778 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003779 }
3780 else
3781 rv = VPPCOM_EINVAL;
3782 break;
3783
3784 case VPPCOM_ATTR_SET_REUSEPORT:
3785 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003786 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003787 {
3788 /* VPP-TBD */
3789 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003790 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003791 else
Florin Corasac422d62020-10-19 20:51:36 -07003792 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003793
Florin Coras5e062572019-03-14 19:07:51 -07003794 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003795 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003796 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003797 }
3798 else
3799 rv = VPPCOM_EINVAL;
3800 break;
3801
3802 case VPPCOM_ATTR_GET_BROADCAST:
3803 if (buffer && buflen && (*buflen >= sizeof (int)))
3804 {
3805 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003806 *(int *) buffer = vcl_session_has_attr (session,
3807 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003808 *buflen = sizeof (int);
3809
Florin Coras5e062572019-03-14 19:07:51 -07003810 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3811 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003812 }
3813 else
3814 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003815 break;
3816
3817 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003818 if (buffer && buflen && (*buflen == sizeof (int)))
3819 {
3820 /* VPP-TBD */
3821 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003822 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003823 else
Florin Corasac422d62020-10-19 20:51:36 -07003824 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003825
Florin Coras5e062572019-03-14 19:07:51 -07003826 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003827 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003828 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003829 }
3830 else
3831 rv = VPPCOM_EINVAL;
3832 break;
3833
3834 case VPPCOM_ATTR_GET_V6ONLY:
3835 if (buffer && buflen && (*buflen >= sizeof (int)))
3836 {
3837 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003838 *(int *) buffer = vcl_session_has_attr (session,
3839 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003840 *buflen = sizeof (int);
3841
Florin Coras5e062572019-03-14 19:07:51 -07003842 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3843 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003844 }
3845 else
3846 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003847 break;
3848
3849 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003850 if (buffer && buflen && (*buflen == sizeof (int)))
3851 {
3852 /* VPP-TBD */
3853 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003854 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003855 else
Florin Corasac422d62020-10-19 20:51:36 -07003856 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003857
Florin Coras5e062572019-03-14 19:07:51 -07003858 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003859 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003860 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003861 }
3862 else
3863 rv = VPPCOM_EINVAL;
3864 break;
3865
3866 case VPPCOM_ATTR_GET_KEEPALIVE:
3867 if (buffer && buflen && (*buflen >= sizeof (int)))
3868 {
3869 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003870 *(int *) buffer = vcl_session_has_attr (session,
3871 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003872 *buflen = sizeof (int);
3873
Florin Coras5e062572019-03-14 19:07:51 -07003874 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3875 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003876 }
3877 else
3878 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003879 break;
Stevenbccd3392017-10-12 20:42:21 -07003880
3881 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003882 if (buffer && buflen && (*buflen == sizeof (int)))
3883 {
3884 /* VPP-TBD */
3885 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003886 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003887 else
Florin Corasac422d62020-10-19 20:51:36 -07003888 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003889
Florin Coras5e062572019-03-14 19:07:51 -07003890 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003891 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07003892 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003893 }
3894 else
3895 rv = VPPCOM_EINVAL;
3896 break;
3897
3898 case VPPCOM_ATTR_GET_TCP_NODELAY:
3899 if (buffer && buflen && (*buflen >= sizeof (int)))
3900 {
3901 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003902 *(int *) buffer = vcl_session_has_attr (session,
3903 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003904 *buflen = sizeof (int);
3905
Florin Coras5e062572019-03-14 19:07:51 -07003906 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3907 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003908 }
3909 else
3910 rv = VPPCOM_EINVAL;
3911 break;
3912
3913 case VPPCOM_ATTR_SET_TCP_NODELAY:
3914 if (buffer && buflen && (*buflen == sizeof (int)))
3915 {
3916 /* VPP-TBD */
3917 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003918 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003919 else
Florin Corasac422d62020-10-19 20:51:36 -07003920 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003921
Florin Coras5e062572019-03-14 19:07:51 -07003922 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003923 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07003924 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003925 }
3926 else
3927 rv = VPPCOM_EINVAL;
3928 break;
3929
3930 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3931 if (buffer && buflen && (*buflen >= sizeof (int)))
3932 {
3933 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003934 *(int *) buffer = vcl_session_has_attr (session,
3935 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003936 *buflen = sizeof (int);
3937
Florin Coras5e062572019-03-14 19:07:51 -07003938 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3939 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003940 }
3941 else
3942 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003943 break;
3944
3945 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003946 if (buffer && buflen && (*buflen == sizeof (int)))
3947 {
3948 /* VPP-TBD */
3949 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003950 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003951 else
Florin Corasac422d62020-10-19 20:51:36 -07003952 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003953
Florin Coras5e062572019-03-14 19:07:51 -07003954 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003955 vcl_session_has_attr (session,
3956 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003957 }
3958 else
3959 rv = VPPCOM_EINVAL;
3960 break;
3961
3962 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3963 if (buffer && buflen && (*buflen >= sizeof (int)))
3964 {
3965 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003966 *(int *) buffer = vcl_session_has_attr (session,
3967 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003968 *buflen = sizeof (int);
3969
Florin Coras5e062572019-03-14 19:07:51 -07003970 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3971 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003972 }
3973 else
3974 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003975 break;
3976
3977 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003978 if (buffer && buflen && (*buflen == sizeof (int)))
3979 {
3980 /* VPP-TBD */
3981 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003982 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003983 else
Florin Corasac422d62020-10-19 20:51:36 -07003984 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003985
Florin Coras5e062572019-03-14 19:07:51 -07003986 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003987 vcl_session_has_attr (session,
3988 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003989 }
3990 else
3991 rv = VPPCOM_EINVAL;
3992 break;
3993
3994 case VPPCOM_ATTR_GET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07003995 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05003996 {
Florin Coras04ae8272021-04-12 19:55:37 -07003997 rv = VPPCOM_EINVAL;
3998 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05003999 }
Florin Coras04ae8272021-04-12 19:55:37 -07004000
4001 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4002 tea.mss = *(u32 *) buffer;
4003 if (vcl_session_transport_attr (wrk, session, 1 /* is_get */, &tea))
4004 rv = VPPCOM_ENOPROTOOPT;
4005
4006 if (!rv)
4007 {
4008 *(u32 *) buffer = tea.mss;
4009 *buflen = sizeof (int);
4010 }
4011
4012 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d", *(int *) buffer,
4013 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05004014 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004015 case VPPCOM_ATTR_SET_TCP_USER_MSS:
Florin Coras04ae8272021-04-12 19:55:37 -07004016 if (!(buffer && buflen && (*buflen == sizeof (u32))))
Dave Wallace048b1d62018-01-03 22:24:41 -05004017 {
Florin Coras04ae8272021-04-12 19:55:37 -07004018 rv = VPPCOM_EINVAL;
4019 break;
Dave Wallace048b1d62018-01-03 22:24:41 -05004020 }
Florin Coras04ae8272021-04-12 19:55:37 -07004021
4022 tea.type = TRANSPORT_ENDPT_ATTR_MSS;
4023 tea.mss = *(u32 *) buffer;
4024 if (vcl_session_transport_attr (wrk, session, 0 /* is_get */, &tea))
4025 rv = VPPCOM_ENOPROTOOPT;
4026
4027 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d", tea.mss,
4028 *buflen);
Stevenbccd3392017-10-12 20:42:21 -07004029 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04004030
Florin Coras1e966172020-05-16 18:18:14 +00004031 case VPPCOM_ATTR_SET_CONNECTED:
4032 session->flags |= VCL_SESSION_F_CONNECTED;
4033 break;
4034
Florin Corasa5a9efd2021-01-05 17:03:29 -08004035 case VPPCOM_ATTR_SET_CKPAIR:
4036 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
4037 !vcl_session_has_crypto (session))
4038 {
4039 rv = VPPCOM_EINVAL;
4040 break;
4041 }
Florin Corasa54b62d2021-04-21 09:05:56 -07004042 if (!session->ext_config)
4043 {
Florin Coras87f63892021-05-01 16:01:40 -07004044 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_CRYPTO,
4045 sizeof (transport_endpt_ext_cfg_t));
Florin Corasa54b62d2021-04-21 09:05:56 -07004046 }
4047 else if (session->ext_config->type != TRANSPORT_ENDPT_EXT_CFG_CRYPTO)
4048 {
4049 rv = VPPCOM_EINVAL;
4050 break;
4051 }
4052
4053 session->ext_config->crypto.ckpair_index = *(uint32_t *) buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08004054 break;
4055
Florin Coras6a6555a2021-01-28 11:39:27 -08004056 case VPPCOM_ATTR_SET_VRF:
4057 if (!(buffer && buflen && (*buflen == sizeof (u32))))
4058 {
4059 rv = VPPCOM_EINVAL;
4060 break;
4061 }
4062 session->vrf = *(u32 *) buffer;
4063 break;
4064
4065 case VPPCOM_ATTR_GET_VRF:
4066 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
4067 {
4068 rv = VPPCOM_EINVAL;
4069 break;
4070 }
4071 *(u32 *) buffer = session->vrf;
4072 *buflen = sizeof (u32);
4073 break;
4074
wanghanlin0674f852021-02-22 10:38:36 +08004075 case VPPCOM_ATTR_GET_DOMAIN:
Florin Corasd77325c2021-02-23 12:03:03 -08004076 if (!(buffer && buflen && (*buflen >= sizeof (int))))
wanghanlin0674f852021-02-22 10:38:36 +08004077 {
Florin Corasd77325c2021-02-23 12:03:03 -08004078 rv = VPPCOM_EINVAL;
4079 break;
wanghanlin0674f852021-02-22 10:38:36 +08004080 }
Florin Corasd77325c2021-02-23 12:03:03 -08004081
4082 if (session->transport.is_ip4)
4083 *(int *) buffer = AF_INET;
wanghanlin0674f852021-02-22 10:38:36 +08004084 else
Florin Corasd77325c2021-02-23 12:03:03 -08004085 *(int *) buffer = AF_INET6;
4086 *buflen = sizeof (int);
4087
wanghanlin0674f852021-02-22 10:38:36 +08004088 VDBG (2, "VPPCOM_ATTR_GET_DOMAIN: %d, buflen %u", *(int *) buffer,
4089 *buflen);
4090 break;
4091
Florin Coras87f63892021-05-01 16:01:40 -07004092 case VPPCOM_ATTR_SET_ENDPT_EXT_CFG:
4093 if (!(buffer && buflen && (*buflen > 0)))
4094 {
4095 rv = VPPCOM_EINVAL;
4096 break;
4097 }
4098 if (session->ext_config)
4099 {
4100 rv = VPPCOM_EINVAL;
4101 break;
4102 }
4103 vcl_session_alloc_ext_cfg (session, TRANSPORT_ENDPT_EXT_CFG_NONE,
4104 *buflen + sizeof (u32));
4105 clib_memcpy (session->ext_config->data, buffer, *buflen);
4106 session->ext_config->len = *buflen;
4107 break;
Florin Coraseff5f7a2023-02-07 17:36:17 -08004108 case VPPCOM_ATTR_SET_IP_PKTINFO:
4109 if (buffer && buflen && (*buflen == sizeof (int)) &&
4110 !vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO))
4111 {
4112 if (*(int *) buffer)
4113 vcl_session_set_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4114 else
4115 vcl_session_clear_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4116
4117 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d",
4118 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO),
4119 *buflen);
4120 }
4121 else
4122 rv = VPPCOM_EINVAL;
4123 break;
4124
4125 case VPPCOM_ATTR_GET_IP_PKTINFO:
4126 if (buffer && buflen && (*buflen >= sizeof (int)))
4127 {
4128 *(int *) buffer =
4129 vcl_session_has_attr (session, VCL_SESS_ATTR_IP_PKTINFO);
4130 *buflen = sizeof (int);
4131
4132 VDBG (2, "VCL_SESS_ATTR_IP_PKTINFO: %d, buflen %d", *(int *) buffer,
4133 *buflen);
4134 }
4135 else
4136 rv = VPPCOM_EINVAL;
4137 break;
Florin Coras87f63892021-05-01 16:01:40 -07004138
Dave Wallacee22aa742017-10-20 12:30:38 -04004139 default:
4140 rv = VPPCOM_EINVAL;
4141 break;
Dave Wallace35830af2017-10-09 01:43:42 -04004142 }
4143
Dave Wallace35830af2017-10-09 01:43:42 -04004144 return rv;
4145}
4146
Stevenac1f96d2017-10-24 16:03:58 -07004147int
Florin Coras134a9962018-08-28 11:32:04 -07004148vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004149 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4150{
Florin Coras134a9962018-08-28 11:32:04 -07004151 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00004152 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07004153 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07004154
4155 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07004156 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004157 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07004158 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07004159 else
4160 {
Florin Corasa7a1a222018-12-30 17:11:31 -08004161 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07004162 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07004163 }
4164
Florin Coras0a1e1832020-03-29 18:54:04 +00004165 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07004166 {
Florin Coras5da10c42020-04-01 04:31:21 +00004167 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07004168 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05004169 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
4170 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07004171 else
Dave Barach178cf492018-11-13 16:34:13 -05004172 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
4173 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00004174 ep->is_ip4 = session->transport.is_ip4;
4175 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07004176 }
Florin Coras460dce62018-07-27 05:45:06 -07004177
Stevenac1f96d2017-10-24 16:03:58 -07004178 return rv;
4179}
4180
Florin Coraseff5f7a2023-02-07 17:36:17 -08004181static void
4182vcl_handle_ep_app_tlvs (vcl_session_t *s, vppcom_endpt_t *ep)
4183{
4184 vppcom_endpt_tlv_t *tlv = ep->app_tlvs;
4185
4186 do
4187 {
4188 switch (tlv->data_type)
4189 {
4190 case VCL_UDP_SEGMENT:
4191 s->gso_size = *(u16 *) tlv->data;
4192 break;
4193 case VCL_IP_PKTINFO:
4194 clib_memcpy_fast (&s->transport.lcl_ip, (ip4_address_t *) tlv->data,
4195 sizeof (ip4_address_t));
4196 break;
4197 default:
4198 VDBG (0, "Ignorning unsupported app tlv %u", tlv->data_type);
4199 break;
4200 }
4201 tlv = VCL_EP_NEXT_APP_TLV (ep, tlv);
4202 }
4203 while (tlv);
4204}
4205
Stevenac1f96d2017-10-24 16:03:58 -07004206int
Florin Coras134a9962018-08-28 11:32:04 -07004207vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07004208 uint32_t buflen, int flags, vppcom_endpt_t * ep)
4209{
Florin Coras7a2abce2020-04-05 19:25:44 +00004210 vcl_worker_t *wrk = vcl_worker_get_current ();
4211 vcl_session_t *s;
4212
4213 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras0b0d28e2021-06-04 17:31:53 -07004214 if (PREDICT_FALSE (!s))
Florin Coras7a2abce2020-04-05 19:25:44 +00004215 return VPPCOM_EBADFD;
4216
Dave Wallace617dffa2017-10-26 14:47:06 -04004217 if (ep)
4218 {
Florin Coras5824cc52020-10-20 18:44:41 -07004219 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00004220 return VPPCOM_EINVAL;
4221
liuyacanbc0c7542021-08-02 20:15:05 +08004222 s->transport.is_ip4 = ep->is_ip4;
4223 s->transport.rmt_port = ep->port;
4224 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
4225
Florin Coraseff5f7a2023-02-07 17:36:17 -08004226 if (ep->app_tlvs)
4227 vcl_handle_ep_app_tlvs (s, ep);
Dou Chao243a0432022-11-29 19:41:34 +08004228
Florin Coras5da10c42020-04-01 04:31:21 +00004229 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07004230 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00004231 {
Florin Coras5824cc52020-10-20 18:44:41 -07004232 u32 session_index = s->session_index;
4233 f64 timeout = vcm->cfg.session_timeout;
4234 int rv;
4235
Florin Coras5da10c42020-04-01 04:31:21 +00004236 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07004237 rv = vppcom_wait_for_session_state_change (session_index,
4238 VCL_STATE_READY,
4239 timeout);
4240 if (rv < 0)
4241 return rv;
4242 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00004243 }
Dave Wallace617dffa2017-10-26 14:47:06 -04004244 }
4245
4246 if (flags)
4247 {
4248 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07004249 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04004250 }
4251
Florin Coraseff5f7a2023-02-07 17:36:17 -08004252 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
Florin Coras7a2abce2020-04-05 19:25:44 +00004253 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07004254}
4255
Dave Wallace048b1d62018-01-03 22:24:41 -05004256int
4257vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
4258{
Florin Coras134a9962018-08-28 11:32:04 -07004259 vcl_worker_t *wrk = vcl_worker_get_current ();
4260 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05004261 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08004262 svm_msg_q_msg_t msg;
4263 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05004264 int rv, num_ev = 0;
4265
Florin Coras5e062572019-03-14 19:07:51 -07004266 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05004267
4268 if (!vp)
4269 return VPPCOM_EFAULT;
4270
4271 do
4272 {
Florin Coras7e12d942018-06-27 14:32:43 -07004273 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05004274
Florin Coras6917b942018-11-13 22:44:54 -08004275 /* Dequeue all events and drop all unhandled io events */
4276 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
4277 {
4278 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
4279 vcl_handle_mq_event (wrk, e);
4280 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
4281 }
4282 vec_reset_length (wrk->unhandled_evts_vector);
4283
Dave Wallace048b1d62018-01-03 22:24:41 -05004284 for (i = 0; i < n_sids; i++)
4285 {
Florin Coras7baeb712019-01-04 17:05:43 -08004286 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07004287 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08004288 {
4289 vp[i].revents = POLLHUP;
4290 num_ev++;
4291 continue;
4292 }
Dave Wallace048b1d62018-01-03 22:24:41 -05004293
Florin Coras6917b942018-11-13 22:44:54 -08004294 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004295
4296 if (POLLIN & vp[i].events)
4297 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004298 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004299 if (rv > 0)
4300 {
Florin Coras6917b942018-11-13 22:44:54 -08004301 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05004302 num_ev++;
4303 }
4304 else if (rv < 0)
4305 {
4306 switch (rv)
4307 {
4308 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004309 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004310 break;
4311
4312 default:
Florin Coras6917b942018-11-13 22:44:54 -08004313 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004314 break;
4315 }
4316 num_ev++;
4317 }
4318 }
4319
4320 if (POLLOUT & vp[i].events)
4321 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08004322 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05004323 if (rv > 0)
4324 {
Florin Coras6917b942018-11-13 22:44:54 -08004325 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05004326 num_ev++;
4327 }
4328 else if (rv < 0)
4329 {
4330 switch (rv)
4331 {
4332 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08004333 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05004334 break;
4335
4336 default:
Florin Coras6917b942018-11-13 22:44:54 -08004337 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05004338 break;
4339 }
4340 num_ev++;
4341 }
4342 }
4343
Dave Wallace7e607a72018-06-18 18:41:32 -04004344 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05004345 {
Florin Coras6917b942018-11-13 22:44:54 -08004346 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05004347 num_ev++;
4348 }
4349 }
4350 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07004351 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05004352 }
4353 while ((num_ev == 0) && keep_trying);
4354
Dave Wallace048b1d62018-01-03 22:24:41 -05004355 return num_ev;
4356}
4357
Florin Coras99368312018-08-02 10:45:44 -07004358int
4359vppcom_mq_epoll_fd (void)
4360{
Florin Coras134a9962018-08-28 11:32:04 -07004361 vcl_worker_t *wrk = vcl_worker_get_current ();
4362 return wrk->mqs_epfd;
4363}
4364
4365int
Florin Coras30e79c22019-01-02 19:31:22 -08004366vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07004367{
4368 return session_handle & 0xFFFFFF;
4369}
4370
4371int
Florin Coras30e79c22019-01-02 19:31:22 -08004372vppcom_session_worker (vcl_session_handle_t session_handle)
4373{
4374 return session_handle >> 24;
4375}
4376
4377int
Florin Coras134a9962018-08-28 11:32:04 -07004378vppcom_worker_register (void)
4379{
Florin Coras47c40e22018-11-26 17:01:36 -08004380 if (!vcl_worker_alloc_and_init ())
4381 return VPPCOM_EEXIST;
4382
Florin Coras47c40e22018-11-26 17:01:36 -08004383 if (vcl_worker_register_with_vpp ())
4384 return VPPCOM_EEXIST;
4385
4386 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07004387}
4388
Florin Coras369db832019-07-08 12:34:45 -07004389void
4390vppcom_worker_unregister (void)
4391{
4392 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
4393 vcl_set_worker_index (~0);
4394}
4395
Pivo6017ff02020-05-04 17:57:33 +02004396void
4397vppcom_worker_index_set (int index)
4398{
4399 vcl_set_worker_index (index);
4400}
4401
Florin Corasdfe4cf42018-11-28 22:13:45 -08004402int
4403vppcom_worker_index (void)
4404{
4405 return vcl_get_worker_index ();
4406}
4407
Florin Corase0982e52019-01-25 13:19:56 -08004408int
4409vppcom_worker_mqs_epfd (void)
4410{
4411 vcl_worker_t *wrk = vcl_worker_get_current ();
4412 if (!vcm->cfg.use_mq_eventfd)
4413 return -1;
4414 return wrk->mqs_epfd;
4415}
4416
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02004417int
4418vppcom_session_is_connectable_listener (uint32_t session_handle)
4419{
4420 vcl_session_t *session;
4421 vcl_worker_t *wrk = vcl_worker_get_current ();
4422 session = vcl_session_get_w_handle (wrk, session_handle);
4423 if (!session)
4424 return VPPCOM_EBADFD;
4425 return vcl_session_is_connectable_listener (wrk, session);
4426}
4427
4428int
4429vppcom_session_listener (uint32_t session_handle)
4430{
4431 vcl_worker_t *wrk = vcl_worker_get_current ();
4432 vcl_session_t *listen_session, *session;
4433 session = vcl_session_get_w_handle (wrk, session_handle);
4434 if (!session)
4435 return VPPCOM_EBADFD;
4436 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
4437 return VPPCOM_EBADFD;
4438 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
4439 if (!listen_session)
4440 return VPPCOM_EBADFD;
4441 return vcl_session_handle (listen_session);
4442}
4443
4444int
4445vppcom_session_n_accepted (uint32_t session_handle)
4446{
4447 vcl_worker_t *wrk = vcl_worker_get_current ();
4448 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
4449 if (!session)
4450 return VPPCOM_EBADFD;
4451 return session->n_accepted_sessions;
4452}
4453
Florin Coras66ec4672020-06-15 07:59:40 -07004454const char *
4455vppcom_proto_str (vppcom_proto_t proto)
4456{
4457 char const *proto_str;
4458
4459 switch (proto)
4460 {
4461 case VPPCOM_PROTO_TCP:
4462 proto_str = "TCP";
4463 break;
4464 case VPPCOM_PROTO_UDP:
4465 proto_str = "UDP";
4466 break;
4467 case VPPCOM_PROTO_TLS:
4468 proto_str = "TLS";
4469 break;
4470 case VPPCOM_PROTO_QUIC:
4471 proto_str = "QUIC";
4472 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08004473 case VPPCOM_PROTO_DTLS:
4474 proto_str = "DTLS";
4475 break;
Florin Coras6621abf2021-01-06 17:35:17 -08004476 case VPPCOM_PROTO_SRTP:
4477 proto_str = "SRTP";
4478 break;
Florin Coras66ec4672020-06-15 07:59:40 -07004479 default:
4480 proto_str = "UNKNOWN";
4481 break;
4482 }
4483 return proto_str;
4484}
4485
4486const char *
4487vppcom_retval_str (int retval)
4488{
4489 char const *st;
4490
4491 switch (retval)
4492 {
4493 case VPPCOM_OK:
4494 st = "VPPCOM_OK";
4495 break;
4496
4497 case VPPCOM_EAGAIN:
4498 st = "VPPCOM_EAGAIN";
4499 break;
4500
4501 case VPPCOM_EFAULT:
4502 st = "VPPCOM_EFAULT";
4503 break;
4504
4505 case VPPCOM_ENOMEM:
4506 st = "VPPCOM_ENOMEM";
4507 break;
4508
4509 case VPPCOM_EINVAL:
4510 st = "VPPCOM_EINVAL";
4511 break;
4512
4513 case VPPCOM_EBADFD:
4514 st = "VPPCOM_EBADFD";
4515 break;
4516
4517 case VPPCOM_EAFNOSUPPORT:
4518 st = "VPPCOM_EAFNOSUPPORT";
4519 break;
4520
4521 case VPPCOM_ECONNABORTED:
4522 st = "VPPCOM_ECONNABORTED";
4523 break;
4524
4525 case VPPCOM_ECONNRESET:
4526 st = "VPPCOM_ECONNRESET";
4527 break;
4528
4529 case VPPCOM_ENOTCONN:
4530 st = "VPPCOM_ENOTCONN";
4531 break;
4532
4533 case VPPCOM_ECONNREFUSED:
4534 st = "VPPCOM_ECONNREFUSED";
4535 break;
4536
4537 case VPPCOM_ETIMEDOUT:
4538 st = "VPPCOM_ETIMEDOUT";
4539 break;
4540
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304541 case VPPCOM_EADDRINUSE:
4542 st = "VPPCOM_EADDRINUSE";
4543 break;
4544
Florin Coras66ec4672020-06-15 07:59:40 -07004545 default:
4546 st = "UNKNOWN_STATE";
4547 break;
4548 }
4549
4550 return st;
4551}
4552
Florin Corasa5a9efd2021-01-05 17:03:29 -08004553int
4554vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4555{
4556 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004557 return vcl_sapi_add_cert_key_pair (ckpair);
4558 else
4559 return vcl_bapi_add_cert_key_pair (ckpair);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004560}
4561
4562int
4563vppcom_del_cert_key_pair (uint32_t ckpair_index)
4564{
4565 if (vcm->cfg.vpp_app_socket_api)
Florin Corase191d762021-08-11 14:55:49 -07004566 return vcl_sapi_del_cert_key_pair (ckpair_index);
4567 else
4568 return vcl_bapi_del_cert_key_pair (ckpair_index);
Florin Corasa5a9efd2021-01-05 17:03:29 -08004569}
4570
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +05304571int
4572vppcom_session_get_error (uint32_t session_handle)
4573{
4574 vcl_worker_t *wrk = vcl_worker_get_current ();
4575 vcl_session_t *session = 0;
4576
4577 session = vcl_session_get_w_handle (wrk, session_handle);
4578 if (!session)
4579 return VPPCOM_EBADFD;
4580
4581 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
4582 {
4583 VWRN ("epoll session %u! will not have connect", session->session_index);
4584 return VPPCOM_EBADFD;
4585 }
4586
4587 if (session->vpp_error == SESSION_E_PORTINUSE)
4588 return VPPCOM_EADDRINUSE;
4589 else if (session->vpp_error == SESSION_E_REFUSED)
4590 return VPPCOM_ECONNREFUSED;
4591 else if (session->vpp_error != SESSION_E_NONE)
4592 return VPPCOM_EFAULT;
4593 else
4594 return VPPCOM_OK;
4595}
4596
Maros Ondrejicka6ff8e902022-10-06 18:17:05 +02004597int
4598vppcom_worker_is_detached (void)
4599{
4600 vcl_worker_t *wrk = vcl_worker_get_current ();
4601
4602 if (!vcm->cfg.use_mq_eventfd)
4603 return VPPCOM_ENOTSUP;
4604
4605 return wrk->api_client_handle == ~0;
4606}
4607
Dave Wallacee22aa742017-10-20 12:30:38 -04004608/*
4609 * fd.io coding-style-patch-verification: ON
4610 *
4611 * Local Variables:
4612 * eval: (c-set-style "gnu")
4613 * End:
4614 */