blob: b576e1a8dd3182ce5e6ba99588a286c20c1f1bf5 [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 Coras1bb74942021-02-10 15:26:37 -0800639 /* Only validate if a value is provided */
640 if (mp->segment_handle != SESSION_INVALID_HANDLE)
Florin Corasc547e912020-12-08 17:50:45 -0800641 {
Florin Coras1bb74942021-02-10 15:26:37 -0800642 fs_index = vcl_segment_table_lookup (mp->segment_handle);
643 if (fs_index == VCL_INVALID_SEGMENT_INDEX)
644 {
645 VDBG (0, "segment %lx for session %u is not mounted!",
646 mp->segment_handle, s->session_index);
647 s->session_state = VCL_STATE_DETACHED;
648 return;
649 }
Florin Corasc547e912020-12-08 17:50:45 -0800650 }
651
Florin Coras57660d92020-04-04 22:45:34 +0000652 s->vpp_handle = mp->new_handle;
Florin Corasb4624182020-12-11 13:58:12 -0800653
654 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0), mp->vpp_evt_q,
655 mp->vpp_thread_index, &s->vpp_evt_q);
Florin Coras68b7e582020-01-21 18:33:23 -0800656
Florin Coras68b7e582020-01-21 18:33:23 -0800657 vcl_session_table_del_vpp_handle (wrk, mp->handle);
658 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
659
660 /* Generate new tx event if we have outstanding data */
661 if (svm_fifo_has_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -0800662 app_send_io_evt_to_vpp (s->vpp_evt_q,
663 s->tx_fifo->shr->master_session_index,
Florin Coras68b7e582020-01-21 18:33:23 -0800664 SESSION_IO_EVT_TX, SVM_Q_WAIT);
665
Florin Coras57660d92020-04-04 22:45:34 +0000666 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
Florin Coras52dd29f2020-11-18 19:02:17 -0800667 mp->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800668}
669
Florin Coras3c7d4f92018-12-14 11:28:43 -0800670static vcl_session_t *
671vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
672{
673 vcl_session_msg_t *vcl_msg;
674 vcl_session_t *session;
675
676 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
677 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800678 VWRN ("session overlap handle %lu state %u!", msg->handle,
679 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800680
681 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
682 if (!session)
683 {
684 VERR ("couldn't find listen session: listener handle %llx",
685 msg->listener_handle);
686 return 0;
687 }
688
689 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000690 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800691 vcl_msg->accepted_msg = *msg;
692 /* Session handle points to listener until fully accepted by app */
693 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
694
695 return session;
696}
697
698static vcl_session_t *
699vcl_session_disconnected_handler (vcl_worker_t * wrk,
700 session_disconnected_msg_t * msg)
701{
702 vcl_session_t *session;
703
704 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
705 if (!session)
706 {
707 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
708 return 0;
709 }
710
Florin Corasadcfb152020-02-12 08:50:29 +0000711 /* Late disconnect notification on a session that has been closed */
Florin Corasc127d5a2020-10-14 16:35:58 -0700712 if (session->session_state == VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000713 return 0;
714
Florin Coras3c7d4f92018-12-14 11:28:43 -0800715 /* Caught a disconnect before actually accepting the session */
Florin Corasc127d5a2020-10-14 16:35:58 -0700716 if (session->session_state == VCL_STATE_LISTEN)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800717 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800718 if (!vcl_flag_accepted_session (session, msg->handle,
719 VCL_ACCEPTED_F_CLOSED))
720 VDBG (0, "session was not accepted!");
721 return 0;
722 }
723
Florin Corasadcfb152020-02-12 08:50:29 +0000724 /* If not already reset change state */
Florin Corasc127d5a2020-10-14 16:35:58 -0700725 if (session->session_state != VCL_STATE_DISCONNECT)
726 session->session_state = VCL_STATE_VPP_CLOSING;
Florin Corasadcfb152020-02-12 08:50:29 +0000727
Florin Coras3c7d4f92018-12-14 11:28:43 -0800728 return session;
729}
730
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700731static int
732vppcom_session_disconnect (u32 session_handle)
733{
734 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700735 vcl_session_t *session, *listen_session;
736 vcl_session_state_t state;
737 u64 vpp_handle;
738
739 session = vcl_session_get_w_handle (wrk, session_handle);
740 if (!session)
741 return VPPCOM_EBADFD;
742
743 vpp_handle = session->vpp_handle;
744 state = session->session_state;
745
746 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
747 vpp_handle, state, vppcom_session_state_str (state));
748
749 if (PREDICT_FALSE (state == VCL_STATE_LISTEN))
750 {
751 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
752 return VPPCOM_EBADFD;
753 }
754
755 if (state == VCL_STATE_VPP_CLOSING)
756 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800757 vcl_send_session_disconnected_reply (wrk, session, 0);
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700758 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
759 session->session_index, vpp_handle);
760 }
761 else
762 {
763 /* Session doesn't have an event queue yet. Probably a non-blocking
764 * connect. Wait for the reply */
765 if (PREDICT_FALSE (!session->vpp_evt_q))
766 return VPPCOM_OK;
767
768 VDBG (1, "session %u [0x%llx]: sending disconnect...",
769 session->session_index, vpp_handle);
770 vcl_send_session_disconnect (wrk, session);
771 }
772
773 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
774 {
775 listen_session = vcl_session_get (wrk, session->listener_index);
776 listen_session->n_accepted_sessions--;
777 }
778
779 return VPPCOM_OK;
780}
781
Florin Coras30e79c22019-01-02 19:31:22 -0800782static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700783vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
784{
785 session_cleanup_msg_t *msg;
786 vcl_session_t *session;
787
788 msg = (session_cleanup_msg_t *) data;
789 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
790 if (!session)
791 {
792 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
793 return;
794 }
795
Florin Coras36d49392020-04-24 23:00:11 +0000796 if (msg->type == SESSION_CLEANUP_TRANSPORT)
797 {
798 /* Transport was cleaned up before we confirmed close. Probably the
799 * app is still waiting for some data that cannot be delivered.
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700800 * Confirm close to make sure everything is cleaned up.
801 * Move to undetermined state to ensure that the session is not
802 * removed before both vpp and the app cleanup.
803 * - If the app closes first, the session is moved to CLOSED state
804 * and the session cleanup notification from vpp removes the
805 * session.
806 * - If vpp cleans up the session first, the session is moved to
807 * DETACHED state lower and subsequently the close from the app
808 * frees the session
809 */
810 if (session->session_state == VCL_STATE_VPP_CLOSING)
Florin Coras0ff7eec2020-08-03 18:55:40 -0700811 {
Florin Coras2bd8b3a2020-10-25 20:28:23 -0700812 vppcom_session_disconnect (vcl_session_handle (session));
813 session->session_state = VCL_STATE_UPDATED;
814 }
815 else if (session->session_state == VCL_STATE_DISCONNECT)
816 {
Florin Coras52dd29f2020-11-18 19:02:17 -0800817 vcl_send_session_reset_reply (wrk, session, 0);
Florin Coras0ff7eec2020-08-03 18:55:40 -0700818 session->session_state = VCL_STATE_UPDATED;
819 }
Florin Coras36d49392020-04-24 23:00:11 +0000820 return;
821 }
822
Florin Coras9ace36d2019-10-28 13:14:17 -0700823 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000824 /* Should not happen. App did not close the connection so don't free it. */
Florin Corasc127d5a2020-10-14 16:35:58 -0700825 if (session->session_state != VCL_STATE_CLOSED)
Florin Corasadcfb152020-02-12 08:50:29 +0000826 {
827 VDBG (0, "app did not close session %d", session->session_index);
Florin Corasc127d5a2020-10-14 16:35:58 -0700828 session->session_state = VCL_STATE_DETACHED;
Florin Corasadcfb152020-02-12 08:50:29 +0000829 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
830 return;
831 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700832 vcl_session_free (wrk, session);
833}
834
835static void
Florin Coras30e79c22019-01-02 19:31:22 -0800836vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
837{
838 session_req_worker_update_msg_t *msg;
839 vcl_session_t *s;
840
841 msg = (session_req_worker_update_msg_t *) data;
842 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
843 if (!s)
844 return;
845
846 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
847}
848
849static void
850vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
851{
852 session_worker_update_reply_msg_t *msg;
853 vcl_session_t *s;
854
855 msg = (session_worker_update_reply_msg_t *) data;
856 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
857 if (!s)
858 {
859 VDBG (0, "unknown handle 0x%llx", msg->handle);
860 return;
861 }
Florin Coras30e79c22019-01-02 19:31:22 -0800862
Florin Coras5f45e012019-01-23 09:21:30 -0800863 if (s->rx_fifo)
864 {
Florin Corasc547e912020-12-08 17:50:45 -0800865 if (vcl_segment_attach_session (msg->segment_handle, msg->rx_fifo,
Florin Corasb4624182020-12-11 13:58:12 -0800866 msg->tx_fifo, (uword) ~0, 0, s))
Florin Corasc547e912020-12-08 17:50:45 -0800867 {
868 VDBG (0, "failed to attach fifos for %u", s->session_index);
869 return;
870 }
Florin Coras5f45e012019-01-23 09:21:30 -0800871 }
Florin Corasc127d5a2020-10-14 16:35:58 -0700872 s->session_state = VCL_STATE_UPDATED;
Florin Coras30e79c22019-01-02 19:31:22 -0800873
Florin Coras30e79c22019-01-02 19:31:22 -0800874 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
875 s->vpp_handle, wrk->wrk_index);
876}
877
Florin Coras935ce752020-09-08 22:43:47 -0700878static int
879vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
880{
881
882 if (vcm->cfg.vpp_app_socket_api)
883 return vcl_sapi_recv_fds (wrk, fds, n_fds);
884
885 return vcl_bapi_recv_fds (wrk, fds, n_fds);
886}
887
Florin Corasc4c4cf52019-08-24 18:17:34 -0700888static void
889vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
890{
891 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
892 session_app_add_segment_msg_t *msg;
893 u64 segment_handle;
894 int fd = -1;
895
896 msg = (session_app_add_segment_msg_t *) data;
897
898 if (msg->fd_flags)
899 {
Florin Coras935ce752020-09-08 22:43:47 -0700900 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700901 seg_type = SSVM_SEGMENT_MEMFD;
902 }
903
904 segment_handle = msg->segment_handle;
905 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
906 {
907 clib_warning ("invalid segment handle");
908 return;
909 }
910
911 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
912 seg_type, fd))
913 {
914 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
915 return;
916 }
917
918 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
919 msg->segment_size);
920}
921
922static void
923vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
924{
925 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
926 vcl_segment_detach (msg->segment_handle);
927 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
928}
929
Florin Coras40c07ce2020-07-16 20:46:17 -0700930static void
931vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
932{
933 if (!vcm->wrk_rpc_fn)
934 return;
935
hanlina3a48962020-07-13 11:09:15 +0800936 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700937}
938
Florin Coras86f04502018-09-12 16:08:01 -0700939static int
940vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700941{
Florin Coras54693d22018-07-17 10:46:29 -0700942 session_disconnected_msg_t *disconnected_msg;
Florin Corasb242d312020-10-26 15:35:40 -0700943 session_connected_msg_t *connected_msg;
944 session_reset_msg_t *reset_msg;
945 session_event_t *ecpy;
Florin Corasc127d5a2020-10-14 16:35:58 -0700946 vcl_session_t *s;
Florin Corasb242d312020-10-26 15:35:40 -0700947 u32 sid;
Florin Coras54693d22018-07-17 10:46:29 -0700948
949 switch (e->event_type)
950 {
Florin Coras653e43f2019-03-04 10:56:23 -0800951 case SESSION_IO_EVT_RX:
952 case SESSION_IO_EVT_TX:
Florin Corasc127d5a2020-10-14 16:35:58 -0700953 s = vcl_session_get (wrk, e->session_index);
Florin Coras1bc919e2020-10-18 20:17:49 -0700954 if (!s || !vcl_session_is_open (s))
Florin Coras653e43f2019-03-04 10:56:23 -0800955 break;
Florin Coras86f04502018-09-12 16:08:01 -0700956 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700957 break;
Florin Corasb242d312020-10-26 15:35:40 -0700958 case SESSION_CTRL_EVT_BOUND:
959 /* We can only wait for only one listen so not postponed */
960 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
961 break;
Florin Coras54693d22018-07-17 10:46:29 -0700962 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -0700963 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
964 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
965 {
966 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
967 *ecpy = *e;
968 ecpy->postponed = 1;
969 ecpy->session_index = s->session_index;
970 }
Florin Coras54693d22018-07-17 10:46:29 -0700971 break;
972 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -0700973 connected_msg = (session_connected_msg_t *) e->data;
974 sid = vcl_session_connected_handler (wrk, connected_msg);
975 if (!(s = vcl_session_get (wrk, sid)))
976 break;
977 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
978 {
979 vec_add2 (wrk->unhandled_evts_vector, ecpy, 1);
980 *ecpy = *e;
981 ecpy->postponed = 1;
982 ecpy->session_index = s->session_index;
983 }
Florin Coras54693d22018-07-17 10:46:29 -0700984 break;
985 case SESSION_CTRL_EVT_DISCONNECTED:
986 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -0700987 if (!(s = vcl_session_get_w_vpp_handle (wrk, disconnected_msg->handle)))
988 break;
989 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
990 {
991 vec_add1 (wrk->unhandled_evts_vector, *e);
992 break;
993 }
994 if (!(s = vcl_session_disconnected_handler (wrk, disconnected_msg)))
Florin Coras3c7d4f92018-12-14 11:28:43 -0800995 break;
Florin Corasc127d5a2020-10-14 16:35:58 -0700996 VDBG (0, "disconnected session %u [0x%llx]", s->session_index,
997 s->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700998 break;
999 case SESSION_CTRL_EVT_RESET:
Florin Corasb242d312020-10-26 15:35:40 -07001000 reset_msg = (session_reset_msg_t *) e->data;
1001 if (!(s = vcl_session_get_w_vpp_handle (wrk, reset_msg->handle)))
1002 break;
1003 if (vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
1004 {
1005 vec_add1 (wrk->unhandled_evts_vector, *e);
1006 break;
1007 }
Florin Coras134a9962018-08-28 11:32:04 -07001008 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -07001009 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08001010 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
1011 vcl_session_unlisten_reply_handler (wrk, e->data);
1012 break;
Florin Coras68b7e582020-01-21 18:33:23 -08001013 case SESSION_CTRL_EVT_MIGRATED:
1014 vcl_session_migrated_handler (wrk, e->data);
1015 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07001016 case SESSION_CTRL_EVT_CLEANUP:
1017 vcl_session_cleanup_handler (wrk, e->data);
1018 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001019 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1020 vcl_session_req_worker_update_handler (wrk, e->data);
1021 break;
1022 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1023 vcl_session_worker_update_reply_handler (wrk, e->data);
1024 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07001025 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
1026 vcl_session_app_add_segment_handler (wrk, e->data);
1027 break;
1028 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
1029 vcl_session_app_del_segment_handler (wrk, e->data);
1030 break;
hanlina3a48962020-07-13 11:09:15 +08001031 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07001032 vcl_worker_rpc_handler (wrk, e->data);
1033 break;
Florin Coras54693d22018-07-17 10:46:29 -07001034 default:
1035 clib_warning ("unhandled %u", e->event_type);
1036 }
1037 return VPPCOM_OK;
1038}
1039
Florin Coras30e79c22019-01-02 19:31:22 -08001040static int
Florin Coras697faea2018-06-27 17:10:49 -07001041vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -08001042 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -07001043 f64 wait_for_time)
1044{
Florin Coras134a9962018-08-28 11:32:04 -07001045 vcl_worker_t *wrk = vcl_worker_get_current ();
1046 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001047 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001048 svm_msg_q_msg_t msg;
1049 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001050
Florin Coras697faea2018-06-27 17:10:49 -07001051 do
Dave Wallace543852a2017-08-03 02:11:34 -04001052 {
Florin Coras134a9962018-08-28 11:32:04 -07001053 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001054 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001055 {
Florin Coras070453d2018-08-24 17:04:27 -07001056 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001057 }
Florin Corasdfffdd72020-10-15 10:54:47 -07001058 if (session->session_state == state)
Florin Coras697faea2018-06-27 17:10:49 -07001059 {
Florin Coras697faea2018-06-27 17:10:49 -07001060 return VPPCOM_OK;
1061 }
Florin Corasc127d5a2020-10-14 16:35:58 -07001062 if (session->session_state == VCL_STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001063 {
Florin Coras697faea2018-06-27 17:10:49 -07001064 return VPPCOM_ECONNREFUSED;
1065 }
Florin Coras54693d22018-07-17 10:46:29 -07001066
Florin Coras134a9962018-08-28 11:32:04 -07001067 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001068 {
1069 usleep (100);
1070 continue;
1071 }
Florin Coras134a9962018-08-28 11:32:04 -07001072 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001073 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001074 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001075 }
Florin Coras134a9962018-08-28 11:32:04 -07001076 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001077
Florin Coras05ecfcc2018-12-12 18:19:39 -08001078 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -07001079 vppcom_session_state_str (state));
1080 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001081
Florin Coras697faea2018-06-27 17:10:49 -07001082 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001083}
1084
Florin Coras30e79c22019-01-02 19:31:22 -08001085static void
1086vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1087{
Florin Coras288eaab2019-02-03 15:26:14 -08001088 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001089 vcl_session_t *s;
1090 u32 *sip;
1091
1092 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1093 return;
1094
1095 vec_foreach (sip, wrk->pending_session_wrk_updates)
1096 {
1097 s = vcl_session_get (wrk, *sip);
1098 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1099 state = s->session_state;
Florin Corasc127d5a2020-10-14 16:35:58 -07001100 vppcom_wait_for_session_state_change (s->session_index, VCL_STATE_UPDATED,
1101 5);
Florin Coras30e79c22019-01-02 19:31:22 -08001102 s->session_state = state;
1103 }
1104 vec_reset_length (wrk->pending_session_wrk_updates);
1105}
1106
Florin Corasf9240dc2019-01-15 08:03:17 -08001107void
Florin Coras5398dfb2021-01-25 20:31:27 -08001108vcl_worker_flush_mq_events (vcl_worker_t *wrk)
Florin Coras30e79c22019-01-02 19:31:22 -08001109{
Florin Coras30e79c22019-01-02 19:31:22 -08001110 svm_msg_q_msg_t *msg;
1111 session_event_t *e;
1112 svm_msg_q_t *mq;
1113 int i;
1114
1115 mq = wrk->app_event_queue;
Florin Corase003a1b2019-06-05 10:47:16 -07001116 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001117
1118 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1119 {
1120 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1121 e = svm_msg_q_msg_data (mq, msg);
1122 vcl_handle_mq_event (wrk, e);
1123 svm_msg_q_free_msg (mq, msg);
1124 }
1125 vec_reset_length (wrk->mq_msg_vector);
1126 vcl_handle_pending_wrk_updates (wrk);
1127}
1128
Florin Coras5398dfb2021-01-25 20:31:27 -08001129void
1130vcl_flush_mq_events (void)
1131{
1132 vcl_worker_flush_mq_events (vcl_worker_get_current ());
1133}
1134
Florin Coras697faea2018-06-27 17:10:49 -07001135static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001136vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001137{
Florin Coras134a9962018-08-28 11:32:04 -07001138 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001139 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001140 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001141 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001142
Florin Corasab2f6db2018-08-31 14:31:41 -07001143 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001144 if (!session)
1145 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001146
Florin Corasaaff5ee2019-07-08 13:00:00 -07001147 /* Flush pending accept events, if any */
1148 while (clib_fifo_elts (session->accept_evts_fifo))
1149 {
1150 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1151 accepted_msg = &evt->accepted_msg;
1152 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1153 vcl_send_session_accepted_reply (session->vpp_evt_q,
1154 accepted_msg->context,
wanghanlin785b6ea2020-12-10 19:12:22 +08001155 accepted_msg->handle, -1);
Florin Corasaaff5ee2019-07-08 13:00:00 -07001156 }
1157 clib_fifo_free (session->accept_evts_fifo);
1158
Florin Coras458089b2019-08-21 16:20:44 -07001159 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001160
Florin Coras5e062572019-03-14 19:07:51 -07001161 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001162 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001163 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001164
1165 session->vpp_handle = ~0;
Florin Corasc127d5a2020-10-14 16:35:58 -07001166 session->session_state = VCL_STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001167
Florin Coras070453d2018-08-24 17:04:27 -07001168 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001169}
1170
Florin Coras940f78f2018-11-30 12:11:20 -08001171/**
1172 * Handle app exit
1173 *
1174 * Notify vpp of the disconnect and mark the worker as free. If we're the
1175 * last worker, do a full cleanup otherwise, since we're probably a forked
1176 * child, avoid syscalls as much as possible. We might've lost privileges.
1177 */
1178void
1179vppcom_app_exit (void)
1180{
1181 if (!pool_elts (vcm->workers))
1182 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001183 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1184 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001185 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001186}
1187
Florin Coras935ce752020-09-08 22:43:47 -07001188static int
1189vcl_api_attach (void)
1190{
1191 if (vcm->cfg.vpp_app_socket_api)
1192 return vcl_sapi_attach ();
1193
1194 return vcl_bapi_attach ();
1195}
1196
1197static void
1198vcl_api_detach (vcl_worker_t * wrk)
1199{
1200 vcl_send_app_detach (wrk);
1201
1202 if (vcm->cfg.vpp_app_socket_api)
1203 return vcl_sapi_detach (wrk);
1204
1205 return vcl_bapi_disconnect_from_vpp ();
1206}
1207
Dave Wallace543852a2017-08-03 02:11:34 -04001208/*
1209 * VPPCOM Public API functions
1210 */
1211int
Florin Coras66ec4672020-06-15 07:59:40 -07001212vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001213{
Dave Wallace543852a2017-08-03 02:11:34 -04001214 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001215 int rv;
1216
Florin Coras47c40e22018-11-26 17:01:36 -08001217 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001218 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001219 VDBG (1, "already initialized");
1220 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001221 }
1222
Florin Coras47c40e22018-11-26 17:01:36 -08001223 vcm->is_init = 1;
1224 vppcom_cfg (&vcm->cfg);
1225 vcl_cfg = &vcm->cfg;
1226
1227 vcm->main_cpu = pthread_self ();
1228 vcm->main_pid = getpid ();
1229 vcm->app_name = format (0, "%s", app_name);
Florin Coras88001c62019-04-24 14:44:46 -07001230 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1231 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001232 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1233 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001234 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001235 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001236 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001237
1238 /* Allocate default worker */
1239 vcl_worker_alloc_and_init ();
1240
Florin Coras935ce752020-09-08 22:43:47 -07001241 if ((rv = vcl_api_attach ()))
Florin Corasb88de902020-09-08 16:47:57 -07001242 return rv;
Florin Coras47c40e22018-11-26 17:01:36 -08001243
1244 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001245 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001246
1247 return VPPCOM_OK;
1248}
1249
1250void
1251vppcom_app_destroy (void)
1252{
Florin Corasdc0ded72020-04-30 02:59:55 +00001253 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001254 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001255
Florin Coras940f78f2018-11-30 12:11:20 -08001256 if (!pool_elts (vcm->workers))
1257 return;
1258
Florin Coras0d427d82018-06-27 03:24:07 -07001259 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001260
Florin Corasdc0ded72020-04-30 02:59:55 +00001261 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001262
Florin Corasce815de2020-04-16 18:47:27 +00001263 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001264 pool_foreach (wrk, vcm->workers) {
Florin Corasdc0ded72020-04-30 02:59:55 +00001265 if (current_wrk != wrk)
1266 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Damjan Marionb2c31b62020-12-13 21:47:40 +01001267 }
Florin Corasce815de2020-04-16 18:47:27 +00001268 /* *INDENT-ON* */
1269
Florin Coras935ce752020-09-08 22:43:47 -07001270 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001271 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1272
Florin Coras0d427d82018-06-27 03:24:07 -07001273 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001274
1275 /*
1276 * Free the heap and fix vcm
1277 */
1278 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001279 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001280
1281 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001282 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001283}
1284
1285int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001286vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001287{
Florin Coras134a9962018-08-28 11:32:04 -07001288 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001289 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001290
Florin Coras134a9962018-08-28 11:32:04 -07001291 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001292
Florin Coras7e12d942018-06-27 14:32:43 -07001293 session->session_type = proto;
Florin Corasc127d5a2020-10-14 16:35:58 -07001294 session->session_state = VCL_STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001295 session->vpp_handle = ~0;
Florin Corasa5a9efd2021-01-05 17:03:29 -08001296 session->ckpair_index = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001297 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001298
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001299 if (is_nonblocking)
Florin Corasac422d62020-10-19 20:51:36 -07001300 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001301
Florin Coras7e12d942018-06-27 14:32:43 -07001302 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1303 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001304
Florin Coras5e062572019-03-14 19:07:51 -07001305 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001306
Florin Coras134a9962018-08-28 11:32:04 -07001307 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001308}
1309
1310int
Florin Corasc127d5a2020-10-14 16:35:58 -07001311vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * s,
Florin Corasf9240dc2019-01-15 08:03:17 -08001312 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001313{
Florin Coras134a9962018-08-28 11:32:04 -07001314 int rv = VPPCOM_OK;
Florin Coras47c40e22018-11-26 17:01:36 -08001315
Florin Coras6c3b2182020-10-19 18:36:48 -07001316 VDBG (1, "session %u [0x%llx] closing", s->session_index, s->vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001317
Florin Coras6c3b2182020-10-19 18:36:48 -07001318 if (s->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace543852a2017-08-03 02:11:34 -04001319 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001320 u32 next_sh = s->vep.next_sh;
Florin Coras134a9962018-08-28 11:32:04 -07001321 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001322 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001323 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001324 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001325 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras6c3b2182020-10-19 18:36:48 -07001326 " failed! rv %d (%s)", s->vpp_handle, next_sh,
1327 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Florin Corasc127d5a2020-10-14 16:35:58 -07001328 next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001329 }
Florin Corase4306b62020-10-28 12:51:10 -07001330 goto free_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001331 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001332
Florin Coras6c3b2182020-10-19 18:36:48 -07001333 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001334 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001335 rv = vppcom_epoll_ctl (s->vep.vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001336 if (rv < 0)
1337 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
Florin Coras6c3b2182020-10-19 18:36:48 -07001338 "failed! rv %d (%s)", s->session_index, s->vpp_handle,
1339 s->vep.vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001340 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001341
Florin Coras9ace36d2019-10-28 13:14:17 -07001342 if (!do_disconnect)
1343 {
1344 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Coras6c3b2182020-10-19 18:36:48 -07001345 s->session_index, s->vpp_handle);
Florin Coras9ace36d2019-10-28 13:14:17 -07001346 goto cleanup;
1347 }
1348
Florin Coras6c3b2182020-10-19 18:36:48 -07001349 if (s->session_state == VCL_STATE_LISTEN)
Florin Coras9ace36d2019-10-28 13:14:17 -07001350 {
1351 rv = vppcom_session_unbind (sh);
1352 if (PREDICT_FALSE (rv < 0))
1353 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
Florin Coras6c3b2182020-10-19 18:36:48 -07001354 "rv %d (%s)", s->session_index, s->vpp_handle, rv,
Florin Coras9ace36d2019-10-28 13:14:17 -07001355 vppcom_retval_str (rv));
1356 return rv;
1357 }
Florin Coras1bc919e2020-10-18 20:17:49 -07001358 else if (vcl_session_is_ready (s)
Florin Corasc127d5a2020-10-14 16:35:58 -07001359 || (vcl_session_is_connectable_listener (wrk, s)))
Florin Coras9ace36d2019-10-28 13:14:17 -07001360 {
1361 rv = vppcom_session_disconnect (sh);
1362 if (PREDICT_FALSE (rv < 0))
1363 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
Florin Coras6c3b2182020-10-19 18:36:48 -07001364 " rv %d (%s)", s->session_index, s->vpp_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001365 rv, vppcom_retval_str (rv));
1366 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001367 else if (s->session_state == VCL_STATE_DISCONNECT)
Florin Coras9ace36d2019-10-28 13:14:17 -07001368 {
Florin Coras52dd29f2020-11-18 19:02:17 -08001369 vcl_send_session_reset_reply (wrk, s, 0);
Florin Coras9ace36d2019-10-28 13:14:17 -07001370 }
Florin Coras6c3b2182020-10-19 18:36:48 -07001371 else if (s->session_state == VCL_STATE_DETACHED)
Florin Corasadcfb152020-02-12 08:50:29 +00001372 {
1373 /* Should not happen. VPP cleaned up before app confirmed close */
Florin Corasc127d5a2020-10-14 16:35:58 -07001374 VDBG (0, "vpp freed session %d before close", s->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +00001375 goto free_session;
1376 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001377
Florin Corasc127d5a2020-10-14 16:35:58 -07001378 s->session_state = VCL_STATE_CLOSED;
Florin Coras54140622020-02-04 19:04:34 +00001379
Florin Coras9ace36d2019-10-28 13:14:17 -07001380 /* Session is removed only after vpp confirms the disconnect */
1381 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001382
Florin Corasf9240dc2019-01-15 08:03:17 -08001383cleanup:
Florin Coras6c3b2182020-10-19 18:36:48 -07001384 vcl_session_table_del_vpp_handle (wrk, s->vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001385free_session:
Florin Corasc127d5a2020-10-14 16:35:58 -07001386 vcl_session_free (wrk, s);
1387 vcl_evt (VCL_EVT_CLOSE, s, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001388
Dave Wallace543852a2017-08-03 02:11:34 -04001389 return rv;
1390}
1391
1392int
Florin Corasf9240dc2019-01-15 08:03:17 -08001393vppcom_session_close (uint32_t session_handle)
1394{
1395 vcl_worker_t *wrk = vcl_worker_get_current ();
1396 vcl_session_t *session;
1397
1398 session = vcl_session_get_w_handle (wrk, session_handle);
1399 if (!session)
1400 return VPPCOM_EBADFD;
1401 return vcl_session_cleanup (wrk, session, session_handle,
1402 1 /* do_disconnect */ );
1403}
1404
1405int
Florin Coras134a9962018-08-28 11:32:04 -07001406vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001407{
Florin Coras134a9962018-08-28 11:32:04 -07001408 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001409 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001410
1411 if (!ep || !ep->ip)
1412 return VPPCOM_EINVAL;
1413
Florin Coras134a9962018-08-28 11:32:04 -07001414 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001415 if (!session)
1416 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001417
Florin Coras6c3b2182020-10-19 18:36:48 -07001418 if (session->flags & VCL_SESSION_F_IS_VEP)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001419 {
Florin Coras5e062572019-03-14 19:07:51 -07001420 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1421 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001422 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001423 }
1424
Florin Coras7e12d942018-06-27 14:32:43 -07001425 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001426 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001427 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1428 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001429 else
Dave Barach178cf492018-11-13 16:34:13 -05001430 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1431 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001432 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001433
Florin Coras5e062572019-03-14 19:07:51 -07001434 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1435 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001436 session->transport.is_ip4 ? "IPv4" : "IPv6",
1437 format_ip46_address, &session->transport.lcl_ip,
1438 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1439 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001440 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001441 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001442
1443 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001444 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001445
Florin Coras070453d2018-08-24 17:04:27 -07001446 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001447}
1448
1449int
Florin Coras134a9962018-08-28 11:32:04 -07001450vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001451{
Florin Coras134a9962018-08-28 11:32:04 -07001452 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001453 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001454 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001455 int rv;
1456
Florin Coras134a9962018-08-28 11:32:04 -07001457 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras6c3b2182020-10-19 18:36:48 -07001458 if (!listen_session || (listen_session->flags & VCL_SESSION_F_IS_VEP))
Florin Coras070453d2018-08-24 17:04:27 -07001459 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001460
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001461 if (q_len == 0 || q_len == ~0)
1462 q_len = vcm->cfg.listen_queue_size;
1463
Dave Wallaceee45d412017-11-24 21:44:06 -05001464 listen_vpp_handle = listen_session->vpp_handle;
Florin Corasc127d5a2020-10-14 16:35:58 -07001465 if (listen_session->session_state == VCL_STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001466 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001467 VDBG (0, "session %u [0x%llx]: already in listen state!",
1468 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001469 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001470 }
1471
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001472 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001473
Florin Coras070453d2018-08-24 17:04:27 -07001474 /*
1475 * Send listen request to vpp and wait for reply
1476 */
Florin Coras458089b2019-08-21 16:20:44 -07001477 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001478 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
Florin Corasc127d5a2020-10-14 16:35:58 -07001479 VCL_STATE_LISTEN,
Florin Coras134a9962018-08-28 11:32:04 -07001480 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001481
Florin Coras070453d2018-08-24 17:04:27 -07001482 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001483 {
Florin Coras134a9962018-08-28 11:32:04 -07001484 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001485 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1486 listen_sh, listen_session->vpp_handle, rv,
1487 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001488 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001489 }
1490
Florin Coras070453d2018-08-24 17:04:27 -07001491 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001492}
1493
Florin Coras134a9962018-08-28 11:32:04 -07001494static int
Florin Coras5e062572019-03-14 19:07:51 -07001495validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001496{
Florin Coras6c3b2182020-10-19 18:36:48 -07001497 if (ls->flags & VCL_SESSION_F_IS_VEP)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001498 {
Florin Coras5e062572019-03-14 19:07:51 -07001499 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1500 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001501 return VPPCOM_EBADFD;
1502 }
1503
Florin Corasc127d5a2020-10-14 16:35:58 -07001504 if ((ls->session_state != VCL_STATE_LISTEN)
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001505 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001506 {
Florin Coras6c3b2182020-10-19 18:36:48 -07001507 VDBG (0, "ERROR: session [0x%llx]: not in listen state! state 0x%x"
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001508 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001509 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001510 return VPPCOM_EBADFD;
1511 }
1512 return VPPCOM_OK;
1513}
1514
1515int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001516vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1517{
1518 if (!strcmp (proto_str, "TCP"))
1519 *proto = VPPCOM_PROTO_TCP;
1520 else if (!strcmp (proto_str, "tcp"))
1521 *proto = VPPCOM_PROTO_TCP;
1522 else if (!strcmp (proto_str, "UDP"))
1523 *proto = VPPCOM_PROTO_UDP;
1524 else if (!strcmp (proto_str, "udp"))
1525 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001526 else if (!strcmp (proto_str, "TLS"))
1527 *proto = VPPCOM_PROTO_TLS;
1528 else if (!strcmp (proto_str, "tls"))
1529 *proto = VPPCOM_PROTO_TLS;
1530 else if (!strcmp (proto_str, "QUIC"))
1531 *proto = VPPCOM_PROTO_QUIC;
1532 else if (!strcmp (proto_str, "quic"))
1533 *proto = VPPCOM_PROTO_QUIC;
Florin Coras4b47ee22020-11-19 13:38:26 -08001534 else if (!strcmp (proto_str, "DTLS"))
1535 *proto = VPPCOM_PROTO_DTLS;
1536 else if (!strcmp (proto_str, "dtls"))
1537 *proto = VPPCOM_PROTO_DTLS;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001538 else
1539 return 1;
1540 return 0;
1541}
1542
1543int
Florin Coras134a9962018-08-28 11:32:04 -07001544vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001545 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001546{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001547 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001548 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001549 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001550 vcl_session_t *listen_session = 0;
1551 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001552 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001553 u8 is_nonblocking;
1554 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001555
Florin Coras5398dfb2021-01-25 20:31:27 -08001556again:
1557
Florin Coras134a9962018-08-28 11:32:04 -07001558 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001559 if (!listen_session)
1560 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001561
Florin Coras134a9962018-08-28 11:32:04 -07001562 listen_session_index = listen_session->session_index;
1563 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001564 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001565
Florin Coras54693d22018-07-17 10:46:29 -07001566 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001567 {
Florin Coras54693d22018-07-17 10:46:29 -07001568 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001569 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001570 accepted_msg = evt->accepted_msg;
1571 goto handle;
1572 }
1573
Florin Corasac422d62020-10-19 20:51:36 -07001574 is_nonblocking = vcl_session_has_attr (listen_session,
1575 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001576 while (1)
1577 {
Carl Smith592a9092019-11-12 14:57:37 +13001578 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1579 return VPPCOM_EAGAIN;
1580
Florin Coras5398dfb2021-01-25 20:31:27 -08001581 svm_msg_q_wait (wrk->app_event_queue, SVM_MQ_WAIT_EMPTY);
1582 vcl_worker_flush_mq_events (wrk);
1583 goto again;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001584 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001585
Florin Coras54693d22018-07-17 10:46:29 -07001586handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001587
Florin Coras00cca802019-06-06 09:38:44 -07001588 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1589 listen_session_index);
1590 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1591 return VPPCOM_ECONNABORTED;
1592
Florin Coras134a9962018-08-28 11:32:04 -07001593 listen_session = vcl_session_get (wrk, listen_session_index);
1594 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001595
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001596 if (flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07001597 vcl_session_set_attr (client_session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001598
Florin Coras5e062572019-03-14 19:07:51 -07001599 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1600 " flags %d, is_nonblocking %u", listen_session->session_index,
1601 listen_session->vpp_handle, client_session_index,
1602 client_session->vpp_handle, flags,
Florin Corasac422d62020-10-19 20:51:36 -07001603 vcl_session_has_attr (client_session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001604
Dave Wallace048b1d62018-01-03 22:24:41 -05001605 if (ep)
1606 {
Florin Coras7e12d942018-06-27 14:32:43 -07001607 ep->is_ip4 = client_session->transport.is_ip4;
1608 ep->port = client_session->transport.rmt_port;
1609 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001610 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1611 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001612 else
Dave Barach178cf492018-11-13 16:34:13 -05001613 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1614 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001615 }
Dave Wallace60caa062017-11-10 17:07:13 -05001616
Florin Coras05ecfcc2018-12-12 18:19:39 -08001617 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001618 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001619 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001620 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001621 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001622 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001623 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001624 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001625 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001626 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1627 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001628
Florin Coras3c7d4f92018-12-14 11:28:43 -08001629 /*
1630 * Session might have been closed already
1631 */
1632 if (accept_flags)
1633 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001634 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasc127d5a2020-10-14 16:35:58 -07001635 client_session->session_state = VCL_STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001636 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasc127d5a2020-10-14 16:35:58 -07001637 client_session->session_state = VCL_STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001638 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001639 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001640}
1641
1642int
Florin Coras134a9962018-08-28 11:32:04 -07001643vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001644{
Florin Coras134a9962018-08-28 11:32:04 -07001645 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001646 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001647 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001648 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001649
Florin Coras134a9962018-08-28 11:32:04 -07001650 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001651 if (!session)
1652 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001653 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001654
Florin Coras6c3b2182020-10-19 18:36:48 -07001655 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04001656 {
Florin Coras5e062572019-03-14 19:07:51 -07001657 VDBG (0, "ERROR: cannot connect epoll session %u!",
1658 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001659 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001660 }
1661
Florin Corasc127d5a2020-10-14 16:35:58 -07001662 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Dave Wallace543852a2017-08-03 02:11:34 -04001663 {
Florin Coras7baeb712019-01-04 17:05:43 -08001664 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001665 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001666 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001667 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001668 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001669 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001670 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001671 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001672 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001673 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001674 }
1675
Florin Coras0a1e1832020-03-29 18:54:04 +00001676 /* Attempt to connect a connectionless listener */
Florin Corasc127d5a2020-10-14 16:35:58 -07001677 if (PREDICT_FALSE (session->session_state == VCL_STATE_LISTEN))
Florin Coras0a1e1832020-03-29 18:54:04 +00001678 {
1679 if (session->session_type != VPPCOM_PROTO_UDP)
1680 return VPPCOM_EINVAL;
1681 vcl_send_session_unlisten (wrk, session);
Florin Corasc127d5a2020-10-14 16:35:58 -07001682 session->session_state = VCL_STATE_CLOSED;
Florin Coras0a1e1832020-03-29 18:54:04 +00001683 }
1684
Florin Coras7e12d942018-06-27 14:32:43 -07001685 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001686 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001687 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001688 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001689 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001690
Florin Coras0a1e1832020-03-29 18:54:04 +00001691 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001692 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001693 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001694 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001695 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001696 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001697 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001698 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001699 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001700
Florin Coras458089b2019-08-21 16:20:44 -07001701 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001702
Florin Corasac422d62020-10-19 20:51:36 -07001703 if (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001704 {
fanyfa49d59d2020-10-13 17:07:16 +08001705 /* State set to STATE_UPDATED to ensure the session is not assumed
Florin Corasdfffdd72020-10-15 10:54:47 -07001706 * to be ready and to also allow the app to close it prior to vpp's
fanyfa49d59d2020-10-13 17:07:16 +08001707 * connected reply. */
Florin Corasc127d5a2020-10-14 16:35:58 -07001708 session->session_state = VCL_STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001709 return VPPCOM_EINPROGRESS;
1710 }
Florin Coras57c88932019-08-29 12:03:17 -07001711
1712 /*
1713 * Wait for reply from vpp if blocking
1714 */
Florin Corasdfffdd72020-10-15 10:54:47 -07001715 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Florin Coras070453d2018-08-24 17:04:27 -07001716 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001717
Florin Coras134a9962018-08-28 11:32:04 -07001718 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001719 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1720 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001721
Dave Wallace4878cbe2017-11-21 03:45:09 -05001722 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001723}
1724
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001725int
1726vppcom_session_stream_connect (uint32_t session_handle,
1727 uint32_t parent_session_handle)
1728{
1729 vcl_worker_t *wrk = vcl_worker_get_current ();
1730 vcl_session_t *session, *parent_session;
1731 u32 session_index, parent_session_index;
1732 int rv;
1733
1734 session = vcl_session_get_w_handle (wrk, session_handle);
1735 if (!session)
1736 return VPPCOM_EBADFD;
1737 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1738 if (!parent_session)
1739 return VPPCOM_EBADFD;
1740
1741 session_index = session->session_index;
1742 parent_session_index = parent_session->session_index;
Florin Coras6c3b2182020-10-19 18:36:48 -07001743 if (PREDICT_FALSE (session->flags & VCL_SESSION_F_IS_VEP))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001744 {
1745 VDBG (0, "ERROR: cannot connect epoll session %u!",
1746 session->session_index);
1747 return VPPCOM_EBADFD;
1748 }
1749
Florin Corasc127d5a2020-10-14 16:35:58 -07001750 if (PREDICT_FALSE (vcl_session_is_ready (session)))
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001751 {
1752 VDBG (0, "session handle %u [0x%llx]: session already "
1753 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1754 session_handle, session->vpp_handle,
1755 parent_session_handle, parent_session->vpp_handle,
1756 vppcom_proto_str (session->session_type), session->session_state,
1757 vppcom_session_state_str (session->session_state));
1758 return VPPCOM_OK;
1759 }
1760
1761 /* Connect to quic session specifics */
1762 session->transport.is_ip4 = parent_session->transport.is_ip4;
1763 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1764 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001765 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001766
1767 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1768 session_handle, parent_session_handle, parent_session->vpp_handle);
1769
1770 /*
1771 * Send connect request and wait for reply from vpp
1772 */
Florin Coras458089b2019-08-21 16:20:44 -07001773 vcl_send_session_connect (wrk, session);
Florin Corasdfffdd72020-10-15 10:54:47 -07001774 rv = vppcom_wait_for_session_state_change (session_index, VCL_STATE_READY,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001775 vcm->cfg.session_timeout);
1776
1777 session->listener_index = parent_session_index;
1778 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001779 if (parent_session)
1780 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001781
1782 session = vcl_session_get (wrk, session_index);
1783 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1784 session->vpp_handle, rv ? "failed" : "succeeded");
1785
1786 return rv;
1787}
1788
Steven58f464e2017-10-25 12:33:12 -07001789static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001790vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001791 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001792{
Florin Coras134a9962018-08-28 11:32:04 -07001793 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07001794 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001795 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001796 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001797 session_event_t *e;
1798 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001799 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001800
Florin Coras070453d2018-08-24 17:04:27 -07001801 if (PREDICT_FALSE (!buf))
1802 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001803
Florin Coras134a9962018-08-28 11:32:04 -07001804 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001805 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras070453d2018-08-24 17:04:27 -07001806 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001807
Florin Coras6d0106e2019-01-29 20:11:58 -08001808 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001809 {
Florin Coras5e062572019-03-14 19:07:51 -07001810 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001811 s->session_index, s->vpp_handle, s->session_state,
1812 vppcom_session_state_str (s->session_state));
1813 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001814 }
1815
Florin Corasac422d62020-10-19 20:51:36 -07001816 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001817 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001818 mq = wrk->app_event_queue;
1819 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07001820 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001821
Sirshak Das28aa5392019-02-05 01:33:33 -06001822 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001823 {
Florin Coras54693d22018-07-17 10:46:29 -07001824 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001825 {
Yu Pingb2955352019-12-04 06:49:04 +08001826 if (vcl_session_is_closing (s))
1827 return vcl_session_closing_error (s);
Florin Corasd6894562020-10-28 00:37:15 -07001828 if (is_ct)
1829 svm_fifo_unset_event (s->rx_fifo);
1830 svm_fifo_unset_event (rx_fifo);
Florin Corasc0737e92019-03-04 14:19:39 -08001831 return VPPCOM_EWOULDBLOCK;
1832 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001833 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001834 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001835 if (vcl_session_is_closing (s))
1836 return vcl_session_closing_error (s);
1837
Florin Corasd6894562020-10-28 00:37:15 -07001838 if (is_ct)
1839 svm_fifo_unset_event (s->rx_fifo);
1840 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001841
Florin Coras5398dfb2021-01-25 20:31:27 -08001842 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
1843 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07001844 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001845 }
Florin Coras54693d22018-07-17 10:46:29 -07001846
Florin Coras4a2c7942020-09-10 12:27:14 -07001847read_again:
1848
Florin Coras460dce62018-07-27 05:45:06 -07001849 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07001850 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001851 else
Florin Coras4a2c7942020-09-10 12:27:14 -07001852 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
1853
1854 ASSERT (rv >= 0);
1855 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07001856
Sirshak Das28aa5392019-02-05 01:33:33 -06001857 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07001858 {
Florin Corasd6894562020-10-28 00:37:15 -07001859 if (is_ct)
1860 svm_fifo_unset_event (s->rx_fifo);
1861 svm_fifo_unset_event (rx_fifo);
Florin Corasc34118b2020-08-12 18:58:25 -07001862 if (!svm_fifo_is_empty_cons (rx_fifo)
Florin Corasd6894562020-10-28 00:37:15 -07001863 && svm_fifo_set_event (rx_fifo) && is_nonblocking)
Florin Corasc34118b2020-08-12 18:58:25 -07001864 {
Florin Corasc34118b2020-08-12 18:58:25 -07001865 vec_add2 (wrk->unhandled_evts_vector, e, 1);
1866 e->event_type = SESSION_IO_EVT_RX;
1867 e->session_index = s->session_index;
1868 }
1869 }
Florin Coras54fe32c2020-11-25 20:26:32 -08001870 else if (PREDICT_FALSE (rv < n && !s->is_dgram))
Florin Coras4a2c7942020-09-10 12:27:14 -07001871 {
1872 /* More data enqueued while reading. Try to drain it
Florin Coras54fe32c2020-11-25 20:26:32 -08001873 * or fill the buffer. Avoid doing that for dgrams */
Florin Coras4a2c7942020-09-10 12:27:14 -07001874 buf += rv;
1875 n -= rv;
1876 goto read_again;
1877 }
Florin Coras41c9e042018-09-11 00:10:41 -07001878
Florin Coras17ec5772020-08-12 20:46:29 -07001879 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07001880 {
Florin Coras17ec5772020-08-12 20:46:29 -07001881 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -08001882 app_send_io_evt_to_vpp (s->vpp_evt_q,
1883 s->rx_fifo->shr->master_session_index,
Florin Coras317b8e02019-04-17 09:57:46 -07001884 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07001885 }
1886
Florin Coras5e062572019-03-14 19:07:51 -07001887 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1888 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001889
Florin Coras54693d22018-07-17 10:46:29 -07001890 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001891}
1892
Steven58f464e2017-10-25 12:33:12 -07001893int
Florin Coras134a9962018-08-28 11:32:04 -07001894vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001895{
Florin Coras134a9962018-08-28 11:32:04 -07001896 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001897}
1898
1899static int
Florin Coras134a9962018-08-28 11:32:04 -07001900vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001901{
Florin Coras134a9962018-08-28 11:32:04 -07001902 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001903}
1904
Florin Coras2cba8532018-09-11 16:33:36 -07001905int
1906vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07001907 vppcom_data_segment_t * ds, uint32_t n_segments,
1908 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07001909{
1910 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001911 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001912 vcl_session_t *s = 0;
1913 svm_fifo_t *rx_fifo;
Florin Coras2cba8532018-09-11 16:33:36 -07001914 svm_msg_q_t *mq;
1915 u8 is_ct;
1916
1917 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001918 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07001919 return VPPCOM_EBADFD;
1920
Florin Coras6d0106e2019-01-29 20:11:58 -08001921 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1922 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001923
Florin Corasac422d62020-10-19 20:51:36 -07001924 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Florin Coras2cba8532018-09-11 16:33:36 -07001925 is_ct = vcl_session_is_ct (s);
Florin Corasac422d62020-10-19 20:51:36 -07001926 mq = wrk->app_event_queue;
Florin Coras62877022020-10-28 21:22:04 -07001927 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07001928 s->flags &= ~VCL_SESSION_F_HAS_RX_EVT;
Florin Coras2cba8532018-09-11 16:33:36 -07001929
Sirshak Das28aa5392019-02-05 01:33:33 -06001930 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001931 {
1932 if (is_nonblocking)
1933 {
Florin Coras62877022020-10-28 21:22:04 -07001934 if (is_ct)
1935 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001936 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001937 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001938 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001939 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001940 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001941 if (vcl_session_is_closing (s))
1942 return vcl_session_closing_error (s);
1943
Florin Coras62877022020-10-28 21:22:04 -07001944 if (is_ct)
1945 svm_fifo_unset_event (s->rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001946 svm_fifo_unset_event (rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001947
Florin Coras5398dfb2021-01-25 20:31:27 -08001948 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
1949 vcl_worker_flush_mq_events (wrk);
Florin Coras2cba8532018-09-11 16:33:36 -07001950 }
1951 }
1952
Florin Corasd1cc38d2020-10-11 11:05:04 -07001953 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
1954 (svm_fifo_seg_t *) ds, n_segments, max_bytes);
1955 if (n_read < 0)
1956 return VPPCOM_EAGAIN;
1957
1958 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
1959 {
Florin Coras62877022020-10-28 21:22:04 -07001960 if (is_ct)
1961 svm_fifo_unset_event (s->rx_fifo);
1962 svm_fifo_unset_event (rx_fifo);
Florin Corasd1cc38d2020-10-11 11:05:04 -07001963 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
Florin Coras62877022020-10-28 21:22:04 -07001964 && svm_fifo_set_event (rx_fifo)
Florin Corasac422d62020-10-19 20:51:36 -07001965 && vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK))
Florin Corasd1cc38d2020-10-11 11:05:04 -07001966 {
1967 session_event_t *e;
1968 vec_add2 (wrk->unhandled_evts_vector, e, 1);
1969 e->event_type = SESSION_IO_EVT_RX;
1970 e->session_index = s->session_index;
1971 }
1972 }
1973
1974 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07001975 return n_read;
1976}
1977
1978void
Florin Corasd68faf82020-09-25 15:18:13 -07001979vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07001980{
1981 vcl_worker_t *wrk = vcl_worker_get_current ();
1982 vcl_session_t *s;
Florin Coras62877022020-10-28 21:22:04 -07001983 u8 is_ct;
Florin Coras2cba8532018-09-11 16:33:36 -07001984
1985 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras6c3b2182020-10-19 18:36:48 -07001986 if (PREDICT_FALSE (!s || (s->flags & VCL_SESSION_F_IS_VEP)))
Florin Coras2cba8532018-09-11 16:33:36 -07001987 return;
1988
Florin Coras62877022020-10-28 21:22:04 -07001989 is_ct = vcl_session_is_ct (s);
1990 svm_fifo_dequeue_drop (is_ct ? s->ct_rx_fifo : s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07001991
1992 ASSERT (s->rx_bytes_pending < n_bytes);
1993 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07001994}
1995
Florin Coras7a2abce2020-04-05 19:25:44 +00001996always_inline u8
1997vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04001998{
Florin Coras7a2abce2020-04-05 19:25:44 +00001999 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2000 if (is_dgram)
2001 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2002 else
2003 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002004}
2005
2006always_inline int
2007vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2008 size_t n, u8 is_flush, u8 is_dgram)
2009{
Florin Coras6d0106e2019-01-29 20:11:58 -08002010 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002011 session_evt_type_t et;
Florin Coras14ed6df2019-03-06 21:13:42 -08002012 svm_fifo_t *tx_fifo;
Florin Coras3c2fed52018-07-04 04:15:05 -07002013 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002014 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002015
jiangxiaomingff31ac62019-11-21 23:34:56 +08002016 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002017 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002018
Florin Coras6c3b2182020-10-19 18:36:48 -07002019 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallace543852a2017-08-03 02:11:34 -04002020 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002021 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2022 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002023 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002024 }
2025
Florin Coras6d0106e2019-01-29 20:11:58 -08002026 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002027 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002028 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2029 s->session_index, s->vpp_handle, s->session_state,
2030 vppcom_session_state_str (s->session_state));
2031 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002032 }
2033
Florin Coras0e88e852018-09-17 22:09:02 -07002034 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002035 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Corasac422d62020-10-19 20:51:36 -07002036 is_nonblocking = vcl_session_has_attr (s, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002037
Florin Coras653e43f2019-03-04 10:56:23 -08002038 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002039 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002040 {
Florin Coras54693d22018-07-17 10:46:29 -07002041 if (is_nonblocking)
2042 {
Florin Coras070453d2018-08-24 17:04:27 -07002043 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002044 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002045 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002046 {
Florin Coras2d379d82019-06-28 12:45:12 -07002047 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002048 if (vcl_session_is_closing (s))
2049 return vcl_session_closing_error (s);
Florin Coras0e88e852018-09-17 22:09:02 -07002050
Florin Coras5398dfb2021-01-25 20:31:27 -08002051 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
2052 vcl_worker_flush_mq_events (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002053 }
Dave Wallace543852a2017-08-03 02:11:34 -04002054 }
Dave Wallace543852a2017-08-03 02:11:34 -04002055
Florin Coras653e43f2019-03-04 10:56:23 -08002056 et = SESSION_IO_EVT_TX;
2057 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002058 et = SESSION_IO_EVT_TX_FLUSH;
2059
Florin Coras7a2abce2020-04-05 19:25:44 +00002060 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002061 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002062 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002063 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002064 else
2065 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002066 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002067
Florin Coras14ed6df2019-03-06 21:13:42 -08002068 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc547e912020-12-08 17:50:45 -08002069 app_send_io_evt_to_vpp (
2070 s->vpp_evt_q, s->tx_fifo->shr->master_session_index, et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002071
Florin Coras56230092020-09-02 20:52:58 -07002072 /* The underlying fifo segment can run out of memory */
2073 if (PREDICT_FALSE (n_write < 0))
2074 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002075
Florin Coras6d0106e2019-01-29 20:11:58 -08002076 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2077 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002078
Florin Coras54693d22018-07-17 10:46:29 -07002079 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002080}
2081
Florin Coras42ceddb2018-12-12 10:56:01 -08002082int
2083vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2084{
Florin Coras7a2abce2020-04-05 19:25:44 +00002085 vcl_worker_t *wrk = vcl_worker_get_current ();
2086 vcl_session_t *s;
2087
2088 s = vcl_session_get_w_handle (wrk, session_handle);
2089 if (PREDICT_FALSE (!s))
2090 return VPPCOM_EBADFD;
2091
2092 return vppcom_session_write_inline (wrk, s, buf, n,
2093 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002094}
2095
Florin Corasb0f662f2018-12-27 14:51:46 -08002096int
2097vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2098{
Florin Coras7a2abce2020-04-05 19:25:44 +00002099 vcl_worker_t *wrk = vcl_worker_get_current ();
2100 vcl_session_t *s;
2101
2102 s = vcl_session_get_w_handle (wrk, session_handle);
2103 if (PREDICT_FALSE (!s))
2104 return VPPCOM_EBADFD;
2105
2106 return vppcom_session_write_inline (wrk, s, buf, n,
2107 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002108}
2109
Florin Corasc0737e92019-03-04 14:19:39 -08002110#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002111if (PREDICT_FALSE (!_s->rx_fifo)) \
2112 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002113if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2114 { \
2115 if (!vcl_session_is_ct (_s)) \
2116 { \
2117 svm_fifo_unset_event (_s->rx_fifo); \
2118 if (svm_fifo_is_empty (_s->rx_fifo)) \
2119 break; \
2120 } \
2121 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2122 { \
Florin Coras2f630182020-08-13 00:17:51 -07002123 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002124 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2125 break; \
2126 } \
2127 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002128
Florin Coras86f04502018-09-12 16:08:01 -07002129static void
2130vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2131 unsigned long n_bits, unsigned long *read_map,
2132 unsigned long *write_map,
2133 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002134{
2135 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002136 session_connected_msg_t *connected_msg;
Florin Corasb242d312020-10-26 15:35:40 -07002137 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002138 u32 sid;
2139
2140 switch (e->event_type)
2141 {
Florin Corasc0737e92019-03-04 14:19:39 -08002142 case SESSION_IO_EVT_RX:
2143 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002144 s = vcl_session_get (wrk, sid);
2145 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002146 break;
Florin Corasb242d312020-10-26 15:35:40 -07002147 vcl_fifo_rx_evt_valid_or_break (s);
Florin Coras86f04502018-09-12 16:08:01 -07002148 if (sid < n_bits && read_map)
2149 {
David Johnsond9818dd2018-12-14 14:53:41 -05002150 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002151 *bits_set += 1;
2152 }
2153 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002154 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002155 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002156 s = vcl_session_get (wrk, sid);
2157 if (!s || !vcl_session_is_open (s))
Florin Coras86f04502018-09-12 16:08:01 -07002158 break;
2159 if (sid < n_bits && write_map)
2160 {
David Johnsond9818dd2018-12-14 14:53:41 -05002161 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002162 *bits_set += 1;
2163 }
2164 break;
Florin Coras86f04502018-09-12 16:08:01 -07002165 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002166 if (!e->postponed)
2167 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2168 else
2169 s = vcl_session_get (wrk, e->session_index);
2170 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002171 break;
Florin Corasb242d312020-10-26 15:35:40 -07002172 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002173 if (sid < n_bits && read_map)
2174 {
David Johnsond9818dd2018-12-14 14:53:41 -05002175 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002176 *bits_set += 1;
2177 }
2178 break;
2179 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002180 if (!e->postponed)
2181 {
2182 connected_msg = (session_connected_msg_t *) e->data;
2183 sid = vcl_session_connected_handler (wrk, connected_msg);
2184 }
2185 else
2186 sid = e->session_index;
Florin Coras57c88932019-08-29 12:03:17 -07002187 if (sid == VCL_INVALID_SESSION_INDEX)
2188 break;
2189 if (sid < n_bits && write_map)
2190 {
2191 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2192 *bits_set += 1;
2193 }
Florin Coras86f04502018-09-12 16:08:01 -07002194 break;
2195 case SESSION_CTRL_EVT_DISCONNECTED:
2196 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002197 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2198 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002199 break;
Florin Corasb242d312020-10-26 15:35:40 -07002200 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002201 if (sid < n_bits && except_map)
2202 {
David Johnsond9818dd2018-12-14 14:53:41 -05002203 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002204 *bits_set += 1;
2205 }
2206 break;
2207 case SESSION_CTRL_EVT_RESET:
2208 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2209 if (sid < n_bits && except_map)
2210 {
David Johnsond9818dd2018-12-14 14:53:41 -05002211 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002212 *bits_set += 1;
2213 }
2214 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002215 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2216 vcl_session_unlisten_reply_handler (wrk, e->data);
2217 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002218 case SESSION_CTRL_EVT_MIGRATED:
2219 vcl_session_migrated_handler (wrk, e->data);
2220 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002221 case SESSION_CTRL_EVT_CLEANUP:
2222 vcl_session_cleanup_handler (wrk, e->data);
2223 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002224 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2225 vcl_session_worker_update_reply_handler (wrk, e->data);
2226 break;
2227 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2228 vcl_session_req_worker_update_handler (wrk, e->data);
2229 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002230 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2231 vcl_session_app_add_segment_handler (wrk, e->data);
2232 break;
2233 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2234 vcl_session_app_del_segment_handler (wrk, e->data);
2235 break;
hanlina3a48962020-07-13 11:09:15 +08002236 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002237 vcl_worker_rpc_handler (wrk, e->data);
2238 break;
Florin Coras86f04502018-09-12 16:08:01 -07002239 default:
2240 clib_warning ("unhandled: %u", e->event_type);
2241 break;
2242 }
2243}
2244
2245static int
2246vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2247 unsigned long n_bits, unsigned long *read_map,
2248 unsigned long *write_map, unsigned long *except_map,
2249 double time_to_wait, u32 * bits_set)
2250{
Florin Coras99368312018-08-02 10:45:44 -07002251 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002252 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002253 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002254
Florin Coras54693d22018-07-17 10:46:29 -07002255 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002256 {
Florin Coras54693d22018-07-17 10:46:29 -07002257 if (*bits_set)
Florin Coras5398dfb2021-01-25 20:31:27 -08002258 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002259
Florin Coras54693d22018-07-17 10:46:29 -07002260 if (!time_to_wait)
Florin Coras5398dfb2021-01-25 20:31:27 -08002261 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002262 else if (time_to_wait < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002263 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002264 else
2265 {
2266 if (svm_msg_q_timedwait (mq, time_to_wait))
Florin Coras5398dfb2021-01-25 20:31:27 -08002267 return 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002268 }
2269 }
Florin Corase003a1b2019-06-05 10:47:16 -07002270 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002271
Florin Coras134a9962018-08-28 11:32:04 -07002272 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002273 {
Florin Coras134a9962018-08-28 11:32:04 -07002274 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002275 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002276 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2277 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002278 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002279 }
Florin Coras134a9962018-08-28 11:32:04 -07002280 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002281 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002282 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002283}
2284
Florin Coras99368312018-08-02 10:45:44 -07002285static int
Florin Coras294afe22019-01-07 17:49:17 -08002286vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2287 vcl_si_set * read_map, vcl_si_set * write_map,
2288 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002289 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002290{
Florin Coras14ed6df2019-03-06 21:13:42 -08002291 double wait = 0, start = 0;
2292
2293 if (!*bits_set)
2294 {
2295 wait = time_to_wait;
2296 start = clib_time_now (&wrk->clib_time);
2297 }
2298
2299 do
2300 {
2301 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2302 write_map, except_map, wait, bits_set);
2303 if (*bits_set)
2304 return *bits_set;
2305 if (wait == -1)
2306 continue;
2307
2308 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2309 }
2310 while (wait > 0);
2311
2312 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002313}
2314
2315static int
Florin Coras294afe22019-01-07 17:49:17 -08002316vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2317 vcl_si_set * read_map, vcl_si_set * write_map,
2318 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002319 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002320{
2321 vcl_mq_evt_conn_t *mqc;
2322 int __clib_unused n_read;
2323 int n_mq_evts, i;
2324 u64 buf;
2325
Florin Coras134a9962018-08-28 11:32:04 -07002326 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2327 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2328 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002329 for (i = 0; i < n_mq_evts; i++)
2330 {
Florin Coras134a9962018-08-28 11:32:04 -07002331 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002332 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002333 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002334 except_map, 0, bits_set);
2335 }
2336
2337 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2338}
2339
Dave Wallace543852a2017-08-03 02:11:34 -04002340int
Florin Coras294afe22019-01-07 17:49:17 -08002341vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2342 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002343{
Florin Coras54693d22018-07-17 10:46:29 -07002344 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002345 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras096a1d52021-01-27 15:33:51 -08002346 vcl_session_t *s = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002347 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002348
Dave Wallace7876d392017-10-19 03:53:57 -04002349 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002350 {
Florin Coras134a9962018-08-28 11:32:04 -07002351 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002352 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002353 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2354 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002355 }
Dave Wallace7876d392017-10-19 03:53:57 -04002356 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002357 {
Florin Coras134a9962018-08-28 11:32:04 -07002358 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002359 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002360 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2361 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002362 }
Dave Wallace7876d392017-10-19 03:53:57 -04002363 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002364 {
Florin Coras134a9962018-08-28 11:32:04 -07002365 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002366 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002367 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2368 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002369 }
2370
Florin Coras54693d22018-07-17 10:46:29 -07002371 if (!n_bits)
2372 return 0;
2373
2374 if (!write_map)
2375 goto check_rd;
2376
Florin Coras096a1d52021-01-27 15:33:51 -08002377 clib_bitmap_foreach (sid, wrk->wr_bitmap)
2378 {
2379 if (!(s = vcl_session_get (wrk, sid)))
2380 {
2381 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2382 bits_set++;
2383 continue;
2384 }
Florin Coras54693d22018-07-17 10:46:29 -07002385
Florin Coras096a1d52021-01-27 15:33:51 -08002386 if (vcl_session_write_ready (s))
2387 {
2388 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2389 bits_set++;
2390 }
2391 else
2392 {
2393 svm_fifo_t *txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2394 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF);
2395 }
2396 }
Florin Coras54693d22018-07-17 10:46:29 -07002397
2398check_rd:
2399 if (!read_map)
2400 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002401
Florin Coras096a1d52021-01-27 15:33:51 -08002402 clib_bitmap_foreach (sid, wrk->rd_bitmap)
2403 {
2404 if (!(s = vcl_session_get (wrk, sid)))
2405 {
2406 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2407 bits_set++;
2408 continue;
2409 }
Florin Coras54693d22018-07-17 10:46:29 -07002410
Florin Coras096a1d52021-01-27 15:33:51 -08002411 if (vcl_session_read_ready (s))
2412 {
2413 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2414 bits_set++;
2415 }
2416 }
Florin Coras54693d22018-07-17 10:46:29 -07002417
2418check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002419
Florin Coras86f04502018-09-12 16:08:01 -07002420 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2421 {
2422 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2423 read_map, write_map, except_map, &bits_set);
2424 }
2425 vec_reset_length (wrk->unhandled_evts_vector);
2426
Florin Coras99368312018-08-02 10:45:44 -07002427 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002428 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002429 time_to_wait, &bits_set);
2430 else
Florin Coras134a9962018-08-28 11:32:04 -07002431 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002432 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002433
Dave Wallace543852a2017-08-03 02:11:34 -04002434 return (bits_set);
2435}
2436
Dave Wallacef7f809c2017-10-03 01:48:42 -04002437static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002438vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002439{
Dave Wallacef7f809c2017-10-03 01:48:42 -04002440 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002441 u32 sh = vep_handle;
Florin Coras6c3b2182020-10-19 18:36:48 -07002442 vcl_session_t *s;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002443
Florin Corasc0737e92019-03-04 14:19:39 -08002444 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002445 return;
2446
Florin Coras6c3b2182020-10-19 18:36:48 -07002447 s = vcl_session_get_w_handle (wrk, vep_handle);
2448 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002449 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002450 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002451 goto done;
2452 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002453 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002454 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002455 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002456 goto done;
2457 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002458 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002459 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002460 "{\n"
2461 " is_vep = %u\n"
2462 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002463 " next_sh = 0x%x (%u)\n"
Florin Coras6c3b2182020-10-19 18:36:48 -07002464 "}\n", vep_handle, s->flags & VCL_SESSION_F_IS_VEP,
2465 s->flags & VCL_SESSION_F_IS_VEP_SESSION, vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002466
Florin Coras7e5e62b2019-07-30 14:08:23 -07002467 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002468 {
Florin Coras6c3b2182020-10-19 18:36:48 -07002469 s = vcl_session_get_w_handle (wrk, sh);
2470 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002471 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002472 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002473 goto done;
2474 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002475 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Florin Coras5e062572019-03-14 19:07:51 -07002476 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002477 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002478 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002479 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002480 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002481 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002482 goto done;
2483 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002484 vep = &s->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002485 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2486 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
Florin Coras6c3b2182020-10-19 18:36:48 -07002487 sh, s->vep.vep_sh, vep_handle);
2488 if (s->flags & VCL_SESSION_F_IS_VEP_SESSION)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002489 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002490 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002491 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002492 " next_sh = 0x%x (%u)\n"
2493 " prev_sh = 0x%x (%u)\n"
2494 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002495 " ev.events = 0x%x\n"
2496 " ev.data.u64 = 0x%llx\n"
2497 " et_mask = 0x%x\n"
2498 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002499 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002500 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2501 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002502 }
2503 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002504
2505done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002506 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002507}
2508
2509int
2510vppcom_epoll_create (void)
2511{
Florin Coras134a9962018-08-28 11:32:04 -07002512 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002513 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002514
Florin Coras134a9962018-08-28 11:32:04 -07002515 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002516
Florin Coras6c3b2182020-10-19 18:36:48 -07002517 vep_session->flags |= VCL_SESSION_F_IS_VEP;
Florin Coras134a9962018-08-28 11:32:04 -07002518 vep_session->vep.vep_sh = ~0;
2519 vep_session->vep.next_sh = ~0;
2520 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002521 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002522
Florin Corasa7a1a222018-12-30 17:11:31 -08002523 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2524 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002525
Florin Corasab2f6db2018-08-31 14:31:41 -07002526 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002527}
2528
2529int
Florin Coras134a9962018-08-28 11:32:04 -07002530vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002531 struct epoll_event *event)
2532{
Florin Coras134a9962018-08-28 11:32:04 -07002533 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002534 vcl_session_t *vep_session;
Florin Coras070453d2018-08-24 17:04:27 -07002535 int rv = VPPCOM_OK;
Florin Coras17ec5772020-08-12 20:46:29 -07002536 vcl_session_t *s;
2537 svm_fifo_t *txf;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002538
Florin Coras134a9962018-08-28 11:32:04 -07002539 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002540 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002541 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002542 return VPPCOM_EINVAL;
2543 }
2544
Florin Coras134a9962018-08-28 11:32:04 -07002545 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002546 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002547 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002548 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002549 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002550 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002551 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002552 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002553 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002554 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002555 }
2556
Florin Coras134a9962018-08-28 11:32:04 -07002557 ASSERT (vep_session->vep.vep_sh == ~0);
2558 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002559
Florin Coras17ec5772020-08-12 20:46:29 -07002560 s = vcl_session_get_w_handle (wrk, session_handle);
2561 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002562 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002563 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002564 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002565 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002566 if (PREDICT_FALSE (s->flags & VCL_SESSION_F_IS_VEP))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002567 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002568 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002569 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002570 }
2571
2572 switch (op)
2573 {
2574 case EPOLL_CTL_ADD:
2575 if (PREDICT_FALSE (!event))
2576 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002577 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002578 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002579 }
Florin Coras134a9962018-08-28 11:32:04 -07002580 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002581 {
Florin Coras7e12d942018-06-27 14:32:43 -07002582 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002583 next_session = vcl_session_get_w_handle (wrk,
2584 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002585 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002586 {
Florin Coras5e062572019-03-14 19:07:51 -07002587 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002588 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002589 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002590 }
Florin Coras134a9962018-08-28 11:32:04 -07002591 ASSERT (next_session->vep.prev_sh == vep_handle);
2592 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002593 }
Florin Coras17ec5772020-08-12 20:46:29 -07002594 s->vep.next_sh = vep_session->vep.next_sh;
2595 s->vep.prev_sh = vep_handle;
2596 s->vep.vep_sh = vep_handle;
2597 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2598 s->vep.ev = *event;
Florin Coras6c3b2182020-10-19 18:36:48 -07002599 s->flags &= ~VCL_SESSION_F_IS_VEP;
2600 s->flags |= VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras134a9962018-08-28 11:32:04 -07002601 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002602
Florin Coras17ec5772020-08-12 20:46:29 -07002603 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2604 if (txf && (event->events & EPOLLOUT))
2605 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002606
Florin Coras6e3c1f82020-01-15 01:30:46 +00002607 /* Generate EPOLLOUT if tx fifo not full */
Florin Coras17ec5772020-08-12 20:46:29 -07002608 if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002609 {
2610 session_event_t e = { 0 };
2611 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002612 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002613 vec_add1 (wrk->unhandled_evts_vector, e);
2614 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002615 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002616 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002617 {
2618 session_event_t e = { 0 };
2619 e.event_type = SESSION_IO_EVT_RX;
Florin Coras17ec5772020-08-12 20:46:29 -07002620 e.session_index = s->session_index;
Florin Coras6e3c1f82020-01-15 01:30:46 +00002621 vec_add1 (wrk->unhandled_evts_vector, e);
2622 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002623 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2624 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002625 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002626 break;
2627
2628 case EPOLL_CTL_MOD:
2629 if (PREDICT_FALSE (!event))
2630 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002631 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002632 rv = VPPCOM_EINVAL;
2633 goto done;
2634 }
Florin Coras6c3b2182020-10-19 18:36:48 -07002635 else if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002636 {
Florin Coras5e062572019-03-14 19:07:51 -07002637 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002638 rv = VPPCOM_EINVAL;
2639 goto done;
2640 }
Florin Coras17ec5772020-08-12 20:46:29 -07002641 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002642 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002643 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002644 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002645 rv = VPPCOM_EINVAL;
2646 goto done;
2647 }
hanlin475c9d72019-12-26 11:44:28 +08002648
2649 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2650 if ((event->events & EPOLLOUT) &&
Florin Coras17ec5772020-08-12 20:46:29 -07002651 !(s->vep.ev.events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002652 {
2653 session_event_t e = { 0 };
2654 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002655 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002656 vec_add1 (wrk->unhandled_evts_vector, e);
2657 }
Florin Coras17ec5772020-08-12 20:46:29 -07002658 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2659 s->vep.ev = *event;
2660 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras8fb22fd2021-02-17 17:35:32 -08002661 if (txf)
2662 {
2663 if (event->events & EPOLLOUT)
2664 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2665 else
2666 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2667 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002668 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2669 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002670 break;
2671
2672 case EPOLL_CTL_DEL:
Florin Coras6c3b2182020-10-19 18:36:48 -07002673 if (PREDICT_FALSE (!(s->flags & VCL_SESSION_F_IS_VEP_SESSION)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002674 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002675 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002676 rv = VPPCOM_EINVAL;
2677 goto done;
2678 }
Florin Coras17ec5772020-08-12 20:46:29 -07002679 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002680 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002681 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002682 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002683 rv = VPPCOM_EINVAL;
2684 goto done;
2685 }
2686
Florin Coras17ec5772020-08-12 20:46:29 -07002687 if (s->vep.prev_sh == vep_handle)
2688 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002689 else
2690 {
Florin Coras7e12d942018-06-27 14:32:43 -07002691 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002692 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002693 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002694 {
Florin Coras5e062572019-03-14 19:07:51 -07002695 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002696 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002697 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002698 }
Florin Coras134a9962018-08-28 11:32:04 -07002699 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002700 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002701 }
Florin Coras17ec5772020-08-12 20:46:29 -07002702 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002703 {
Florin Coras7e12d942018-06-27 14:32:43 -07002704 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002705 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002706 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002707 {
Florin Coras5e062572019-03-14 19:07:51 -07002708 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002709 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002710 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002711 }
Florin Coras134a9962018-08-28 11:32:04 -07002712 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002713 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002714 }
2715
Florin Coras17ec5772020-08-12 20:46:29 -07002716 memset (&s->vep, 0, sizeof (s->vep));
2717 s->vep.next_sh = ~0;
2718 s->vep.prev_sh = ~0;
2719 s->vep.vep_sh = ~0;
Florin Coras6c3b2182020-10-19 18:36:48 -07002720 s->flags &= ~VCL_SESSION_F_IS_VEP_SESSION;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002721
Florin Coras17ec5772020-08-12 20:46:29 -07002722 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2723 if (txf)
2724 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002725
Florin Coras5e062572019-03-14 19:07:51 -07002726 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002727 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002728 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002729 break;
2730
2731 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002732 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002733 rv = VPPCOM_EINVAL;
2734 }
2735
Florin Coras134a9962018-08-28 11:32:04 -07002736 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002737
2738done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002739 return rv;
2740}
2741
Florin Coras86f04502018-09-12 16:08:01 -07002742static inline void
2743vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2744 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002745{
2746 session_disconnected_msg_t *disconnected_msg;
2747 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002748 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002749 u64 session_evt_data = ~0;
Florin Corasb242d312020-10-26 15:35:40 -07002750 vcl_session_t *s;
Florin Coras86f04502018-09-12 16:08:01 -07002751 u8 add_event = 0;
2752
2753 switch (e->event_type)
2754 {
Florin Coras653e43f2019-03-04 10:56:23 -08002755 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002756 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002757 s = vcl_session_get (wrk, sid);
2758 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08002759 break;
Florin Corasb242d312020-10-26 15:35:40 -07002760 vcl_fifo_rx_evt_valid_or_break (s);
2761 session_events = s->vep.ev.events;
2762 if (!(EPOLLIN & s->vep.ev.events)
2763 || (s->flags & VCL_SESSION_F_HAS_RX_EVT))
Florin Coras86f04502018-09-12 16:08:01 -07002764 break;
2765 add_event = 1;
2766 events[*num_ev].events |= EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07002767 session_evt_data = s->vep.ev.data.u64;
2768 s->flags |= VCL_SESSION_F_HAS_RX_EVT;
Florin Coras86f04502018-09-12 16:08:01 -07002769 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002770 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002771 sid = e->session_index;
Florin Corasb242d312020-10-26 15:35:40 -07002772 s = vcl_session_get (wrk, sid);
2773 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08002774 break;
Florin Corasb242d312020-10-26 15:35:40 -07002775 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002776 if (!(EPOLLOUT & session_events))
2777 break;
2778 add_event = 1;
2779 events[*num_ev].events |= EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07002780 session_evt_data = s->vep.ev.data.u64;
2781 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (s) ?
2782 s->ct_tx_fifo : s->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002783 break;
Florin Coras86f04502018-09-12 16:08:01 -07002784 case SESSION_CTRL_EVT_ACCEPTED:
Florin Corasb242d312020-10-26 15:35:40 -07002785 if (!e->postponed)
2786 s = vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
2787 else
2788 s = vcl_session_get (wrk, e->session_index);
2789 if (!s)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002790 break;
Florin Corasb242d312020-10-26 15:35:40 -07002791 session_events = s->vep.ev.events;
2792 sid = s->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002793 if (!(EPOLLIN & session_events))
2794 break;
Florin Coras86f04502018-09-12 16:08:01 -07002795 add_event = 1;
2796 events[*num_ev].events |= EPOLLIN;
Florin Corasb242d312020-10-26 15:35:40 -07002797 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002798 break;
2799 case SESSION_CTRL_EVT_CONNECTED:
Florin Corasb242d312020-10-26 15:35:40 -07002800 if (!e->postponed)
2801 {
2802 connected_msg = (session_connected_msg_t *) e->data;
2803 sid = vcl_session_connected_handler (wrk, connected_msg);
2804 }
2805 else
2806 sid = e->session_index;
2807 s = vcl_session_get (wrk, sid);
2808 if (vcl_session_is_closed (s))
Florin Corasfa915f82018-12-26 16:29:06 -08002809 break;
Florin Corasb242d312020-10-26 15:35:40 -07002810 session_events = s->vep.ev.events;
2811 /* Generate EPOLLOUT because there's no connected event */
Florin Coras72f77822019-01-22 19:05:52 -08002812 if (!(EPOLLOUT & session_events))
2813 break;
2814 add_event = 1;
2815 events[*num_ev].events |= EPOLLOUT;
Florin Corasb242d312020-10-26 15:35:40 -07002816 session_evt_data = s->vep.ev.data.u64;
2817 if (s->session_state == VCL_STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002818 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002819 break;
2820 case SESSION_CTRL_EVT_DISCONNECTED:
2821 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Corasb242d312020-10-26 15:35:40 -07002822 s = vcl_session_disconnected_handler (wrk, disconnected_msg);
2823 if (vcl_session_is_closed (s))
Florin Coras86f04502018-09-12 16:08:01 -07002824 break;
Florin Corasb242d312020-10-26 15:35:40 -07002825 sid = s->session_index;
2826 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002827 add_event = 1;
2828 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasb242d312020-10-26 15:35:40 -07002829 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002830 break;
2831 case SESSION_CTRL_EVT_RESET:
2832 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Corasb242d312020-10-26 15:35:40 -07002833 s = vcl_session_get (wrk, sid);
2834 if (vcl_session_is_closed (s))
Florin Coras86f04502018-09-12 16:08:01 -07002835 break;
Florin Corasb242d312020-10-26 15:35:40 -07002836 session_events = s->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002837 add_event = 1;
2838 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
Florin Corasb242d312020-10-26 15:35:40 -07002839 session_evt_data = s->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002840 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002841 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2842 vcl_session_unlisten_reply_handler (wrk, e->data);
2843 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002844 case SESSION_CTRL_EVT_MIGRATED:
2845 vcl_session_migrated_handler (wrk, e->data);
2846 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002847 case SESSION_CTRL_EVT_CLEANUP:
2848 vcl_session_cleanup_handler (wrk, e->data);
2849 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002850 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2851 vcl_session_req_worker_update_handler (wrk, e->data);
2852 break;
2853 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2854 vcl_session_worker_update_reply_handler (wrk, e->data);
2855 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002856 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2857 vcl_session_app_add_segment_handler (wrk, e->data);
2858 break;
2859 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2860 vcl_session_app_del_segment_handler (wrk, e->data);
2861 break;
hanlina3a48962020-07-13 11:09:15 +08002862 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002863 vcl_worker_rpc_handler (wrk, e->data);
2864 break;
Florin Coras86f04502018-09-12 16:08:01 -07002865 default:
2866 VDBG (0, "unhandled: %u", e->event_type);
2867 break;
2868 }
2869
2870 if (add_event)
2871 {
2872 events[*num_ev].data.u64 = session_evt_data;
2873 if (EPOLLONESHOT & session_events)
2874 {
Florin Corasb242d312020-10-26 15:35:40 -07002875 s = vcl_session_get (wrk, sid);
2876 s->vep.ev.events = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002877 }
2878 *num_ev += 1;
2879 }
2880}
2881
2882static int
2883vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2884 struct epoll_event *events, u32 maxevents,
2885 double wait_for_time, u32 * num_ev)
2886{
Florin Coras99368312018-08-02 10:45:44 -07002887 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002888 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002889 int i;
2890
Florin Coras539663c2018-09-28 14:59:37 -07002891 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2892 goto handle_dequeued;
2893
Florin Coras54693d22018-07-17 10:46:29 -07002894 if (svm_msg_q_is_empty (mq))
2895 {
2896 if (!wait_for_time)
Florin Coras5398dfb2021-01-25 20:31:27 -08002897 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002898 else if (wait_for_time < 0)
Florin Coras5398dfb2021-01-25 20:31:27 -08002899 svm_msg_q_wait (mq, SVM_MQ_WAIT_EMPTY);
Florin Coras54693d22018-07-17 10:46:29 -07002900 else
2901 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002902 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras5398dfb2021-01-25 20:31:27 -08002903 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07002904 }
2905 }
Florin Corase003a1b2019-06-05 10:47:16 -07002906 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08002907 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002908
Florin Coras539663c2018-09-28 14:59:37 -07002909handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002910 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002911 {
Florin Coras134a9962018-08-28 11:32:04 -07002912 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002913 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08002914 if (*num_ev < maxevents)
2915 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2916 else
2917 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07002918 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002919 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002920 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002921 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002922 return *num_ev;
2923}
2924
Florin Coras99368312018-08-02 10:45:44 -07002925static int
Florin Coras134a9962018-08-28 11:32:04 -07002926vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002927 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002928{
Florin Corase003a1b2019-06-05 10:47:16 -07002929 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002930
2931 if (!n_evts)
2932 {
2933 wait = wait_for_time;
2934 start = clib_time_now (&wrk->clib_time);
2935 }
2936
2937 do
2938 {
2939 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2940 wait, &n_evts);
2941 if (n_evts)
2942 return n_evts;
2943 if (wait == -1)
2944 continue;
2945
Florin Corase003a1b2019-06-05 10:47:16 -07002946 now = clib_time_now (&wrk->clib_time);
Florin Coras0edfb1a2020-08-04 22:45:45 -07002947 wait -= (now - start) * 1e3;
Florin Corase003a1b2019-06-05 10:47:16 -07002948 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002949 }
2950 while (wait > 0);
2951
2952 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002953}
2954
2955static int
Florin Coras134a9962018-08-28 11:32:04 -07002956vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002957 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002958{
Florin Corasb13ba132021-01-27 16:05:24 -08002959 double wait = 0, start = 0, now;
Florin Coras99368312018-08-02 10:45:44 -07002960 int __clib_unused n_read;
Florin Corasb13ba132021-01-27 16:05:24 -08002961 vcl_mq_evt_conn_t *mqc;
Florin Coras99368312018-08-02 10:45:44 -07002962 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002963 u64 buf;
2964
Florin Coras134a9962018-08-28 11:32:04 -07002965 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasb13ba132021-01-27 16:05:24 -08002966 if (!n_evts)
Florin Coras99368312018-08-02 10:45:44 -07002967 {
Florin Corasb13ba132021-01-27 16:05:24 -08002968 wait = wait_for_time;
2969 start = clib_time_now (&wrk->clib_time);
Florin Coras99368312018-08-02 10:45:44 -07002970 }
2971
Florin Corasb13ba132021-01-27 16:05:24 -08002972 do
2973 {
2974 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2975 vec_len (wrk->mq_events), wait);
2976 if (n_mq_evts < 0)
2977 {
2978 VDBG (0, "epoll_wait error %u", errno);
2979 return n_evts;
2980 }
2981
2982 for (i = 0; i < n_mq_evts; i++)
2983 {
2984 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
2985 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
2986 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0,
2987 &n_evts);
2988 }
2989
2990 if (n_evts)
2991 return n_evts;
2992 if (wait == -1)
2993 continue;
2994
2995 now = clib_time_now (&wrk->clib_time);
2996 wait -= (now - start) * 1e3;
2997 start = now;
2998 }
2999 while (wait > 0);
3000
3001 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003002}
3003
Dave Wallacef7f809c2017-10-03 01:48:42 -04003004int
Florin Coras134a9962018-08-28 11:32:04 -07003005vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003006 int maxevents, double wait_for_time)
3007{
Florin Coras134a9962018-08-28 11:32:04 -07003008 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003009 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07003010 u32 n_evts = 0;
3011 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003012
3013 if (PREDICT_FALSE (maxevents <= 0))
3014 {
Florin Coras5e062572019-03-14 19:07:51 -07003015 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003016 return VPPCOM_EINVAL;
3017 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003018
Florin Coras134a9962018-08-28 11:32:04 -07003019 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003020 if (!vep_session)
3021 return VPPCOM_EBADFD;
3022
Florin Coras6c3b2182020-10-19 18:36:48 -07003023 if (PREDICT_FALSE (!(vep_session->flags & VCL_SESSION_F_IS_VEP)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003024 {
Florin Coras5e062572019-03-14 19:07:51 -07003025 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003026 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003027 }
Florin Coras54693d22018-07-17 10:46:29 -07003028
3029 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003030
Florin Coras86f04502018-09-12 16:08:01 -07003031 if (vec_len (wrk->unhandled_evts_vector))
3032 {
3033 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3034 {
3035 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3036 events, &n_evts);
3037 if (n_evts == maxevents)
3038 {
Florin Corase003a1b2019-06-05 10:47:16 -07003039 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3040 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003041 }
3042 }
Florin Corase003a1b2019-06-05 10:47:16 -07003043 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003044 }
3045
3046 if (vcm->cfg.use_mq_eventfd)
3047 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3048 wait_for_time);
3049
3050 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3051 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003052}
3053
Dave Wallace35830af2017-10-09 01:43:42 -04003054int
Florin Coras134a9962018-08-28 11:32:04 -07003055vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003056 void *buffer, uint32_t * buflen)
3057{
Florin Coras134a9962018-08-28 11:32:04 -07003058 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7baeb712019-01-04 17:05:43 -08003059 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003060 vppcom_endpt_t *ep = buffer;
Florin Corasa5a9efd2021-01-05 17:03:29 -08003061 vcl_session_t *session;
3062 int rv = VPPCOM_OK;
Dave Wallace35830af2017-10-09 01:43:42 -04003063
Florin Coras134a9962018-08-28 11:32:04 -07003064 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003065 if (!session)
3066 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003067
Dave Wallace35830af2017-10-09 01:43:42 -04003068 switch (op)
3069 {
3070 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003071 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003072 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3073 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003074 break;
3075
Dave Wallace227867f2017-11-13 21:21:53 -05003076 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003077 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003078 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3079 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003080 break;
3081
3082 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003083 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003084 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003085 *flags =
3086 O_RDWR |
Florin Corasac422d62020-10-19 20:51:36 -07003087 (vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK) ?
Simon Zhang53ec9672020-08-07 05:20:47 +08003088 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003089 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003090 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3091 "is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003092 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003093 }
3094 else
3095 rv = VPPCOM_EINVAL;
3096 break;
3097
3098 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003099 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003100 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003101 if (*flags & O_NONBLOCK)
Florin Corasac422d62020-10-19 20:51:36 -07003102 vcl_session_set_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003103 else
Florin Corasac422d62020-10-19 20:51:36 -07003104 vcl_session_clear_attr (session, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003105
Florin Coras5e062572019-03-14 19:07:51 -07003106 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3107 " is_nonblocking = %u", session_handle, *flags,
Florin Corasac422d62020-10-19 20:51:36 -07003108 vcl_session_has_attr (session, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003109 }
3110 else
3111 rv = VPPCOM_EINVAL;
3112 break;
3113
3114 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003115 if (PREDICT_TRUE (buffer && buflen &&
3116 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003117 {
Florin Coras7e12d942018-06-27 14:32:43 -07003118 ep->is_ip4 = session->transport.is_ip4;
3119 ep->port = session->transport.rmt_port;
3120 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003121 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3122 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003123 else
Dave Barach178cf492018-11-13 16:34:13 -05003124 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3125 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003126 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003127 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3128 "addr = %U, port %u", session_handle, ep->is_ip4,
3129 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003130 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3131 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003132 }
3133 else
3134 rv = VPPCOM_EINVAL;
3135 break;
3136
3137 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003138 if (PREDICT_TRUE (buffer && buflen &&
3139 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003140 {
Florin Coras7e12d942018-06-27 14:32:43 -07003141 ep->is_ip4 = session->transport.is_ip4;
3142 ep->port = session->transport.lcl_port;
3143 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003144 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3145 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003146 else
Dave Barach178cf492018-11-13 16:34:13 -05003147 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3148 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003149 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003150 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3151 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003152 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003153 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3154 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003155 }
3156 else
3157 rv = VPPCOM_EINVAL;
3158 break;
Stevenb5a11602017-10-11 09:59:30 -07003159
Florin Corasef7cbf62019-10-17 09:56:27 -07003160 case VPPCOM_ATTR_SET_LCL_ADDR:
3161 if (PREDICT_TRUE (buffer && buflen &&
3162 (*buflen >= sizeof (*ep)) && ep->ip))
3163 {
3164 session->transport.is_ip4 = ep->is_ip4;
3165 session->transport.lcl_port = ep->port;
3166 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3167 *buflen = sizeof (*ep);
3168 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3169 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3170 &session->transport.lcl_ip,
3171 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3172 clib_net_to_host_u16 (ep->port));
3173 }
3174 else
3175 rv = VPPCOM_EINVAL;
3176 break;
3177
Dave Wallace048b1d62018-01-03 22:24:41 -05003178 case VPPCOM_ATTR_GET_LIBC_EPFD:
3179 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003180 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003181 break;
3182
3183 case VPPCOM_ATTR_SET_LIBC_EPFD:
3184 if (PREDICT_TRUE (buffer && buflen &&
3185 (*buflen == sizeof (session->libc_epfd))))
3186 {
3187 session->libc_epfd = *(int *) buffer;
3188 *buflen = sizeof (session->libc_epfd);
3189
Florin Coras5e062572019-03-14 19:07:51 -07003190 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3191 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003192 }
3193 else
3194 rv = VPPCOM_EINVAL;
3195 break;
3196
3197 case VPPCOM_ATTR_GET_PROTOCOL:
3198 if (buffer && buflen && (*buflen >= sizeof (int)))
3199 {
Florin Coras7e12d942018-06-27 14:32:43 -07003200 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003201 *buflen = sizeof (int);
3202
Florin Coras5e062572019-03-14 19:07:51 -07003203 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3204 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003205 }
3206 else
3207 rv = VPPCOM_EINVAL;
3208 break;
3209
3210 case VPPCOM_ATTR_GET_LISTEN:
3211 if (buffer && buflen && (*buflen >= sizeof (int)))
3212 {
Florin Corasac422d62020-10-19 20:51:36 -07003213 *(int *) buffer = vcl_session_has_attr (session,
3214 VCL_SESS_ATTR_LISTEN);
Dave Wallace048b1d62018-01-03 22:24:41 -05003215 *buflen = sizeof (int);
3216
Florin Coras5e062572019-03-14 19:07:51 -07003217 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3218 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003219 }
3220 else
3221 rv = VPPCOM_EINVAL;
3222 break;
3223
3224 case VPPCOM_ATTR_GET_ERROR:
3225 if (buffer && buflen && (*buflen >= sizeof (int)))
3226 {
3227 *(int *) buffer = 0;
3228 *buflen = sizeof (int);
3229
Florin Coras5e062572019-03-14 19:07:51 -07003230 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3231 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003232 }
3233 else
3234 rv = VPPCOM_EINVAL;
3235 break;
3236
3237 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3238 if (buffer && buflen && (*buflen >= sizeof (u32)))
3239 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003240
3241 /* VPP-TBD */
3242 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003243 session->tx_fifo ?
3244 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003245 vcm->cfg.tx_fifo_size);
3246 *buflen = sizeof (u32);
3247
Florin Coras5e062572019-03-14 19:07:51 -07003248 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3249 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3250 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003251 }
3252 else
3253 rv = VPPCOM_EINVAL;
3254 break;
3255
3256 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3257 if (buffer && buflen && (*buflen == sizeof (u32)))
3258 {
3259 /* VPP-TBD */
3260 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003261 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3262 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3263 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003264 }
3265 else
3266 rv = VPPCOM_EINVAL;
3267 break;
3268
3269 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3270 if (buffer && buflen && (*buflen >= sizeof (u32)))
3271 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003272
3273 /* VPP-TBD */
3274 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003275 session->rx_fifo ?
3276 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003277 vcm->cfg.rx_fifo_size);
3278 *buflen = sizeof (u32);
3279
Florin Coras5e062572019-03-14 19:07:51 -07003280 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3281 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003282 }
3283 else
3284 rv = VPPCOM_EINVAL;
3285 break;
3286
3287 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3288 if (buffer && buflen && (*buflen == sizeof (u32)))
3289 {
3290 /* VPP-TBD */
3291 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003292 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3293 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3294 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003295 }
3296 else
3297 rv = VPPCOM_EINVAL;
3298 break;
3299
3300 case VPPCOM_ATTR_GET_REUSEADDR:
3301 if (buffer && buflen && (*buflen >= sizeof (int)))
3302 {
3303 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003304 *(int *) buffer = vcl_session_has_attr (session,
3305 VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003306 *buflen = sizeof (int);
3307
Florin Coras5e062572019-03-14 19:07:51 -07003308 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3309 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003310 }
3311 else
3312 rv = VPPCOM_EINVAL;
3313 break;
3314
Stevenb5a11602017-10-11 09:59:30 -07003315 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003316 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003317 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003318 {
3319 /* VPP-TBD */
3320 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003321 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003322 else
Florin Corasac422d62020-10-19 20:51:36 -07003323 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEADDR);
Dave Wallace048b1d62018-01-03 22:24:41 -05003324
Florin Coras5e062572019-03-14 19:07:51 -07003325 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003326 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEADDR),
Florin Coras5e062572019-03-14 19:07:51 -07003327 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003328 }
3329 else
3330 rv = VPPCOM_EINVAL;
3331 break;
3332
3333 case VPPCOM_ATTR_GET_REUSEPORT:
3334 if (buffer && buflen && (*buflen >= sizeof (int)))
3335 {
3336 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003337 *(int *) buffer = vcl_session_has_attr (session,
3338 VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003339 *buflen = sizeof (int);
3340
Florin Coras5e062572019-03-14 19:07:51 -07003341 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3342 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003343 }
3344 else
3345 rv = VPPCOM_EINVAL;
3346 break;
3347
3348 case VPPCOM_ATTR_SET_REUSEPORT:
3349 if (buffer && buflen && (*buflen == sizeof (int)) &&
Florin Corasac422d62020-10-19 20:51:36 -07003350 !vcl_session_has_attr (session, VCL_SESS_ATTR_LISTEN))
Dave Wallace048b1d62018-01-03 22:24:41 -05003351 {
3352 /* VPP-TBD */
3353 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003354 vcl_session_set_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003355 else
Florin Corasac422d62020-10-19 20:51:36 -07003356 vcl_session_clear_attr (session, VCL_SESS_ATTR_REUSEPORT);
Dave Wallace048b1d62018-01-03 22:24:41 -05003357
Florin Coras5e062572019-03-14 19:07:51 -07003358 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003359 vcl_session_has_attr (session, VCL_SESS_ATTR_REUSEPORT),
Florin Coras5e062572019-03-14 19:07:51 -07003360 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003361 }
3362 else
3363 rv = VPPCOM_EINVAL;
3364 break;
3365
3366 case VPPCOM_ATTR_GET_BROADCAST:
3367 if (buffer && buflen && (*buflen >= sizeof (int)))
3368 {
3369 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003370 *(int *) buffer = vcl_session_has_attr (session,
3371 VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003372 *buflen = sizeof (int);
3373
Florin Coras5e062572019-03-14 19:07:51 -07003374 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3375 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003376 }
3377 else
3378 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003379 break;
3380
3381 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003382 if (buffer && buflen && (*buflen == sizeof (int)))
3383 {
3384 /* VPP-TBD */
3385 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003386 vcl_session_set_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003387 else
Florin Corasac422d62020-10-19 20:51:36 -07003388 vcl_session_clear_attr (session, VCL_SESS_ATTR_BROADCAST);
Dave Wallace048b1d62018-01-03 22:24:41 -05003389
Florin Coras5e062572019-03-14 19:07:51 -07003390 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003391 vcl_session_has_attr (session, VCL_SESS_ATTR_BROADCAST),
Florin Coras5e062572019-03-14 19:07:51 -07003392 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003393 }
3394 else
3395 rv = VPPCOM_EINVAL;
3396 break;
3397
3398 case VPPCOM_ATTR_GET_V6ONLY:
3399 if (buffer && buflen && (*buflen >= sizeof (int)))
3400 {
3401 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003402 *(int *) buffer = vcl_session_has_attr (session,
3403 VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003404 *buflen = sizeof (int);
3405
Florin Coras5e062572019-03-14 19:07:51 -07003406 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3407 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003408 }
3409 else
3410 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003411 break;
3412
3413 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003414 if (buffer && buflen && (*buflen == sizeof (int)))
3415 {
3416 /* VPP-TBD */
3417 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003418 vcl_session_set_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003419 else
Florin Corasac422d62020-10-19 20:51:36 -07003420 vcl_session_clear_attr (session, VCL_SESS_ATTR_V6ONLY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003421
Florin Coras5e062572019-03-14 19:07:51 -07003422 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003423 vcl_session_has_attr (session, VCL_SESS_ATTR_V6ONLY),
Florin Coras5e062572019-03-14 19:07:51 -07003424 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003425 }
3426 else
3427 rv = VPPCOM_EINVAL;
3428 break;
3429
3430 case VPPCOM_ATTR_GET_KEEPALIVE:
3431 if (buffer && buflen && (*buflen >= sizeof (int)))
3432 {
3433 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003434 *(int *) buffer = vcl_session_has_attr (session,
3435 VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003436 *buflen = sizeof (int);
3437
Florin Coras5e062572019-03-14 19:07:51 -07003438 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3439 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003440 }
3441 else
3442 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003443 break;
Stevenbccd3392017-10-12 20:42:21 -07003444
3445 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003446 if (buffer && buflen && (*buflen == sizeof (int)))
3447 {
3448 /* VPP-TBD */
3449 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003450 vcl_session_set_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003451 else
Florin Corasac422d62020-10-19 20:51:36 -07003452 vcl_session_clear_attr (session, VCL_SESS_ATTR_KEEPALIVE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003453
Florin Coras5e062572019-03-14 19:07:51 -07003454 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003455 vcl_session_has_attr (session, VCL_SESS_ATTR_KEEPALIVE),
Florin Coras5e062572019-03-14 19:07:51 -07003456 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003457 }
3458 else
3459 rv = VPPCOM_EINVAL;
3460 break;
3461
3462 case VPPCOM_ATTR_GET_TCP_NODELAY:
3463 if (buffer && buflen && (*buflen >= sizeof (int)))
3464 {
3465 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003466 *(int *) buffer = vcl_session_has_attr (session,
3467 VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003468 *buflen = sizeof (int);
3469
Florin Coras5e062572019-03-14 19:07:51 -07003470 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3471 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003472 }
3473 else
3474 rv = VPPCOM_EINVAL;
3475 break;
3476
3477 case VPPCOM_ATTR_SET_TCP_NODELAY:
3478 if (buffer && buflen && (*buflen == sizeof (int)))
3479 {
3480 /* VPP-TBD */
3481 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003482 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003483 else
Florin Corasac422d62020-10-19 20:51:36 -07003484 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_NODELAY);
Dave Wallace048b1d62018-01-03 22:24:41 -05003485
Florin Coras5e062572019-03-14 19:07:51 -07003486 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003487 vcl_session_has_attr (session, VCL_SESS_ATTR_TCP_NODELAY),
Florin Coras5e062572019-03-14 19:07:51 -07003488 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003489 }
3490 else
3491 rv = VPPCOM_EINVAL;
3492 break;
3493
3494 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3495 if (buffer && buflen && (*buflen >= sizeof (int)))
3496 {
3497 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003498 *(int *) buffer = vcl_session_has_attr (session,
3499 VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003500 *buflen = sizeof (int);
3501
Florin Coras5e062572019-03-14 19:07:51 -07003502 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3503 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003504 }
3505 else
3506 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003507 break;
3508
3509 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003510 if (buffer && buflen && (*buflen == sizeof (int)))
3511 {
3512 /* VPP-TBD */
3513 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003514 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003515 else
Florin Corasac422d62020-10-19 20:51:36 -07003516 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPIDLE);
Dave Wallace048b1d62018-01-03 22:24:41 -05003517
Florin Coras5e062572019-03-14 19:07:51 -07003518 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003519 vcl_session_has_attr (session,
3520 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003521 }
3522 else
3523 rv = VPPCOM_EINVAL;
3524 break;
3525
3526 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3527 if (buffer && buflen && (*buflen >= sizeof (int)))
3528 {
3529 /* VPP-TBD */
Florin Corasac422d62020-10-19 20:51:36 -07003530 *(int *) buffer = vcl_session_has_attr (session,
3531 VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003532 *buflen = sizeof (int);
3533
Florin Coras5e062572019-03-14 19:07:51 -07003534 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3535 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003536 }
3537 else
3538 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003539 break;
3540
3541 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003542 if (buffer && buflen && (*buflen == sizeof (int)))
3543 {
3544 /* VPP-TBD */
3545 if (*(int *) buffer)
Florin Corasac422d62020-10-19 20:51:36 -07003546 vcl_session_set_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003547 else
Florin Corasac422d62020-10-19 20:51:36 -07003548 vcl_session_clear_attr (session, VCL_SESS_ATTR_TCP_KEEPINTVL);
Dave Wallace048b1d62018-01-03 22:24:41 -05003549
Florin Coras5e062572019-03-14 19:07:51 -07003550 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Corasac422d62020-10-19 20:51:36 -07003551 vcl_session_has_attr (session,
3552 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003553 }
3554 else
3555 rv = VPPCOM_EINVAL;
3556 break;
3557
3558 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3559 if (buffer && buflen && (*buflen >= sizeof (u32)))
3560 {
3561 /* VPP-TBD */
3562 *(u32 *) buffer = session->user_mss;
3563 *buflen = sizeof (int);
3564
Florin Coras5e062572019-03-14 19:07:51 -07003565 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3566 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003567 }
3568 else
3569 rv = VPPCOM_EINVAL;
3570 break;
3571
3572 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3573 if (buffer && buflen && (*buflen == sizeof (u32)))
3574 {
3575 /* VPP-TBD */
3576 session->user_mss = *(u32 *) buffer;
3577
Florin Coras5e062572019-03-14 19:07:51 -07003578 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3579 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003580 }
3581 else
3582 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003583 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003584
Florin Coras7baeb712019-01-04 17:05:43 -08003585 case VPPCOM_ATTR_SET_SHUT:
3586 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
Florin Corasac422d62020-10-19 20:51:36 -07003587 vcl_session_set_attr (session, VCL_SESS_ATTR_SHUT_RD);
Florin Coras7baeb712019-01-04 17:05:43 -08003588 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
Florin Corasac422d62020-10-19 20:51:36 -07003589 vcl_session_set_attr (session, VCL_SESS_ATTR_SHUT_WR);
Florin Coras7baeb712019-01-04 17:05:43 -08003590 break;
3591
3592 case VPPCOM_ATTR_GET_SHUT:
Florin Corasac422d62020-10-19 20:51:36 -07003593 if (vcl_session_has_attr (session, VCL_SESS_ATTR_SHUT_RD))
Florin Coras7baeb712019-01-04 17:05:43 -08003594 tmp_flags = 1;
Florin Corasac422d62020-10-19 20:51:36 -07003595 if (vcl_session_has_attr (session, VCL_SESS_ATTR_SHUT_WR))
Florin Coras7baeb712019-01-04 17:05:43 -08003596 tmp_flags |= 2;
3597 if (tmp_flags == 1)
3598 *(int *) buffer = SHUT_RD;
3599 else if (tmp_flags == 2)
3600 *(int *) buffer = SHUT_WR;
3601 else if (tmp_flags == 3)
3602 *(int *) buffer = SHUT_RDWR;
3603 *buflen = sizeof (int);
3604 break;
Florin Coras1e966172020-05-16 18:18:14 +00003605
3606 case VPPCOM_ATTR_SET_CONNECTED:
3607 session->flags |= VCL_SESSION_F_CONNECTED;
3608 break;
3609
Florin Corasa5a9efd2021-01-05 17:03:29 -08003610 case VPPCOM_ATTR_SET_CKPAIR:
3611 if (!(buffer && buflen && (*buflen == sizeof (int))) ||
3612 !vcl_session_has_crypto (session))
3613 {
3614 rv = VPPCOM_EINVAL;
3615 break;
3616 }
3617 session->ckpair_index = *(uint32_t *) buffer;
3618 break;
3619
Florin Coras6a6555a2021-01-28 11:39:27 -08003620 case VPPCOM_ATTR_SET_VRF:
3621 if (!(buffer && buflen && (*buflen == sizeof (u32))))
3622 {
3623 rv = VPPCOM_EINVAL;
3624 break;
3625 }
3626 session->vrf = *(u32 *) buffer;
3627 break;
3628
3629 case VPPCOM_ATTR_GET_VRF:
3630 if (!(buffer && buflen && (*buflen >= sizeof (u32))))
3631 {
3632 rv = VPPCOM_EINVAL;
3633 break;
3634 }
3635 *(u32 *) buffer = session->vrf;
3636 *buflen = sizeof (u32);
3637 break;
3638
Dave Wallacee22aa742017-10-20 12:30:38 -04003639 default:
3640 rv = VPPCOM_EINVAL;
3641 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003642 }
3643
Dave Wallace35830af2017-10-09 01:43:42 -04003644 return rv;
3645}
3646
Stevenac1f96d2017-10-24 16:03:58 -07003647int
Florin Coras134a9962018-08-28 11:32:04 -07003648vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003649 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3650{
Florin Coras134a9962018-08-28 11:32:04 -07003651 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00003652 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07003653 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07003654
3655 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003656 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003657 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003658 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003659 else
3660 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003661 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003662 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003663 }
3664
Florin Coras0a1e1832020-03-29 18:54:04 +00003665 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07003666 {
Florin Coras5da10c42020-04-01 04:31:21 +00003667 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07003668 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003669 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3670 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003671 else
Dave Barach178cf492018-11-13 16:34:13 -05003672 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3673 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00003674 ep->is_ip4 = session->transport.is_ip4;
3675 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07003676 }
Florin Coras460dce62018-07-27 05:45:06 -07003677
Stevenac1f96d2017-10-24 16:03:58 -07003678 return rv;
3679}
3680
3681int
Florin Coras134a9962018-08-28 11:32:04 -07003682vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003683 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3684{
Florin Coras7a2abce2020-04-05 19:25:44 +00003685 vcl_worker_t *wrk = vcl_worker_get_current ();
3686 vcl_session_t *s;
3687
3688 s = vcl_session_get_w_handle (wrk, session_handle);
3689 if (!s)
3690 return VPPCOM_EBADFD;
3691
Dave Wallace617dffa2017-10-26 14:47:06 -04003692 if (!buffer)
3693 return VPPCOM_EINVAL;
3694
3695 if (ep)
3696 {
Florin Coras5824cc52020-10-20 18:44:41 -07003697 if (!vcl_session_is_cl (s))
Florin Coras5da10c42020-04-01 04:31:21 +00003698 return VPPCOM_EINVAL;
3699
3700 /* Session not connected/bound in vpp. Create it by 'connecting' it */
Florin Corasc127d5a2020-10-14 16:35:58 -07003701 if (PREDICT_FALSE (s->session_state == VCL_STATE_CLOSED))
Florin Coras5da10c42020-04-01 04:31:21 +00003702 {
Florin Coras5824cc52020-10-20 18:44:41 -07003703 u32 session_index = s->session_index;
3704 f64 timeout = vcm->cfg.session_timeout;
3705 int rv;
3706
Florin Coras5da10c42020-04-01 04:31:21 +00003707 vcl_send_session_connect (wrk, s);
Florin Coras5824cc52020-10-20 18:44:41 -07003708 rv = vppcom_wait_for_session_state_change (session_index,
3709 VCL_STATE_READY,
3710 timeout);
3711 if (rv < 0)
3712 return rv;
3713 s = vcl_session_get (wrk, session_index);
Florin Coras5da10c42020-04-01 04:31:21 +00003714 }
Florin Coras5824cc52020-10-20 18:44:41 -07003715
3716 s->transport.is_ip4 = ep->is_ip4;
3717 s->transport.rmt_port = ep->port;
3718 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
Dave Wallace617dffa2017-10-26 14:47:06 -04003719 }
3720
3721 if (flags)
3722 {
3723 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003724 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003725 }
3726
Florin Coras7a2abce2020-04-05 19:25:44 +00003727 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3728 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07003729}
3730
Dave Wallace048b1d62018-01-03 22:24:41 -05003731int
3732vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3733{
Florin Coras134a9962018-08-28 11:32:04 -07003734 vcl_worker_t *wrk = vcl_worker_get_current ();
3735 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003736 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003737 svm_msg_q_msg_t msg;
3738 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003739 int rv, num_ev = 0;
3740
Florin Coras5e062572019-03-14 19:07:51 -07003741 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003742
3743 if (!vp)
3744 return VPPCOM_EFAULT;
3745
3746 do
3747 {
Florin Coras7e12d942018-06-27 14:32:43 -07003748 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003749
Florin Coras6917b942018-11-13 22:44:54 -08003750 /* Dequeue all events and drop all unhandled io events */
3751 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3752 {
3753 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3754 vcl_handle_mq_event (wrk, e);
3755 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3756 }
3757 vec_reset_length (wrk->unhandled_evts_vector);
3758
Dave Wallace048b1d62018-01-03 22:24:41 -05003759 for (i = 0; i < n_sids; i++)
3760 {
Florin Coras7baeb712019-01-04 17:05:43 -08003761 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003762 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003763 {
3764 vp[i].revents = POLLHUP;
3765 num_ev++;
3766 continue;
3767 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003768
Florin Coras6917b942018-11-13 22:44:54 -08003769 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003770
3771 if (POLLIN & vp[i].events)
3772 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003773 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003774 if (rv > 0)
3775 {
Florin Coras6917b942018-11-13 22:44:54 -08003776 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003777 num_ev++;
3778 }
3779 else if (rv < 0)
3780 {
3781 switch (rv)
3782 {
3783 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003784 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003785 break;
3786
3787 default:
Florin Coras6917b942018-11-13 22:44:54 -08003788 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003789 break;
3790 }
3791 num_ev++;
3792 }
3793 }
3794
3795 if (POLLOUT & vp[i].events)
3796 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003797 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003798 if (rv > 0)
3799 {
Florin Coras6917b942018-11-13 22:44:54 -08003800 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003801 num_ev++;
3802 }
3803 else if (rv < 0)
3804 {
3805 switch (rv)
3806 {
3807 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003808 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003809 break;
3810
3811 default:
Florin Coras6917b942018-11-13 22:44:54 -08003812 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003813 break;
3814 }
3815 num_ev++;
3816 }
3817 }
3818
Dave Wallace7e607a72018-06-18 18:41:32 -04003819 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003820 {
Florin Coras6917b942018-11-13 22:44:54 -08003821 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003822 num_ev++;
3823 }
3824 }
3825 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003826 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003827 }
3828 while ((num_ev == 0) && keep_trying);
3829
Dave Wallace048b1d62018-01-03 22:24:41 -05003830 return num_ev;
3831}
3832
Florin Coras99368312018-08-02 10:45:44 -07003833int
3834vppcom_mq_epoll_fd (void)
3835{
Florin Coras134a9962018-08-28 11:32:04 -07003836 vcl_worker_t *wrk = vcl_worker_get_current ();
3837 return wrk->mqs_epfd;
3838}
3839
3840int
Florin Coras30e79c22019-01-02 19:31:22 -08003841vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003842{
3843 return session_handle & 0xFFFFFF;
3844}
3845
3846int
Florin Coras30e79c22019-01-02 19:31:22 -08003847vppcom_session_worker (vcl_session_handle_t session_handle)
3848{
3849 return session_handle >> 24;
3850}
3851
3852int
Florin Coras134a9962018-08-28 11:32:04 -07003853vppcom_worker_register (void)
3854{
Florin Coras47c40e22018-11-26 17:01:36 -08003855 if (!vcl_worker_alloc_and_init ())
3856 return VPPCOM_EEXIST;
3857
Florin Coras47c40e22018-11-26 17:01:36 -08003858 if (vcl_worker_register_with_vpp ())
3859 return VPPCOM_EEXIST;
3860
3861 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003862}
3863
Florin Coras369db832019-07-08 12:34:45 -07003864void
3865vppcom_worker_unregister (void)
3866{
3867 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3868 vcl_set_worker_index (~0);
3869}
3870
Pivo6017ff02020-05-04 17:57:33 +02003871void
3872vppcom_worker_index_set (int index)
3873{
3874 vcl_set_worker_index (index);
3875}
3876
Florin Corasdfe4cf42018-11-28 22:13:45 -08003877int
3878vppcom_worker_index (void)
3879{
3880 return vcl_get_worker_index ();
3881}
3882
Florin Corase0982e52019-01-25 13:19:56 -08003883int
3884vppcom_worker_mqs_epfd (void)
3885{
3886 vcl_worker_t *wrk = vcl_worker_get_current ();
3887 if (!vcm->cfg.use_mq_eventfd)
3888 return -1;
3889 return wrk->mqs_epfd;
3890}
3891
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003892int
3893vppcom_session_is_connectable_listener (uint32_t session_handle)
3894{
3895 vcl_session_t *session;
3896 vcl_worker_t *wrk = vcl_worker_get_current ();
3897 session = vcl_session_get_w_handle (wrk, session_handle);
3898 if (!session)
3899 return VPPCOM_EBADFD;
3900 return vcl_session_is_connectable_listener (wrk, session);
3901}
3902
3903int
3904vppcom_session_listener (uint32_t session_handle)
3905{
3906 vcl_worker_t *wrk = vcl_worker_get_current ();
3907 vcl_session_t *listen_session, *session;
3908 session = vcl_session_get_w_handle (wrk, session_handle);
3909 if (!session)
3910 return VPPCOM_EBADFD;
3911 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3912 return VPPCOM_EBADFD;
3913 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3914 if (!listen_session)
3915 return VPPCOM_EBADFD;
3916 return vcl_session_handle (listen_session);
3917}
3918
3919int
3920vppcom_session_n_accepted (uint32_t session_handle)
3921{
3922 vcl_worker_t *wrk = vcl_worker_get_current ();
3923 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3924 if (!session)
3925 return VPPCOM_EBADFD;
3926 return session->n_accepted_sessions;
3927}
3928
Florin Coras66ec4672020-06-15 07:59:40 -07003929const char *
3930vppcom_proto_str (vppcom_proto_t proto)
3931{
3932 char const *proto_str;
3933
3934 switch (proto)
3935 {
3936 case VPPCOM_PROTO_TCP:
3937 proto_str = "TCP";
3938 break;
3939 case VPPCOM_PROTO_UDP:
3940 proto_str = "UDP";
3941 break;
3942 case VPPCOM_PROTO_TLS:
3943 proto_str = "TLS";
3944 break;
3945 case VPPCOM_PROTO_QUIC:
3946 proto_str = "QUIC";
3947 break;
Florin Coras4b47ee22020-11-19 13:38:26 -08003948 case VPPCOM_PROTO_DTLS:
3949 proto_str = "DTLS";
3950 break;
Florin Coras66ec4672020-06-15 07:59:40 -07003951 default:
3952 proto_str = "UNKNOWN";
3953 break;
3954 }
3955 return proto_str;
3956}
3957
3958const char *
3959vppcom_retval_str (int retval)
3960{
3961 char const *st;
3962
3963 switch (retval)
3964 {
3965 case VPPCOM_OK:
3966 st = "VPPCOM_OK";
3967 break;
3968
3969 case VPPCOM_EAGAIN:
3970 st = "VPPCOM_EAGAIN";
3971 break;
3972
3973 case VPPCOM_EFAULT:
3974 st = "VPPCOM_EFAULT";
3975 break;
3976
3977 case VPPCOM_ENOMEM:
3978 st = "VPPCOM_ENOMEM";
3979 break;
3980
3981 case VPPCOM_EINVAL:
3982 st = "VPPCOM_EINVAL";
3983 break;
3984
3985 case VPPCOM_EBADFD:
3986 st = "VPPCOM_EBADFD";
3987 break;
3988
3989 case VPPCOM_EAFNOSUPPORT:
3990 st = "VPPCOM_EAFNOSUPPORT";
3991 break;
3992
3993 case VPPCOM_ECONNABORTED:
3994 st = "VPPCOM_ECONNABORTED";
3995 break;
3996
3997 case VPPCOM_ECONNRESET:
3998 st = "VPPCOM_ECONNRESET";
3999 break;
4000
4001 case VPPCOM_ENOTCONN:
4002 st = "VPPCOM_ENOTCONN";
4003 break;
4004
4005 case VPPCOM_ECONNREFUSED:
4006 st = "VPPCOM_ECONNREFUSED";
4007 break;
4008
4009 case VPPCOM_ETIMEDOUT:
4010 st = "VPPCOM_ETIMEDOUT";
4011 break;
4012
4013 default:
4014 st = "UNKNOWN_STATE";
4015 break;
4016 }
4017
4018 return st;
4019}
4020
Florin Corasa5a9efd2021-01-05 17:03:29 -08004021int
4022vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
4023{
4024 if (vcm->cfg.vpp_app_socket_api)
4025 {
4026 clib_warning ("not supported");
4027 return VPPCOM_EINVAL;
4028 }
4029 return vcl_bapi_add_cert_key_pair (ckpair);
4030}
4031
4032int
4033vppcom_del_cert_key_pair (uint32_t ckpair_index)
4034{
4035 if (vcm->cfg.vpp_app_socket_api)
4036 {
4037 clib_warning ("not supported");
4038 return VPPCOM_EINVAL;
4039 }
4040 return vcl_bapi_del_cert_key_pair (ckpair_index);
4041}
4042
Dave Wallacee22aa742017-10-20 12:30:38 -04004043/*
4044 * fd.io coding-style-patch-verification: ON
4045 *
4046 * Local Variables:
4047 * eval: (c-set-style "gnu")
4048 * End:
4049 */