blob: bc83b55d5d021b016daebb2199ec1675f1b7db06 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <stdio.h>
17#include <stdlib.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040018#include <vcl/vppcom.h>
Florin Coras0d427d82018-06-27 03:24:07 -070019#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070020#include <vcl/vcl_private.h>
Florin Coras88001c62019-04-24 14:44:46 -070021#include <svm/fifo_segment.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Coras30e79c22019-01-02 19:31:22 -080025static inline int
Florin Corase003a1b2019-06-05 10:47:16 -070026vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
Florin Coras30e79c22019-01-02 19:31:22 -080027{
Florin Coras5398dfb2021-01-25 20:31:27 -080028 u32 n_msgs = 0, sz, len;
Florin Coras30e79c22019-01-02 19:31:22 -080029
Florin Coras5398dfb2021-01-25 20:31:27 -080030 while ((sz = svm_msg_q_size (mq)))
Florin Coras30e79c22019-01-02 19:31:22 -080031 {
Florin Coras5398dfb2021-01-25 20:31:27 -080032 len = vec_len (wrk->mq_msg_vector);
33 vec_validate (wrk->mq_msg_vector, len + sz - 1);
34 svm_msg_q_sub_raw_batch (mq, wrk->mq_msg_vector + len, sz);
35 n_msgs += sz;
Florin Coras30e79c22019-01-02 19:31:22 -080036 }
37 return n_msgs;
38}
39
Florin Coras697faea2018-06-27 17:10:49 -070040const char *
Florin Coras288eaab2019-02-03 15:26:14 -080041vppcom_session_state_str (vcl_session_state_t state)
Dave Wallace543852a2017-08-03 02:11:34 -040042{
43 char *st;
44
45 switch (state)
46 {
Florin Corasc127d5a2020-10-14 16:35:58 -070047 case VCL_STATE_CLOSED:
Florin Coras54140622020-02-04 19:04:34 +000048 st = "STATE_CLOSED";
Dave Wallace543852a2017-08-03 02:11:34 -040049 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070050 case VCL_STATE_LISTEN:
Dave Wallace543852a2017-08-03 02:11:34 -040051 st = "STATE_LISTEN";
52 break;
Florin Corasdfffdd72020-10-15 10:54:47 -070053 case VCL_STATE_READY:
54 st = "STATE_READY";
Dave Wallace543852a2017-08-03 02:11:34 -040055 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070056 case VCL_STATE_VPP_CLOSING:
Florin Coras3c7d4f92018-12-14 11:28:43 -080057 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050058 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070059 case VCL_STATE_DISCONNECT:
Dave Wallace543852a2017-08-03 02:11:34 -040060 st = "STATE_DISCONNECT";
61 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070062 case VCL_STATE_DETACHED:
Florin Corasadcfb152020-02-12 08:50:29 +000063 st = "STATE_DETACHED";
Dave Wallace543852a2017-08-03 02:11:34 -040064 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070065 case VCL_STATE_UPDATED:
Florin Coras2d675d72019-01-28 15:54:27 -080066 st = "STATE_UPDATED";
67 break;
Florin Corasc127d5a2020-10-14 16:35:58 -070068 case VCL_STATE_LISTEN_NO_MQ:
Florin Coras2d675d72019-01-28 15:54:27 -080069 st = "STATE_LISTEN_NO_MQ";
70 break;
Dave Wallace543852a2017-08-03 02:11:34 -040071 default:
72 st = "UNKNOWN_STATE";
73 break;
74 }
75
76 return st;
77}
78
Dave Wallace543852a2017-08-03 02:11:34 -040079u8 *
80format_ip4_address (u8 * s, va_list * args)
81{
82 u8 *a = va_arg (*args, u8 *);
83 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
84}
85
86u8 *
87format_ip6_address (u8 * s, va_list * args)
88{
89 ip6_address_t *a = va_arg (*args, ip6_address_t *);
90 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
91
92 i_max_n_zero = ARRAY_LEN (a->as_u16);
93 max_n_zeros = 0;
94 i_first_zero = i_max_n_zero;
95 n_zeros = 0;
96 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
97 {
98 u32 is_zero = a->as_u16[i] == 0;
99 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
100 {
101 i_first_zero = i;
102 n_zeros = 0;
103 }
104 n_zeros += is_zero;
105 if ((!is_zero && n_zeros > max_n_zeros)
106 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
107 {
108 i_max_n_zero = i_first_zero;
109 max_n_zeros = n_zeros;
110 i_first_zero = ARRAY_LEN (a->as_u16);
111 n_zeros = 0;
112 }
113 }
114
115 last_double_colon = 0;
116 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
117 {
118 if (i == i_max_n_zero && max_n_zeros > 1)
119 {
120 s = format (s, "::");
121 i += max_n_zeros - 1;
122 last_double_colon = 1;
123 }
124 else
125 {
126 s = format (s, "%s%x",
127 (last_double_colon || i == 0) ? "" : ":",
128 clib_net_to_host_u16 (a->as_u16[i]));
129 last_double_colon = 0;
130 }
131 }
132
133 return s;
134}
135
136/* Format an IP46 address. */
137u8 *
138format_ip46_address (u8 * s, va_list * args)
139{
140 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
141 ip46_type_t type = va_arg (*args, ip46_type_t);
142 int is_ip4 = 1;
143
144 switch (type)
145 {
146 case IP46_TYPE_ANY:
147 is_ip4 = ip46_address_is_ip4 (ip46);
148 break;
149 case IP46_TYPE_IP4:
150 is_ip4 = 1;
151 break;
152 case IP46_TYPE_IP6:
153 is_ip4 = 0;
154 break;
155 }
156
157 return is_ip4 ?
158 format (s, "%U", format_ip4_address, &ip46->ip4) :
159 format (s, "%U", format_ip6_address, &ip46->ip6);
160}
161
Florin Coras697faea2018-06-27 17:10:49 -0700162/*
163 * VPPCOM Utility Functions
164 */
165
Florin Coras458089b2019-08-21 16:20:44 -0700166static void
167vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
168{
169 app_session_evt_t _app_evt, *app_evt = &_app_evt;
170 session_listen_msg_t *mp;
171 svm_msg_q_t *mq;
172
173 mq = vcl_worker_ctrl_mq (wrk);
174 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
175 mp = (session_listen_msg_t *) app_evt->evt->data;
176 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700177 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700178 mp->context = s->session_index;
179 mp->wrk_index = wrk->vpp_wrk_index;
180 mp->is_ip4 = s->transport.is_ip4;
181 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
182 mp->port = s->transport.lcl_port;
183 mp->proto = s->session_type;
Florin Corasa5a9efd2021-01-05 17:03:29 -0800184 mp->ckpair_index = s->ckpair_index;
Florin Coras6a6555a2021-01-28 11:39:27 -0800185 mp->vrf = s->vrf;
Florin Coras1e966172020-05-16 18:18:14 +0000186 if (s->flags & VCL_SESSION_F_CONNECTED)
187 mp->flags = TRANSPORT_CFG_F_CONNECTED;
Florin Coras458089b2019-08-21 16:20:44 -0700188 app_send_ctrl_evt_to_vpp (mq, app_evt);
189}
190
191static void
192vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
193{
194 app_session_evt_t _app_evt, *app_evt = &_app_evt;
195 session_connect_msg_t *mp;
196 svm_msg_q_t *mq;
197
198 mq = vcl_worker_ctrl_mq (wrk);
199 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
200 mp = (session_connect_msg_t *) app_evt->evt->data;
201 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700202 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700203 mp->context = s->session_index;
204 mp->wrk_index = wrk->vpp_wrk_index;
205 mp->is_ip4 = s->transport.is_ip4;
206 mp->parent_handle = s->parent_handle;
207 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700208 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700209 mp->port = s->transport.rmt_port;
Florin Coras0a1e1832020-03-29 18:54:04 +0000210 mp->lcl_port = s->transport.lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700211 mp->proto = s->session_type;
Florin Corasa5a9efd2021-01-05 17:03:29 -0800212 mp->ckpair_index = s->ckpair_index;
Florin Coras6a6555a2021-01-28 11:39:27 -0800213 mp->vrf = s->vrf;
Florin Coras0a1e1832020-03-29 18:54:04 +0000214 if (s->flags & VCL_SESSION_F_CONNECTED)
215 mp->flags |= TRANSPORT_CFG_F_CONNECTED;
Florin Coras458089b2019-08-21 16:20:44 -0700216 app_send_ctrl_evt_to_vpp (mq, app_evt);
217}
218
219void
220vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
221{
222 app_session_evt_t _app_evt, *app_evt = &_app_evt;
223 session_unlisten_msg_t *mp;
224 svm_msg_q_t *mq;
225
226 mq = vcl_worker_ctrl_mq (wrk);
227 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
228 mp = (session_unlisten_msg_t *) app_evt->evt->data;
229 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700230 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700231 mp->wrk_index = wrk->vpp_wrk_index;
232 mp->handle = s->vpp_handle;
233 mp->context = wrk->wrk_index;
234 app_send_ctrl_evt_to_vpp (mq, app_evt);
235}
236
237static void
238vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
239{
240 app_session_evt_t _app_evt, *app_evt = &_app_evt;
241 session_disconnect_msg_t *mp;
242 svm_msg_q_t *mq;
243
244 /* Send to thread that owns the session */
245 mq = s->vpp_evt_q;
246 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
247 mp = (session_disconnect_msg_t *) app_evt->evt->data;
248 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700249 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700250 mp->handle = s->vpp_handle;
251 app_send_ctrl_evt_to_vpp (mq, app_evt);
252}
253
254static void
255vcl_send_app_detach (vcl_worker_t * wrk)
256{
257 app_session_evt_t _app_evt, *app_evt = &_app_evt;
258 session_app_detach_msg_t *mp;
259 svm_msg_q_t *mq;
260
261 mq = vcl_worker_ctrl_mq (wrk);
262 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
263 mp = (session_app_detach_msg_t *) app_evt->evt->data;
264 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700265 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700266 app_send_ctrl_evt_to_vpp (mq, app_evt);
267}
Florin Coras697faea2018-06-27 17:10:49 -0700268
Florin Coras54693d22018-07-17 10:46:29 -0700269static void
270vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
271 session_handle_t handle, int retval)
272{
273 app_session_evt_t _app_evt, *app_evt = &_app_evt;
274 session_accepted_reply_msg_t *rmp;
275 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
276 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
277 rmp->handle = handle;
278 rmp->context = context;
279 rmp->retval = retval;
280 app_send_ctrl_evt_to_vpp (mq, app_evt);
281}
282
Florin Coras99368312018-08-02 10:45:44 -0700283static void
Florin Coras52dd29f2020-11-18 19:02:17 -0800284vcl_send_session_disconnected_reply (vcl_worker_t * wrk, vcl_session_t * s,
285 int retval)
Florin Coras99368312018-08-02 10:45:44 -0700286{
287 app_session_evt_t _app_evt, *app_evt = &_app_evt;
288 session_disconnected_reply_msg_t *rmp;
Florin Coras52dd29f2020-11-18 19:02:17 -0800289 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
Florin Coras99368312018-08-02 10:45:44 -0700290 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
291 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
Florin Coras52dd29f2020-11-18 19:02:17 -0800292 rmp->handle = s->vpp_handle;
293 rmp->context = wrk->api_client_handle;
Florin Coras99368312018-08-02 10:45:44 -0700294 rmp->retval = retval;
Florin Coras52dd29f2020-11-18 19:02:17 -0800295 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Coras99368312018-08-02 10:45:44 -0700296}
297
Florin Corasc9fbd662018-08-24 12:59:56 -0700298static void
Florin Coras52dd29f2020-11-18 19:02:17 -0800299vcl_send_session_reset_reply (vcl_worker_t * wrk, vcl_session_t * s,
300 int retval)
Florin Corasc9fbd662018-08-24 12:59:56 -0700301{
302 app_session_evt_t _app_evt, *app_evt = &_app_evt;
303 session_reset_reply_msg_t *rmp;
Florin Coras52dd29f2020-11-18 19:02:17 -0800304 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
305 SESSION_CTRL_EVT_RESET_REPLY);
Florin Corasc9fbd662018-08-24 12:59:56 -0700306 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
Florin Coras52dd29f2020-11-18 19:02:17 -0800307 rmp->handle = s->vpp_handle;
308 rmp->context = wrk->api_client_handle;
Florin Corasc9fbd662018-08-24 12:59:56 -0700309 rmp->retval = retval;
Florin Coras52dd29f2020-11-18 19:02:17 -0800310 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Corasc9fbd662018-08-24 12:59:56 -0700311}
312
Florin Coras30e79c22019-01-02 19:31:22 -0800313void
314vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
315 u32 wrk_index)
316{
317 app_session_evt_t _app_evt, *app_evt = &_app_evt;
318 session_worker_update_msg_t *mp;
Florin Coras30e79c22019-01-02 19:31:22 -0800319
Florin Coras52dd29f2020-11-18 19:02:17 -0800320 app_alloc_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt,
321 SESSION_CTRL_EVT_WORKER_UPDATE);
Florin Coras30e79c22019-01-02 19:31:22 -0800322 mp = (session_worker_update_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700323 mp->client_index = wrk->api_client_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800324 mp->handle = s->vpp_handle;
325 mp->req_wrk_index = wrk->vpp_wrk_index;
326 mp->wrk_index = wrk_index;
Florin Coras52dd29f2020-11-18 19:02:17 -0800327 app_send_ctrl_evt_to_vpp (s->vpp_evt_q, app_evt);
Florin Coras30e79c22019-01-02 19:31:22 -0800328}
329
hanlina3a48962020-07-13 11:09:15 +0800330int
Florin Coras40c07ce2020-07-16 20:46:17 -0700331vcl_send_worker_rpc (u32 dst_wrk_index, void *data, u32 data_len)
332{
333 app_session_evt_t _app_evt, *app_evt = &_app_evt;
334 session_app_wrk_rpc_msg_t *mp;
335 vcl_worker_t *dst_wrk, *wrk;
336 svm_msg_q_t *mq;
hanlina3a48962020-07-13 11:09:15 +0800337 int ret = -1;
Florin Coras40c07ce2020-07-16 20:46:17 -0700338
339 if (data_len > sizeof (mp->data))
340 goto done;
341
342 clib_spinlock_lock (&vcm->workers_lock);
343
344 dst_wrk = vcl_worker_get_if_valid (dst_wrk_index);
345 if (!dst_wrk)
346 goto done;
347
348 wrk = vcl_worker_get_current ();
349 mq = vcl_worker_ctrl_mq (wrk);
350 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_WRK_RPC);
351 mp = (session_app_wrk_rpc_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700352 mp->client_index = wrk->api_client_handle;
Florin Coras40c07ce2020-07-16 20:46:17 -0700353 mp->wrk_index = dst_wrk->vpp_wrk_index;
354 clib_memcpy (mp->data, data, data_len);
355 app_send_ctrl_evt_to_vpp (mq, app_evt);
hanlina3a48962020-07-13 11:09:15 +0800356 ret = 0;
Florin Coras40c07ce2020-07-16 20:46:17 -0700357
358done:
359 clib_spinlock_unlock (&vcm->workers_lock);
hanlina3a48962020-07-13 11:09:15 +0800360 return ret;
Florin Coras40c07ce2020-07-16 20:46:17 -0700361}
362
Florin Coras54693d22018-07-17 10:46:29 -0700363static u32
Florin Coras00cca802019-06-06 09:38:44 -0700364vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
365 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700366{
367 vcl_session_t *session, *listen_session;
Florin Coras99368312018-08-02 10:45:44 -0700368 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700369
Florin Coras134a9962018-08-28 11:32:04 -0700370 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700371
Florin Coras00cca802019-06-06 09:38:44 -0700372 listen_session = vcl_session_get (wrk, ls_index);
373 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700374 {
Florin Coras00cca802019-06-06 09:38:44 -0700375 VDBG (0, "ERROR: listener handle %lu does not match session %u",
376 mp->listener_handle, ls_index);
377 goto error;
378 }
379
Florin Corasc547e912020-12-08 17:50:45 -0800380 if (vcl_segment_attach_session (mp->segment_handle, mp->server_rx_fifo,
Florin Corasb4624182020-12-11 13:58:12 -0800381 mp->server_tx_fifo,
382 mp->vpp_event_queue_address, 0, session))
Florin Coras00cca802019-06-06 09:38:44 -0700383 {
Florin Corasc547e912020-12-08 17:50:45 -0800384 VDBG (0, "failed to attach fifos for %u", session->session_index);
Florin Coras00cca802019-06-06 09:38:44 -0700385 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700386 }
387
Florin Coras54693d22018-07-17 10:46:29 -0700388 session->vpp_handle = mp->handle;
Florin Corasdfffdd72020-10-15 10:54:47 -0700389 session->session_state = VCL_STATE_READY;
Florin Coras09d18c22019-04-24 11:10:02 -0700390 session->transport.rmt_port = mp->rmt.port;
391 session->transport.is_ip4 = mp->rmt.is_ip4;
392 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500393 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700394
Florin Coras134a9962018-08-28 11:32:04 -0700395 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700396 session->transport.lcl_port = listen_session->transport.lcl_port;
397 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700398 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200399 session->is_dgram = vcl_proto_is_dgram (session->session_type);
400 session->listener_index = listen_session->session_index;
401 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700402
Florin Coras5e062572019-03-14 19:07:51 -0700403 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
404 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700405 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
406 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
407 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700408 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
409
Florin Coras00cca802019-06-06 09:38:44 -0700410 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
411 session->vpp_handle, 0);
412
Florin Coras134a9962018-08-28 11:32:04 -0700413 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700414
415error:
Florin Corasb4624182020-12-11 13:58:12 -0800416 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0),
417 mp->vpp_event_queue_address, mp->mq_index, &evt_q);
Florin Coras00cca802019-06-06 09:38:44 -0700418 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
419 VNET_API_ERROR_INVALID_ARGUMENT);
420 vcl_session_free (wrk, session);
421 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700422}
423
424static u32
Florin Coras134a9962018-08-28 11:32:04 -0700425vcl_session_connected_handler (vcl_worker_t * wrk,
426 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700427{
Florin Coras99368312018-08-02 10:45:44 -0700428 vcl_session_t *session = 0;
Florin Coras52dd29f2020-11-18 19:02:17 -0800429 u32 session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700430
431 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700432 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700433 if (!session)
434 {
Florin Coras5e062572019-03-14 19:07:51 -0700435 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
436 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700437 return VCL_INVALID_SESSION_INDEX;
438 }
Florin Coras54693d22018-07-17 10:46:29 -0700439 if (mp->retval)
440 {
Florin Coras5e062572019-03-14 19:07:51 -0700441 VDBG (0, "ERROR: session index %u: connect failed! %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700442 session_index, format_session_error, mp->retval);
Florin Corasc127d5a2020-10-14 16:35:58 -0700443 session->session_state = VCL_STATE_DETACHED;
Florin Coras070453d2018-08-24 17:04:27 -0700444 session->vpp_handle = mp->handle;
445 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700446 }
447
Florin Corasdbc9c592019-09-25 16:37:43 -0700448 session->vpp_handle = mp->handle;
Florin Corasc547e912020-12-08 17:50:45 -0800449
450 if (vcl_segment_attach_session (mp->segment_handle, mp->server_rx_fifo,
Florin Corasb4624182020-12-11 13:58:12 -0800451 mp->server_tx_fifo,
452 mp->vpp_event_queue_address, 0, session))
Florin Corasd85de682018-11-29 17:02:29 -0800453 {
Florin Corasc547e912020-12-08 17:50:45 -0800454 VDBG (0, "failed to attach fifos for %u", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700455 session->session_state = VCL_STATE_DETACHED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700456 vcl_send_session_disconnect (wrk, session);
457 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800458 }
459
Florin Coras653e43f2019-03-04 10:56:23 -0800460 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700461 {
Florin Corasc547e912020-12-08 17:50:45 -0800462 if (vcl_segment_attach_session (mp->ct_segment_handle, mp->ct_rx_fifo,
Florin Corasb4624182020-12-11 13:58:12 -0800463 mp->ct_tx_fifo, (uword) ~0, 1, session))
Florin Coras653e43f2019-03-04 10:56:23 -0800464 {
Florin Corasc547e912020-12-08 17:50:45 -0800465 VDBG (0, "failed to attach ct fifos for %u", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700466 session->session_state = VCL_STATE_DETACHED;
Florin Corasdbc9c592019-09-25 16:37:43 -0700467 vcl_send_session_disconnect (wrk, session);
468 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800469 }
Florin Coras99368312018-08-02 10:45:44 -0700470 }
Florin Coras54693d22018-07-17 10:46:29 -0700471
Florin Coras09d18c22019-04-24 11:10:02 -0700472 session->transport.is_ip4 = mp->lcl.is_ip4;
473 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500474 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700475 session->transport.lcl_port = mp->lcl.port;
Florin Corasa5ea8212020-08-24 21:23:51 -0700476
477 /* Application closed session before connect reply */
Florin Corasac422d62020-10-19 20:51:36 -0700478 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK)
Florin Corasc127d5a2020-10-14 16:35:58 -0700479 && session->session_state == VCL_STATE_CLOSED)
Florin Corasa5ea8212020-08-24 21:23:51 -0700480 vcl_send_session_disconnect (wrk, session);
481 else
Florin Corasdfffdd72020-10-15 10:54:47 -0700482 session->session_state = VCL_STATE_READY;
Florin Coras54693d22018-07-17 10:46:29 -0700483
484 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800485 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700486
Florin Coras5e062572019-03-14 19:07:51 -0700487 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
488 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700489 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700490
Florin Coras54693d22018-07-17 10:46:29 -0700491 return session_index;
492}
493
Florin Coras3c7d4f92018-12-14 11:28:43 -0800494static int
495vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
496{
497 vcl_session_msg_t *accepted_msg;
498 int i;
499
500 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
501 {
502 accepted_msg = &session->accept_evts_fifo[i];
503 if (accepted_msg->accepted_msg.handle == handle)
504 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800505 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800506 return 1;
507 }
508 }
509 return 0;
510}
511
Florin Corasc9fbd662018-08-24 12:59:56 -0700512static u32
Florin Coras134a9962018-08-28 11:32:04 -0700513vcl_session_reset_handler (vcl_worker_t * wrk,
514 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700515{
516 vcl_session_t *session;
517 u32 sid;
518
Florin Coras134a9962018-08-28 11:32:04 -0700519 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
520 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700521 if (!session)
522 {
523 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
524 return VCL_INVALID_SESSION_INDEX;
525 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800526
527 /* Caught a reset before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700528 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800529 {
530
531 if (!vcl_flag_accepted_session (session, reset_msg->handle,
532 VCL_ACCEPTED_F_RESET))
533 VDBG (0, "session was not accepted!");
534 return VCL_INVALID_SESSION_INDEX;
535 }
536
Florin Corasc127d5a2020-10-14 16:35:58 -0700537 if (session->session_state != VCL_STATE_CLOSED)
538 session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800539 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700540 return sid;
541}
542
Florin Coras60116992018-08-27 09:52:18 -0700543static u32
Florin Coras134a9962018-08-28 11:32:04 -0700544vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700545{
546 vcl_session_t *session;
547 u32 sid = mp->context;
548
Florin Coras134a9962018-08-28 11:32:04 -0700549 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700550 if (mp->retval)
551 {
Florin Coras5e062572019-03-14 19:07:51 -0700552 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700553 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700554 if (session)
555 {
Florin Corasc127d5a2020-10-14 16:35:58 -0700556 session->session_state = VCL_STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700557 session->vpp_handle = mp->handle;
558 return sid;
559 }
560 else
561 {
Florin Coras5e062572019-03-14 19:07:51 -0700562 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
563 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700564 return VCL_INVALID_SESSION_INDEX;
565 }
566 }
567
568 session->vpp_handle = mp->handle;
569 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500570 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
571 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700572 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700573 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Corasc127d5a2020-10-14 16:35:58 -0700574 session->session_state = VCL_STATE_LISTEN;
Florin Coras5f45e012019-01-23 09:21:30 -0800575
Florin Coras6e3c1f82020-01-15 01:30:46 +0000576 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700577 {
Florin Corasc547e912020-12-08 17:50:45 -0800578 if (vcl_segment_attach_session (mp->segment_handle, mp->rx_fifo,
Florin Corasb4624182020-12-11 13:58:12 -0800579 mp->tx_fifo, mp->vpp_evt_q, 0, session))
Florin Corasc547e912020-12-08 17:50:45 -0800580 {
581 VDBG (0, "failed to attach fifos for %u", session->session_index);
582 session->session_state = VCL_STATE_DETACHED;
583 return VCL_INVALID_SESSION_INDEX;
584 }
Florin Coras60116992018-08-27 09:52:18 -0700585 }
586
Florin Coras05ecfcc2018-12-12 18:19:39 -0800587 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700588 return sid;
589}
590
Florin Corasdfae9f92019-02-20 19:48:31 -0800591static void
592vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
593{
594 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
595 vcl_session_t *s;
596
597 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000598 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800599 {
600 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
601 return;
602 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700603 if (s->session_state != VCL_STATE_DISCONNECT)
Florin Coras0a1e1832020-03-29 18:54:04 +0000604 {
605 /* Connected udp listener */
606 if (s->session_type == VPPCOM_PROTO_UDP
Florin Corasc127d5a2020-10-14 16:35:58 -0700607 && s->session_state == VCL_STATE_CLOSED)
Florin Coras0a1e1832020-03-29 18:54:04 +0000608 return;
609
610 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
611 return;
612 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800613
614 if (mp->retval)
615 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700616 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800617
618 if (mp->context != wrk->wrk_index)
619 VDBG (0, "wrong context");
620
621 vcl_session_table_del_vpp_handle (wrk, mp->handle);
622 vcl_session_free (wrk, s);
623}
624
Florin Coras68b7e582020-01-21 18:33:23 -0800625static void
626vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
627{
628 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
629 vcl_session_t *s;
Florin Corasc547e912020-12-08 17:50:45 -0800630 u32 fs_index;
Florin Coras68b7e582020-01-21 18:33:23 -0800631
632 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
633 if (!s)
634 {
635 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
636 return;
637 }
638
Florin Corasc547e912020-12-08 17:50:45 -0800639 fs_index = vcl_segment_table_lookup (mp->segment_handle);
640 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
641 {
642 VDBG (0, "segment for session %u is not mounted!", s->session_index);
643 s->session_state = VCL_STATE_DETACHED;
644 return;
645 }
646
Florin Coras57660d92020-04-04 22:45:34 +0000647 s->vpp_handle = mp->new_handle;
Florin Corasb4624182020-12-11 13:58:12 -0800648
649 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0), mp->vpp_evt_q,
650 mp->vpp_thread_index, &s->vpp_evt_q);
Florin Coras68b7e582020-01-21 18:33:23 -0800651
Florin Coras68b7e582020-01-21 18:33:23 -0800652 vcl_session_table_del_vpp_handle (wrk, mp->handle);
653 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
654
655 /* Generate new tx event if we have outstanding data */
656 if (svm_fifo_has_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -0800657 app_send_io_evt_to_vpp (s->vpp_evt_q,
658 s->tx_fifo->shr->master_session_index,
Florin Coras68b7e582020-01-21 18:33:23 -0800659 SESSION_IO_EVT_TX, SVM_Q_WAIT);
660
Florin Coras57660d92020-04-04 22:45:34 +0000661 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
Florin Coras52dd29f2020-11-18 19:02:17 -0800662 mp->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800663}
664
Florin Coras3c7d4f92018-12-14 11:28:43 -0800665static vcl_session_t *
666vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
667{
668 vcl_session_msg_t *vcl_msg;
669 vcl_session_t *session;
670
671 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
672 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800673 VWRN ("session overlap handle %lu state %u!", msg->handle,
674 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800675
676 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
677 if (!session)
678 {
679 VERR ("couldn't find listen session: listener handle %llx",
680 msg->listener_handle);
681 return 0;
682 }
683
684 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000685 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800686 vcl_msg->accepted_msg = *msg;
687 /* Session handle points to listener until fully accepted by app */
688 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
689
690 return session;
691}
692
693static vcl_session_t *
694vcl_session_disconnected_handler (vcl_worker_t * wrk,
695 session_disconnected_msg_t * msg)
696{
697 vcl_session_t *session;
698
699 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
700 if (!session)
701 {
702 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
703 return 0;
704 }
705
Florin Corasadcfb152020-02-12 08:50:29 +0000706 /* Late disconnect notification on a session that has been closed */
Florin Corasc127d5a2020-10-14 16:35:58 -0700707 if (session->session_state == VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000708 return 0;
709
Florin Coras3c7d4f92018-12-14 11:28:43 -0800710 /* Caught a disconnect before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700711 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800712 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800713 if (!vcl_flag_accepted_session (session, msg->handle,
714 VCL_ACCEPTED_F_CLOSED))
715 VDBG (0, "session was not accepted!");
716 return 0;
717 }
718
Florin Corasadcfb152020-02-12 08:50:29 +0000719 /* If not already reset change state */
Florin Corasc127d5a2020-10-14 16:35:58 -0700720 if (session->session_state != VCL_STATE_DISCONNECT)
721 session->session_state = VCL_STATE_VPP_CLOSING;
Florin Corasadcfb152020-02-12 08:50:29 +0000722
Florin Coras3c7d4f92018-12-14 11:28:43 -0800723 return session;
724}
725
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700726static int
727vppcom_session_disconnect (u32 session_handle)
728{
729 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700730 vcl_session_t *session, *listen_session;
731 vcl_session_state_t state;
732 u64 vpp_handle;
733
734 session = vcl_session_get_w_handle (wrk, session_handle);
735 if (!session)
736 return VPPCOM_EBADFD;
737
738 vpp_handle = session->vpp_handle;
739 state = session->session_state;
740
741 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
742 vpp_handle, state, vppcom_session_state_str (state));
743
744 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
745 {
746 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
747 return VPPCOM_EBADFD;
748 }
749
750 if (state == VCL_STATE_VPP_CLOSING)
751 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800752 vcl_send_session_disconnected_reply (wrk, session, 0);
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700753 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
754 session->session_index, vpp_handle);
755 }
756 else
757 {
758 /* Session doesn't have an event queue yet. Probably a non-blocking
759 * connect. Wait for the reply */
760 if (PREDICT_FALSE (!session->vpp_evt_q))
761 return VPPCOM_OK;
762
763 VDBG (1, "session %u [0x%llx]: sending disconnect...",
764 session->session_index, vpp_handle);
765 vcl_send_session_disconnect (wrk, session);
766 }
767
768 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
769 {
770 listen_session = vcl_session_get (wrk, session->listener_index);
771 listen_session->n_accepted_sessions--;
772 }
773
774 return VPPCOM_OK;
775}
776
Florin Coras30e79c22019-01-02 19:31:22 -0800777static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700778vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
779{
780 session_cleanup_msg_t *msg;
781 vcl_session_t *session;
782
783 msg = (session_cleanup_msg_t *) data;
784 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
785 if (!session)
786 {
787 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
788 return;
789 }
790
Florin Coras36d49392020-04-24 23:00:11 +0000791 if (msg->type == SESSION_CLEANUP_TRANSPORT)
792 {
793 /* Transport was cleaned up before we confirmed close. Probably the
794 * app is still waiting for some data that cannot be delivered.
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700795 * Confirm close to make sure everything is cleaned up.
796 * Move to undetermined state to ensure that the session is not
797 * removed before both vpp and the app cleanup.
798 * - If the app closes first, the session is moved to CLOSED state
799 * and the session cleanup notification from vpp removes the
800 * session.
801 * - If vpp cleans up the session first, the session is moved to
802 * DETACHED state lower and subsequently the close from the app
803 * frees the session
804 */
805 if (session->session_state == VCL_STATE_VPP_CLOSING)
Florin Coras0ff7eec2020-08-03 18:55:40 -0700806 {
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700807 vppcom_session_disconnect (vcl_session_handle (session));
808 session->session_state = VCL_STATE_UPDATED;
809 }
810 else if (session->session_state == VCL_STATE_DISCONNECT)
811 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800812 vcl_send_session_reset_reply (wrk, session, 0);
Florin Coras0ff7eec2020-08-03 18:55:40 -0700813 session->session_state = VCL_STATE_UPDATED;
814 }
Florin Coras36d49392020-04-24 23:00:11 +0000815 return;
816 }
817
Florin Coras9ace36d2019-10-28 13:14:17 -0700818 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000819 /* Should not happen. App did not close the connection so don't free it. */
Florin Corasc127d5a2020-10-14 16:35:58 -0700820 if (session->session_state != VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000821 {
822 VDBG (0, "app did not close session %d", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700823 session->session_state = VCL_STATE_DETACHED;
Florin Corasadcfb152020-02-12 08:50:29 +0000824 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
825 return;
826 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700827 vcl_session_free (wrk, session);
828}
829
830static void
Florin Coras30e79c22019-01-02 19:31:22 -0800831vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
832{
833 session_req_worker_update_msg_t *msg;
834 vcl_session_t *s;
835
836 msg = (session_req_worker_update_msg_t *) data;
837 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
838 if (!s)
839 return;
840
841 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
842}
843
844static void
845vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
846{
847 session_worker_update_reply_msg_t *msg;
848 vcl_session_t *s;
849
850 msg = (session_worker_update_reply_msg_t *) data;
851 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
852 if (!s)
853 {
854 VDBG (0, "unknown handle 0x%llx", msg->handle);
855 return;
856 }
Florin Coras30e79c22019-01-02 19:31:22 -0800857
Florin Coras5f45e012019-01-23 09:21:30 -0800858 if (s->rx_fifo)
859 {
Florin Corasc547e912020-12-08 17:50:45 -0800860 if (vcl_segment_attach_session (msg->segment_handle, msg->rx_fifo,
Florin Corasb4624182020-12-11 13:58:12 -0800861 msg->tx_fifo, (uword) ~0, 0, s))
Florin Corasc547e912020-12-08 17:50:45 -0800862 {
863 VDBG (0, "failed to attach fifos for %u", s->session_index);
864 return;
865 }
Florin Coras5f45e012019-01-23 09:21:30 -0800866 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700867 s->session_state = VCL_STATE_UPDATED;
Florin Coras30e79c22019-01-02 19:31:22 -0800868
Florin Coras30e79c22019-01-02 19:31:22 -0800869 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
870 s->vpp_handle, wrk->wrk_index);
871}
872
Florin Coras935ce752020-09-08 22:43:47 -0700873static int
874vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
875{
876
877 if (vcm->cfg.vpp_app_socket_api)
878 return vcl_sapi_recv_fds (wrk, fds, n_fds);
879
880 return vcl_bapi_recv_fds (wrk, fds, n_fds);
881}
882
Florin Corasc4c4cf52019-08-24 18:17:34 -0700883static void
884vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
885{
886 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
887 session_app_add_segment_msg_t *msg;
888 u64 segment_handle;
889 int fd = -1;
890
891 msg = (session_app_add_segment_msg_t *) data;
892
893 if (msg->fd_flags)
894 {
Florin Coras935ce752020-09-08 22:43:47 -0700895 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700896 seg_type = SSVM_SEGMENT_MEMFD;
897 }
898
899 segment_handle = msg->segment_handle;
900 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
901 {
902 clib_warning ("invalid segment handle");
903 return;
904 }
905
906 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
907 seg_type, fd))
908 {
909 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
910 return;
911 }
912
913 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
914 msg->segment_size);
915}
916
917static void
918vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
919{
920 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
921 vcl_segment_detach (msg->segment_handle);
922 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
923}
924
Florin Coras40c07ce2020-07-16 20:46:17 -0700925static void
926vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
927{
928 if (!vcm->wrk_rpc_fn)
929 return;
930
hanlina3a48962020-07-13 11:09:15 +0800931 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700932}
933
Florin Coras86f04502018-09-12 16:08:01 -0700934static int
935vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700936{
Florin Coras54693d22018-07-17 10:46:29 -0700937 session_disconnected_msg_t *disconnected_msg;
Florin Corasb242d312020-10-26 15:35:40 -0700938 session_connected_msg_t *connected_msg;
939 session_reset_msg_t *reset_msg;
940 session_event_t *ecpy;
Florin Corasc127d5a2020-10-14 16:35:58 -0700941 vcl_session_t *s;
Florin Corasb242d312020-10-26 15:35:40 -0700942 u32 sid;
Florin Coras54693d22018-07-17 10:46:29 -0700943
944 switch (e->event_type)
945 {
Florin Coras653e43f2019-03-04 10:56:23 -0800946 case SESSION_IO_EVT_RX:
947 case SESSION_IO_EVT_TX:
Florin Corasc127d5a2020-10-14 16:35:58 -0700948 s = vcl_session_get (wrk, e->session_index);
Florin Coras1bc919e2020-10-18 20:17:49 -0700949 if (!s || !vcl_session_is_open (s))
Florin Coras653e43f2019-03-04 10:56:23 -0800950 break;
Florin Coras86f04502018-09-12 16:08:01 -0700951 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700952 break;
Florin Corasb242d312020-10-26 15:35:40 -0700953 case SESSION_CTRL_EVT_BOUND:
954 /* We can only wait for only one listen so not postponed */
955 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
956 break;
Florin Coras54693d22018-07-17 10:46:29 -0700957 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -0700958 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
959 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
960 {
961 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
962 *ecpy = *e;
963 ecpy->postponed = 1;
964 ecpy->session_index = s->session_index;
965 }
Florin Coras54693d22018-07-17 10:46:29 -0700966 break;
967 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -0700968 connected_msg = (session_connected_msg_t *) e->data;
969 sid = vcl_session_connected_handler (wrk, connected_msg);
970 if (!(s = vcl_session_get (wrk, sid)))
971 break;
972 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
973 {
974 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
975 *ecpy = *e;
976 ecpy->postponed = 1;
977 ecpy->session_index = s->session_index;
978 }
Florin Coras54693d22018-07-17 10:46:29 -0700979 break;
980 case SESSION_CTRL_EVT_DISCONNECTED:
981 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -0700982 if (!(s = vcl_session_get_w_vpp_handle (wrk, disconnected_msg->handle)))
983 break;
984 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
985 {
986 vec_add1 (wrk->unhandled_evts_vector, *e);
987 break;
988 }
989 if (!(s = vcl_session_disconnected_handler (wrk, disconnected_msg)))
Florin Coras3c7d4f92018-12-14 11:28:43 -0800990 break;
Florin Corasc127d5a2020-10-14 16:35:58 -0700991 VDBG (0, "disconnected session %u [0x%llx]", s->session_index,
992 s->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700993 break;
994 case SESSION_CTRL_EVT_RESET:
Florin Corasb242d312020-10-26 15:35:40 -0700995 reset_msg = (session_reset_msg_t *) e->data;
996 if (!(s = vcl_session_get_w_vpp_handle (wrk, reset_msg->handle)))
997 break;
998 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
999 {
1000 vec_add1 (wrk->unhandled_evts_vector, *e);
1001 break;
1002 }
Florin Coras134a9962018-08-28 11:32:04 -07001003 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -07001004 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08001005 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
1006 vcl_session_unlisten_reply_handler (wrk, e->data);
1007 break;
Florin Coras68b7e582020-01-21 18:33:23 -08001008 case SESSION_CTRL_EVT_MIGRATED:
1009 vcl_session_migrated_handler (wrk, e->data);
1010 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07001011 case SESSION_CTRL_EVT_CLEANUP:
1012 vcl_session_cleanup_handler (wrk, e->data);
1013 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001014 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1015 vcl_session_req_worker_update_handler (wrk, e->data);
1016 break;
1017 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1018 vcl_session_worker_update_reply_handler (wrk, e->data);
1019 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07001020 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
1021 vcl_session_app_add_segment_handler (wrk, e->data);
1022 break;
1023 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
1024 vcl_session_app_del_segment_handler (wrk, e->data);
1025 break;
hanlina3a48962020-07-13 11:09:15 +08001026 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07001027 vcl_worker_rpc_handler (wrk, e->data);
1028 break;
Florin Coras54693d22018-07-17 10:46:29 -07001029 default:
1030 clib_warning ("unhandled %u", e->event_type);
1031 }
1032 return VPPCOM_OK;
1033}
1034
Florin Coras30e79c22019-01-02 19:31:22 -08001035static int
Florin Coras697faea2018-06-27 17:10:49 -07001036vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -08001037 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -07001038 f64 wait_for_time)
1039{
Florin Coras134a9962018-08-28 11:32:04 -07001040 vcl_worker_t *wrk = vcl_worker_get_current ();
1041 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001042 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001043 svm_msg_q_msg_t msg;
1044 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001045
Florin Coras697faea2018-06-27 17:10:49 -07001046 do
Dave Wallace543852a2017-08-03 02:11:34 -04001047 {
Florin Coras134a9962018-08-28 11:32:04 -07001048 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001049 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001050 {
Florin Coras070453d2018-08-24 17:04:27 -07001051 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001052 }
Florin Corasdfffdd72020-10-15 10:54:47 -07001053 if (session->session_state == state)
Florin Coras697faea2018-06-27 17:10:49 -07001054 {
Florin Coras697faea2018-06-27 17:10:49 -07001055 return VPPCOM_OK;
1056 }
Florin Corasc127d5a2020-10-14 16:35:58 -07001057 if (session->session_state == VCL_STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001058 {
Florin Coras697faea2018-06-27 17:10:49 -07001059 return VPPCOM_ECONNREFUSED;
1060 }
Florin Coras54693d22018-07-17 10:46:29 -07001061
Florin Coras134a9962018-08-28 11:32:04 -07001062 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001063 {
1064 usleep (100);
1065 continue;
1066 }
Florin Coras134a9962018-08-28 11:32:04 -07001067 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001068 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001069 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001070 }
Florin Coras134a9962018-08-28 11:32:04 -07001071 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001072
Florin Coras05ecfcc2018-12-12 18:19:39 -08001073 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -07001074 vppcom_session_state_str (state));
1075 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001076
Florin Coras697faea2018-06-27 17:10:49 -07001077 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001078}
1079
Florin Coras30e79c22019-01-02 19:31:22 -08001080static void
1081vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1082{
Florin Coras288eaab2019-02-03 15:26:14 -08001083 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001084 vcl_session_t *s;
1085 u32 *sip;
1086
1087 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1088 return;
1089
1090 vec_foreach (sip, wrk->pending_session_wrk_updates)
1091 {
1092 s = vcl_session_get (wrk, *sip);
1093 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1094 state = s->session_state;
Florin Corasc127d5a2020-10-14 16:35:58 -07001095 vppcom_wait_for_session_state_change (s->session_index, VCL_STATE_UPDATED,
1096 5);
Florin Coras30e79c22019-01-02 19:31:22 -08001097 s->session_state = state;
1098 }
1099 vec_reset_length (wrk->pending_session_wrk_updates);
1100}
1101
Florin Corasf9240dc2019-01-15 08:03:17 -08001102void
Florin Coras5398dfb2021-01-25 20:31:27 -08001103vcl_worker_flush_mq_events (vcl_worker_t *wrk)
Florin Coras30e79c22019-01-02 19:31:22 -08001104{
Florin Coras30e79c22019-01-02 19:31:22 -08001105 svm_msg_q_msg_t *msg;
1106 session_event_t *e;
1107 svm_msg_q_t *mq;
1108 int i;
1109
1110 mq = wrk->app_event_queue;
Florin Corase003a1b2019-06-05 10:47:16 -07001111 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001112
1113 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1114 {
1115 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1116 e = svm_msg_q_msg_data (mq, msg);
1117 vcl_handle_mq_event (wrk, e);
1118 svm_msg_q_free_msg (mq, msg);
1119 }
1120 vec_reset_length (wrk->mq_msg_vector);
1121 vcl_handle_pending_wrk_updates (wrk);
1122}
1123
Florin Coras5398dfb2021-01-25 20:31:27 -08001124void
1125vcl_flush_mq_events (void)
1126{
1127 vcl_worker_flush_mq_events (vcl_worker_get_current ());
1128}
1129
Florin Coras697faea2018-06-27 17:10:49 -07001130static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001131vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001132{
Florin Coras134a9962018-08-28 11:32:04 -07001133 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001134 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001135 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001136 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001137
Florin Corasab2f6db2018-08-31 14:31:41 -07001138 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001139 if (!session)
1140 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001141
Florin Corasaaff5ee2019-07-08 13:00:00 -07001142 /* Flush pending accept events, if any */
1143 while (clib_fifo_elts (session->accept_evts_fifo))
1144 {
1145 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1146 accepted_msg = &evt->accepted_msg;
1147 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1148 vcl_send_session_accepted_reply (session->vpp_evt_q,
1149 accepted_msg->context,
wanghanlin785b6ea2020-12-10 19:12:22 +08001150 accepted_msg->handle, -1);
Florin Corasaaff5ee2019-07-08 13:00:00 -07001151 }
1152 clib_fifo_free (session->accept_evts_fifo);
1153
Florin Coras458089b2019-08-21 16:20:44 -07001154 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001155
Florin Coras5e062572019-03-14 19:07:51 -07001156 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001157 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001158 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001159
1160 session->vpp_handle = ~0;
Florin Corasc127d5a2020-10-14 16:35:58 -07001161 session->session_state = VCL_STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001162
Florin Coras070453d2018-08-24 17:04:27 -07001163 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001164}
1165
Florin Coras940f78f2018-11-30 12:11:20 -08001166/**
1167 * Handle app exit
1168 *
1169 * Notify vpp of the disconnect and mark the worker as free. If we're the
1170 * last worker, do a full cleanup otherwise, since we're probably a forked
1171 * child, avoid syscalls as much as possible. We might've lost privileges.
1172 */
1173void
1174vppcom_app_exit (void)
1175{
1176 if (!pool_elts (vcm->workers))
1177 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001178 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1179 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001180 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001181}
1182
Florin Coras935ce752020-09-08 22:43:47 -07001183static int
1184vcl_api_attach (void)
1185{
1186 if (vcm->cfg.vpp_app_socket_api)
1187 return vcl_sapi_attach ();
1188
1189 return vcl_bapi_attach ();
1190}
1191
1192static void
1193vcl_api_detach (vcl_worker_t * wrk)
1194{
1195 vcl_send_app_detach (wrk);
1196
1197 if (vcm->cfg.vpp_app_socket_api)
1198 return vcl_sapi_detach (wrk);
1199
1200 return vcl_bapi_disconnect_from_vpp ();
1201}
1202
Dave Wallace543852a2017-08-03 02:11:34 -04001203/*
1204 * VPPCOM Public API functions
1205 */
1206int
Florin Coras66ec4672020-06-15 07:59:40 -07001207vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001208{
Dave Wallace543852a2017-08-03 02:11:34 -04001209 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001210 int rv;
1211
Florin Coras47c40e22018-11-26 17:01:36 -08001212 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001213 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001214 VDBG (1, "already initialized");
1215 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001216 }
1217
Florin Coras47c40e22018-11-26 17:01:36 -08001218 vcm->is_init = 1;
1219 vppcom_cfg (&vcm->cfg);
1220 vcl_cfg = &vcm->cfg;
1221
1222 vcm->main_cpu = pthread_self ();
1223 vcm->main_pid = getpid ();
1224 vcm->app_name = format (0, "%s", app_name);
Florin Coras88001c62019-04-24 14:44:46 -07001225 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1226 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001227 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1228 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001229 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001230 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001231 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001232
1233 /* Allocate default worker */
1234 vcl_worker_alloc_and_init ();
1235
Florin Coras935ce752020-09-08 22:43:47 -07001236 if ((rv = vcl_api_attach ()))
Florin Corasb88de902020-09-08 16:47:57 -07001237 return rv;
Florin Coras47c40e22018-11-26 17:01:36 -08001238
1239 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001240 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001241
1242 return VPPCOM_OK;
1243}
1244
1245void
1246vppcom_app_destroy (void)
1247{
Florin Corasdc0ded72020-04-30 02:59:55 +00001248 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001249 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001250
Florin Coras940f78f2018-11-30 12:11:20 -08001251 if (!pool_elts (vcm->workers))
1252 return;
1253
Florin Coras0d427d82018-06-27 03:24:07 -07001254 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001255
Florin Corasdc0ded72020-04-30 02:59:55 +00001256 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001257
Florin Corasce815de2020-04-16 18:47:27 +00001258 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001259 pool_foreach (wrk, vcm->workers) {
Florin Corasdc0ded72020-04-30 02:59:55 +00001260 if (current_wrk != wrk)
1261 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Damjan Marionb2c31b62020-12-13 21:47:40 +01001262 }
Florin Corasce815de2020-04-16 18:47:27 +00001263 /* *INDENT-ON* */
1264
Florin Coras935ce752020-09-08 22:43:47 -07001265 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001266 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1267
Florin Coras0d427d82018-06-27 03:24:07 -07001268 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001269
1270 /*
1271 * Free the heap and fix vcm
1272 */
1273 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001274 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001275
1276 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001277 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001278}
1279
1280int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001281vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001282{
Florin Coras134a9962018-08-28 11:32:04 -07001283 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001284 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001285
Florin Coras134a9962018-08-28 11:32:04 -07001286 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001287
Florin Coras7e12d942018-06-27 14:32:43 -07001288 session->session_type = proto;
Florin Corasc127d5a2020-10-14 16:35:58 -07001289 session->session_state = VCL_STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001290 session->vpp_handle = ~0;
Florin Corasa5a9efd2021-01-05 17:03:29 -08001291 session->ckpair_index = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001292 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001293
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001294 if (is_nonblocking)
Florin Corasac422d62020-10-19 20:51:36 -07001295 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001296
Florin Coras7e12d942018-06-27 14:32:43 -07001297 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1298 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001299
Florin Coras5e062572019-03-14 19:07:51 -07001300 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001301
Florin Coras134a9962018-08-28 11:32:04 -07001302 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001303}
1304
1305int
Florin Corasc127d5a2020-10-14 16:35:58 -07001306vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * s,
Florin Corasf9240dc2019-01-15 08:03:17 -08001307 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001308{
Florin Coras134a9962018-08-28 11:32:04 -07001309 int rv = VPPCOM_OK;
Florin Coras47c40e22018-11-26 17:01:36 -08001310
Florin Coras6c3b2182020-10-19 18:36:48 -07001311 VDBG (1, "session %u [0x%llx] closing", s->session_index, s->vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001312
Florin Coras6c3b2182020-10-19 18:36:48 -07001313 if (s->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace543852a2017-08-03 02:11:34 -04001314 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001315 u32 next_sh = s->vep.next_sh;
Florin Coras134a9962018-08-28 11:32:04 -07001316 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001317 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001318 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001319 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001320 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras6c3b2182020-10-19 18:36:48 -07001321 " failed! rv %d (%s)", s->vpp_handle, next_sh,
1322 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Florin Corasc127d5a2020-10-14 16:35:58 -07001323 next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001324 }
Florin Corase4306b62020-10-28 12:51:10 -07001325 goto free_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001326 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001327
Florin Coras6c3b2182020-10-19 18:36:48 -07001328 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001329 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001330 rv = vppcom_epoll_ctl (s->vep.vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001331 if (rv < 0)
1332 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
Florin Coras6c3b2182020-10-19 18:36:48 -07001333 "failed! rv %d (%s)", s->session_index, s->vpp_handle,
1334 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001335 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001336
Florin Coras9ace36d2019-10-28 13:14:17 -07001337 if (!do_disconnect)
1338 {
1339 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Coras6c3b2182020-10-19 18:36:48 -07001340 s->session_index, s->vpp_handle);
Florin Coras9ace36d2019-10-28 13:14:17 -07001341 goto cleanup;
1342 }
1343
Florin Coras6c3b2182020-10-19 18:36:48 -07001344 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras9ace36d2019-10-28 13:14:17 -07001345 {
1346 rv = vppcom_session_unbind (sh);
1347 if (PREDICT_FALSE (rv < 0))
1348 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
Florin Coras6c3b2182020-10-19 18:36:48 -07001349 "rv %d (%s)", s->session_index, s->vpp_handle, rv,
Florin Coras9ace36d2019-10-28 13:14:17 -07001350 vppcom_retval_str (rv));
1351 return rv;
1352 }
Florin Coras1bc919e2020-10-18 20:17:49 -07001353 else if (vcl_session_is_ready (s)
Florin Corasc127d5a2020-10-14 16:35:58 -07001354 || (vcl_session_is_connectable_listener (wrk, s)))
Florin Coras9ace36d2019-10-28 13:14:17 -07001355 {
1356 rv = vppcom_session_disconnect (sh);
1357 if (PREDICT_FALSE (rv < 0))
1358 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
Florin Coras6c3b2182020-10-19 18:36:48 -07001359 " rv %d (%s)", s->session_index, s->vpp_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001360 rv, vppcom_retval_str (rv));
1361 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001362 else if (s->session_state == VCL_STATE_DISCONNECT)
Florin Coras9ace36d2019-10-28 13:14:17 -07001363 {
Florin Coras52dd29f2020-11-18 19:02:17 -08001364 vcl_send_session_reset_reply (wrk, s, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001365 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001366 else if (s->session_state == VCL_STATE_DETACHED)
Florin Corasadcfb152020-02-12 08:50:29 +00001367 {
1368 /* Should not happen. VPP cleaned up before app confirmed close */
Florin Corasc127d5a2020-10-14 16:35:58 -07001369 VDBG (0, "vpp freed session %d before close", s->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +00001370 goto free_session;
1371 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001372
Florin Corasc127d5a2020-10-14 16:35:58 -07001373 s->session_state = VCL_STATE_CLOSED;
Florin Coras54140622020-02-04 19:04:34 +00001374
Florin Coras9ace36d2019-10-28 13:14:17 -07001375 /* Session is removed only after vpp confirms the disconnect */
1376 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001377
Florin Corasf9240dc2019-01-15 08:03:17 -08001378cleanup:
Florin Coras6c3b2182020-10-19 18:36:48 -07001379 vcl_session_table_del_vpp_handle (wrk, s->vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001380free_session:
Florin Corasc127d5a2020-10-14 16:35:58 -07001381 vcl_session_free (wrk, s);
1382 vcl_evt (VCL_EVT_CLOSE, s, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001383
Dave Wallace543852a2017-08-03 02:11:34 -04001384 return rv;
1385}
1386
1387int
Florin Corasf9240dc2019-01-15 08:03:17 -08001388vppcom_session_close (uint32_t session_handle)
1389{
1390 vcl_worker_t *wrk = vcl_worker_get_current ();
1391 vcl_session_t *session;
1392
1393 session = vcl_session_get_w_handle (wrk, session_handle);
1394 if (!session)
1395 return VPPCOM_EBADFD;
1396 return vcl_session_cleanup (wrk, session, session_handle,
1397 1 /* do_disconnect */ );
1398}
1399
1400int
Florin Coras134a9962018-08-28 11:32:04 -07001401vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001402{
Florin Coras134a9962018-08-28 11:32:04 -07001403 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001404 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001405
1406 if (!ep || !ep->ip)
1407 return VPPCOM_EINVAL;
1408
Florin Coras134a9962018-08-28 11:32:04 -07001409 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001410 if (!session)
1411 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001412
Florin Coras6c3b2182020-10-19 18:36:48 -07001413 if (session->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001414 {
Florin Coras5e062572019-03-14 19:07:51 -07001415 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1416 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001417 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001418 }
1419
Florin Coras7e12d942018-06-27 14:32:43 -07001420 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001421 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001422 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1423 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001424 else
Dave Barach178cf492018-11-13 16:34:13 -05001425 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1426 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001427 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001428
Florin Coras5e062572019-03-14 19:07:51 -07001429 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1430 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001431 session->transport.is_ip4 ? "IPv4" : "IPv6",
1432 format_ip46_address, &session->transport.lcl_ip,
1433 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1434 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001435 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001436 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001437
1438 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001439 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001440
Florin Coras070453d2018-08-24 17:04:27 -07001441 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001442}
1443
1444int
Florin Coras134a9962018-08-28 11:32:04 -07001445vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001446{
Florin Coras134a9962018-08-28 11:32:04 -07001447 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001448 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001449 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001450 int rv;
1451
Florin Coras134a9962018-08-28 11:32:04 -07001452 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras6c3b2182020-10-19 18:36:48 -07001453 if (!listen_session || (listen_session->flags & VCL_SESSION_F_IS_VEP))
Florin Coras070453d2018-08-24 17:04:27 -07001454 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001455
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001456 if (q_len == 0 || q_len == ~0)
1457 q_len = vcm->cfg.listen_queue_size;
1458
Dave Wallaceee45d412017-11-24 21:44:06 -05001459 listen_vpp_handle = listen_session->vpp_handle;
Florin Corasc127d5a2020-10-14 16:35:58 -07001460 if (listen_session->session_state == VCL_STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001461 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001462 VDBG (0, "session %u [0x%llx]: already in listen state!",
1463 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001464 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001465 }
1466
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001467 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001468
Florin Coras070453d2018-08-24 17:04:27 -07001469 /*
1470 * Send listen request to vpp and wait for reply
1471 */
Florin Coras458089b2019-08-21 16:20:44 -07001472 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001473 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
Florin Corasc127d5a2020-10-14 16:35:58 -07001474 VCL_STATE_LISTEN,
Florin Coras134a9962018-08-28 11:32:04 -07001475 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001476
Florin Coras070453d2018-08-24 17:04:27 -07001477 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001478 {
Florin Coras134a9962018-08-28 11:32:04 -07001479 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001480 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1481 listen_sh, listen_session->vpp_handle, rv,
1482 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001483 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001484 }
1485
Florin Coras070453d2018-08-24 17:04:27 -07001486 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001487}
1488
Florin Coras134a9962018-08-28 11:32:04 -07001489static int
Florin Coras5e062572019-03-14 19:07:51 -07001490validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001491{
Florin Coras6c3b2182020-10-19 18:36:48 -07001492 if (ls->flags & VCL_SESSION_F_IS_VEP)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001493 {
Florin Coras5e062572019-03-14 19:07:51 -07001494 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1495 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001496 return VPPCOM_EBADFD;
1497 }
1498
Florin Corasc127d5a2020-10-14 16:35:58 -07001499 if ((ls->session_state != VCL_STATE_LISTEN)
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001500 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001501 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001502 VDBG (0, "ERROR: session [0x%llx]: not in listen state! state 0x%x"
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001503 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001504 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001505 return VPPCOM_EBADFD;
1506 }
1507 return VPPCOM_OK;
1508}
1509
1510int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001511vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1512{
1513 if (!strcmp (proto_str, "TCP"))
1514 *proto = VPPCOM_PROTO_TCP;
1515 else if (!strcmp (proto_str, "tcp"))
1516 *proto = VPPCOM_PROTO_TCP;
1517 else if (!strcmp (proto_str, "UDP"))
1518 *proto = VPPCOM_PROTO_UDP;
1519 else if (!strcmp (proto_str, "udp"))
1520 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001521 else if (!strcmp (proto_str, "TLS"))
1522 *proto = VPPCOM_PROTO_TLS;
1523 else if (!strcmp (proto_str, "tls"))
1524 *proto = VPPCOM_PROTO_TLS;
1525 else if (!strcmp (proto_str, "QUIC"))
1526 *proto = VPPCOM_PROTO_QUIC;
1527 else if (!strcmp (proto_str, "quic"))
1528 *proto = VPPCOM_PROTO_QUIC;
Florin Coras4b47ee22020-11-19 13:38:26 -08001529 else if (!strcmp (proto_str, "DTLS"))
1530 *proto = VPPCOM_PROTO_DTLS;
1531 else if (!strcmp (proto_str, "dtls"))
1532 *proto = VPPCOM_PROTO_DTLS;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001533 else
1534 return 1;
1535 return 0;
1536}
1537
1538int
Florin Coras134a9962018-08-28 11:32:04 -07001539vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001540 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001541{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001542 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001543 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001544 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001545 vcl_session_t *listen_session = 0;
1546 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001547 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001548 u8 is_nonblocking;
1549 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001550
Florin Coras5398dfb2021-01-25 20:31:27 -08001551again:
1552
Florin Coras134a9962018-08-28 11:32:04 -07001553 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001554 if (!listen_session)
1555 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001556
Florin Coras134a9962018-08-28 11:32:04 -07001557 listen_session_index = listen_session->session_index;
1558 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001559 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001560
Florin Coras54693d22018-07-17 10:46:29 -07001561 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001562 {
Florin Coras54693d22018-07-17 10:46:29 -07001563 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001564 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001565 accepted_msg = evt->accepted_msg;
1566 goto handle;
1567 }
1568
Florin Corasac422d62020-10-19 20:51:36 -07001569 is_nonblocking = vcl_session_has_attr (listen_session,
1570 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001571 while (1)
1572 {
Carl Smith592a9092019-11-12 14:57:37 +13001573 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1574 return VPPCOM_EAGAIN;
1575
Florin Coras5398dfb2021-01-25 20:31:27 -08001576 svm_msg_q_wait (wrk->app_event_queue, SVM_MQ_WAIT_EMPTY);
1577 vcl_worker_flush_mq_events (wrk);
1578 goto again;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001579 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001580
Florin Coras54693d22018-07-17 10:46:29 -07001581handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001582
Florin Coras00cca802019-06-06 09:38:44 -07001583 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1584 listen_session_index);
1585 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1586 return VPPCOM_ECONNABORTED;
1587
Florin Coras134a9962018-08-28 11:32:04 -07001588 listen_session = vcl_session_get (wrk, listen_session_index);
1589 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001590
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001591 if (flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07001592 vcl_session_set_attr (client_session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001593
Florin Coras5e062572019-03-14 19:07:51 -07001594 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1595 " flags %d, is_nonblocking %u", listen_session->session_index,
1596 listen_session->vpp_handle, client_session_index,
1597 client_session->vpp_handle, flags,
Florin Corasac422d62020-10-19 20:51:36 -07001598 vcl_session_has_attr (client_session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001599
Dave Wallace048b1d62018-01-03 22:24:41 -05001600 if (ep)
1601 {
Florin Coras7e12d942018-06-27 14:32:43 -07001602 ep->is_ip4 = client_session->transport.is_ip4;
1603 ep->port = client_session->transport.rmt_port;
1604 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001605 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1606 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001607 else
Dave Barach178cf492018-11-13 16:34:13 -05001608 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1609 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001610 }
Dave Wallace60caa062017-11-10 17:07:13 -05001611
Florin Coras05ecfcc2018-12-12 18:19:39 -08001612 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001613 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001614 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001615 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001616 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001617 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001618 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001619 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001620 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001621 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1622 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001623
Florin Coras3c7d4f92018-12-14 11:28:43 -08001624 /*
1625 * Session might have been closed already
1626 */
1627 if (accept_flags)
1628 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001629 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasc127d5a2020-10-14 16:35:58 -07001630 client_session->session_state = VCL_STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001631 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasc127d5a2020-10-14 16:35:58 -07001632 client_session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001633 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001634 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001635}
1636
1637int
Florin Coras134a9962018-08-28 11:32:04 -07001638vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001639{
Florin Coras134a9962018-08-28 11:32:04 -07001640 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001641 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001642 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001643 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001644
Florin Coras134a9962018-08-28 11:32:04 -07001645 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001646 if (!session)
1647 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001648 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001649
Florin Coras6c3b2182020-10-19 18:36:48 -07001650 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04001651 {
Florin Coras5e062572019-03-14 19:07:51 -07001652 VDBG (0, "ERROR: cannot connect epoll session %u!",
1653 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001654 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001655 }
1656
Florin Corasc127d5a2020-10-14 16:35:58 -07001657 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Dave Wallace543852a2017-08-03 02:11:34 -04001658 {
Florin Coras7baeb712019-01-04 17:05:43 -08001659 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001660 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001661 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001662 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001663 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001664 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001665 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001666 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001667 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001668 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001669 }
1670
Florin Coras0a1e1832020-03-29 18:54:04 +00001671 /* Attempt to connect a connectionless listener */
Florin Corasc127d5a2020-10-14 16:35:58 -07001672 if (PREDICT_FALSE (session->session_state == VCL_STATE_LISTEN))
Florin Coras0a1e1832020-03-29 18:54:04 +00001673 {
1674 if (session->session_type != VPPCOM_PROTO_UDP)
1675 return VPPCOM_EINVAL;
1676 vcl_send_session_unlisten (wrk, session);
Florin Corasc127d5a2020-10-14 16:35:58 -07001677 session->session_state = VCL_STATE_CLOSED;
Florin Coras0a1e1832020-03-29 18:54:04 +00001678 }
1679
Florin Coras7e12d942018-06-27 14:32:43 -07001680 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001681 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001682 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001683 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001684 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001685
Florin Coras0a1e1832020-03-29 18:54:04 +00001686 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001687 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001688 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001689 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001690 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001691 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001692 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001693 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001694 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001695
Florin Coras458089b2019-08-21 16:20:44 -07001696 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001697
Florin Corasac422d62020-10-19 20:51:36 -07001698 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001699 {
fanyfa49d59d2020-10-13 17:07:16 +08001700 /* State set to STATE_UPDATED to ensure the session is not assumed
Florin Corasdfffdd72020-10-15 10:54:47 -07001701 * to be ready and to also allow the app to close it prior to vpp's
fanyfa49d59d2020-10-13 17:07:16 +08001702 * connected reply. */
Florin Corasc127d5a2020-10-14 16:35:58 -07001703 session->session_state = VCL_STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001704 return VPPCOM_EINPROGRESS;
1705 }
Florin Coras57c88932019-08-29 12:03:17 -07001706
1707 /*
1708 * Wait for reply from vpp if blocking
1709 */
Florin Corasdfffdd72020-10-15 10:54:47 -07001710 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Florin Coras070453d2018-08-24 17:04:27 -07001711 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001712
Florin Coras134a9962018-08-28 11:32:04 -07001713 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001714 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1715 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001716
Dave Wallace4878cbe2017-11-21 03:45:09 -05001717 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001718}
1719
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001720int
1721vppcom_session_stream_connect (uint32_t session_handle,
1722 uint32_t parent_session_handle)
1723{
1724 vcl_worker_t *wrk = vcl_worker_get_current ();
1725 vcl_session_t *session, *parent_session;
1726 u32 session_index, parent_session_index;
1727 int rv;
1728
1729 session = vcl_session_get_w_handle (wrk, session_handle);
1730 if (!session)
1731 return VPPCOM_EBADFD;
1732 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1733 if (!parent_session)
1734 return VPPCOM_EBADFD;
1735
1736 session_index = session->session_index;
1737 parent_session_index = parent_session->session_index;
Florin Coras6c3b2182020-10-19 18:36:48 -07001738 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001739 {
1740 VDBG (0, "ERROR: cannot connect epoll session %u!",
1741 session->session_index);
1742 return VPPCOM_EBADFD;
1743 }
1744
Florin Corasc127d5a2020-10-14 16:35:58 -07001745 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001746 {
1747 VDBG (0, "session handle %u [0x%llx]: session already "
1748 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1749 session_handle, session->vpp_handle,
1750 parent_session_handle, parent_session->vpp_handle,
1751 vppcom_proto_str (session->session_type), session->session_state,
1752 vppcom_session_state_str (session->session_state));
1753 return VPPCOM_OK;
1754 }
1755
1756 /* Connect to quic session specifics */
1757 session->transport.is_ip4 = parent_session->transport.is_ip4;
1758 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1759 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001760 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001761
1762 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1763 session_handle, parent_session_handle, parent_session->vpp_handle);
1764
1765 /*
1766 * Send connect request and wait for reply from vpp
1767 */
Florin Coras458089b2019-08-21 16:20:44 -07001768 vcl_send_session_connect (wrk, session);
Florin Corasdfffdd72020-10-15 10:54:47 -07001769 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001770 vcm->cfg.session_timeout);
1771
1772 session->listener_index = parent_session_index;
1773 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001774 if (parent_session)
1775 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001776
1777 session = vcl_session_get (wrk, session_index);
1778 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1779 session->vpp_handle, rv ? "failed" : "succeeded");
1780
1781 return rv;
1782}
1783
Steven58f464e2017-10-25 12:33:12 -07001784static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001785vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001786 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001787{
Florin Coras134a9962018-08-28 11:32:04 -07001788 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07001789 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001790 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001791 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001792 session_event_t *e;
1793 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001794 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001795
Florin Coras070453d2018-08-24 17:04:27 -07001796 if (PREDICT_FALSE (!buf))
1797 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001798
Florin Coras134a9962018-08-28 11:32:04 -07001799 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001800 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras070453d2018-08-24 17:04:27 -07001801 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001802
Florin Coras6d0106e2019-01-29 20:11:58 -08001803 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001804 {
Florin Coras5e062572019-03-14 19:07:51 -07001805 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001806 s->session_index, s->vpp_handle, s->session_state,
1807 vppcom_session_state_str (s->session_state));
1808 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001809 }
1810
Florin Corasac422d62020-10-19 20:51:36 -07001811 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001812 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001813 mq = wrk->app_event_queue;
1814 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07001815 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001816
Sirshak Das28aa5392019-02-05 01:33:33 -06001817 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001818 {
Florin Coras54693d22018-07-17 10:46:29 -07001819 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001820 {
Yu Pingb2955352019-12-04 06:49:04 +08001821 if (vcl_session_is_closing (s))
1822 return vcl_session_closing_error (s);
Florin Corasd6894562020-10-28 00:37:15 -07001823 if (is_ct)
1824 svm_fifo_unset_event (s->rx_fifo);
1825 svm_fifo_unset_event (rx_fifo);
Florin Corasc0737e92019-03-04 14:19:39 -08001826 return VPPCOM_EWOULDBLOCK;
1827 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001828 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001829 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001830 if (vcl_session_is_closing (s))
1831 return vcl_session_closing_error (s);
1832
Florin Corasd6894562020-10-28 00:37:15 -07001833 if (is_ct)
1834 svm_fifo_unset_event (s->rx_fifo);
1835 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001836
Florin Coras5398dfb2021-01-25 20:31:27 -08001837 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
1838 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07001839 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001840 }
Florin Coras54693d22018-07-17 10:46:29 -07001841
Florin Coras4a2c7942020-09-10 12:27:14 -07001842read_again:
1843
Florin Coras460dce62018-07-27 05:45:06 -07001844 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07001845 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001846 else
Florin Coras4a2c7942020-09-10 12:27:14 -07001847 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
1848
1849 ASSERT (rv >= 0);
1850 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07001851
Sirshak Das28aa5392019-02-05 01:33:33 -06001852 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07001853 {
Florin Corasd6894562020-10-28 00:37:15 -07001854 if (is_ct)
1855 svm_fifo_unset_event (s->rx_fifo);
1856 svm_fifo_unset_event (rx_fifo);
Florin Corasc34118b2020-08-12 18:58:25 -07001857 if (!svm_fifo_is_empty_cons (rx_fifo)
Florin Corasd6894562020-10-28 00:37:15 -07001858 && svm_fifo_set_event (rx_fifo) && is_nonblocking)
Florin Corasc34118b2020-08-12 18:58:25 -07001859 {
Florin Corasc34118b2020-08-12 18:58:25 -07001860 vec_add2 (wrk->unhandled_evts_vector, e, 1);
1861 e->event_type = SESSION_IO_EVT_RX;
1862 e->session_index = s->session_index;
1863 }
1864 }
Florin Coras54fe32c2020-11-25 20:26:32 -08001865 else if (PREDICT_FALSE (rv < n && !s->is_dgram))
Florin Coras4a2c7942020-09-10 12:27:14 -07001866 {
1867 /* More data enqueued while reading. Try to drain it
Florin Coras54fe32c2020-11-25 20:26:32 -08001868 * or fill the buffer. Avoid doing that for dgrams */
Florin Coras4a2c7942020-09-10 12:27:14 -07001869 buf += rv;
1870 n -= rv;
1871 goto read_again;
1872 }
Florin Coras41c9e042018-09-11 00:10:41 -07001873
Florin Coras17ec5772020-08-12 20:46:29 -07001874 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07001875 {
Florin Coras17ec5772020-08-12 20:46:29 -07001876 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -08001877 app_send_io_evt_to_vpp (s->vpp_evt_q,
1878 s->rx_fifo->shr->master_session_index,
Florin Coras317b8e02019-04-17 09:57:46 -07001879 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07001880 }
1881
Florin Coras5e062572019-03-14 19:07:51 -07001882 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1883 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001884
Florin Coras54693d22018-07-17 10:46:29 -07001885 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001886}
1887
Steven58f464e2017-10-25 12:33:12 -07001888int
Florin Coras134a9962018-08-28 11:32:04 -07001889vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001890{
Florin Coras134a9962018-08-28 11:32:04 -07001891 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001892}
1893
1894static int
Florin Coras134a9962018-08-28 11:32:04 -07001895vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001896{
Florin Coras134a9962018-08-28 11:32:04 -07001897 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001898}
1899
Florin Coras2cba8532018-09-11 16:33:36 -07001900int
1901vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07001902 vppcom_data_segment_t * ds, uint32_t n_segments,
1903 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07001904{
1905 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001906 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001907 vcl_session_t *s = 0;
1908 svm_fifo_t *rx_fifo;
Florin Coras2cba8532018-09-11 16:33:36 -07001909 svm_msg_q_t *mq;
1910 u8 is_ct;
1911
1912 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001913 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07001914 return VPPCOM_EBADFD;
1915
Florin Coras6d0106e2019-01-29 20:11:58 -08001916 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1917 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001918
Florin Corasac422d62020-10-19 20:51:36 -07001919 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras2cba8532018-09-11 16:33:36 -07001920 is_ct = vcl_session_is_ct (s);
Florin Corasac422d62020-10-19 20:51:36 -07001921 mq = wrk->app_event_queue;
Florin Coras62877022020-10-28 21:22:04 -07001922 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07001923 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2cba8532018-09-11 16:33:36 -07001924
Sirshak Das28aa5392019-02-05 01:33:33 -06001925 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001926 {
1927 if (is_nonblocking)
1928 {
Florin Coras62877022020-10-28 21:22:04 -07001929 if (is_ct)
1930 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001931 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001932 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001933 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001934 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001935 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001936 if (vcl_session_is_closing (s))
1937 return vcl_session_closing_error (s);
1938
Florin Coras62877022020-10-28 21:22:04 -07001939 if (is_ct)
1940 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001941 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001942
Florin Coras5398dfb2021-01-25 20:31:27 -08001943 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
1944 vcl_worker_flush_mq_events (wrk);
Florin Coras2cba8532018-09-11 16:33:36 -07001945 }
1946 }
1947
Florin Corasd1cc38d2020-10-11 11:05:04 -07001948 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
1949 (svm_fifo_seg_t *) ds, n_segments, max_bytes);
1950 if (n_read < 0)
1951 return VPPCOM_EAGAIN;
1952
1953 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
1954 {
Florin Coras62877022020-10-28 21:22:04 -07001955 if (is_ct)
1956 svm_fifo_unset_event (s->rx_fifo);
1957 svm_fifo_unset_event (rx_fifo);
Florin Corasd1cc38d2020-10-11 11:05:04 -07001958 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
Florin Coras62877022020-10-28 21:22:04 -07001959 && svm_fifo_set_event (rx_fifo)
Florin Corasac422d62020-10-19 20:51:36 -07001960 && vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
Florin Corasd1cc38d2020-10-11 11:05:04 -07001961 {
1962 session_event_t *e;
1963 vec_add2 (wrk->unhandled_evts_vector, e, 1);
1964 e->event_type = SESSION_IO_EVT_RX;
1965 e->session_index = s->session_index;
1966 }
1967 }
1968
1969 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07001970 return n_read;
1971}
1972
1973void
Florin Corasd68faf82020-09-25 15:18:13 -07001974vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07001975{
1976 vcl_worker_t *wrk = vcl_worker_get_current ();
1977 vcl_session_t *s;
Florin Coras62877022020-10-28 21:22:04 -07001978 u8 is_ct;
Florin Coras2cba8532018-09-11 16:33:36 -07001979
1980 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001981 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07001982 return;
1983
Florin Coras62877022020-10-28 21:22:04 -07001984 is_ct = vcl_session_is_ct (s);
1985 svm_fifo_dequeue_drop (is_ct ? s->ct_rx_fifo : s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07001986
1987 ASSERT (s->rx_bytes_pending < n_bytes);
1988 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07001989}
1990
Florin Coras7a2abce2020-04-05 19:25:44 +00001991always_inline u8
1992vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04001993{
Florin Coras7a2abce2020-04-05 19:25:44 +00001994 u32 max_enq = svm_fifo_max_enqueue_prod (f);
1995 if (is_dgram)
1996 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
1997 else
1998 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00001999}
2000
2001always_inline int
2002vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2003 size_t n, u8 is_flush, u8 is_dgram)
2004{
Florin Coras6d0106e2019-01-29 20:11:58 -08002005 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002006 session_evt_type_t et;
Florin Coras14ed6df2019-03-06 21:13:42 -08002007 svm_fifo_t *tx_fifo;
Florin Coras3c2fed52018-07-04 04:15:05 -07002008 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002009 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002010
jiangxiaomingff31ac62019-11-21 23:34:56 +08002011 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002012 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002013
Florin Coras6c3b2182020-10-19 18:36:48 -07002014 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04002015 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002016 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2017 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002018 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002019 }
2020
Florin Coras6d0106e2019-01-29 20:11:58 -08002021 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002022 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002023 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2024 s->session_index, s->vpp_handle, s->session_state,
2025 vppcom_session_state_str (s->session_state));
2026 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002027 }
2028
Florin Coras0e88e852018-09-17 22:09:02 -07002029 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002030 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002031 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002032
Florin Coras653e43f2019-03-04 10:56:23 -08002033 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002034 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002035 {
Florin Coras54693d22018-07-17 10:46:29 -07002036 if (is_nonblocking)
2037 {
Florin Coras070453d2018-08-24 17:04:27 -07002038 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002039 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002040 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002041 {
Florin Coras2d379d82019-06-28 12:45:12 -07002042 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002043 if (vcl_session_is_closing (s))
2044 return vcl_session_closing_error (s);
Florin Coras0e88e852018-09-17 22:09:02 -07002045
Florin Coras5398dfb2021-01-25 20:31:27 -08002046 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2047 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002048 }
Dave Wallace543852a2017-08-03 02:11:34 -04002049 }
Dave Wallace543852a2017-08-03 02:11:34 -04002050
Florin Coras653e43f2019-03-04 10:56:23 -08002051 et = SESSION_IO_EVT_TX;
2052 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002053 et = SESSION_IO_EVT_TX_FLUSH;
2054
Florin Coras7a2abce2020-04-05 19:25:44 +00002055 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002056 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002057 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002058 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002059 else
2060 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002061 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002062
Florin Coras14ed6df2019-03-06 21:13:42 -08002063 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002064 app_send_io_evt_to_vpp (
2065 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002066
Florin Coras56230092020-09-02 20:52:58 -07002067 /* The underlying fifo segment can run out of memory */
2068 if (PREDICT_FALSE (n_write < 0))
2069 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002070
Florin Coras6d0106e2019-01-29 20:11:58 -08002071 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2072 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002073
Florin Coras54693d22018-07-17 10:46:29 -07002074 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002075}
2076
Florin Coras42ceddb2018-12-12 10:56:01 -08002077int
2078vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2079{
Florin Coras7a2abce2020-04-05 19:25:44 +00002080 vcl_worker_t *wrk = vcl_worker_get_current ();
2081 vcl_session_t *s;
2082
2083 s = vcl_session_get_w_handle (wrk, session_handle);
2084 if (PREDICT_FALSE (!s))
2085 return VPPCOM_EBADFD;
2086
2087 return vppcom_session_write_inline (wrk, s, buf, n,
2088 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002089}
2090
Florin Corasb0f662f2018-12-27 14:51:46 -08002091int
2092vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2093{
Florin Coras7a2abce2020-04-05 19:25:44 +00002094 vcl_worker_t *wrk = vcl_worker_get_current ();
2095 vcl_session_t *s;
2096
2097 s = vcl_session_get_w_handle (wrk, session_handle);
2098 if (PREDICT_FALSE (!s))
2099 return VPPCOM_EBADFD;
2100
2101 return vppcom_session_write_inline (wrk, s, buf, n,
2102 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002103}
2104
Florin Corasc0737e92019-03-04 14:19:39 -08002105#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002106if (PREDICT_FALSE (!_s->rx_fifo)) \
2107 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002108if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2109 { \
2110 if (!vcl_session_is_ct (_s)) \
2111 { \
2112 svm_fifo_unset_event (_s->rx_fifo); \
2113 if (svm_fifo_is_empty (_s->rx_fifo)) \
2114 break; \
2115 } \
2116 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2117 { \
Florin Coras2f630182020-08-13 00:17:51 -07002118 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002119 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2120 break; \
2121 } \
2122 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002123
Florin Coras86f04502018-09-12 16:08:01 -07002124static void
2125vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2126 unsigned long n_bits, unsigned long *read_map,
2127 unsigned long *write_map,
2128 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002129{
2130 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002131 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002132 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002133 u32 sid;
2134
2135 switch (e->event_type)
2136 {
Florin Corasc0737e92019-03-04 14:19:39 -08002137 case SESSION_IO_EVT_RX:
2138 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002139 s = vcl_session_get (wrk, sid);
2140 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002141 break;
Florin Corasb242d312020-10-26 15:35:40 -07002142 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002143 if (sid < n_bits && read_map)
2144 {
David Johnsond9818dd2018-12-14 14:53:41 -05002145 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002146 *bits_set += 1;
2147 }
2148 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002149 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002150 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002151 s = vcl_session_get (wrk, sid);
2152 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002153 break;
2154 if (sid < n_bits && write_map)
2155 {
David Johnsond9818dd2018-12-14 14:53:41 -05002156 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002157 *bits_set += 1;
2158 }
2159 break;
Florin Coras86f04502018-09-12 16:08:01 -07002160 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002161 if (!e->postponed)
2162 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2163 else
2164 s = vcl_session_get (wrk, e->session_index);
2165 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002166 break;
Florin Corasb242d312020-10-26 15:35:40 -07002167 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002168 if (sid < n_bits && read_map)
2169 {
David Johnsond9818dd2018-12-14 14:53:41 -05002170 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002171 *bits_set += 1;
2172 }
2173 break;
2174 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002175 if (!e->postponed)
2176 {
2177 connected_msg = (session_connected_msg_t *) e->data;
2178 sid = vcl_session_connected_handler (wrk, connected_msg);
2179 }
2180 else
2181 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002182 if (sid == VCL_INVALID_SESSION_INDEX)
2183 break;
2184 if (sid < n_bits && write_map)
2185 {
2186 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2187 *bits_set += 1;
2188 }
Florin Coras86f04502018-09-12 16:08:01 -07002189 break;
2190 case SESSION_CTRL_EVT_DISCONNECTED:
2191 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002192 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2193 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002194 break;
Florin Corasb242d312020-10-26 15:35:40 -07002195 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002196 if (sid < n_bits && except_map)
2197 {
David Johnsond9818dd2018-12-14 14:53:41 -05002198 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002199 *bits_set += 1;
2200 }
2201 break;
2202 case SESSION_CTRL_EVT_RESET:
2203 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2204 if (sid < n_bits && except_map)
2205 {
David Johnsond9818dd2018-12-14 14:53:41 -05002206 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002207 *bits_set += 1;
2208 }
2209 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002210 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2211 vcl_session_unlisten_reply_handler (wrk, e->data);
2212 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002213 case SESSION_CTRL_EVT_MIGRATED:
2214 vcl_session_migrated_handler (wrk, e->data);
2215 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002216 case SESSION_CTRL_EVT_CLEANUP:
2217 vcl_session_cleanup_handler (wrk, e->data);
2218 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002219 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2220 vcl_session_worker_update_reply_handler (wrk, e->data);
2221 break;
2222 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2223 vcl_session_req_worker_update_handler (wrk, e->data);
2224 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002225 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2226 vcl_session_app_add_segment_handler (wrk, e->data);
2227 break;
2228 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2229 vcl_session_app_del_segment_handler (wrk, e->data);
2230 break;
hanlina3a48962020-07-13 11:09:15 +08002231 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002232 vcl_worker_rpc_handler (wrk, e->data);
2233 break;
Florin Coras86f04502018-09-12 16:08:01 -07002234 default:
2235 clib_warning ("unhandled: %u", e->event_type);
2236 break;
2237 }
2238}
2239
2240static int
2241vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2242 unsigned long n_bits, unsigned long *read_map,
2243 unsigned long *write_map, unsigned long *except_map,
2244 double time_to_wait, u32 * bits_set)
2245{
Florin Coras99368312018-08-02 10:45:44 -07002246 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002247 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002248 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002249
Florin Coras54693d22018-07-17 10:46:29 -07002250 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002251 {
Florin Coras54693d22018-07-17 10:46:29 -07002252 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002253 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002254
Florin Coras54693d22018-07-17 10:46:29 -07002255 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002256 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002257 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002258 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002259 else
2260 {
2261 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002262 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002263 }
2264 }
Florin Corase003a1b2019-06-05 10:47:16 -07002265 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002266
Florin Coras134a9962018-08-28 11:32:04 -07002267 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002268 {
Florin Coras134a9962018-08-28 11:32:04 -07002269 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002270 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002271 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2272 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002273 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002274 }
Florin Coras134a9962018-08-28 11:32:04 -07002275 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002276 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002277 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002278}
2279
Florin Coras99368312018-08-02 10:45:44 -07002280static int
Florin Coras294afe22019-01-07 17:49:17 -08002281vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2282 vcl_si_set * read_map, vcl_si_set * write_map,
2283 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002284 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002285{
Florin Coras14ed6df2019-03-06 21:13:42 -08002286 double wait = 0, start = 0;
2287
2288 if (!*bits_set)
2289 {
2290 wait = time_to_wait;
2291 start = clib_time_now (&wrk->clib_time);
2292 }
2293
2294 do
2295 {
2296 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2297 write_map, except_map, wait, bits_set);
2298 if (*bits_set)
2299 return *bits_set;
2300 if (wait == -1)
2301 continue;
2302
2303 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2304 }
2305 while (wait > 0);
2306
2307 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002308}
2309
2310static int
Florin Coras294afe22019-01-07 17:49:17 -08002311vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2312 vcl_si_set * read_map, vcl_si_set * write_map,
2313 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002314 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002315{
2316 vcl_mq_evt_conn_t *mqc;
2317 int __clib_unused n_read;
2318 int n_mq_evts, i;
2319 u64 buf;
2320
Florin Coras134a9962018-08-28 11:32:04 -07002321 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2322 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2323 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002324 for (i = 0; i < n_mq_evts; i++)
2325 {
Florin Coras134a9962018-08-28 11:32:04 -07002326 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002327 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002328 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002329 except_map, 0, bits_set);
2330 }
2331
2332 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2333}
2334
Dave Wallace543852a2017-08-03 02:11:34 -04002335int
Florin Coras294afe22019-01-07 17:49:17 -08002336vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2337 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002338{
Florin Coras54693d22018-07-17 10:46:29 -07002339 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002340 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002341 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002342 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002343
Dave Wallace7876d392017-10-19 03:53:57 -04002344 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002345 {
Florin Coras134a9962018-08-28 11:32:04 -07002346 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002347 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002348 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2349 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002350 }
Dave Wallace7876d392017-10-19 03:53:57 -04002351 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002352 {
Florin Coras134a9962018-08-28 11:32:04 -07002353 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002354 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002355 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2356 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002357 }
Dave Wallace7876d392017-10-19 03:53:57 -04002358 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002359 {
Florin Coras134a9962018-08-28 11:32:04 -07002360 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002361 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002362 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2363 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002364 }
2365
Florin Coras54693d22018-07-17 10:46:29 -07002366 if (!n_bits)
2367 return 0;
2368
2369 if (!write_map)
2370 goto check_rd;
2371
Florin Coras096a1d52021-01-27 15:33:51 -08002372 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2373 {
2374 if (!(s = vcl_session_get (wrk, sid)))
2375 {
2376 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2377 bits_set++;
2378 continue;
2379 }
Florin Coras54693d22018-07-17 10:46:29 -07002380
Florin Coras096a1d52021-01-27 15:33:51 -08002381 if (vcl_session_write_ready (s))
2382 {
2383 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2384 bits_set++;
2385 }
2386 else
2387 {
2388 svm_fifo_t *txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2389 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF);
2390 }
2391 }
Florin Coras54693d22018-07-17 10:46:29 -07002392
2393check_rd:
2394 if (!read_map)
2395 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002396
Florin Coras096a1d52021-01-27 15:33:51 -08002397 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2398 {
2399 if (!(s = vcl_session_get (wrk, sid)))
2400 {
2401 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2402 bits_set++;
2403 continue;
2404 }
Florin Coras54693d22018-07-17 10:46:29 -07002405
Florin Coras096a1d52021-01-27 15:33:51 -08002406 if (vcl_session_read_ready (s))
2407 {
2408 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2409 bits_set++;
2410 }
2411 }
Florin Coras54693d22018-07-17 10:46:29 -07002412
2413check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002414
Florin Coras86f04502018-09-12 16:08:01 -07002415 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2416 {
2417 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2418 read_map, write_map, except_map, &bits_set);
2419 }
2420 vec_reset_length (wrk->unhandled_evts_vector);
2421
Florin Coras99368312018-08-02 10:45:44 -07002422 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002423 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002424 time_to_wait, &bits_set);
2425 else
Florin Coras134a9962018-08-28 11:32:04 -07002426 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002427 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002428
Dave Wallace543852a2017-08-03 02:11:34 -04002429 return (bits_set);
2430}
2431
Dave Wallacef7f809c2017-10-03 01:48:42 -04002432static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002433vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002434{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002435 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002436 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002437 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002438
Florin Corasc0737e92019-03-04 14:19:39 -08002439 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002440 return;
2441
Florin Coras6c3b2182020-10-19 18:36:48 -07002442 s = vcl_session_get_w_handle (wrk, vep_handle);
2443 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002444 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002445 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002446 goto done;
2447 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002448 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002449 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002450 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002451 goto done;
2452 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002453 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002454 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002455 "{\n"
2456 " is_vep = %u\n"
2457 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002458 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002459 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2460 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002461
Florin Coras7e5e62b2019-07-30 14:08:23 -07002462 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002463 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002464 s = vcl_session_get_w_handle (wrk, sh);
2465 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002466 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002467 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002468 goto done;
2469 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002470 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002471 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002472 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002473 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002474 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002475 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002476 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002477 goto done;
2478 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002479 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002480 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2481 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002482 sh, s->vep.vep_sh, vep_handle);
2483 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002484 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002485 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002486 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002487 " next_sh = 0x%x (%u)\n"
2488 " prev_sh = 0x%x (%u)\n"
2489 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002490 " ev.events = 0x%x\n"
2491 " ev.data.u64 = 0x%llx\n"
2492 " et_mask = 0x%x\n"
2493 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002494 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002495 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2496 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002497 }
2498 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002499
2500done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002501 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002502}
2503
2504int
2505vppcom_epoll_create (void)
2506{
Florin Coras134a9962018-08-28 11:32:04 -07002507 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002508 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002509
Florin Coras134a9962018-08-28 11:32:04 -07002510 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002511
Florin Coras6c3b2182020-10-19 18:36:48 -07002512 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002513 vep_session->vep.vep_sh = ~0;
2514 vep_session->vep.next_sh = ~0;
2515 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002516 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002517
Florin Corasa7a1a222018-12-30 17:11:31 -08002518 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2519 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002520
Florin Corasab2f6db2018-08-31 14:31:41 -07002521 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002522}
2523
2524int
Florin Coras134a9962018-08-28 11:32:04 -07002525vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002526 struct epoll_event *event)
2527{
Florin Coras134a9962018-08-28 11:32:04 -07002528 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002529 vcl_session_t *vep_session;
Florin Coras070453d2018-08-24 17:04:27 -07002530 int rv = VPPCOM_OK;
Florin Coras17ec5772020-08-12 20:46:29 -07002531 vcl_session_t *s;
2532 svm_fifo_t *txf;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002533
Florin Coras134a9962018-08-28 11:32:04 -07002534 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002535 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002536 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002537 return VPPCOM_EINVAL;
2538 }
2539
Florin Coras134a9962018-08-28 11:32:04 -07002540 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002541 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002542 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002543 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002544 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002545 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002546 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002547 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002548 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002549 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002550 }
2551
Florin Coras134a9962018-08-28 11:32:04 -07002552 ASSERT (vep_session->vep.vep_sh == ~0);
2553 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002554
Florin Coras17ec5772020-08-12 20:46:29 -07002555 s = vcl_session_get_w_handle (wrk, session_handle);
2556 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002557 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002558 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002559 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002560 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002561 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002562 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002563 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002564 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002565 }
2566
2567 switch (op)
2568 {
2569 case EPOLL_CTL_ADD:
2570 if (PREDICT_FALSE (!event))
2571 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002572 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002573 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002574 }
Florin Coras134a9962018-08-28 11:32:04 -07002575 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002576 {
Florin Coras7e12d942018-06-27 14:32:43 -07002577 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002578 next_session = vcl_session_get_w_handle (wrk,
2579 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002580 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002581 {
Florin Coras5e062572019-03-14 19:07:51 -07002582 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002583 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002584 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002585 }
Florin Coras134a9962018-08-28 11:32:04 -07002586 ASSERT (next_session->vep.prev_sh == vep_handle);
2587 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002588 }
Florin Coras17ec5772020-08-12 20:46:29 -07002589 s->vep.next_sh = vep_session->vep.next_sh;
2590 s->vep.prev_sh = vep_handle;
2591 s->vep.vep_sh = vep_handle;
2592 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2593 s->vep.ev = *event;
Florin Coras6c3b2182020-10-19 18:36:48 -07002594 s->flags &= ~VCL_SESSION_F_IS_VEP;
2595 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002596 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002597
Florin Coras17ec5772020-08-12 20:46:29 -07002598 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2599 if (txf && (event->events & EPOLLOUT))
2600 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002601
Florin Coras6e3c1f82020-01-15 01:30:46 +00002602 /* Generate EPOLLOUT if tx fifo not full */
Florin Coras17ec5772020-08-12 20:46:29 -07002603 if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002604 {
2605 session_event_t e = { 0 };
2606 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002607 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002608 vec_add1 (wrk->unhandled_evts_vector, e);
2609 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002610 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002611 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002612 {
2613 session_event_t e = { 0 };
2614 e.event_type = SESSION_IO_EVT_RX;
Florin Coras17ec5772020-08-12 20:46:29 -07002615 e.session_index = s->session_index;
Florin Coras6e3c1f82020-01-15 01:30:46 +00002616 vec_add1 (wrk->unhandled_evts_vector, e);
2617 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002618 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2619 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002620 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002621 break;
2622
2623 case EPOLL_CTL_MOD:
2624 if (PREDICT_FALSE (!event))
2625 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002626 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002627 rv = VPPCOM_EINVAL;
2628 goto done;
2629 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002630 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002631 {
Florin Coras5e062572019-03-14 19:07:51 -07002632 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002633 rv = VPPCOM_EINVAL;
2634 goto done;
2635 }
Florin Coras17ec5772020-08-12 20:46:29 -07002636 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002637 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002638 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002639 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002640 rv = VPPCOM_EINVAL;
2641 goto done;
2642 }
hanlin475c9d72019-12-26 11:44:28 +08002643
2644 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2645 if ((event->events & EPOLLOUT) &&
Florin Coras17ec5772020-08-12 20:46:29 -07002646 !(s->vep.ev.events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002647 {
2648 session_event_t e = { 0 };
2649 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002650 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002651 vec_add1 (wrk->unhandled_evts_vector, e);
2652 }
Florin Coras17ec5772020-08-12 20:46:29 -07002653 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2654 s->vep.ev = *event;
2655 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2656 if (event->events & EPOLLOUT)
2657 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2658 else
2659 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Corasa7a1a222018-12-30 17:11:31 -08002660 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2661 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002662 break;
2663
2664 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07002665 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002666 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002667 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002668 rv = VPPCOM_EINVAL;
2669 goto done;
2670 }
Florin Coras17ec5772020-08-12 20:46:29 -07002671 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002672 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002673 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002674 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002675 rv = VPPCOM_EINVAL;
2676 goto done;
2677 }
2678
Florin Coras17ec5772020-08-12 20:46:29 -07002679 if (s->vep.prev_sh == vep_handle)
2680 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002681 else
2682 {
Florin Coras7e12d942018-06-27 14:32:43 -07002683 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002684 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002685 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002686 {
Florin Coras5e062572019-03-14 19:07:51 -07002687 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002688 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002689 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002690 }
Florin Coras134a9962018-08-28 11:32:04 -07002691 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002692 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002693 }
Florin Coras17ec5772020-08-12 20:46:29 -07002694 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002695 {
Florin Coras7e12d942018-06-27 14:32:43 -07002696 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002697 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002698 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002699 {
Florin Coras5e062572019-03-14 19:07:51 -07002700 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002701 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002702 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002703 }
Florin Coras134a9962018-08-28 11:32:04 -07002704 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002705 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002706 }
2707
Florin Coras17ec5772020-08-12 20:46:29 -07002708 memset (&s->vep, 0, sizeof (s->vep));
2709 s->vep.next_sh = ~0;
2710 s->vep.prev_sh = ~0;
2711 s->vep.vep_sh = ~0;
Florin Coras6c3b2182020-10-19 18:36:48 -07002712 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002713
Florin Coras17ec5772020-08-12 20:46:29 -07002714 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2715 if (txf)
2716 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002717
Florin Coras5e062572019-03-14 19:07:51 -07002718 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002719 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002720 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002721 break;
2722
2723 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002724 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002725 rv = VPPCOM_EINVAL;
2726 }
2727
Florin Coras134a9962018-08-28 11:32:04 -07002728 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002729
2730done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002731 return rv;
2732}
2733
Florin Coras86f04502018-09-12 16:08:01 -07002734static inline void
2735vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2736 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002737{
2738 session_disconnected_msg_t *disconnected_msg;
2739 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002740 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002741 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07002742 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002743 u8 add_event = 0;
2744
2745 switch (e->event_type)
2746 {
Florin Coras653e43f2019-03-04 10:56:23 -08002747 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002748 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002749 s = vcl_session_get (wrk, sid);
2750 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08002751 break;
Florin Corasb242d312020-10-26 15:35:40 -07002752 vcl_fifo_rx_evt_valid_or_break (s);
2753 session_events = s->vep.ev.events;
2754 if (!(EPOLLIN & s->vep.ev.events)
2755 || (s->flags & VCL_SESSION_F_HAS_RX_EVT))
Florin Coras86f04502018-09-12 16:08:01 -07002756 break;
2757 add_event = 1;
2758 events[*num_ev].events |= EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07002759 session_evt_data = s->vep.ev.data.u64;
2760 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07002761 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002762 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002763 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002764 s = vcl_session_get (wrk, sid);
2765 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08002766 break;
Florin Corasb242d312020-10-26 15:35:40 -07002767 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002768 if (!(EPOLLOUT & session_events))
2769 break;
2770 add_event = 1;
2771 events[*num_ev].events |= EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07002772 session_evt_data = s->vep.ev.data.u64;
2773 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ?
2774 s->ct_tx_fifo : s->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002775 break;
Florin Coras86f04502018-09-12 16:08:01 -07002776 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002777 if (!e->postponed)
2778 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2779 else
2780 s = vcl_session_get (wrk, e->session_index);
2781 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002782 break;
Florin Corasb242d312020-10-26 15:35:40 -07002783 session_events = s->vep.ev.events;
2784 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002785 if (!(EPOLLIN & session_events))
2786 break;
Florin Coras86f04502018-09-12 16:08:01 -07002787 add_event = 1;
2788 events[*num_ev].events |= EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07002789 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002790 break;
2791 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002792 if (!e->postponed)
2793 {
2794 connected_msg = (session_connected_msg_t *) e->data;
2795 sid = vcl_session_connected_handler (wrk, connected_msg);
2796 }
2797 else
2798 sid = e->session_index;
2799 s = vcl_session_get (wrk, sid);
2800 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08002801 break;
Florin Corasb242d312020-10-26 15:35:40 -07002802 session_events = s->vep.ev.events;
2803 /* Generate EPOLLOUT because there's no connected event */
Florin Coras72f77822019-01-22 19:05:52 -08002804 if (!(EPOLLOUT & session_events))
2805 break;
2806 add_event = 1;
2807 events[*num_ev].events |= EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07002808 session_evt_data = s->vep.ev.data.u64;
2809 if (s->session_state == VCL_STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002810 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002811 break;
2812 case SESSION_CTRL_EVT_DISCONNECTED:
2813 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002814 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2815 if (vcl_session_is_closed (s))
Florin Coras86f04502018-09-12 16:08:01 -07002816 break;
Florin Corasb242d312020-10-26 15:35:40 -07002817 sid = s->session_index;
2818 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002819 add_event = 1;
2820 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasb242d312020-10-26 15:35:40 -07002821 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002822 break;
2823 case SESSION_CTRL_EVT_RESET:
2824 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Corasb242d312020-10-26 15:35:40 -07002825 s = vcl_session_get (wrk, sid);
2826 if (vcl_session_is_closed (s))
Florin Coras86f04502018-09-12 16:08:01 -07002827 break;
Florin Corasb242d312020-10-26 15:35:40 -07002828 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002829 add_event = 1;
2830 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasb242d312020-10-26 15:35:40 -07002831 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002832 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002833 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2834 vcl_session_unlisten_reply_handler (wrk, e->data);
2835 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002836 case SESSION_CTRL_EVT_MIGRATED:
2837 vcl_session_migrated_handler (wrk, e->data);
2838 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002839 case SESSION_CTRL_EVT_CLEANUP:
2840 vcl_session_cleanup_handler (wrk, e->data);
2841 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002842 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2843 vcl_session_req_worker_update_handler (wrk, e->data);
2844 break;
2845 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2846 vcl_session_worker_update_reply_handler (wrk, e->data);
2847 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002848 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2849 vcl_session_app_add_segment_handler (wrk, e->data);
2850 break;
2851 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2852 vcl_session_app_del_segment_handler (wrk, e->data);
2853 break;
hanlina3a48962020-07-13 11:09:15 +08002854 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002855 vcl_worker_rpc_handler (wrk, e->data);
2856 break;
Florin Coras86f04502018-09-12 16:08:01 -07002857 default:
2858 VDBG (0, "unhandled: %u", e->event_type);
2859 break;
2860 }
2861
2862 if (add_event)
2863 {
2864 events[*num_ev].data.u64 = session_evt_data;
2865 if (EPOLLONESHOT & session_events)
2866 {
Florin Corasb242d312020-10-26 15:35:40 -07002867 s = vcl_session_get (wrk, sid);
2868 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002869 }
2870 *num_ev += 1;
2871 }
2872}
2873
2874static int
2875vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2876 struct epoll_event *events, u32 maxevents,
2877 double wait_for_time, u32 * num_ev)
2878{
Florin Coras99368312018-08-02 10:45:44 -07002879 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002880 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002881 int i;
2882
Florin Coras539663c2018-09-28 14:59:37 -07002883 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2884 goto handle_dequeued;
2885
Florin Coras54693d22018-07-17 10:46:29 -07002886 if (svm_msg_q_is_empty (mq))
2887 {
2888 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08002889 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002890 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002891 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002892 else
2893 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002894 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08002895 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002896 }
2897 }
Florin Corase003a1b2019-06-05 10:47:16 -07002898 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08002899 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002900
Florin Coras539663c2018-09-28 14:59:37 -07002901handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002902 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002903 {
Florin Coras134a9962018-08-28 11:32:04 -07002904 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002905 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08002906 if (*num_ev < maxevents)
2907 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2908 else
2909 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07002910 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002911 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002912 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002913 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002914 return *num_ev;
2915}
2916
Florin Coras99368312018-08-02 10:45:44 -07002917static int
Florin Coras134a9962018-08-28 11:32:04 -07002918vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002919 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002920{
Florin Corase003a1b2019-06-05 10:47:16 -07002921 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002922
2923 if (!n_evts)
2924 {
2925 wait = wait_for_time;
2926 start = clib_time_now (&wrk->clib_time);
2927 }
2928
2929 do
2930 {
2931 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2932 wait, &n_evts);
2933 if (n_evts)
2934 return n_evts;
2935 if (wait == -1)
2936 continue;
2937
Florin Corase003a1b2019-06-05 10:47:16 -07002938 now = clib_time_now (&wrk->clib_time);
Florin Coras0edfb1a2020-08-04 22:45:45 -07002939 wait -= (now - start) * 1e3;
Florin Corase003a1b2019-06-05 10:47:16 -07002940 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002941 }
2942 while (wait > 0);
2943
2944 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002945}
2946
2947static int
Florin Coras134a9962018-08-28 11:32:04 -07002948vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002949 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002950{
Florin Corasb13ba132021-01-27 16:05:24 -08002951 double wait = 0, start = 0, now;
Florin Coras99368312018-08-02 10:45:44 -07002952 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08002953 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07002954 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002955 u64 buf;
2956
Florin Coras134a9962018-08-28 11:32:04 -07002957 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08002958 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07002959 {
Florin Corasb13ba132021-01-27 16:05:24 -08002960 wait = wait_for_time;
2961 start = clib_time_now (&wrk->clib_time);
Florin Coras99368312018-08-02 10:45:44 -07002962 }
2963
Florin Corasb13ba132021-01-27 16:05:24 -08002964 do
2965 {
2966 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2967 vec_len (wrk->mq_events), wait);
2968 if (n_mq_evts < 0)
2969 {
2970 VDBG (0, "epoll_wait error %u", errno);
2971 return n_evts;
2972 }
2973
2974 for (i = 0; i < n_mq_evts; i++)
2975 {
2976 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
2977 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
2978 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
2979 &n_evts);
2980 }
2981
2982 if (n_evts)
2983 return n_evts;
2984 if (wait == -1)
2985 continue;
2986
2987 now = clib_time_now (&wrk->clib_time);
2988 wait -= (now - start) * 1e3;
2989 start = now;
2990 }
2991 while (wait > 0);
2992
2993 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002994}
2995
Dave Wallacef7f809c2017-10-03 01:48:42 -04002996int
Florin Coras134a9962018-08-28 11:32:04 -07002997vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002998 int maxevents, double wait_for_time)
2999{
Florin Coras134a9962018-08-28 11:32:04 -07003000 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003001 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07003002 u32 n_evts = 0;
3003 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003004
3005 if (PREDICT_FALSE (maxevents <= 0))
3006 {
Florin Coras5e062572019-03-14 19:07:51 -07003007 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003008 return VPPCOM_EINVAL;
3009 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003010
Florin Coras134a9962018-08-28 11:32:04 -07003011 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003012 if (!vep_session)
3013 return VPPCOM_EBADFD;
3014
Florin Coras6c3b2182020-10-19 18:36:48 -07003015 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003016 {
Florin Coras5e062572019-03-14 19:07:51 -07003017 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003018 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003019 }
Florin Coras54693d22018-07-17 10:46:29 -07003020
3021 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003022
Florin Coras86f04502018-09-12 16:08:01 -07003023 if (vec_len (wrk->unhandled_evts_vector))
3024 {
3025 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3026 {
3027 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3028 events, &n_evts);
3029 if (n_evts == maxevents)
3030 {
Florin Corase003a1b2019-06-05 10:47:16 -07003031 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3032 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003033 }
3034 }
Florin Corase003a1b2019-06-05 10:47:16 -07003035 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003036 }
3037
3038 if (vcm->cfg.use_mq_eventfd)
3039 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3040 wait_for_time);
3041
3042 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3043 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003044}
3045
Dave Wallace35830af2017-10-09 01:43:42 -04003046int
Florin Coras134a9962018-08-28 11:32:04 -07003047vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003048 void *buffer, uint32_t * buflen)
3049{
Florin Coras134a9962018-08-28 11:32:04 -07003050 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7baeb712019-01-04 17:05:43 -08003051 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003052 vppcom_endpt_t *ep = buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003053 vcl_session_t *session;
3054 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003055
Florin Coras134a9962018-08-28 11:32:04 -07003056 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003057 if (!session)
3058 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003059
Dave Wallace35830af2017-10-09 01:43:42 -04003060 switch (op)
3061 {
3062 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003063 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003064 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3065 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003066 break;
3067
Dave Wallace227867f2017-11-13 21:21:53 -05003068 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003069 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003070 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3071 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003072 break;
3073
3074 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003075 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003076 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003077 *flags =
3078 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003079 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003080 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003081 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003082 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3083 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003084 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003085 }
3086 else
3087 rv = VPPCOM_EINVAL;
3088 break;
3089
3090 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003091 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003092 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003093 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003094 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003095 else
Florin Corasac422d62020-10-19 20:51:36 -07003096 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003097
Florin Coras5e062572019-03-14 19:07:51 -07003098 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3099 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003100 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003101 }
3102 else
3103 rv = VPPCOM_EINVAL;
3104 break;
3105
3106 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003107 if (PREDICT_TRUE (buffer && buflen &&
3108 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003109 {
Florin Coras7e12d942018-06-27 14:32:43 -07003110 ep->is_ip4 = session->transport.is_ip4;
3111 ep->port = session->transport.rmt_port;
3112 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003113 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3114 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003115 else
Dave Barach178cf492018-11-13 16:34:13 -05003116 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3117 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003118 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003119 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3120 "addr = %U, port %u", session_handle, ep->is_ip4,
3121 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003122 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3123 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003124 }
3125 else
3126 rv = VPPCOM_EINVAL;
3127 break;
3128
3129 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003130 if (PREDICT_TRUE (buffer && buflen &&
3131 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003132 {
Florin Coras7e12d942018-06-27 14:32:43 -07003133 ep->is_ip4 = session->transport.is_ip4;
3134 ep->port = session->transport.lcl_port;
3135 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003136 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3137 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003138 else
Dave Barach178cf492018-11-13 16:34:13 -05003139 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3140 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003141 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003142 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3143 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003144 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003145 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3146 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003147 }
3148 else
3149 rv = VPPCOM_EINVAL;
3150 break;
Stevenb5a11602017-10-11 09:59:30 -07003151
Florin Corasef7cbf62019-10-17 09:56:27 -07003152 case VPPCOM_ATTR_SET_LCL_ADDR:
3153 if (PREDICT_TRUE (buffer && buflen &&
3154 (*buflen >= sizeof (*ep)) && ep->ip))
3155 {
3156 session->transport.is_ip4 = ep->is_ip4;
3157 session->transport.lcl_port = ep->port;
3158 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3159 *buflen = sizeof (*ep);
3160 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3161 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3162 &session->transport.lcl_ip,
3163 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3164 clib_net_to_host_u16 (ep->port));
3165 }
3166 else
3167 rv = VPPCOM_EINVAL;
3168 break;
3169
Dave Wallace048b1d62018-01-03 22:24:41 -05003170 case VPPCOM_ATTR_GET_LIBC_EPFD:
3171 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003172 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003173 break;
3174
3175 case VPPCOM_ATTR_SET_LIBC_EPFD:
3176 if (PREDICT_TRUE (buffer && buflen &&
3177 (*buflen == sizeof (session->libc_epfd))))
3178 {
3179 session->libc_epfd = *(int *) buffer;
3180 *buflen = sizeof (session->libc_epfd);
3181
Florin Coras5e062572019-03-14 19:07:51 -07003182 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3183 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003184 }
3185 else
3186 rv = VPPCOM_EINVAL;
3187 break;
3188
3189 case VPPCOM_ATTR_GET_PROTOCOL:
3190 if (buffer && buflen && (*buflen >= sizeof (int)))
3191 {
Florin Coras7e12d942018-06-27 14:32:43 -07003192 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003193 *buflen = sizeof (int);
3194
Florin Coras5e062572019-03-14 19:07:51 -07003195 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3196 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003197 }
3198 else
3199 rv = VPPCOM_EINVAL;
3200 break;
3201
3202 case VPPCOM_ATTR_GET_LISTEN:
3203 if (buffer && buflen && (*buflen >= sizeof (int)))
3204 {
Florin Corasac422d62020-10-19 20:51:36 -07003205 *(int *) buffer = vcl_session_has_attr (session,
3206 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003207 *buflen = sizeof (int);
3208
Florin Coras5e062572019-03-14 19:07:51 -07003209 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3210 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003211 }
3212 else
3213 rv = VPPCOM_EINVAL;
3214 break;
3215
3216 case VPPCOM_ATTR_GET_ERROR:
3217 if (buffer && buflen && (*buflen >= sizeof (int)))
3218 {
3219 *(int *) buffer = 0;
3220 *buflen = sizeof (int);
3221
Florin Coras5e062572019-03-14 19:07:51 -07003222 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3223 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003224 }
3225 else
3226 rv = VPPCOM_EINVAL;
3227 break;
3228
3229 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3230 if (buffer && buflen && (*buflen >= sizeof (u32)))
3231 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003232
3233 /* VPP-TBD */
3234 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003235 session->tx_fifo ?
3236 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003237 vcm->cfg.tx_fifo_size);
3238 *buflen = sizeof (u32);
3239
Florin Coras5e062572019-03-14 19:07:51 -07003240 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3241 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3242 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003243 }
3244 else
3245 rv = VPPCOM_EINVAL;
3246 break;
3247
3248 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3249 if (buffer && buflen && (*buflen == sizeof (u32)))
3250 {
3251 /* VPP-TBD */
3252 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003253 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3254 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3255 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003256 }
3257 else
3258 rv = VPPCOM_EINVAL;
3259 break;
3260
3261 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3262 if (buffer && buflen && (*buflen >= sizeof (u32)))
3263 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003264
3265 /* VPP-TBD */
3266 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003267 session->rx_fifo ?
3268 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003269 vcm->cfg.rx_fifo_size);
3270 *buflen = sizeof (u32);
3271
Florin Coras5e062572019-03-14 19:07:51 -07003272 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3273 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003274 }
3275 else
3276 rv = VPPCOM_EINVAL;
3277 break;
3278
3279 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3280 if (buffer && buflen && (*buflen == sizeof (u32)))
3281 {
3282 /* VPP-TBD */
3283 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003284 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3285 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3286 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003287 }
3288 else
3289 rv = VPPCOM_EINVAL;
3290 break;
3291
3292 case VPPCOM_ATTR_GET_REUSEADDR:
3293 if (buffer && buflen && (*buflen >= sizeof (int)))
3294 {
3295 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003296 *(int *) buffer = vcl_session_has_attr (session,
3297 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003298 *buflen = sizeof (int);
3299
Florin Coras5e062572019-03-14 19:07:51 -07003300 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3301 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003302 }
3303 else
3304 rv = VPPCOM_EINVAL;
3305 break;
3306
Stevenb5a11602017-10-11 09:59:30 -07003307 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003308 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003309 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003310 {
3311 /* VPP-TBD */
3312 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003313 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003314 else
Florin Corasac422d62020-10-19 20:51:36 -07003315 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003316
Florin Coras5e062572019-03-14 19:07:51 -07003317 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003318 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003319 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003320 }
3321 else
3322 rv = VPPCOM_EINVAL;
3323 break;
3324
3325 case VPPCOM_ATTR_GET_REUSEPORT:
3326 if (buffer && buflen && (*buflen >= sizeof (int)))
3327 {
3328 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003329 *(int *) buffer = vcl_session_has_attr (session,
3330 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003331 *buflen = sizeof (int);
3332
Florin Coras5e062572019-03-14 19:07:51 -07003333 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3334 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003335 }
3336 else
3337 rv = VPPCOM_EINVAL;
3338 break;
3339
3340 case VPPCOM_ATTR_SET_REUSEPORT:
3341 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003342 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003343 {
3344 /* VPP-TBD */
3345 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003346 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003347 else
Florin Corasac422d62020-10-19 20:51:36 -07003348 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003349
Florin Coras5e062572019-03-14 19:07:51 -07003350 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003351 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003352 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003353 }
3354 else
3355 rv = VPPCOM_EINVAL;
3356 break;
3357
3358 case VPPCOM_ATTR_GET_BROADCAST:
3359 if (buffer && buflen && (*buflen >= sizeof (int)))
3360 {
3361 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003362 *(int *) buffer = vcl_session_has_attr (session,
3363 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003364 *buflen = sizeof (int);
3365
Florin Coras5e062572019-03-14 19:07:51 -07003366 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3367 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003368 }
3369 else
3370 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003371 break;
3372
3373 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003374 if (buffer && buflen && (*buflen == sizeof (int)))
3375 {
3376 /* VPP-TBD */
3377 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003378 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003379 else
Florin Corasac422d62020-10-19 20:51:36 -07003380 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003381
Florin Coras5e062572019-03-14 19:07:51 -07003382 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003383 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003384 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003385 }
3386 else
3387 rv = VPPCOM_EINVAL;
3388 break;
3389
3390 case VPPCOM_ATTR_GET_V6ONLY:
3391 if (buffer && buflen && (*buflen >= sizeof (int)))
3392 {
3393 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003394 *(int *) buffer = vcl_session_has_attr (session,
3395 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003396 *buflen = sizeof (int);
3397
Florin Coras5e062572019-03-14 19:07:51 -07003398 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3399 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003400 }
3401 else
3402 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003403 break;
3404
3405 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003406 if (buffer && buflen && (*buflen == sizeof (int)))
3407 {
3408 /* VPP-TBD */
3409 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003410 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003411 else
Florin Corasac422d62020-10-19 20:51:36 -07003412 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003413
Florin Coras5e062572019-03-14 19:07:51 -07003414 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003415 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003416 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003417 }
3418 else
3419 rv = VPPCOM_EINVAL;
3420 break;
3421
3422 case VPPCOM_ATTR_GET_KEEPALIVE:
3423 if (buffer && buflen && (*buflen >= sizeof (int)))
3424 {
3425 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003426 *(int *) buffer = vcl_session_has_attr (session,
3427 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003428 *buflen = sizeof (int);
3429
Florin Coras5e062572019-03-14 19:07:51 -07003430 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3431 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003432 }
3433 else
3434 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003435 break;
Stevenbccd3392017-10-12 20:42:21 -07003436
3437 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003438 if (buffer && buflen && (*buflen == sizeof (int)))
3439 {
3440 /* VPP-TBD */
3441 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003442 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003443 else
Florin Corasac422d62020-10-19 20:51:36 -07003444 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003445
Florin Coras5e062572019-03-14 19:07:51 -07003446 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003447 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07003448 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003449 }
3450 else
3451 rv = VPPCOM_EINVAL;
3452 break;
3453
3454 case VPPCOM_ATTR_GET_TCP_NODELAY:
3455 if (buffer && buflen && (*buflen >= sizeof (int)))
3456 {
3457 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003458 *(int *) buffer = vcl_session_has_attr (session,
3459 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003460 *buflen = sizeof (int);
3461
Florin Coras5e062572019-03-14 19:07:51 -07003462 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3463 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003464 }
3465 else
3466 rv = VPPCOM_EINVAL;
3467 break;
3468
3469 case VPPCOM_ATTR_SET_TCP_NODELAY:
3470 if (buffer && buflen && (*buflen == sizeof (int)))
3471 {
3472 /* VPP-TBD */
3473 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003474 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003475 else
Florin Corasac422d62020-10-19 20:51:36 -07003476 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003477
Florin Coras5e062572019-03-14 19:07:51 -07003478 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003479 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07003480 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003481 }
3482 else
3483 rv = VPPCOM_EINVAL;
3484 break;
3485
3486 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3487 if (buffer && buflen && (*buflen >= sizeof (int)))
3488 {
3489 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003490 *(int *) buffer = vcl_session_has_attr (session,
3491 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003492 *buflen = sizeof (int);
3493
Florin Coras5e062572019-03-14 19:07:51 -07003494 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3495 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003496 }
3497 else
3498 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003499 break;
3500
3501 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003502 if (buffer && buflen && (*buflen == sizeof (int)))
3503 {
3504 /* VPP-TBD */
3505 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003506 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003507 else
Florin Corasac422d62020-10-19 20:51:36 -07003508 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003509
Florin Coras5e062572019-03-14 19:07:51 -07003510 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003511 vcl_session_has_attr (session,
3512 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003513 }
3514 else
3515 rv = VPPCOM_EINVAL;
3516 break;
3517
3518 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3519 if (buffer && buflen && (*buflen >= sizeof (int)))
3520 {
3521 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003522 *(int *) buffer = vcl_session_has_attr (session,
3523 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003524 *buflen = sizeof (int);
3525
Florin Coras5e062572019-03-14 19:07:51 -07003526 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3527 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003528 }
3529 else
3530 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003531 break;
3532
3533 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003534 if (buffer && buflen && (*buflen == sizeof (int)))
3535 {
3536 /* VPP-TBD */
3537 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003538 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003539 else
Florin Corasac422d62020-10-19 20:51:36 -07003540 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003541
Florin Coras5e062572019-03-14 19:07:51 -07003542 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003543 vcl_session_has_attr (session,
3544 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003545 }
3546 else
3547 rv = VPPCOM_EINVAL;
3548 break;
3549
3550 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3551 if (buffer && buflen && (*buflen >= sizeof (u32)))
3552 {
3553 /* VPP-TBD */
3554 *(u32 *) buffer = session->user_mss;
3555 *buflen = sizeof (int);
3556
Florin Coras5e062572019-03-14 19:07:51 -07003557 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3558 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003559 }
3560 else
3561 rv = VPPCOM_EINVAL;
3562 break;
3563
3564 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3565 if (buffer && buflen && (*buflen == sizeof (u32)))
3566 {
3567 /* VPP-TBD */
3568 session->user_mss = *(u32 *) buffer;
3569
Florin Coras5e062572019-03-14 19:07:51 -07003570 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3571 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003572 }
3573 else
3574 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003575 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003576
Florin Coras7baeb712019-01-04 17:05:43 -08003577 case VPPCOM_ATTR_SET_SHUT:
3578 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
Florin Corasac422d62020-10-19 20:51:36 -07003579 vcl_session_set_attr (session, VCL_SESS_ATTR_SHUT_RD);
Florin Coras7baeb712019-01-04 17:05:43 -08003580 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
Florin Corasac422d62020-10-19 20:51:36 -07003581 vcl_session_set_attr (session, VCL_SESS_ATTR_SHUT_WR);
Florin Coras7baeb712019-01-04 17:05:43 -08003582 break;
3583
3584 case VPPCOM_ATTR_GET_SHUT:
Florin Corasac422d62020-10-19 20:51:36 -07003585 if (vcl_session_has_attr (session, VCL_SESS_ATTR_SHUT_RD))
Florin Coras7baeb712019-01-04 17:05:43 -08003586 tmp_flags = 1;
Florin Corasac422d62020-10-19 20:51:36 -07003587 if (vcl_session_has_attr (session, VCL_SESS_ATTR_SHUT_WR))
Florin Coras7baeb712019-01-04 17:05:43 -08003588 tmp_flags |= 2;
3589 if (tmp_flags == 1)
3590 *(int *) buffer = SHUT_RD;
3591 else if (tmp_flags == 2)
3592 *(int *) buffer = SHUT_WR;
3593 else if (tmp_flags == 3)
3594 *(int *) buffer = SHUT_RDWR;
3595 *buflen = sizeof (int);
3596 break;
Florin Coras1e966172020-05-16 18:18:14 +00003597
3598 case VPPCOM_ATTR_SET_CONNECTED:
3599 session->flags |= VCL_SESSION_F_CONNECTED;
3600 break;
3601
Florin Corasa5a9efd2021-01-05 17:03:29 -08003602 case VPPCOM_ATTR_SET_CKPAIR:
3603 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
3604 !vcl_session_has_crypto (session))
3605 {
3606 rv = VPPCOM_EINVAL;
3607 break;
3608 }
3609 session->ckpair_index = *(uint32_t *) buffer;
3610 break;
3611
Florin Coras6a6555a2021-01-28 11:39:27 -08003612 case VPPCOM_ATTR_SET_VRF:
3613 if (!(buffer && buflen && (*buflen == sizeof (u32))))
3614 {
3615 rv = VPPCOM_EINVAL;
3616 break;
3617 }
3618 session->vrf = *(u32 *) buffer;
3619 break;
3620
3621 case VPPCOM_ATTR_GET_VRF:
3622 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
3623 {
3624 rv = VPPCOM_EINVAL;
3625 break;
3626 }
3627 *(u32 *) buffer = session->vrf;
3628 *buflen = sizeof (u32);
3629 break;
3630
Dave Wallacee22aa742017-10-20 12:30:38 -04003631 default:
3632 rv = VPPCOM_EINVAL;
3633 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003634 }
3635
Dave Wallace35830af2017-10-09 01:43:42 -04003636 return rv;
3637}
3638
Stevenac1f96d2017-10-24 16:03:58 -07003639int
Florin Coras134a9962018-08-28 11:32:04 -07003640vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003641 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3642{
Florin Coras134a9962018-08-28 11:32:04 -07003643 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00003644 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07003645 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07003646
3647 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003648 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003649 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003650 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003651 else
3652 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003653 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003654 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003655 }
3656
Florin Coras0a1e1832020-03-29 18:54:04 +00003657 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07003658 {
Florin Coras5da10c42020-04-01 04:31:21 +00003659 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07003660 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003661 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3662 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003663 else
Dave Barach178cf492018-11-13 16:34:13 -05003664 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3665 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00003666 ep->is_ip4 = session->transport.is_ip4;
3667 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07003668 }
Florin Coras460dce62018-07-27 05:45:06 -07003669
Stevenac1f96d2017-10-24 16:03:58 -07003670 return rv;
3671}
3672
3673int
Florin Coras134a9962018-08-28 11:32:04 -07003674vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003675 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3676{
Florin Coras7a2abce2020-04-05 19:25:44 +00003677 vcl_worker_t *wrk = vcl_worker_get_current ();
3678 vcl_session_t *s;
3679
3680 s = vcl_session_get_w_handle (wrk, session_handle);
3681 if (!s)
3682 return VPPCOM_EBADFD;
3683
Dave Wallace617dffa2017-10-26 14:47:06 -04003684 if (!buffer)
3685 return VPPCOM_EINVAL;
3686
3687 if (ep)
3688 {
Florin Coras5824cc52020-10-20 18:44:41 -07003689 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00003690 return VPPCOM_EINVAL;
3691
3692 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07003693 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00003694 {
Florin Coras5824cc52020-10-20 18:44:41 -07003695 u32 session_index = s->session_index;
3696 f64 timeout = vcm->cfg.session_timeout;
3697 int rv;
3698
Florin Coras5da10c42020-04-01 04:31:21 +00003699 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07003700 rv = vppcom_wait_for_session_state_change (session_index,
3701 VCL_STATE_READY,
3702 timeout);
3703 if (rv < 0)
3704 return rv;
3705 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00003706 }
Florin Coras5824cc52020-10-20 18:44:41 -07003707
3708 s->transport.is_ip4 = ep->is_ip4;
3709 s->transport.rmt_port = ep->port;
3710 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
Dave Wallace617dffa2017-10-26 14:47:06 -04003711 }
3712
3713 if (flags)
3714 {
3715 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003716 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003717 }
3718
Florin Coras7a2abce2020-04-05 19:25:44 +00003719 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3720 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07003721}
3722
Dave Wallace048b1d62018-01-03 22:24:41 -05003723int
3724vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3725{
Florin Coras134a9962018-08-28 11:32:04 -07003726 vcl_worker_t *wrk = vcl_worker_get_current ();
3727 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003728 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003729 svm_msg_q_msg_t msg;
3730 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003731 int rv, num_ev = 0;
3732
Florin Coras5e062572019-03-14 19:07:51 -07003733 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003734
3735 if (!vp)
3736 return VPPCOM_EFAULT;
3737
3738 do
3739 {
Florin Coras7e12d942018-06-27 14:32:43 -07003740 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003741
Florin Coras6917b942018-11-13 22:44:54 -08003742 /* Dequeue all events and drop all unhandled io events */
3743 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3744 {
3745 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3746 vcl_handle_mq_event (wrk, e);
3747 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3748 }
3749 vec_reset_length (wrk->unhandled_evts_vector);
3750
Dave Wallace048b1d62018-01-03 22:24:41 -05003751 for (i = 0; i < n_sids; i++)
3752 {
Florin Coras7baeb712019-01-04 17:05:43 -08003753 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003754 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003755 {
3756 vp[i].revents = POLLHUP;
3757 num_ev++;
3758 continue;
3759 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003760
Florin Coras6917b942018-11-13 22:44:54 -08003761 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003762
3763 if (POLLIN & vp[i].events)
3764 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003765 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003766 if (rv > 0)
3767 {
Florin Coras6917b942018-11-13 22:44:54 -08003768 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003769 num_ev++;
3770 }
3771 else if (rv < 0)
3772 {
3773 switch (rv)
3774 {
3775 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003776 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003777 break;
3778
3779 default:
Florin Coras6917b942018-11-13 22:44:54 -08003780 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003781 break;
3782 }
3783 num_ev++;
3784 }
3785 }
3786
3787 if (POLLOUT & vp[i].events)
3788 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003789 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003790 if (rv > 0)
3791 {
Florin Coras6917b942018-11-13 22:44:54 -08003792 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003793 num_ev++;
3794 }
3795 else if (rv < 0)
3796 {
3797 switch (rv)
3798 {
3799 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003800 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003801 break;
3802
3803 default:
Florin Coras6917b942018-11-13 22:44:54 -08003804 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003805 break;
3806 }
3807 num_ev++;
3808 }
3809 }
3810
Dave Wallace7e607a72018-06-18 18:41:32 -04003811 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003812 {
Florin Coras6917b942018-11-13 22:44:54 -08003813 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003814 num_ev++;
3815 }
3816 }
3817 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003818 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003819 }
3820 while ((num_ev == 0) && keep_trying);
3821
Dave Wallace048b1d62018-01-03 22:24:41 -05003822 return num_ev;
3823}
3824
Florin Coras99368312018-08-02 10:45:44 -07003825int
3826vppcom_mq_epoll_fd (void)
3827{
Florin Coras134a9962018-08-28 11:32:04 -07003828 vcl_worker_t *wrk = vcl_worker_get_current ();
3829 return wrk->mqs_epfd;
3830}
3831
3832int
Florin Coras30e79c22019-01-02 19:31:22 -08003833vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003834{
3835 return session_handle & 0xFFFFFF;
3836}
3837
3838int
Florin Coras30e79c22019-01-02 19:31:22 -08003839vppcom_session_worker (vcl_session_handle_t session_handle)
3840{
3841 return session_handle >> 24;
3842}
3843
3844int
Florin Coras134a9962018-08-28 11:32:04 -07003845vppcom_worker_register (void)
3846{
Florin Coras47c40e22018-11-26 17:01:36 -08003847 if (!vcl_worker_alloc_and_init ())
3848 return VPPCOM_EEXIST;
3849
Florin Coras47c40e22018-11-26 17:01:36 -08003850 if (vcl_worker_register_with_vpp ())
3851 return VPPCOM_EEXIST;
3852
3853 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003854}
3855
Florin Coras369db832019-07-08 12:34:45 -07003856void
3857vppcom_worker_unregister (void)
3858{
3859 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3860 vcl_set_worker_index (~0);
3861}
3862
Pivo6017ff02020-05-04 17:57:33 +02003863void
3864vppcom_worker_index_set (int index)
3865{
3866 vcl_set_worker_index (index);
3867}
3868
Florin Corasdfe4cf42018-11-28 22:13:45 -08003869int
3870vppcom_worker_index (void)
3871{
3872 return vcl_get_worker_index ();
3873}
3874
Florin Corase0982e52019-01-25 13:19:56 -08003875int
3876vppcom_worker_mqs_epfd (void)
3877{
3878 vcl_worker_t *wrk = vcl_worker_get_current ();
3879 if (!vcm->cfg.use_mq_eventfd)
3880 return -1;
3881 return wrk->mqs_epfd;
3882}
3883
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003884int
3885vppcom_session_is_connectable_listener (uint32_t session_handle)
3886{
3887 vcl_session_t *session;
3888 vcl_worker_t *wrk = vcl_worker_get_current ();
3889 session = vcl_session_get_w_handle (wrk, session_handle);
3890 if (!session)
3891 return VPPCOM_EBADFD;
3892 return vcl_session_is_connectable_listener (wrk, session);
3893}
3894
3895int
3896vppcom_session_listener (uint32_t session_handle)
3897{
3898 vcl_worker_t *wrk = vcl_worker_get_current ();
3899 vcl_session_t *listen_session, *session;
3900 session = vcl_session_get_w_handle (wrk, session_handle);
3901 if (!session)
3902 return VPPCOM_EBADFD;
3903 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3904 return VPPCOM_EBADFD;
3905 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3906 if (!listen_session)
3907 return VPPCOM_EBADFD;
3908 return vcl_session_handle (listen_session);
3909}
3910
3911int
3912vppcom_session_n_accepted (uint32_t session_handle)
3913{
3914 vcl_worker_t *wrk = vcl_worker_get_current ();
3915 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3916 if (!session)
3917 return VPPCOM_EBADFD;
3918 return session->n_accepted_sessions;
3919}
3920
Florin Coras66ec4672020-06-15 07:59:40 -07003921const char *
3922vppcom_proto_str (vppcom_proto_t proto)
3923{
3924 char const *proto_str;
3925
3926 switch (proto)
3927 {
3928 case VPPCOM_PROTO_TCP:
3929 proto_str = "TCP";
3930 break;
3931 case VPPCOM_PROTO_UDP:
3932 proto_str = "UDP";
3933 break;
3934 case VPPCOM_PROTO_TLS:
3935 proto_str = "TLS";
3936 break;
3937 case VPPCOM_PROTO_QUIC:
3938 proto_str = "QUIC";
3939 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08003940 case VPPCOM_PROTO_DTLS:
3941 proto_str = "DTLS";
3942 break;
Florin Coras66ec4672020-06-15 07:59:40 -07003943 default:
3944 proto_str = "UNKNOWN";
3945 break;
3946 }
3947 return proto_str;
3948}
3949
3950const char *
3951vppcom_retval_str (int retval)
3952{
3953 char const *st;
3954
3955 switch (retval)
3956 {
3957 case VPPCOM_OK:
3958 st = "VPPCOM_OK";
3959 break;
3960
3961 case VPPCOM_EAGAIN:
3962 st = "VPPCOM_EAGAIN";
3963 break;
3964
3965 case VPPCOM_EFAULT:
3966 st = "VPPCOM_EFAULT";
3967 break;
3968
3969 case VPPCOM_ENOMEM:
3970 st = "VPPCOM_ENOMEM";
3971 break;
3972
3973 case VPPCOM_EINVAL:
3974 st = "VPPCOM_EINVAL";
3975 break;
3976
3977 case VPPCOM_EBADFD:
3978 st = "VPPCOM_EBADFD";
3979 break;
3980
3981 case VPPCOM_EAFNOSUPPORT:
3982 st = "VPPCOM_EAFNOSUPPORT";
3983 break;
3984
3985 case VPPCOM_ECONNABORTED:
3986 st = "VPPCOM_ECONNABORTED";
3987 break;
3988
3989 case VPPCOM_ECONNRESET:
3990 st = "VPPCOM_ECONNRESET";
3991 break;
3992
3993 case VPPCOM_ENOTCONN:
3994 st = "VPPCOM_ENOTCONN";
3995 break;
3996
3997 case VPPCOM_ECONNREFUSED:
3998 st = "VPPCOM_ECONNREFUSED";
3999 break;
4000
4001 case VPPCOM_ETIMEDOUT:
4002 st = "VPPCOM_ETIMEDOUT";
4003 break;
4004
4005 default:
4006 st = "UNKNOWN_STATE";
4007 break;
4008 }
4009
4010 return st;
4011}
4012
Florin Corasa5a9efd2021-01-05 17:03:29 -08004013int
4014vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4015{
4016 if (vcm->cfg.vpp_app_socket_api)
4017 {
4018 clib_warning ("not supported");
4019 return VPPCOM_EINVAL;
4020 }
4021 return vcl_bapi_add_cert_key_pair (ckpair);
4022}
4023
4024int
4025vppcom_del_cert_key_pair (uint32_t ckpair_index)
4026{
4027 if (vcm->cfg.vpp_app_socket_api)
4028 {
4029 clib_warning ("not supported");
4030 return VPPCOM_EINVAL;
4031 }
4032 return vcl_bapi_del_cert_key_pair (ckpair_index);
4033}
4034
Dave Wallacee22aa742017-10-20 12:30:38 -04004035/*
4036 * fd.io coding-style-patch-verification: ON
4037 *
4038 * Local Variables:
4039 * eval: (c-set-style "gnu")
4040 * End:
4041 */