blob: 0b9a5b4c4c08f1fdba6c4090946300375a2adea2 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
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
Florin Coras6792ec02017-03-13 03:49:51 -070016#include <math.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050017#include <vlib/vlib.h>
18#include <vnet/vnet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019#include <vppinfra/elog.h>
Florin Coras561af9b2017-12-09 10:19:43 -080020#include <vnet/session/transport.h>
Florin Coras8e43d042018-05-04 15:46:57 -070021#include <vnet/session/session.h>
Florin Coras6792ec02017-03-13 03:49:51 -070022#include <vnet/session/application.h>
Florin Coras52207f12018-07-12 14:48:06 -070023#include <vnet/session/application_interface.h>
Florin Corasba7d8f52019-02-22 13:11:38 -080024#include <vnet/session/application_local.h>
Florin Corase69f4952017-03-07 10:06:24 -080025#include <vnet/session/session_debug.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080026#include <svm/queue.h>
Florin Coras7da88292021-03-18 15:04:34 -070027#include <sys/timerfd.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050028
Florin Corase09bd482022-03-21 10:38:01 -070029static inline void
30session_wrk_send_evt_to_main (session_worker_t *wrk, session_evt_elt_t *elt)
31{
32 session_evt_elt_t *he;
Florin Coras0dde1752022-04-04 10:10:58 -070033 uword thread_index;
Florin Corase09bd482022-03-21 10:38:01 -070034 u8 is_empty;
35
36 thread_index = wrk->vm->thread_index;
37 he = clib_llist_elt (wrk->event_elts, wrk->evts_pending_main);
38 is_empty = clib_llist_is_empty (wrk->event_elts, evt_list, he);
39 clib_llist_add_tail (wrk->event_elts, evt_list, elt, he);
40 if (is_empty)
Florin Coras0dde1752022-04-04 10:10:58 -070041 session_send_rpc_evt_to_thread (0, session_wrk_handle_evts_main_rpc,
42 uword_to_pointer (thread_index, void *));
Florin Corase09bd482022-03-21 10:38:01 -070043}
44
45#define app_check_thread_and_barrier(_wrk, _elt) \
46 if (!vlib_thread_is_main_w_barrier ()) \
47 { \
48 session_wrk_send_evt_to_main (wrk, elt); \
49 return; \
50 }
Florin Coras2b81e3c2019-02-27 07:55:46 -080051
Florin Corasa48dffe2021-05-16 10:58:53 -070052static void
53session_wrk_timerfd_update (session_worker_t *wrk, u64 time_ns)
54{
55 struct itimerspec its;
56
57 its.it_value.tv_sec = 0;
58 its.it_value.tv_nsec = time_ns;
59 its.it_interval.tv_sec = 0;
60 its.it_interval.tv_nsec = its.it_value.tv_nsec;
61
62 if (timerfd_settime (wrk->timerfd, 0, &its, NULL) == -1)
63 clib_warning ("timerfd_settime");
64}
65
66always_inline u64
67session_wrk_tfd_timeout (session_wrk_state_t state, u32 thread_index)
68{
69 if (state == SESSION_WRK_INTERRUPT)
70 return thread_index ? 1e6 : vlib_num_workers () ? 5e8 : 1e6;
71 else if (state == SESSION_WRK_IDLE)
72 return thread_index ? 1e8 : vlib_num_workers () ? 5e8 : 1e8;
73 else
74 return 0;
75}
76
77static inline void
78session_wrk_set_state (session_worker_t *wrk, session_wrk_state_t state)
79{
80 u64 time_ns;
81
82 wrk->state = state;
83 if (wrk->timerfd == -1)
84 return;
85 time_ns = session_wrk_tfd_timeout (state, wrk->vm->thread_index);
86 session_wrk_timerfd_update (wrk, time_ns);
87}
88
Florin Coras4ac25842021-04-19 17:34:54 -070089static transport_endpt_ext_cfg_t *
90session_mq_get_ext_config (application_t *app, uword offset)
91{
92 svm_fifo_chunk_t *c;
93 fifo_segment_t *fs;
94
95 fs = application_get_rx_mqs_segment (app);
96 c = fs_chunk_ptr (fs->h, offset);
97 return (transport_endpt_ext_cfg_t *) c->data;
98}
99
100static void
101session_mq_free_ext_config (application_t *app, uword offset)
102{
Florin Coras4ac25842021-04-19 17:34:54 -0700103 svm_fifo_chunk_t *c;
104 fifo_segment_t *fs;
105
106 fs = application_get_rx_mqs_segment (app);
107 c = fs_chunk_ptr (fs->h, offset);
Florin Coras5c97dbf2021-04-27 13:30:37 -0700108 fifo_segment_collect_chunk (fs, 0 /* only one slice */, c);
Florin Coras4ac25842021-04-19 17:34:54 -0700109}
110
Florin Coras2b81e3c2019-02-27 07:55:46 -0800111static void
Florin Corase09bd482022-03-21 10:38:01 -0700112session_mq_listen_handler (session_worker_t *wrk, session_evt_elt_t *elt)
Florin Coras2b81e3c2019-02-27 07:55:46 -0800113{
Florin Coras458089b2019-08-21 16:20:44 -0700114 vnet_listen_args_t _a, *a = &_a;
Florin Corase09bd482022-03-21 10:38:01 -0700115 session_listen_msg_t *mp;
Florin Coras458089b2019-08-21 16:20:44 -0700116 app_worker_t *app_wrk;
117 application_t *app;
118 int rv;
119
Florin Corase09bd482022-03-21 10:38:01 -0700120 app_check_thread_and_barrier (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700121
Florin Corase09bd482022-03-21 10:38:01 -0700122 mp = session_evt_ctrl_data (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700123 app = application_lookup (mp->client_index);
124 if (!app)
125 return;
126
127 clib_memset (a, 0, sizeof (*a));
128 a->sep.is_ip4 = mp->is_ip4;
Florin Corasea7e7082020-07-07 17:57:28 -0700129 ip_copy (&a->sep.ip, &mp->ip, mp->is_ip4);
Florin Coras458089b2019-08-21 16:20:44 -0700130 a->sep.port = mp->port;
131 a->sep.fib_index = mp->vrf;
132 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
133 a->sep.transport_proto = mp->proto;
134 a->app_index = app->app_index;
135 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +0000136 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700137
Florin Coras4ac25842021-04-19 17:34:54 -0700138 if (mp->ext_config)
139 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
140
Florin Coras458089b2019-08-21 16:20:44 -0700141 if ((rv = vnet_listen (a)))
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100142 session_worker_stat_error_inc (wrk, rv, 1);
Florin Coras458089b2019-08-21 16:20:44 -0700143
144 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras0242d302022-12-22 15:03:44 -0800145 app_worker_listened_notify (app_wrk, a->handle, mp->context, rv);
Florin Coras4ac25842021-04-19 17:34:54 -0700146
147 if (mp->ext_config)
148 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras0242d302022-12-22 15:03:44 -0800149
150 /* Make sure events are flushed before releasing barrier, to avoid
151 * potential race with accept. */
152 app_wrk_flush_wrk_events (app_wrk, 0);
Florin Coras458089b2019-08-21 16:20:44 -0700153}
154
155static void
Florin Corase09bd482022-03-21 10:38:01 -0700156session_mq_listen_uri_handler (session_worker_t *wrk, session_evt_elt_t *elt)
Florin Coras458089b2019-08-21 16:20:44 -0700157{
Florin Coras458089b2019-08-21 16:20:44 -0700158 vnet_listen_args_t _a, *a = &_a;
Florin Corase09bd482022-03-21 10:38:01 -0700159 session_listen_uri_msg_t *mp;
Florin Coras458089b2019-08-21 16:20:44 -0700160 app_worker_t *app_wrk;
161 application_t *app;
162 int rv;
163
Florin Corase09bd482022-03-21 10:38:01 -0700164 app_check_thread_and_barrier (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700165
Florin Corase09bd482022-03-21 10:38:01 -0700166 mp = session_evt_ctrl_data (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700167 app = application_lookup (mp->client_index);
168 if (!app)
169 return;
170
171 clib_memset (a, 0, sizeof (*a));
172 a->uri = (char *) mp->uri;
173 a->app_index = app->app_index;
174 rv = vnet_bind_uri (a);
175
176 app_wrk = application_get_worker (app, 0);
Florin Coras0242d302022-12-22 15:03:44 -0800177 app_worker_listened_notify (app_wrk, a->handle, mp->context, rv);
178 app_wrk_flush_wrk_events (app_wrk, 0);
Florin Coras458089b2019-08-21 16:20:44 -0700179}
180
181static void
Florin Corasaf972212021-05-05 09:54:00 -0700182session_mq_connect_one (session_connect_msg_t *mp)
Florin Coras458089b2019-08-21 16:20:44 -0700183{
Florin Coras458089b2019-08-21 16:20:44 -0700184 vnet_connect_args_t _a, *a = &_a;
185 app_worker_t *app_wrk;
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100186 session_worker_t *wrk;
Florin Coras458089b2019-08-21 16:20:44 -0700187 application_t *app;
188 int rv;
189
Florin Coras458089b2019-08-21 16:20:44 -0700190 app = application_lookup (mp->client_index);
191 if (!app)
192 return;
193
194 clib_memset (a, 0, sizeof (*a));
195 a->sep.is_ip4 = mp->is_ip4;
196 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
197 a->sep.port = mp->port;
198 a->sep.transport_proto = mp->proto;
199 a->sep.peer.fib_index = mp->vrf;
Filip Tehlar2f09bfc2021-11-15 10:26:56 +0000200 a->sep.dscp = mp->dscp;
Florin Corasef7cbf62019-10-17 09:56:27 -0700201 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000202 if (mp->is_ip4)
203 {
204 ip46_address_mask_ip4 (&a->sep.ip);
205 ip46_address_mask_ip4 (&a->sep.peer.ip);
206 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000207 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700208 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
209 a->sep_ext.parent_handle = mp->parent_handle;
Florin Corasd85666f2020-04-03 00:58:48 +0000210 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700211 a->api_context = mp->context;
212 a->app_index = app->app_index;
213 a->wrk_map_index = mp->wrk_index;
214
Florin Coras4ac25842021-04-19 17:34:54 -0700215 if (mp->ext_config)
216 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
217
Florin Coras458089b2019-08-21 16:20:44 -0700218 if ((rv = vnet_connect (a)))
219 {
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100220 wrk = session_main_get_worker (vlib_get_thread_index ());
221 session_worker_stat_error_inc (wrk, rv, 1);
Florin Coras458089b2019-08-21 16:20:44 -0700222 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras0242d302022-12-22 15:03:44 -0800223 app_worker_connect_notify (app_wrk, 0, rv, mp->context);
Florin Coras458089b2019-08-21 16:20:44 -0700224 }
225
Florin Coras4ac25842021-04-19 17:34:54 -0700226 if (mp->ext_config)
227 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700228}
229
230static void
Florin Corasaf972212021-05-05 09:54:00 -0700231session_mq_handle_connects_rpc (void *arg)
232{
233 u32 max_connects = 32, n_connects = 0;
Florin Corasaf972212021-05-05 09:54:00 -0700234 session_evt_elt_t *he, *elt, *next;
Florin Coras309f7aa2022-03-18 08:33:08 -0700235 session_worker_t *fwrk;
Florin Corasaf972212021-05-05 09:54:00 -0700236
Florin Coras309f7aa2022-03-18 08:33:08 -0700237 ASSERT (session_vlib_thread_is_cl_thread ());
Florin Corasaf972212021-05-05 09:54:00 -0700238
239 /* Pending connects on linked list pertaining to first worker */
Florin Coras309f7aa2022-03-18 08:33:08 -0700240 fwrk = session_main_get_worker (transport_cl_thread ());
Florin Coras0f273392021-05-21 15:48:18 -0700241 if (!fwrk->n_pending_connects)
Florin Coras309f7aa2022-03-18 08:33:08 -0700242 return;
Florin Corasaf972212021-05-05 09:54:00 -0700243
Florin Coras46b8b1a2021-05-17 19:09:33 -0700244 he = clib_llist_elt (fwrk->event_elts, fwrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700245 elt = clib_llist_next (fwrk->event_elts, evt_list, he);
246
Florin Coras309f7aa2022-03-18 08:33:08 -0700247 /* Avoid holding the worker for too long */
Florin Corasaf972212021-05-05 09:54:00 -0700248 while (n_connects < max_connects && elt != he)
249 {
250 next = clib_llist_next (fwrk->event_elts, evt_list, elt);
251 clib_llist_remove (fwrk->event_elts, evt_list, elt);
252 session_mq_connect_one (session_evt_ctrl_data (fwrk, elt));
Florin Coras595724a2021-06-29 13:27:45 -0700253 session_evt_ctrl_data_free (fwrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -0700254 clib_llist_put (fwrk->event_elts, elt);
Florin Corasaf972212021-05-05 09:54:00 -0700255 elt = next;
256 n_connects += 1;
257 }
258
Florin Coras0f273392021-05-21 15:48:18 -0700259 /* Decrement with worker barrier */
260 fwrk->n_pending_connects -= n_connects;
Florin Coras309f7aa2022-03-18 08:33:08 -0700261 if (fwrk->n_pending_connects > 0)
Florin Corasaf972212021-05-05 09:54:00 -0700262 {
Florin Coras309f7aa2022-03-18 08:33:08 -0700263 session_send_rpc_evt_to_thread_force (fwrk->vm->thread_index,
264 session_mq_handle_connects_rpc, 0);
Florin Coras0f273392021-05-21 15:48:18 -0700265 }
Florin Corasaf972212021-05-05 09:54:00 -0700266}
267
268static void
269session_mq_connect_handler (session_worker_t *wrk, session_evt_elt_t *elt)
270{
271 u32 thread_index = wrk - session_main.wrk;
272 session_evt_elt_t *he;
273
Florin Coras309f7aa2022-03-18 08:33:08 -0700274 if (PREDICT_FALSE (thread_index > transport_cl_thread ()))
Florin Corasaf972212021-05-05 09:54:00 -0700275 {
276 clib_warning ("Connect on wrong thread. Dropping");
277 return;
278 }
279
Florin Coras309f7aa2022-03-18 08:33:08 -0700280 /* If on worker, check if main has any pending messages. Avoids reordering
281 * with other control messages that need to be handled by main
282 */
283 if (thread_index)
284 {
285 he = clib_llist_elt (wrk->event_elts, wrk->evts_pending_main);
286
287 /* Events pending on main, postpone to avoid reordering */
288 if (!clib_llist_is_empty (wrk->event_elts, evt_list, he))
289 {
290 clib_llist_add_tail (wrk->event_elts, evt_list, elt, he);
291 return;
292 }
293 }
294
295 /* Add to pending list to be handled by first worker */
Florin Coras46b8b1a2021-05-17 19:09:33 -0700296 he = clib_llist_elt (wrk->event_elts, wrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700297 clib_llist_add_tail (wrk->event_elts, evt_list, elt, he);
298
Florin Coras0f273392021-05-21 15:48:18 -0700299 /* Decremented with worker barrier */
300 wrk->n_pending_connects += 1;
301 if (wrk->n_pending_connects == 1)
Florin Corasaf972212021-05-05 09:54:00 -0700302 {
Florin Coras309f7aa2022-03-18 08:33:08 -0700303 session_send_rpc_evt_to_thread_force (thread_index,
304 session_mq_handle_connects_rpc, 0);
Florin Corasaf972212021-05-05 09:54:00 -0700305 }
306}
307
308static void
Florin Corase09bd482022-03-21 10:38:01 -0700309session_mq_connect_uri_handler (session_worker_t *wrk, session_evt_elt_t *elt)
Florin Coras458089b2019-08-21 16:20:44 -0700310{
Florin Coras458089b2019-08-21 16:20:44 -0700311 vnet_connect_args_t _a, *a = &_a;
Florin Corase09bd482022-03-21 10:38:01 -0700312 session_connect_uri_msg_t *mp;
Florin Coras458089b2019-08-21 16:20:44 -0700313 app_worker_t *app_wrk;
314 application_t *app;
315 int rv;
316
Florin Corase09bd482022-03-21 10:38:01 -0700317 app_check_thread_and_barrier (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700318
Florin Corase09bd482022-03-21 10:38:01 -0700319 mp = session_evt_ctrl_data (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700320 app = application_lookup (mp->client_index);
321 if (!app)
322 return;
323
324 clib_memset (a, 0, sizeof (*a));
325 a->uri = (char *) mp->uri;
326 a->api_context = mp->context;
327 a->app_index = app->app_index;
328 if ((rv = vnet_connect_uri (a)))
329 {
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100330 session_worker_stat_error_inc (wrk, rv, 1);
Florin Coras458089b2019-08-21 16:20:44 -0700331 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras0242d302022-12-22 15:03:44 -0800332 app_worker_connect_notify (app_wrk, 0, rv, mp->context);
Florin Coras458089b2019-08-21 16:20:44 -0700333 }
334}
335
336static void
liuyacan534468e2021-05-09 03:50:40 +0000337session_mq_shutdown_handler (void *data)
338{
339 session_shutdown_msg_t *mp = (session_shutdown_msg_t *) data;
340 vnet_shutdown_args_t _a, *a = &_a;
341 application_t *app;
342
343 app = application_lookup (mp->client_index);
344 if (!app)
345 return;
346
347 a->app_index = app->app_index;
348 a->handle = mp->handle;
349 vnet_shutdown_session (a);
350}
351
352static void
Florin Coras458089b2019-08-21 16:20:44 -0700353session_mq_disconnect_handler (void *data)
354{
355 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
356 vnet_disconnect_args_t _a, *a = &_a;
357 application_t *app;
358
359 app = application_lookup (mp->client_index);
360 if (!app)
361 return;
362
363 a->app_index = app->app_index;
364 a->handle = mp->handle;
365 vnet_disconnect_session (a);
366}
367
368static void
Florin Corase09bd482022-03-21 10:38:01 -0700369app_mq_detach_handler (session_worker_t *wrk, session_evt_elt_t *elt)
Florin Coras458089b2019-08-21 16:20:44 -0700370{
Florin Coras458089b2019-08-21 16:20:44 -0700371 vnet_app_detach_args_t _a, *a = &_a;
Florin Corase09bd482022-03-21 10:38:01 -0700372 session_app_detach_msg_t *mp;
Florin Coras458089b2019-08-21 16:20:44 -0700373 application_t *app;
374
Florin Corase09bd482022-03-21 10:38:01 -0700375 app_check_thread_and_barrier (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700376
Florin Corase09bd482022-03-21 10:38:01 -0700377 mp = session_evt_ctrl_data (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -0700378 app = application_lookup (mp->client_index);
379 if (!app)
380 return;
381
382 a->app_index = app->app_index;
383 a->api_client_index = mp->client_index;
384 vnet_application_detach (a);
385}
386
387static void
Florin Corase09bd482022-03-21 10:38:01 -0700388session_mq_unlisten_handler (session_worker_t *wrk, session_evt_elt_t *elt)
Florin Coras458089b2019-08-21 16:20:44 -0700389{
Florin Coras458089b2019-08-21 16:20:44 -0700390 vnet_unlisten_args_t _a, *a = &_a;
Florin Corase09bd482022-03-21 10:38:01 -0700391 session_unlisten_msg_t *mp;
Florin Coras458089b2019-08-21 16:20:44 -0700392 app_worker_t *app_wrk;
Florin Corasc53eb722021-06-22 14:20:39 -0700393 session_handle_t sh;
Florin Coras458089b2019-08-21 16:20:44 -0700394 application_t *app;
395 int rv;
396
Florin Corase09bd482022-03-21 10:38:01 -0700397 app_check_thread_and_barrier (wrk, elt);
398
399 mp = session_evt_ctrl_data (wrk, elt);
Florin Corasc53eb722021-06-22 14:20:39 -0700400 sh = mp->handle;
Florin Corasc53eb722021-06-22 14:20:39 -0700401
Florin Coras458089b2019-08-21 16:20:44 -0700402 app = application_lookup (mp->client_index);
403 if (!app)
404 return;
405
406 clib_memset (a, 0, sizeof (*a));
407 a->app_index = app->app_index;
Florin Corasc53eb722021-06-22 14:20:39 -0700408 a->handle = sh;
Florin Coras458089b2019-08-21 16:20:44 -0700409 a->wrk_map_index = mp->wrk_index;
Florin Corasc941fcb2021-07-20 19:08:12 -0700410
Florin Coras458089b2019-08-21 16:20:44 -0700411 if ((rv = vnet_unlisten (a)))
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100412 session_worker_stat_error_inc (wrk, rv, 1);
Florin Coras458089b2019-08-21 16:20:44 -0700413
414 app_wrk = application_get_worker (app, a->wrk_map_index);
415 if (!app_wrk)
416 return;
417
Florin Coras0242d302022-12-22 15:03:44 -0800418 app_worker_unlisten_reply (app_wrk, sh, mp->context, rv);
Florin Corasc53eb722021-06-22 14:20:39 -0700419}
420
421static void
Florin Corase09bd482022-03-21 10:38:01 -0700422session_mq_accepted_reply_handler (session_worker_t *wrk,
423 session_evt_elt_t *elt)
Florin Corasc53eb722021-06-22 14:20:39 -0700424{
Florin Coras52207f12018-07-12 14:48:06 -0700425 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Corase09bd482022-03-21 10:38:01 -0700426 session_accepted_reply_msg_t *mp;
Florin Coras288eaab2019-02-03 15:26:14 -0800427 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700428 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800429 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700430
Florin Corase09bd482022-03-21 10:38:01 -0700431 mp = session_evt_ctrl_data (wrk, elt);
432
Florin Coras2b81e3c2019-02-27 07:55:46 -0800433 /* Mail this back from the main thread. We're not polling in main
434 * thread so we're using other workers for notifications. */
Florin Corasc6eb7da2021-11-25 11:37:33 -0800435 if (session_thread_from_handle (mp->handle) == 0 && vlib_num_workers () &&
436 vlib_get_thread_index () != 0)
Florin Coras52207f12018-07-12 14:48:06 -0700437 {
Florin Corase09bd482022-03-21 10:38:01 -0700438 session_wrk_send_evt_to_main (wrk, elt);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800439 return;
440 }
441
442 s = session_get_from_handle_if_valid (mp->handle);
443 if (!s)
444 return;
445
446 app_wrk = app_worker_get (s->app_wrk_index);
447 if (app_wrk->app_index != mp->context)
448 {
449 clib_warning ("app doesn't own session");
450 return;
451 }
452
Florin Corasc6eb7da2021-11-25 11:37:33 -0800453 /* Server isn't interested, disconnect the session */
454 if (mp->retval)
455 {
456 a->app_index = mp->context;
457 a->handle = mp->handle;
458 vnet_disconnect_session (a);
Florin Coras9ffec142023-10-06 16:45:04 -0700459 s->app_wrk_index = SESSION_INVALID_INDEX;
Florin Corasc6eb7da2021-11-25 11:37:33 -0800460 return;
461 }
462
463 /* Special handling for cut-through sessions */
Florin Coras2b81e3c2019-02-27 07:55:46 -0800464 if (!session_has_transport (s))
465 {
Steven Luongd810a6e2022-10-25 13:09:11 -0700466 session_set_state (s, SESSION_STATE_READY);
Florin Corasc6eb7da2021-11-25 11:37:33 -0800467 ct_session_connect_notify (s, SESSION_E_NONE);
468 return;
Florin Coras52207f12018-07-12 14:48:06 -0700469 }
Florin Corasc6eb7da2021-11-25 11:37:33 -0800470
471 old_state = s->session_state;
Steven Luongd810a6e2022-10-25 13:09:11 -0700472 session_set_state (s, SESSION_STATE_READY);
Florin Corasc6eb7da2021-11-25 11:37:33 -0800473
474 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Coras0242d302022-12-22 15:03:44 -0800475 app_worker_rx_notify (app_wrk, s);
Florin Corasc6eb7da2021-11-25 11:37:33 -0800476
477 /* Closed while waiting for app to reply. Resend disconnect */
478 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras52207f12018-07-12 14:48:06 -0700479 {
Florin Corasc6eb7da2021-11-25 11:37:33 -0800480 app_worker_close_notify (app_wrk, s);
Steven Luongd810a6e2022-10-25 13:09:11 -0700481 session_set_state (s, old_state);
Florin Corasc6eb7da2021-11-25 11:37:33 -0800482 return;
Florin Coras52207f12018-07-12 14:48:06 -0700483 }
484}
485
486static void
487session_mq_reset_reply_handler (void *data)
488{
Florin Coras4af830c2018-12-04 09:21:36 -0800489 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700490 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700491 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800492 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700493 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700494 u32 index, thread_index;
495
496 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800497 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700498 if (!app)
499 return;
500
501 session_parse_handle (mp->handle, &index, &thread_index);
502 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800503
Florin Corasf1910322019-12-05 12:05:57 -0800504 /* No session or not the right session */
505 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800506 return;
507
Florin Coras15531972018-08-12 23:50:53 -0700508 app_wrk = app_worker_get (s->app_wrk_index);
509 if (!app_wrk || app_wrk->app_index != app->app_index)
510 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200511 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700512 mp->handle);
513 return;
514 }
Florin Coras52207f12018-07-12 14:48:06 -0700515
516 /* Client objected to resetting the session, log and continue */
517 if (mp->retval)
518 {
519 clib_warning ("client retval %d", mp->retval);
520 return;
521 }
522
523 /* This comes as a response to a reset, transport only waiting for
524 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800525 a->handle = mp->handle;
526 a->app_index = app->app_index;
527 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700528}
529
530static void
531session_mq_disconnected_handler (void *data)
532{
533 session_disconnected_reply_msg_t *rmp;
534 vnet_disconnect_args_t _a, *a = &_a;
535 svm_msg_q_msg_t _msg, *msg = &_msg;
536 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700537 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700538 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800539 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700540 application_t *app;
541 int rv = 0;
542
543 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700544 if (!(s = session_get_from_handle_if_valid (mp->handle)))
545 {
546 clib_warning ("could not disconnect handle %llu", mp->handle);
547 return;
548 }
Florin Coras15531972018-08-12 23:50:53 -0700549 app_wrk = app_worker_get (s->app_wrk_index);
550 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700551 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700552 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700553 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700554 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700555 return;
Florin Coras52207f12018-07-12 14:48:06 -0700556 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700557
558 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700559 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700560 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700561
Florin Coras15531972018-08-12 23:50:53 -0700562 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700563 SESSION_MQ_CTRL_EVT_RING,
564 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700565 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400566 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800567 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700568 rmp = (session_disconnected_reply_msg_t *) evt->data;
569 rmp->handle = mp->handle;
570 rmp->context = mp->context;
571 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700572 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700573}
574
575static void
576session_mq_disconnected_reply_handler (void *data)
577{
578 session_disconnected_reply_msg_t *mp;
579 vnet_disconnect_args_t _a, *a = &_a;
580 application_t *app;
581
582 mp = (session_disconnected_reply_msg_t *) data;
583
584 /* Client objected to disconnecting the session, log and continue */
585 if (mp->retval)
586 {
587 clib_warning ("client retval %d", mp->retval);
588 return;
589 }
590
591 /* Disconnect has been confirmed. Confirm close to transport */
592 app = application_lookup (mp->context);
593 if (app)
594 {
595 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700596 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700597 vnet_disconnect_session (a);
598 }
599}
600
Florin Coras30e79c22019-01-02 19:31:22 -0800601static void
602session_mq_worker_update_handler (void *data)
603{
604 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
605 session_worker_update_reply_msg_t *rmp;
606 svm_msg_q_msg_t _msg, *msg = &_msg;
607 app_worker_t *app_wrk;
608 u32 owner_app_wrk_map;
609 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800610 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800611 application_t *app;
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100612 int rv;
Florin Coras30e79c22019-01-02 19:31:22 -0800613
614 app = application_lookup (mp->client_index);
615 if (!app)
616 return;
617 if (!(s = session_get_from_handle_if_valid (mp->handle)))
618 {
619 clib_warning ("invalid handle %llu", mp->handle);
620 return;
621 }
622 app_wrk = app_worker_get (s->app_wrk_index);
623 if (app_wrk->app_index != app->app_index)
624 {
625 clib_warning ("app %u does not own session %llu", app->app_index,
626 mp->handle);
627 return;
628 }
629 owner_app_wrk_map = app_wrk->wrk_map_index;
630 app_wrk = application_get_worker (app, mp->wrk_index);
631
632 /* This needs to come from the new owner */
633 if (mp->req_wrk_index == owner_app_wrk_map)
634 {
635 session_req_worker_update_msg_t *wump;
636
637 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
638 SESSION_MQ_CTRL_EVT_RING,
639 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800640 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
641 clib_memset (evt, 0, sizeof (*evt));
642 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
643 wump = (session_req_worker_update_msg_t *) evt->data;
644 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700645 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800646 return;
647 }
648
Filip Tehlarac3c8dc2023-03-14 08:50:28 +0100649 rv = app_worker_own_session (app_wrk, s);
650 if (rv)
651 session_stat_error_inc (rv, 1);
Florin Coras30e79c22019-01-02 19:31:22 -0800652
653 /*
654 * Send reply
655 */
656 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
657 SESSION_MQ_CTRL_EVT_RING,
658 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800659 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
660 clib_memset (evt, 0, sizeof (*evt));
661 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
662 rmp = (session_worker_update_reply_msg_t *) evt->data;
663 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800664 if (s->rx_fifo)
665 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
666 if (s->tx_fifo)
667 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800668 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700669 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800670
671 /*
672 * Retransmit messages that may have been lost
673 */
Florin Coras288eaab2019-02-03 15:26:14 -0800674 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800675 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800676
Florin Coras288eaab2019-02-03 15:26:14 -0800677 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Coras0242d302022-12-22 15:03:44 -0800678 app_worker_rx_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800679
680 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700681 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800682}
683
Florin Coras40c07ce2020-07-16 20:46:17 -0700684static void
685session_mq_app_wrk_rpc_handler (void *data)
686{
687 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
688 svm_msg_q_msg_t _msg, *msg = &_msg;
689 session_app_wrk_rpc_msg_t *rmp;
690 app_worker_t *app_wrk;
691 session_event_t *evt;
692 application_t *app;
693
694 app = application_lookup (mp->client_index);
695 if (!app)
696 return;
697
698 app_wrk = application_get_worker (app, mp->wrk_index);
699
700 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
701 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
702 msg);
703 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
704 clib_memset (evt, 0, sizeof (*evt));
705 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
706 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
707 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
708 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
709}
710
Florin Coras04ae8272021-04-12 19:55:37 -0700711static void
712session_mq_transport_attr_handler (void *data)
713{
714 session_transport_attr_msg_t *mp = (session_transport_attr_msg_t *) data;
715 session_transport_attr_reply_msg_t *rmp;
716 svm_msg_q_msg_t _msg, *msg = &_msg;
717 app_worker_t *app_wrk;
718 session_event_t *evt;
719 application_t *app;
720 session_t *s;
721 int rv;
722
723 app = application_lookup (mp->client_index);
724 if (!app)
725 return;
726
727 if (!(s = session_get_from_handle_if_valid (mp->handle)))
728 {
729 clib_warning ("invalid handle %llu", mp->handle);
730 return;
731 }
732 app_wrk = app_worker_get (s->app_wrk_index);
733 if (app_wrk->app_index != app->app_index)
734 {
735 clib_warning ("app %u does not own session %llu", app->app_index,
736 mp->handle);
737 return;
738 }
739
740 rv = session_transport_attribute (s, mp->is_get, &mp->attr);
741
742 svm_msg_q_lock_and_alloc_msg_w_ring (
743 app_wrk->event_queue, SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT, msg);
744 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
745 clib_memset (evt, 0, sizeof (*evt));
746 evt->event_type = SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY;
747 rmp = (session_transport_attr_reply_msg_t *) evt->data;
748 rmp->handle = mp->handle;
749 rmp->retval = rv;
750 rmp->is_get = mp->is_get;
751 if (!rv && mp->is_get)
752 rmp->attr = mp->attr;
753 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
754}
755
Florin Corase09bd482022-03-21 10:38:01 -0700756void
757session_wrk_handle_evts_main_rpc (void *args)
758{
Florin Coras0dde1752022-04-04 10:10:58 -0700759 vlib_main_t *vm = vlib_get_main ();
Florin Coras94ba9312022-04-21 18:03:12 -0700760 clib_llist_index_t ei, next_ei;
761 session_evt_elt_t *he, *elt;
Florin Corase09bd482022-03-21 10:38:01 -0700762 session_worker_t *fwrk;
763 u32 thread_index;
764
Florin Coras0dde1752022-04-04 10:10:58 -0700765 vlib_worker_thread_barrier_sync (vm);
766
767 thread_index = pointer_to_uword (args);
Florin Corase09bd482022-03-21 10:38:01 -0700768 fwrk = session_main_get_worker (thread_index);
769
770 he = clib_llist_elt (fwrk->event_elts, fwrk->evts_pending_main);
Florin Coras94ba9312022-04-21 18:03:12 -0700771 ei = clib_llist_next_index (he, evt_list);
Florin Corase09bd482022-03-21 10:38:01 -0700772
Florin Coras94ba9312022-04-21 18:03:12 -0700773 while (ei != fwrk->evts_pending_main)
Florin Corase09bd482022-03-21 10:38:01 -0700774 {
Florin Coras94ba9312022-04-21 18:03:12 -0700775 elt = clib_llist_elt (fwrk->event_elts, ei);
776 next_ei = clib_llist_next_index (elt, evt_list);
Florin Corase09bd482022-03-21 10:38:01 -0700777 clib_llist_remove (fwrk->event_elts, evt_list, elt);
778 switch (elt->evt.event_type)
779 {
780 case SESSION_CTRL_EVT_LISTEN:
781 session_mq_listen_handler (fwrk, elt);
782 break;
783 case SESSION_CTRL_EVT_UNLISTEN:
784 session_mq_unlisten_handler (fwrk, elt);
785 break;
786 case SESSION_CTRL_EVT_APP_DETACH:
787 app_mq_detach_handler (fwrk, elt);
788 break;
789 case SESSION_CTRL_EVT_CONNECT_URI:
790 session_mq_connect_uri_handler (fwrk, elt);
791 break;
792 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
793 session_mq_accepted_reply_handler (fwrk, elt);
794 break;
Florin Coras309f7aa2022-03-18 08:33:08 -0700795 case SESSION_CTRL_EVT_CONNECT:
796 session_mq_connect_handler (fwrk, elt);
797 break;
Florin Corase09bd482022-03-21 10:38:01 -0700798 default:
799 clib_warning ("unhandled %u", elt->evt.event_type);
800 ALWAYS_ASSERT (0);
801 break;
802 }
Florin Coras94ba9312022-04-21 18:03:12 -0700803
804 /* Regrab element in case pool moved */
805 elt = clib_llist_elt (fwrk->event_elts, ei);
Florin Coras309f7aa2022-03-18 08:33:08 -0700806 if (!clib_llist_elt_is_linked (elt, evt_list))
807 {
808 session_evt_ctrl_data_free (fwrk, elt);
809 clib_llist_put (fwrk->event_elts, elt);
810 }
Florin Coras94ba9312022-04-21 18:03:12 -0700811 ei = next_ei;
Florin Corase09bd482022-03-21 10:38:01 -0700812 }
Florin Coras0dde1752022-04-04 10:10:58 -0700813
814 vlib_worker_thread_barrier_release (vm);
Florin Corase09bd482022-03-21 10:38:01 -0700815}
816
Dave Barach68b0fb02017-02-28 15:15:56 -0500817vlib_node_registration_t session_queue_node;
818
819typedef struct
820{
821 u32 session_index;
822 u32 server_thread_index;
823} session_queue_trace_t;
824
825/* packet trace format function */
826static u8 *
827format_session_queue_trace (u8 * s, va_list * args)
828{
829 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
830 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
831 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
832
Florin Coras30928f82020-01-27 19:21:28 -0800833 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500834 t->session_index, t->server_thread_index);
835 return s;
836}
837
Filip Tehlar22efac32021-10-06 12:54:51 +0000838#define foreach_session_queue_error \
839 _ (TX, tx, INFO, "Packets transmitted") \
840 _ (TIMER, timer, INFO, "Timer events") \
841 _ (NO_BUFFER, no_buffer, ERROR, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500842
843typedef enum
844{
Filip Tehlar22efac32021-10-06 12:54:51 +0000845#define _(f, n, s, d) SESSION_QUEUE_ERROR_##f,
Dave Barach68b0fb02017-02-28 15:15:56 -0500846 foreach_session_queue_error
847#undef _
848 SESSION_QUEUE_N_ERROR,
849} session_queue_error_t;
850
Filip Tehlar22efac32021-10-06 12:54:51 +0000851static vlib_error_desc_t session_error_counters[] = {
852#define _(f, n, s, d) { #n, d, VL_COUNTER_SEVERITY_##s },
Dave Barach68b0fb02017-02-28 15:15:56 -0500853 foreach_session_queue_error
854#undef _
855};
856
Florin Coras0d60a0f2018-06-29 02:02:08 -0700857enum
858{
859 SESSION_TX_NO_BUFFERS = -2,
860 SESSION_TX_NO_DATA,
861 SESSION_TX_OK
862};
863
Florin Coras66cf5e02018-06-08 09:17:39 -0700864static void
Florin Corasbb5e2fc2022-03-02 14:04:25 -0800865session_tx_trace_frame (vlib_main_t *vm, vlib_node_runtime_t *node,
866 u32 next_index, vlib_buffer_t **bufs, u16 n_segs,
867 session_t *s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700868{
Florin Corasbb5e2fc2022-03-02 14:04:25 -0800869 vlib_buffer_t **b = bufs;
870
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200871 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700872 {
Florin Corasbb5e2fc2022-03-02 14:04:25 -0800873 if (PREDICT_TRUE (vlib_trace_buffer (vm, node, next_index, b[0],
874 1 /* follow_chain */)))
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200875 {
876 session_queue_trace_t *t =
Florin Corasbb5e2fc2022-03-02 14:04:25 -0800877 vlib_add_trace (vm, node, b[0], sizeof (*t));
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200878 t->session_index = s->session_index;
879 t->server_thread_index = s->thread_index;
880 n_trace--;
881 }
Florin Corasbb5e2fc2022-03-02 14:04:25 -0800882 b++;
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200883 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700884 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200885 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700886}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700887
Marvin Liu06542422022-08-16 06:49:09 +0000888always_inline int
889session_tx_fill_dma_transfers (session_worker_t *wrk,
890 session_tx_context_t *ctx, vlib_buffer_t *b)
Florin Coras8e43d042018-05-04 15:46:57 -0700891{
Marvin Liu06542422022-08-16 06:49:09 +0000892 vlib_main_t *vm = wrk->vm;
893 u32 len_to_deq;
894 u8 *data0 = NULL;
895 int n_bytes_read, len_write;
896 svm_fifo_seg_t data_fs[2];
897
898 u32 n_segs = 2;
899 u16 n_transfers = 0;
900 /*
901 * Start with the first buffer in chain
902 */
903 b->error = 0;
904 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
905 b->current_data = 0;
906 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
907 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
908
909 n_bytes_read = svm_fifo_segments (ctx->s->tx_fifo, ctx->sp.tx_offset,
910 data_fs, &n_segs, len_to_deq);
911
912 len_write = n_bytes_read;
913 ASSERT (n_bytes_read == len_to_deq);
914
915 while (n_bytes_read)
916 {
917 wrk->batch_num++;
918 vlib_dma_batch_add (vm, wrk->batch, data0, data_fs[n_transfers].data,
919 data_fs[n_transfers].len);
920 data0 += data_fs[n_transfers].len;
921 n_bytes_read -= data_fs[n_transfers].len;
922 n_transfers++;
923 }
924 return len_write;
925}
926
927always_inline int
928session_tx_fill_dma_transfers_tail (session_worker_t *wrk,
929 session_tx_context_t *ctx,
930 vlib_buffer_t *b, u32 len_to_deq, u8 *data)
931{
932 vlib_main_t *vm = wrk->vm;
933 int n_bytes_read, len_write;
934 svm_fifo_seg_t data_fs[2];
935 u32 n_segs = 2;
936 u16 n_transfers = 0;
937
938 n_bytes_read = svm_fifo_segments (ctx->s->tx_fifo, ctx->sp.tx_offset,
939 data_fs, &n_segs, len_to_deq);
940
941 len_write = n_bytes_read;
942
943 ASSERT (n_bytes_read == len_to_deq);
944
945 while (n_bytes_read)
946 {
947 wrk->batch_num++;
948 vlib_dma_batch_add (vm, wrk->batch, data, data_fs[n_transfers].data,
949 data_fs[n_transfers].len);
950 data += data_fs[n_transfers].len;
951 n_bytes_read -= data_fs[n_transfers].len;
952 n_transfers++;
953 }
954
955 return len_write;
956}
957
958always_inline int
959session_tx_copy_data (session_worker_t *wrk, session_tx_context_t *ctx,
960 vlib_buffer_t *b, u32 len_to_deq, u8 *data0)
961{
962 int n_bytes_read;
963 if (PREDICT_TRUE (!wrk->dma_enabled))
964 n_bytes_read =
965 svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset, len_to_deq, data0);
966 else
967 n_bytes_read = session_tx_fill_dma_transfers (wrk, ctx, b);
968 return n_bytes_read;
969}
970
971always_inline int
972session_tx_copy_data_tail (session_worker_t *wrk, session_tx_context_t *ctx,
973 vlib_buffer_t *b, u32 len_to_deq, u8 *data)
974{
975 int n_bytes_read;
976 if (PREDICT_TRUE (!wrk->dma_enabled))
977 n_bytes_read =
978 svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset, len_to_deq, data);
979 else
980 n_bytes_read =
981 session_tx_fill_dma_transfers_tail (wrk, ctx, b, len_to_deq, data);
982 return n_bytes_read;
983}
984
985always_inline void
986session_tx_fifo_chain_tail (session_worker_t *wrk, session_tx_context_t *ctx,
987 vlib_buffer_t *b, u16 *n_bufs, u8 peek_data)
988{
989 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700990 vlib_buffer_t *chain_b, *prev_b;
991 u32 chain_bi0, to_deq, left_from_seg;
Marvin Liu06542422022-08-16 06:49:09 +0000992 int len_to_deq, n_bytes_read;
Florin Coras8e43d042018-05-04 15:46:57 -0700993 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700994
Florin Coras8e43d042018-05-04 15:46:57 -0700995 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
996 b->total_length_not_including_first_buffer = 0;
997
998 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000999 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -07001000 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -07001001 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -07001002 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -07001003 {
Florin Coras8e43d042018-05-04 15:46:57 -07001004 prev_b = chain_b;
1005 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001006
1007 *n_bufs -= 1;
Florin Coras1d7a6632021-05-17 23:44:53 -07001008 chain_bi0 = ctx->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -07001009 chain_b = vlib_get_buffer (vm, chain_bi0);
1010 chain_b->current_data = 0;
1011 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001012 if (peek_data)
1013 {
Marvin Liu06542422022-08-16 06:49:09 +00001014 n_bytes_read =
1015 session_tx_copy_data_tail (wrk, ctx, b, len_to_deq, data);
Florin Coras70f879d2020-03-13 17:54:42 +00001016 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001017 }
1018 else
1019 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001020 if (ctx->transport_vft->transport_options.tx_type ==
1021 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001022 {
Florin Coras288eaab2019-02-03 15:26:14 -08001023 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -07001024 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001025 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +03001026 u32 offset;
1027
Florin Coras7fb0fe12018-04-09 09:24:52 -07001028 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -07001029 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +03001030 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
1031 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001032 ASSERT (n_bytes_read > 0);
1033
1034 hdr->data_offset += n_bytes_read;
1035 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +08001036 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +03001037 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +08001038 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001039 if (ctx->left_to_snd > n_bytes_read)
1040 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
1041 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +08001042 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001043 else if (ctx->left_to_snd == n_bytes_read)
1044 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
1045 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -07001046 }
1047 else
Florin Coras87b15ce2019-04-28 21:16:30 -07001048 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
1049 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001050 }
Florin Coras8e43d042018-05-04 15:46:57 -07001051 ASSERT (n_bytes_read == len_to_deq);
1052 chain_b->current_length = n_bytes_read;
1053 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001054
1055 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -07001056 prev_b->next_buffer = chain_bi0;
1057 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001058
1059 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -07001060 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001061
Florin Corasb2215d62017-08-01 16:56:58 -07001062 to_deq -= n_bytes_read;
1063 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -07001064 break;
1065 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001066 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -07001067 && b->total_length_not_including_first_buffer == left_from_seg);
1068 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001069}
1070
Florin Coras8e43d042018-05-04 15:46:57 -07001071always_inline void
Marvin Liu06542422022-08-16 06:49:09 +00001072session_tx_fill_buffer (session_worker_t *wrk, session_tx_context_t *ctx,
1073 vlib_buffer_t *b, u16 *n_bufs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001074{
1075 u32 len_to_deq;
1076 u8 *data0;
1077 int n_bytes_read;
Florin Coras8e43d042018-05-04 15:46:57 -07001078 /*
1079 * Start with the first buffer in chain
1080 */
1081 b->error = 0;
1082 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
1083 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -07001084
Florin Coras1ee78302019-02-05 15:51:15 -08001085 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -07001086 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
1087
Florin Coras7fb0fe12018-04-09 09:24:52 -07001088 if (peek_data)
1089 {
Marvin Liu06542422022-08-16 06:49:09 +00001090 n_bytes_read = session_tx_copy_data (wrk, ctx, b, len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -07001091 ASSERT (n_bytes_read > 0);
1092 /* Keep track of progress locally, transport is also supposed to
1093 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +00001094 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001095 }
1096 else
1097 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001098 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -07001099 {
1100 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -08001101 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -07001102 u16 deq_now;
1103 u32 offset;
1104
1105 ASSERT (hdr->data_length > hdr->data_offset);
1106 deq_now = clib_min (hdr->data_length - hdr->data_offset,
1107 len_to_deq);
1108 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
1109 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
1110 ASSERT (n_bytes_read > 0);
1111
liuyacan0242fd82021-08-20 10:25:43 +08001112 if (transport_connection_is_cless (ctx->tc))
Florin Coras8e43d042018-05-04 15:46:57 -07001113 {
Florin Corasd96859f2023-06-24 14:43:42 -07001114 clib_memcpy_fast (data0 - sizeof (session_dgram_hdr_t), hdr,
1115 sizeof (*hdr));
Florin Coras8e43d042018-05-04 15:46:57 -07001116 }
1117 hdr->data_offset += n_bytes_read;
1118 if (hdr->data_offset == hdr->data_length)
1119 {
1120 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
1121 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001122 if (ctx->left_to_snd > n_bytes_read)
1123 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
1124 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -07001125 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001126 else if (ctx->left_to_snd == n_bytes_read)
1127 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
1128 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -07001129 }
Florin Coras7fb0fe12018-04-09 09:24:52 -07001130 else
1131 {
Florin Coras87b15ce2019-04-28 21:16:30 -07001132 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
1133 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -07001134 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001135 }
1136 }
Marvin Liu06542422022-08-16 06:49:09 +00001137
Florin Coras8e43d042018-05-04 15:46:57 -07001138 b->current_length = n_bytes_read;
1139 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -05001140
Florin Coras8e43d042018-05-04 15:46:57 -07001141 /*
1142 * Fill in the remaining buffers in the chain, if any
1143 */
1144 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
Marvin Liu06542422022-08-16 06:49:09 +00001145 session_tx_fifo_chain_tail (wrk, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -07001146}
1147
1148always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -08001149session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001150{
1151 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -08001152 {
Florin Corasa6789742019-08-07 19:12:38 -07001153 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
1154 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -07001155 /* Can retransmit for closed sessions but can't send new data if
1156 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -07001157 else if (s->session_state < SESSION_STATE_READY)
liuyacan1b6b09b2021-08-16 10:51:13 +08001158 {
1159 /* Allow accepting session to send custom packets.
1160 * For instance, tcp want to send acks in established, but
1161 * the app has not called accept() yet */
1162 if (s->session_state == SESSION_STATE_ACCEPTING &&
1163 (s->flags & SESSION_F_CUSTOM_TX))
1164 return 0;
1165 return 1;
1166 }
Florin Corasa6789742019-08-07 19:12:38 -07001167 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1168 {
1169 /* Allow closed transports to still send custom packets.
1170 * For instance, tcp may want to send acks in time-wait. */
1171 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
1172 && (s->flags & SESSION_F_CUSTOM_TX))
1173 return 0;
1174 return 2;
1175 }
Florin Corase04c2992017-03-01 08:17:34 -08001176 }
Florin Coras227660b2023-01-06 11:38:49 -08001177 else
1178 {
1179 if (s->session_state == SESSION_STATE_TRANSPORT_DELETED)
1180 return 2;
1181 }
Florin Coras8e43d042018-05-04 15:46:57 -07001182 return 0;
1183}
Dave Barach68b0fb02017-02-28 15:15:56 -05001184
Florin Coras8e43d042018-05-04 15:46:57 -07001185always_inline transport_connection_t *
1186session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
1187{
1188 if (peek_data)
1189 {
1190 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1191 ctx->s->thread_index);
1192 }
1193 else
1194 {
1195 if (ctx->s->session_state == SESSION_STATE_LISTENING)
1196 return ctx->transport_vft->get_listener (ctx->s->connection_index);
1197 else
1198 {
1199 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1200 ctx->s->thread_index);
1201 }
1202 }
1203}
Florin Coras6a9b68b2017-11-21 04:20:42 -08001204
Florin Coras8e43d042018-05-04 15:46:57 -07001205always_inline void
1206session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -07001207 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001208{
1209 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +00001210
1211 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -06001212 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +00001213
Dave Barach68b0fb02017-02-28 15:15:56 -05001214 if (peek_data)
1215 {
Florin Coras9d063042017-09-14 03:08:00 -04001216 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +00001217 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -07001218 {
1219 ctx->max_len_to_snd = 0;
1220 return;
1221 }
Florin Coras70f879d2020-03-13 17:54:42 +00001222 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -05001223 }
Florin Coras7fb0fe12018-04-09 09:24:52 -07001224 else
1225 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001226 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001227 {
Florin Coras6e0ee952020-04-20 21:07:06 +00001228 u32 len, chain_limit;
1229
Florin Coras8e43d042018-05-04 15:46:57 -07001230 if (ctx->max_dequeue <= sizeof (ctx->hdr))
1231 {
1232 ctx->max_len_to_snd = 0;
1233 return;
1234 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001235
Florin Coras288eaab2019-02-03 15:26:14 -08001236 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -07001237 (u8 *) & ctx->hdr);
Florin Coras5b704f42023-02-14 19:12:30 -08001238 /* Zero length dgrams not supported */
1239 if (PREDICT_FALSE (ctx->hdr.data_length == 0))
1240 {
1241 svm_fifo_dequeue_drop (ctx->s->tx_fifo, sizeof (ctx->hdr));
1242 ctx->max_len_to_snd = 0;
1243 return;
1244 }
Florin Corasc8767c42023-06-27 19:45:59 -07001245 /* We cannot be sure apps have not enqueued incomplete dgrams */
1246 if (PREDICT_FALSE (ctx->max_dequeue <
1247 ctx->hdr.data_length + sizeof (ctx->hdr)))
1248 {
1249 ctx->max_len_to_snd = 0;
1250 return;
1251 }
Florin Coras8e43d042018-05-04 15:46:57 -07001252 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001253 len = ctx->hdr.data_length - ctx->hdr.data_offset;
1254
Dou Chao243a0432022-11-29 19:41:34 +08001255 if (ctx->hdr.gso_size)
1256 {
1257 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, ctx->hdr.gso_size);
1258 }
1259
Florin Coras6e0ee952020-04-20 21:07:06 +00001260 /* Process multiple dgrams if smaller than min (buf_space, mss).
1261 * This avoids handling multiple dgrams if they require buffer
1262 * chains */
1263 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
1264 ctx->sp.snd_mss);
1265 if (ctx->hdr.data_length <= chain_limit)
1266 {
1267 u32 first_dgram_len, dgram_len, offset, max_offset;
1268 session_dgram_hdr_t hdr;
1269
1270 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
1271 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
1272 first_dgram_len = len;
1273 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
1274
1275 while (offset < max_offset)
1276 {
1277 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
1278 (u8 *) & hdr);
Florin Coras6e0ee952020-04-20 21:07:06 +00001279 dgram_len = hdr.data_length - hdr.data_offset;
Florin Corasc21775b2023-01-09 16:00:10 -08001280 if (offset + sizeof (hdr) + hdr.data_length >
1281 ctx->max_dequeue ||
1282 first_dgram_len != dgram_len)
Florin Coras6e0ee952020-04-20 21:07:06 +00001283 break;
Florin Coras5b704f42023-02-14 19:12:30 -08001284 /* Assert here to allow test above with zero length dgrams */
1285 ASSERT (hdr.data_length > hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001286 len += dgram_len;
1287 offset += sizeof (hdr) + hdr.data_length;
1288 }
1289 }
1290
1291 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001292 }
1293 }
Florin Coras8e43d042018-05-04 15:46:57 -07001294 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001295
1296 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +00001297 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -07001298 {
1299 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +00001300 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
1301 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
1302 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -07001303 /* TODO Nagle ? */
1304 }
1305 else
1306 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001307 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +00001308 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -07001309 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001310
Florin Corasf08f26d2018-05-10 13:20:47 -07001311 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +00001312 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -07001313 if (ctx->n_segs_per_evt > max_segs)
1314 {
1315 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +00001316 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -07001317 }
1318
Florin Coras1ee78302019-02-05 15:51:15 -08001319 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +08001320 if (ctx->n_segs_per_evt > 1)
1321 {
1322 u32 n_bytes_last_seg, n_bufs_last_seg;
1323
1324 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
1325 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
1326 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
1327 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1328 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
1329 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
1330 + n_bufs_last_seg;
1331 }
1332 else
1333 {
1334 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
1335 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1336 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
1337 }
1338
Florin Coras70f879d2020-03-13 17:54:42 +00001339 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
1340 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -08001341 n_bytes_per_buf -
1342 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -07001343}
Florin Corasf6d68ed2017-05-07 19:12:02 -07001344
Florin Corasaaf64a22020-02-23 01:37:34 +00001345always_inline void
1346session_tx_maybe_reschedule (session_worker_t * wrk,
1347 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +00001348 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +00001349{
1350 session_t *s = ctx->s;
1351
1352 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +00001353 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Coras9bd71be2022-01-09 18:18:10 -08001354 {
1355 if (svm_fifo_set_event (s->tx_fifo))
1356 session_evt_add_head_old (wrk, elt);
1357 }
1358 else
1359 {
1360 transport_connection_deschedule (ctx->tc);
1361 }
Florin Corasaaf64a22020-02-23 01:37:34 +00001362}
1363
Marvin Liu06542422022-08-16 06:49:09 +00001364always_inline void
1365session_tx_add_pending_buffer (session_worker_t *wrk, u32 bi, u32 next_index)
1366{
1367 if (PREDICT_TRUE (!wrk->dma_enabled))
1368 {
1369 vec_add1 (wrk->pending_tx_buffers, bi);
1370 vec_add1 (wrk->pending_tx_nexts, next_index);
1371 }
1372 else
1373 {
1374 session_dma_transfer *dma_transfer = &wrk->dma_trans[wrk->trans_tail];
1375 vec_add1 (dma_transfer->pending_tx_buffers, bi);
1376 vec_add1 (dma_transfer->pending_tx_nexts, next_index);
1377 }
1378}
1379
Florin Coras8e43d042018-05-04 15:46:57 -07001380always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001381session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1382 vlib_node_runtime_t * node,
1383 session_evt_elt_t * elt,
1384 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001385{
Simon Zhangae16a982020-03-31 20:56:22 +08001386 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001387 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001388 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001389 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001390 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001391 transport_proto_t tp;
1392 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001393 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001394
Florin Coras1bcad5c2019-01-09 20:04:38 -08001395 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001396 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001397 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001398 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001399 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001400 }
1401
Florin Coras1bcad5c2019-01-09 20:04:38 -08001402 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001403 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001404
Florin Coras1bcad5c2019-01-09 20:04:38 -08001405 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001406 ctx->transport_vft = transport_protocol_get_vft (tp);
1407 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001408
1409 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1410 {
1411 if (ctx->transport_vft->flush_data)
1412 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001413 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001414 }
1415
Florin Coras26dd6de2019-07-23 23:54:47 -07001416 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1417 {
1418 u32 n_custom_tx;
1419 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001420 ctx->sp.max_burst_size = max_burst;
1421 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001422 *n_tx_packets += n_custom_tx;
emmanuelb1454f82023-12-21 01:55:41 -08001423 if (PREDICT_FALSE (ctx->s->session_state >=
1424 SESSION_STATE_TRANSPORT_CLOSED))
1425 {
1426 svm_fifo_unset_event (ctx->s->tx_fifo);
1427 return SESSION_TX_OK;
1428 }
Florin Coras26dd6de2019-07-23 23:54:47 -07001429 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001430 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001431 {
1432 session_evt_add_old (wrk, elt);
1433 return SESSION_TX_OK;
1434 }
1435 }
1436
Florin Coras9bd71be2022-01-09 18:18:10 -08001437 /* Connection previously descheduled because it had no data to send.
1438 * Clear descheduled flag and reset pacer if in use */
1439 if (transport_connection_is_descheduled (ctx->tc))
1440 transport_connection_clear_descheduled (ctx->tc);
1441
Florin Coras70f879d2020-03-13 17:54:42 +00001442 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001443
Florin Coras70f879d2020-03-13 17:54:42 +00001444 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001445 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001446 /* If the deschedule flag was set, remove session from scheduler.
1447 * Transport is responsible for rescheduling this session. */
1448 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1449 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001450 /* Request to postpone the session, e.g., zero-wnd and transport
1451 * is not currently probing */
1452 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1453 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001454 /* This flow queue is "empty" so it should be re-evaluated before
1455 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001456 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001457 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001458
Florin Coras0d60a0f2018-06-29 02:02:08 -07001459 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001460 }
1461
Florin Coras11e9e352019-11-13 19:09:47 -08001462 if (transport_connection_is_tx_paced (ctx->tc))
1463 {
1464 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1465 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1466 {
1467 session_evt_add_head_old (wrk, elt);
1468 return SESSION_TX_NO_DATA;
1469 }
Florin Coras70f879d2020-03-13 17:54:42 +00001470 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1471 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1472 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001473 }
1474
Florin Coras8e43d042018-05-04 15:46:57 -07001475 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001476 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001477
Florin Coras8e43d042018-05-04 15:46:57 -07001478 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001479 {
Florin Coras11e9e352019-11-13 19:09:47 -08001480 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001481 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001482 return SESSION_TX_NO_DATA;
1483 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001484
Florin Coras1d7a6632021-05-17 23:44:53 -07001485 vec_validate_aligned (ctx->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001486 CLIB_CACHE_LINE_BYTES);
Florin Coras1d7a6632021-05-17 23:44:53 -07001487 n_bufs = vlib_buffer_alloc (vm, ctx->tx_buffers, ctx->n_bufs_needed);
Simon Zhangae16a982020-03-31 20:56:22 +08001488 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001489 {
Florin Coras2068fd42019-01-31 14:35:50 -08001490 if (n_bufs)
Florin Coras1d7a6632021-05-17 23:44:53 -07001491 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001492 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001493 vlib_node_increment_counter (wrk->vm, node->node_index,
1494 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001495 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001496 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001497
Florin Coras7808df22020-11-02 18:00:32 -08001498 if (transport_connection_is_tx_paced (ctx->tc))
1499 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001500
Florin Corasf08f26d2018-05-10 13:20:47 -07001501 ctx->left_to_snd = ctx->max_len_to_snd;
1502 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001503
Florin Corasf66cc802021-04-08 19:10:07 -07001504 vec_validate (ctx->transport_pending_bufs, n_left);
1505
Florin Coras66cf5e02018-06-08 09:17:39 -07001506 while (n_left >= 4)
1507 {
1508 vlib_buffer_t *b0, *b1;
1509 u32 bi0, bi1;
1510
Florin Coras1d7a6632021-05-17 23:44:53 -07001511 pbi = ctx->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001512 pb = vlib_get_buffer (vm, pbi);
1513 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras1d7a6632021-05-17 23:44:53 -07001514 pbi = ctx->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001515 pb = vlib_get_buffer (vm, pbi);
1516 vlib_prefetch_buffer_header (pb, STORE);
1517
Florin Coras1d7a6632021-05-17 23:44:53 -07001518 bi0 = ctx->tx_buffers[--n_bufs];
1519 bi1 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001520
1521 b0 = vlib_get_buffer (vm, bi0);
1522 b1 = vlib_get_buffer (vm, bi1);
1523
Marvin Liu06542422022-08-16 06:49:09 +00001524 session_tx_fill_buffer (wrk, ctx, b0, &n_bufs, peek_data);
1525 session_tx_fill_buffer (wrk, ctx, b1, &n_bufs, peek_data);
Florin Coras66cf5e02018-06-08 09:17:39 -07001526
Florin Corasf66cc802021-04-08 19:10:07 -07001527 ctx->transport_pending_bufs[ctx->n_segs_per_evt - n_left] = b0;
1528 ctx->transport_pending_bufs[ctx->n_segs_per_evt - n_left + 1] = b1;
Florin Coras66cf5e02018-06-08 09:17:39 -07001529 n_left -= 2;
1530
Marvin Liu06542422022-08-16 06:49:09 +00001531 session_tx_add_pending_buffer (wrk, bi0, next_index);
1532 session_tx_add_pending_buffer (wrk, bi1, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001533 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001534 while (n_left)
1535 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001536 vlib_buffer_t *b0;
1537 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001538
Florin Coras91ca4622018-06-30 11:27:59 -07001539 if (n_left > 1)
1540 {
Florin Coras1d7a6632021-05-17 23:44:53 -07001541 pbi = ctx->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001542 pb = vlib_get_buffer (vm, pbi);
1543 vlib_prefetch_buffer_header (pb, STORE);
1544 }
1545
Florin Coras1d7a6632021-05-17 23:44:53 -07001546 bi0 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001547 b0 = vlib_get_buffer (vm, bi0);
Marvin Liu06542422022-08-16 06:49:09 +00001548 session_tx_fill_buffer (wrk, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001549
Florin Corasf66cc802021-04-08 19:10:07 -07001550 ctx->transport_pending_bufs[ctx->n_segs_per_evt - n_left] = b0;
Florin Coras66cf5e02018-06-08 09:17:39 -07001551 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001552
Marvin Liu06542422022-08-16 06:49:09 +00001553 session_tx_add_pending_buffer (wrk, bi0, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001554 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001555
Florin Corasf66cc802021-04-08 19:10:07 -07001556 /* Ask transport to push headers */
1557 ctx->transport_vft->push_header (ctx->tc, ctx->transport_pending_bufs,
1558 ctx->n_segs_per_evt);
1559
Florin Coras60183db2019-07-20 15:53:16 -07001560 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Corasbb5e2fc2022-03-02 14:04:25 -08001561 session_tx_trace_frame (vm, node, next_index, ctx->transport_pending_bufs,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001562 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001563
Florin Coras2068fd42019-01-31 14:35:50 -08001564 if (PREDICT_FALSE (n_bufs))
Florin Coras1d7a6632021-05-17 23:44:53 -07001565 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -07001566
Florin Corasf08f26d2018-05-10 13:20:47 -07001567 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001568
Florin Corascca96182019-07-19 07:34:13 -07001569 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
Steven Luong20de85b2022-10-17 10:39:06 -07001570 ctx->s->tx_fifo->shr->has_event, wrk->last_vlib_time);
Florin Corascca96182019-07-19 07:34:13 -07001571
Florin Corasf08f26d2018-05-10 13:20:47 -07001572 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001573
1574 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1575 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001576 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001577 session_evt_add_old (wrk, elt);
1578 else
Florin Coras70f879d2020-03-13 17:54:42 +00001579 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001580
Florin Corasab57edb2020-04-07 03:46:07 +00001581 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001582 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001583 u32 n_dequeued = ctx->max_len_to_snd;
1584 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1585 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1586 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001587 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001588 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001589 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001590}
1591
1592int
Florin Coras60183db2019-07-20 15:53:16 -07001593session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1594 vlib_node_runtime_t * node,
1595 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001596{
Florin Coras60183db2019-07-20 15:53:16 -07001597 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001598}
1599
1600int
Florin Coras60183db2019-07-20 15:53:16 -07001601session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1602 vlib_node_runtime_t * node,
1603 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001604{
Florin Coras60183db2019-07-20 15:53:16 -07001605 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001606}
1607
Florin Coras371ca502018-02-21 12:07:41 -08001608int
Florin Coras60183db2019-07-20 15:53:16 -07001609session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001610 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001611 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001612{
Florin Coras9f86d222020-03-23 15:34:22 +00001613 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001614 session_t *s = wrk->ctx.s;
Florin Coras8f3147d2023-07-28 09:11:23 -07001615 clib_llist_index_t ei;
Florin Coras9f86d222020-03-23 15:34:22 +00001616 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001617
Steven Luong947aa8f2023-10-11 14:09:21 -07001618 if (PREDICT_FALSE ((s->session_state >= SESSION_STATE_TRANSPORT_CLOSED) ||
1619 (s->session_state == SESSION_STATE_CONNECTING &&
1620 (s->flags & SESSION_F_HALF_OPEN))))
Florin Corasef915342018-09-29 10:23:06 -07001621 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001622
1623 /* Clear custom-tx flag used to request reschedule for tx */
1624 s->flags &= ~SESSION_F_CUSTOM_TX;
1625
Florin Coras3e157102022-02-04 13:31:25 -08001626 sp->flags = 0;
1627 sp->bytes_dequeued = 0;
Florin Coras89235c72020-11-02 19:00:10 -08001628 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001629 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001630
Florin Coras8f3147d2023-07-28 09:11:23 -07001631 /* Grab elt index since app transports can enqueue events on tx */
1632 ei = clib_llist_entry_index (wrk->event_elts, elt);
1633
Florin Coras9f86d222020-03-23 15:34:22 +00001634 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1635 *n_tx_packets += n_packets;
1636
Florin Coras8f3147d2023-07-28 09:11:23 -07001637 elt = clib_llist_elt (wrk->event_elts, ei);
1638
Florin Coras9f86d222020-03-23 15:34:22 +00001639 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001640 {
1641 session_evt_add_old (wrk, elt);
1642 }
Florin Coras9f86d222020-03-23 15:34:22 +00001643 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001644 {
1645 svm_fifo_unset_event (s->tx_fifo);
1646 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1647 if (svm_fifo_set_event (s->tx_fifo))
1648 session_evt_add_head_old (wrk, elt);
1649 }
1650
Florin Coras3e157102022-02-04 13:31:25 -08001651 if (sp->bytes_dequeued &&
1652 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->bytes_dequeued))
Florin Coras1e6a0f62021-03-09 08:36:25 -08001653 session_dequeue_notify (s);
1654
Florin Corased8db522020-02-27 04:32:51 +00001655 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001656}
1657
Florin Coras288eaab2019-02-03 15:26:14 -08001658always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001659session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001660{
Florin Corasdb999df2020-09-21 10:45:56 -07001661 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1662 return 0;
1663
1664 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1665 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001666}
1667
Florin Coras60183db2019-07-20 15:53:16 -07001668always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001669session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1670{
1671 clib_llist_index_t ei;
1672 void (*fp) (void *);
1673 session_event_t *e;
1674 session_t *s;
1675
1676 ei = clib_llist_entry_index (wrk->event_elts, elt);
1677 e = &elt->evt;
1678
1679 switch (e->event_type)
1680 {
1681 case SESSION_CTRL_EVT_RPC:
1682 fp = e->rpc_args.fp;
1683 (*fp) (e->rpc_args.arg);
1684 break;
liuyacan534468e2021-05-09 03:50:40 +00001685 case SESSION_CTRL_EVT_HALF_CLOSE:
1686 s = session_get_from_handle_if_valid (e->session_handle);
1687 if (PREDICT_FALSE (!s))
1688 break;
1689 session_transport_half_close (s);
1690 break;
Florin Coras458089b2019-08-21 16:20:44 -07001691 case SESSION_CTRL_EVT_CLOSE:
1692 s = session_get_from_handle_if_valid (e->session_handle);
1693 if (PREDICT_FALSE (!s))
1694 break;
1695 session_transport_close (s);
1696 break;
1697 case SESSION_CTRL_EVT_RESET:
1698 s = session_get_from_handle_if_valid (e->session_handle);
1699 if (PREDICT_FALSE (!s))
1700 break;
1701 session_transport_reset (s);
1702 break;
1703 case SESSION_CTRL_EVT_LISTEN:
Florin Corase09bd482022-03-21 10:38:01 -07001704 session_mq_listen_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001705 break;
1706 case SESSION_CTRL_EVT_LISTEN_URI:
Florin Corase09bd482022-03-21 10:38:01 -07001707 session_mq_listen_uri_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001708 break;
1709 case SESSION_CTRL_EVT_UNLISTEN:
Florin Corasc53eb722021-06-22 14:20:39 -07001710 session_mq_unlisten_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001711 break;
1712 case SESSION_CTRL_EVT_CONNECT:
Florin Corasaf972212021-05-05 09:54:00 -07001713 session_mq_connect_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001714 break;
1715 case SESSION_CTRL_EVT_CONNECT_URI:
Florin Corase09bd482022-03-21 10:38:01 -07001716 session_mq_connect_uri_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001717 break;
liuyacan534468e2021-05-09 03:50:40 +00001718 case SESSION_CTRL_EVT_SHUTDOWN:
1719 session_mq_shutdown_handler (session_evt_ctrl_data (wrk, elt));
1720 break;
Florin Coras458089b2019-08-21 16:20:44 -07001721 case SESSION_CTRL_EVT_DISCONNECT:
1722 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1723 break;
1724 case SESSION_CTRL_EVT_DISCONNECTED:
1725 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1726 break;
1727 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
Florin Corase09bd482022-03-21 10:38:01 -07001728 session_mq_accepted_reply_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001729 break;
1730 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1731 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1732 elt));
1733 break;
1734 case SESSION_CTRL_EVT_RESET_REPLY:
1735 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1736 break;
1737 case SESSION_CTRL_EVT_WORKER_UPDATE:
1738 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1739 break;
1740 case SESSION_CTRL_EVT_APP_DETACH:
Florin Corase09bd482022-03-21 10:38:01 -07001741 app_mq_detach_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001742 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001743 case SESSION_CTRL_EVT_APP_WRK_RPC:
1744 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1745 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001746 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1747 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1748 break;
Florin Coras458089b2019-08-21 16:20:44 -07001749 default:
1750 clib_warning ("unhandled event type %d", e->event_type);
1751 }
1752
1753 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001754 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras458089b2019-08-21 16:20:44 -07001755 if (!clib_llist_elt_is_linked (elt, evt_list))
1756 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001757 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001758 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1759 session_evt_ctrl_data_free (wrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -07001760 clib_llist_put (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001761 }
Srikanth Akula73570432020-04-06 19:19:49 -07001762 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001763}
1764
1765always_inline void
1766session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001767 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001768{
Florin Coras60183db2019-07-20 15:53:16 -07001769 session_main_t *smm = &session_main;
1770 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001771 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001772 session_event_t *e;
1773 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001774
Florin Corasb0ffbee2019-07-21 19:23:46 -07001775 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001776 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001777
Florin Coras60183db2019-07-20 15:53:16 -07001778 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001779 {
Florin Coras60183db2019-07-20 15:53:16 -07001780 case SESSION_IO_EVT_TX_FLUSH:
1781 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001782 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001783 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001784 break;
Tianyu Li40ba6922021-08-26 10:03:43 +08001785 CLIB_PREFETCH (s->tx_fifo, sizeof (*(s->tx_fifo)), LOAD);
Florin Coras60183db2019-07-20 15:53:16 -07001786 wrk->ctx.s = s;
1787 /* Spray packets in per session type frames, since they go to
1788 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001789 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001790 break;
1791 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001792 s = session_event_get_session (wrk, e);
Florin Coras9eaf3772023-10-10 12:39:55 -07001793 if (!s || s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
Florin Coras60183db2019-07-20 15:53:16 -07001794 break;
1795 transport_app_rx_evt (session_get_transport_proto (s),
1796 s->connection_index, s->thread_index);
1797 break;
Florin Coras60183db2019-07-20 15:53:16 -07001798 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001799 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001800 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1801 break;
1802 svm_fifo_unset_event (s->rx_fifo);
1803 app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras0242d302022-12-22 15:03:44 -08001804 app_worker_rx_notify (app_wrk, s);
Florin Coras60183db2019-07-20 15:53:16 -07001805 break;
Florin Corasaeb7c1c2023-03-10 10:22:21 -08001806 case SESSION_IO_EVT_TX_MAIN:
1807 s = session_get_if_valid (e->session_index, 0 /* main thread */);
1808 if (PREDICT_FALSE (!s))
1809 break;
Florin Coras60183db2019-07-20 15:53:16 -07001810 wrk->ctx.s = s;
1811 if (PREDICT_TRUE (s != 0))
Florin Corasaeb7c1c2023-03-10 10:22:21 -08001812 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001813 break;
Florin Coras60183db2019-07-20 15:53:16 -07001814 default:
1815 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001816 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001817
Steven Luong20de85b2022-10-17 10:39:06 -07001818 SESSION_EVT (SESSION_EVT_IO_EVT_COUNTS, e->event_type, 1, wrk);
Srikanth Akula73570432020-04-06 19:19:49 -07001819
Florin Corasb0ffbee2019-07-21 19:23:46 -07001820 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001821 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001822 if (!clib_llist_elt_is_linked (elt, evt_list))
Florin Coras46b8b1a2021-05-17 19:09:33 -07001823 clib_llist_put (wrk->event_elts, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001824}
1825
Florin Coras458089b2019-08-21 16:20:44 -07001826static const u32 session_evt_msg_sizes[] = {
1827#define _(symc, sym) \
1828 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1829 foreach_session_ctrl_evt
1830#undef _
1831};
Florin Coras458089b2019-08-21 16:20:44 -07001832
1833always_inline void
Florin Coras5384cca2022-01-20 18:10:26 -08001834session_update_time_subscribers (session_main_t *smm, clib_time_type_t now,
1835 u32 thread_index)
1836{
1837 session_update_time_fn *fn;
1838
1839 vec_foreach (fn, smm->update_time_fns)
1840 (*fn) (now, thread_index);
1841}
1842
1843always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001844session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1845{
1846 session_evt_elt_t *elt;
1847
1848 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1849 {
1850 elt = session_evt_alloc_ctrl (wrk);
1851 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1852 {
1853 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1854 elt->evt.event_type = evt->event_type;
1855 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1856 session_evt_msg_sizes[evt->event_type]);
1857 }
1858 else
1859 {
1860 /* Internal control events fit into io events footprint */
1861 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1862 }
1863 }
1864 else
1865 {
1866 elt = session_evt_alloc_new (wrk);
1867 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1868 }
1869}
1870
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001871static void
1872session_flush_pending_tx_buffers (session_worker_t * wrk,
1873 vlib_node_runtime_t * node)
1874{
Benoît Ganne10bb21f2021-09-08 16:26:52 +02001875 vlib_buffer_enqueue_to_next_vec (wrk->vm, node, &wrk->pending_tx_buffers,
1876 &wrk->pending_tx_nexts,
1877 vec_len (wrk->pending_tx_nexts));
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001878 vec_reset_length (wrk->pending_tx_buffers);
1879 vec_reset_length (wrk->pending_tx_nexts);
1880}
1881
Florin Coras41d5f542021-01-15 13:49:33 -08001882int
1883session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1884{
1885 svm_msg_q_msg_t _msg, *msg = &_msg;
1886 u32 i, n_to_dequeue = 0;
1887 session_event_t *evt;
1888
1889 n_to_dequeue = svm_msg_q_size (mq);
1890 for (i = 0; i < n_to_dequeue; i++)
1891 {
1892 svm_msg_q_sub_raw (mq, msg);
1893 evt = svm_msg_q_msg_data (mq, msg);
1894 session_evt_add_to_list (wrk, evt);
1895 svm_msg_q_free_msg (mq, msg);
1896 }
1897
1898 return n_to_dequeue;
1899}
1900
Florin Coras7da88292021-03-18 15:04:34 -07001901static void
Florin Coras7da88292021-03-18 15:04:34 -07001902session_wrk_update_state (session_worker_t *wrk)
1903{
1904 vlib_main_t *vm = wrk->vm;
1905
1906 if (wrk->state == SESSION_WRK_POLLING)
1907 {
Xiaoming Jiang5f305182023-03-24 02:33:00 +00001908 if (clib_llist_elts (wrk->event_elts) == 5 &&
Florin Coras7da88292021-03-18 15:04:34 -07001909 vlib_last_vectors_per_main_loop (vm) < 1)
1910 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001911 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001912 vlib_node_set_state (vm, session_queue_node.index,
1913 VLIB_NODE_STATE_INTERRUPT);
1914 }
1915 }
1916 else if (wrk->state == SESSION_WRK_INTERRUPT)
1917 {
Xiaoming Jiang5f305182023-03-24 02:33:00 +00001918 if (clib_llist_elts (wrk->event_elts) > 5 ||
Florin Coras7da88292021-03-18 15:04:34 -07001919 vlib_last_vectors_per_main_loop (vm) > 1)
1920 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001921 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001922 vlib_node_set_state (vm, session_queue_node.index,
1923 VLIB_NODE_STATE_POLLING);
1924 }
1925 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1926 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001927 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001928 }
1929 }
1930 else
1931 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001932 if (clib_llist_elts (wrk->event_elts))
Florin Coras7da88292021-03-18 15:04:34 -07001933 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001934 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001935 }
1936 }
1937}
1938
Florin Coras0d60a0f2018-06-29 02:02:08 -07001939static uword
1940session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1941 vlib_frame_t * frame)
1942{
Florin Coras41d5f542021-01-15 13:49:33 -08001943 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001944 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001945 session_main_t *smm = vnet_get_session_main ();
1946 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001947 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001948 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001949
Florin Corascca96182019-07-19 07:34:13 -07001950 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001951
Florin Coras8f10b902021-04-02 18:32:00 -07001952 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001953
Florin Coras0d60a0f2018-06-29 02:02:08 -07001954 /*
1955 * Update transport time
1956 */
Florin Coras5384cca2022-01-20 18:10:26 -08001957 session_update_time_subscribers (smm, wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001958 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001959 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001960
Marvin Liu06542422022-08-16 06:49:09 +00001961 if (PREDICT_FALSE (wrk->dma_enabled))
1962 {
1963 if (wrk->trans_head == ((wrk->trans_tail + 1) & (wrk->trans_size - 1)))
1964 return 0;
1965 wrk->batch = vlib_dma_batch_new (vm, wrk->config_index);
Marvin Liu48d2e152023-03-14 23:56:31 +08001966 if (!wrk->batch)
1967 return 0;
Marvin Liu06542422022-08-16 06:49:09 +00001968 }
1969
Florin Corasb0ffbee2019-07-21 19:23:46 -07001970 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001971 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001972 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001973
Florin Coras41d5f542021-01-15 13:49:33 -08001974 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1975 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001976
Florin Corasb0ffbee2019-07-21 19:23:46 -07001977 /*
1978 * Handle control events
1979 */
1980
Florin Coras09843952021-05-17 16:05:41 -07001981 ei = wrk->ctrl_head;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001982 ctrl_he = clib_llist_elt (wrk->event_elts, ei);
Florin Coras09843952021-05-17 16:05:41 -07001983 next_ei = clib_llist_next_index (ctrl_he, evt_list);
1984 old_ti = clib_llist_prev_index (ctrl_he, evt_list);
1985 while (ei != old_ti)
1986 {
1987 ei = next_ei;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001988 elt = clib_llist_elt (wrk->event_elts, next_ei);
Florin Coras09843952021-05-17 16:05:41 -07001989 next_ei = clib_llist_next_index (elt, evt_list);
1990 clib_llist_remove (wrk->event_elts, evt_list, elt);
1991 session_event_dispatch_ctrl (wrk, elt);
1992 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001993
Srikanth Akula73570432020-04-06 19:19:49 -07001994 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1995
Florin Corasb0ffbee2019-07-21 19:23:46 -07001996 /*
1997 * Handle the new io events.
1998 */
1999
Florin Coras46b8b1a2021-05-17 19:09:33 -07002000 new_he = clib_llist_elt (wrk->event_elts, wrk->new_head);
2001 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Coras45b79732019-10-30 19:22:51 -07002002 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07002003
Florin Coras16d974e2020-02-09 20:03:12 +00002004 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08002005 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00002006 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07002007 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras16d974e2020-02-09 20:03:12 +00002008 ei = clib_llist_next_index (elt, evt_list);
2009 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07002010 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00002011 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07002012
Srikanth Akula73570432020-04-06 19:19:49 -07002013 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
2014
Florin Corasb0ffbee2019-07-21 19:23:46 -07002015 /*
Florin Coras45b79732019-10-30 19:22:51 -07002016 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07002017 */
2018
Florin Coras45b79732019-10-30 19:22:51 -07002019 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07002020 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07002021 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07002022 ei = clib_llist_next_index (old_he, evt_list);
2023
Florin Coras89235c72020-11-02 19:00:10 -08002024 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07002025 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07002026 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasdd97a482019-11-02 14:32:52 -07002027 next_ei = clib_llist_next_index (elt, evt_list);
2028 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07002029
Florin Corasdb999df2020-09-21 10:45:56 -07002030 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07002031
Florin Coras45b79732019-10-30 19:22:51 -07002032 if (ei == old_ti)
2033 break;
Florin Corasdd97a482019-11-02 14:32:52 -07002034
2035 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07002036 };
2037 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07002038
Marvin Liu06542422022-08-16 06:49:09 +00002039 if (PREDICT_FALSE (wrk->dma_enabled))
2040 {
2041 if (wrk->batch_num)
2042 {
2043 vlib_dma_batch_set_cookie (vm, wrk->batch, wrk->trans_tail);
2044 wrk->batch_num = 0;
2045 wrk->trans_tail++;
2046 if (wrk->trans_tail == wrk->trans_size)
2047 wrk->trans_tail = 0;
2048 }
2049
2050 vlib_dma_batch_submit (vm, wrk->batch);
2051 }
2052
Srikanth Akula73570432020-04-06 19:19:49 -07002053 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
2054
Florin Coras2a7ea2e2019-10-16 22:06:08 -07002055 if (vec_len (wrk->pending_tx_buffers))
2056 session_flush_pending_tx_buffers (wrk, node);
2057
Florin Coras0d60a0f2018-06-29 02:02:08 -07002058 vlib_node_increment_counter (vm, session_queue_node.index,
2059 SESSION_QUEUE_ERROR_TX, n_tx_packets);
2060
Florin Corascca96182019-07-19 07:34:13 -07002061 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07002062
Florin Coras7da88292021-03-18 15:04:34 -07002063 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
2064 session_wrk_update_state (wrk);
2065
Florin Coras0d60a0f2018-06-29 02:02:08 -07002066 return n_tx_packets;
2067}
2068
Filip Tehlar22efac32021-10-06 12:54:51 +00002069VLIB_REGISTER_NODE (session_queue_node) = {
Florin Coras0d60a0f2018-06-29 02:02:08 -07002070 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02002071 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07002072 .name = "session-queue",
2073 .format_trace = format_session_queue_trace,
2074 .type = VLIB_NODE_TYPE_INPUT,
Filip Tehlar22efac32021-10-06 12:54:51 +00002075 .n_errors = SESSION_QUEUE_N_ERROR,
2076 .error_counters = session_error_counters,
Florin Coras0d60a0f2018-06-29 02:02:08 -07002077 .state = VLIB_NODE_STATE_DISABLED,
2078};
Florin Coras0d60a0f2018-06-29 02:02:08 -07002079
Dave Barach2a863912017-11-28 10:11:42 -05002080static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07002081session_wrk_tfd_read_ready (clib_file_t *cf)
2082{
2083 session_worker_t *wrk = session_main_get_worker (cf->private_data);
2084 u64 buf;
2085 int rv;
2086
2087 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
2088 rv = read (wrk->timerfd, &buf, sizeof (buf));
2089 if (rv < 0 && errno != EAGAIN)
2090 clib_unix_warning ("failed");
2091 return 0;
2092}
2093
2094static clib_error_t *
2095session_wrk_tfd_write_ready (clib_file_t *cf)
2096{
2097 return 0;
2098}
2099
2100void
2101session_wrk_enable_adaptive_mode (session_worker_t *wrk)
2102{
2103 u32 thread_index = wrk->vm->thread_index;
2104 clib_file_t template = { 0 };
2105
2106 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
2107 clib_warning ("timerfd_create");
2108
2109 template.read_function = session_wrk_tfd_read_ready;
2110 template.write_function = session_wrk_tfd_write_ready;
2111 template.file_descriptor = wrk->timerfd;
2112 template.private_data = thread_index;
2113 template.polling_thread_index = thread_index;
2114 template.description = format (0, "session-wrk-tfd-%u", thread_index);
2115
2116 wrk->timerfd_file = clib_file_add (&file_main, &template);
2117 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
2118}
2119
2120static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05002121session_queue_exit (vlib_main_t * vm)
2122{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01002123 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05002124 return 0;
2125
2126 /*
2127 * Shut off (especially) worker-thread session nodes.
2128 * Otherwise, vpp can crash as the main thread unmaps the
2129 * API segment.
2130 */
2131 vlib_worker_thread_barrier_sync (vm);
2132 session_node_enable_disable (0 /* is_enable */ );
2133 vlib_worker_thread_barrier_release (vm);
2134 return 0;
2135}
2136
2137VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
2138
Florin Corasfd542f12018-05-16 19:28:24 -07002139static uword
Florin Coras5484daa2020-03-27 23:55:06 +00002140session_queue_run_on_main (vlib_main_t * vm)
2141{
2142 vlib_node_runtime_t *node;
2143
2144 node = vlib_node_get_runtime (vm, session_queue_node.index);
2145 return session_queue_node_fn (vm, node, 0);
2146}
2147
2148static uword
Florin Corasfd542f12018-05-16 19:28:24 -07002149session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
2150 vlib_frame_t * f)
2151{
Florin Corasfd542f12018-05-16 19:28:24 -07002152 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00002153 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07002154 uword event_type;
2155
2156 while (1)
2157 {
2158 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07002159 event_type = vlib_process_get_events (vm, (uword **) & event_data);
2160
2161 switch (event_type)
2162 {
Florin Coras5484daa2020-03-27 23:55:06 +00002163 case SESSION_Q_PROCESS_RUN_ON_MAIN:
2164 /* Run session queue node on main thread */
2165 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07002166 break;
2167 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07002168 vlib_node_set_state (vm, session_queue_process_node.index,
2169 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07002170 timeout = 100000.0;
2171 break;
2172 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00002173 /* Timed out. Run on main to ensure all events are handled */
2174 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07002175 break;
2176 }
2177 vec_reset_length (event_data);
2178 }
2179 return 0;
2180}
2181
Florin Corasfd542f12018-05-16 19:28:24 -07002182VLIB_REGISTER_NODE (session_queue_process_node) =
2183{
2184 .function = session_queue_process,
2185 .type = VLIB_NODE_TYPE_PROCESS,
2186 .name = "session-queue-process",
2187 .state = VLIB_NODE_STATE_DISABLED,
2188};
Florin Corasfd542f12018-05-16 19:28:24 -07002189
Florin Coras653e43f2019-03-04 10:56:23 -08002190static_always_inline uword
2191session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2192 vlib_frame_t * frame)
2193{
2194 session_main_t *sm = &session_main;
2195 if (!sm->wrk[0].vpp_event_queue)
2196 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08002197 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08002198 return session_queue_node_fn (vm, node, frame);
2199}
2200
Florin Coras653e43f2019-03-04 10:56:23 -08002201VLIB_REGISTER_NODE (session_queue_pre_input_node) =
2202{
2203 .function = session_queue_pre_input_inline,
2204 .type = VLIB_NODE_TYPE_PRE_INPUT,
2205 .name = "session-queue-main",
2206 .state = VLIB_NODE_STATE_DISABLED,
2207};
Florin Coras653e43f2019-03-04 10:56:23 -08002208
Dave Barach68b0fb02017-02-28 15:15:56 -05002209/*
2210 * fd.io coding-style-patch-verification: ON
2211 *
2212 * Local Variables:
2213 * eval: (c-set-style "gnu")
2214 * End:
2215 */