blob: a4db02362d3bbdc973edce4e56c0cbe2671162dc [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 Coras458089b2019-08-21 16:20:44 -070029#define app_check_thread_and_barrier(_fn, _arg) \
30 if (!vlib_thread_is_main_w_barrier ()) \
31 { \
32 vlib_rpc_call_main_thread (_fn, (u8 *) _arg, sizeof(*_arg)); \
33 return; \
34 }
Florin Coras2b81e3c2019-02-27 07:55:46 -080035
Florin Coras4ac25842021-04-19 17:34:54 -070036static transport_endpt_ext_cfg_t *
37session_mq_get_ext_config (application_t *app, uword offset)
38{
39 svm_fifo_chunk_t *c;
40 fifo_segment_t *fs;
41
42 fs = application_get_rx_mqs_segment (app);
43 c = fs_chunk_ptr (fs->h, offset);
44 return (transport_endpt_ext_cfg_t *) c->data;
45}
46
47static void
48session_mq_free_ext_config (application_t *app, uword offset)
49{
50 u32 ctrl_thread = vlib_num_workers () ? 1 : 0;
51 svm_fifo_chunk_t *c;
52 fifo_segment_t *fs;
53
54 fs = application_get_rx_mqs_segment (app);
55 c = fs_chunk_ptr (fs->h, offset);
56 fifo_segment_collect_chunk (fs, ctrl_thread, c);
57}
58
Florin Coras2b81e3c2019-02-27 07:55:46 -080059static void
Florin Coras458089b2019-08-21 16:20:44 -070060session_mq_listen_handler (void *data)
Florin Coras2b81e3c2019-02-27 07:55:46 -080061{
Florin Coras458089b2019-08-21 16:20:44 -070062 session_listen_msg_t *mp = (session_listen_msg_t *) data;
63 vnet_listen_args_t _a, *a = &_a;
64 app_worker_t *app_wrk;
65 application_t *app;
66 int rv;
67
68 app_check_thread_and_barrier (session_mq_listen_handler, mp);
69
70 app = application_lookup (mp->client_index);
71 if (!app)
72 return;
73
74 clib_memset (a, 0, sizeof (*a));
75 a->sep.is_ip4 = mp->is_ip4;
Florin Corasea7e7082020-07-07 17:57:28 -070076 ip_copy (&a->sep.ip, &mp->ip, mp->is_ip4);
Florin Coras458089b2019-08-21 16:20:44 -070077 a->sep.port = mp->port;
78 a->sep.fib_index = mp->vrf;
79 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
80 a->sep.transport_proto = mp->proto;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020081 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +010082 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Coras458089b2019-08-21 16:20:44 -070083 a->app_index = app->app_index;
84 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +000085 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -070086
Florin Coras4ac25842021-04-19 17:34:54 -070087 if (mp->ext_config)
88 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
89
Florin Coras458089b2019-08-21 16:20:44 -070090 if ((rv = vnet_listen (a)))
Florin Coras585c86a2020-10-16 17:57:36 -070091 clib_warning ("listen returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -070092
93 app_wrk = application_get_worker (app, mp->wrk_index);
94 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
Florin Coras4ac25842021-04-19 17:34:54 -070095
96 if (mp->ext_config)
97 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -070098}
99
100static void
101session_mq_listen_uri_handler (void *data)
102{
103 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
104 vnet_listen_args_t _a, *a = &_a;
105 app_worker_t *app_wrk;
106 application_t *app;
107 int rv;
108
109 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
110
111 app = application_lookup (mp->client_index);
112 if (!app)
113 return;
114
115 clib_memset (a, 0, sizeof (*a));
116 a->uri = (char *) mp->uri;
117 a->app_index = app->app_index;
118 rv = vnet_bind_uri (a);
119
120 app_wrk = application_get_worker (app, 0);
121 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
122}
123
124static void
125session_mq_connect_handler (void *data)
126{
127 session_connect_msg_t *mp = (session_connect_msg_t *) data;
128 vnet_connect_args_t _a, *a = &_a;
129 app_worker_t *app_wrk;
130 application_t *app;
131 int rv;
132
133 app_check_thread_and_barrier (session_mq_connect_handler, mp);
134
135 app = application_lookup (mp->client_index);
136 if (!app)
137 return;
138
139 clib_memset (a, 0, sizeof (*a));
140 a->sep.is_ip4 = mp->is_ip4;
141 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
142 a->sep.port = mp->port;
143 a->sep.transport_proto = mp->proto;
144 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700145 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000146 if (mp->is_ip4)
147 {
148 ip46_address_mask_ip4 (&a->sep.ip);
149 ip46_address_mask_ip4 (&a->sep.peer.ip);
150 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000151 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700152 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
153 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200154 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +0100155 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Corasd85666f2020-04-03 00:58:48 +0000156 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700157 if (mp->hostname_len)
158 {
159 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
160 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
161 }
162 a->api_context = mp->context;
163 a->app_index = app->app_index;
164 a->wrk_map_index = mp->wrk_index;
165
Florin Coras4ac25842021-04-19 17:34:54 -0700166 if (mp->ext_config)
167 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
168
Florin Coras458089b2019-08-21 16:20:44 -0700169 if ((rv = vnet_connect (a)))
170 {
Florin Coras57660d92020-04-04 22:45:34 +0000171 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700172 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700173 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700174 }
175
Florin Coras4ac25842021-04-19 17:34:54 -0700176 if (mp->ext_config)
177 session_mq_free_ext_config (app, mp->ext_config);
178
Florin Coras458089b2019-08-21 16:20:44 -0700179 vec_free (a->sep_ext.hostname);
180}
181
182static void
183session_mq_connect_uri_handler (void *data)
184{
185 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
186 vnet_connect_args_t _a, *a = &_a;
187 app_worker_t *app_wrk;
188 application_t *app;
189 int rv;
190
191 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
192
193 app = application_lookup (mp->client_index);
194 if (!app)
195 return;
196
197 clib_memset (a, 0, sizeof (*a));
198 a->uri = (char *) mp->uri;
199 a->api_context = mp->context;
200 a->app_index = app->app_index;
201 if ((rv = vnet_connect_uri (a)))
202 {
203 clib_warning ("connect_uri returned: %d", rv);
204 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700205 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700206 }
207}
208
209static void
210session_mq_disconnect_handler (void *data)
211{
212 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
213 vnet_disconnect_args_t _a, *a = &_a;
214 application_t *app;
215
216 app = application_lookup (mp->client_index);
217 if (!app)
218 return;
219
220 a->app_index = app->app_index;
221 a->handle = mp->handle;
222 vnet_disconnect_session (a);
223}
224
225static void
226app_mq_detach_handler (void *data)
227{
228 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
229 vnet_app_detach_args_t _a, *a = &_a;
230 application_t *app;
231
232 app_check_thread_and_barrier (app_mq_detach_handler, mp);
233
234 app = application_lookup (mp->client_index);
235 if (!app)
236 return;
237
238 a->app_index = app->app_index;
239 a->api_client_index = mp->client_index;
240 vnet_application_detach (a);
241}
242
243static void
244session_mq_unlisten_handler (void *data)
245{
246 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
247 vnet_unlisten_args_t _a, *a = &_a;
248 app_worker_t *app_wrk;
249 application_t *app;
250 int rv;
251
252 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
253
254 app = application_lookup (mp->client_index);
255 if (!app)
256 return;
257
258 clib_memset (a, 0, sizeof (*a));
259 a->app_index = app->app_index;
260 a->handle = mp->handle;
261 a->wrk_map_index = mp->wrk_index;
262 if ((rv = vnet_unlisten (a)))
263 clib_warning ("unlisten returned: %d", rv);
264
265 app_wrk = application_get_worker (app, a->wrk_map_index);
266 if (!app_wrk)
267 return;
268
269 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800270}
271
Florin Coras52207f12018-07-12 14:48:06 -0700272static void
273session_mq_accepted_reply_handler (void *data)
274{
275 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
276 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800277 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700278 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800279 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700280
281 /* Server isn't interested, kill the session */
282 if (mp->retval)
283 {
284 a->app_index = mp->context;
285 a->handle = mp->handle;
286 vnet_disconnect_session (a);
287 return;
288 }
289
Florin Coras2b81e3c2019-02-27 07:55:46 -0800290 /* Mail this back from the main thread. We're not polling in main
291 * thread so we're using other workers for notifications. */
292 if (vlib_num_workers () && vlib_get_thread_index () != 0
293 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700294 {
Florin Coras458089b2019-08-21 16:20:44 -0700295 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
296 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800297 return;
298 }
299
300 s = session_get_from_handle_if_valid (mp->handle);
301 if (!s)
302 return;
303
304 app_wrk = app_worker_get (s->app_wrk_index);
305 if (app_wrk->app_index != mp->context)
306 {
307 clib_warning ("app doesn't own session");
308 return;
309 }
310
311 if (!session_has_transport (s))
312 {
Florin Coras653e43f2019-03-04 10:56:23 -0800313 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800314 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700315 return;
Florin Coras52207f12018-07-12 14:48:06 -0700316 }
317 else
318 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800319 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700320 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600321
322 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800323 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800324
325 /* Closed while waiting for app to reply. Resend disconnect */
326 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
327 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700328 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800329 s->session_state = old_state;
330 return;
331 }
Florin Coras52207f12018-07-12 14:48:06 -0700332 }
333}
334
335static void
336session_mq_reset_reply_handler (void *data)
337{
Florin Coras4af830c2018-12-04 09:21:36 -0800338 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700339 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700340 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800341 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700342 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700343 u32 index, thread_index;
344
345 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800346 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700347 if (!app)
348 return;
349
350 session_parse_handle (mp->handle, &index, &thread_index);
351 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800352
Florin Corasf1910322019-12-05 12:05:57 -0800353 /* No session or not the right session */
354 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800355 return;
356
Florin Coras15531972018-08-12 23:50:53 -0700357 app_wrk = app_worker_get (s->app_wrk_index);
358 if (!app_wrk || app_wrk->app_index != app->app_index)
359 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200360 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700361 mp->handle);
362 return;
363 }
Florin Coras52207f12018-07-12 14:48:06 -0700364
365 /* Client objected to resetting the session, log and continue */
366 if (mp->retval)
367 {
368 clib_warning ("client retval %d", mp->retval);
369 return;
370 }
371
372 /* This comes as a response to a reset, transport only waiting for
373 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800374 a->handle = mp->handle;
375 a->app_index = app->app_index;
376 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700377}
378
379static void
380session_mq_disconnected_handler (void *data)
381{
382 session_disconnected_reply_msg_t *rmp;
383 vnet_disconnect_args_t _a, *a = &_a;
384 svm_msg_q_msg_t _msg, *msg = &_msg;
385 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700386 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700387 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800388 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700389 application_t *app;
390 int rv = 0;
391
392 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700393 if (!(s = session_get_from_handle_if_valid (mp->handle)))
394 {
395 clib_warning ("could not disconnect handle %llu", mp->handle);
396 return;
397 }
Florin Coras15531972018-08-12 23:50:53 -0700398 app_wrk = app_worker_get (s->app_wrk_index);
399 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700400 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700401 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700402 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700403 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700404 return;
Florin Coras52207f12018-07-12 14:48:06 -0700405 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700406
407 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700408 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700409 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700410
Florin Coras15531972018-08-12 23:50:53 -0700411 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700412 SESSION_MQ_CTRL_EVT_RING,
413 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700414 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400415 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800416 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700417 rmp = (session_disconnected_reply_msg_t *) evt->data;
418 rmp->handle = mp->handle;
419 rmp->context = mp->context;
420 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700421 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700422}
423
424static void
425session_mq_disconnected_reply_handler (void *data)
426{
427 session_disconnected_reply_msg_t *mp;
428 vnet_disconnect_args_t _a, *a = &_a;
429 application_t *app;
430
431 mp = (session_disconnected_reply_msg_t *) data;
432
433 /* Client objected to disconnecting the session, log and continue */
434 if (mp->retval)
435 {
436 clib_warning ("client retval %d", mp->retval);
437 return;
438 }
439
440 /* Disconnect has been confirmed. Confirm close to transport */
441 app = application_lookup (mp->context);
442 if (app)
443 {
444 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700445 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700446 vnet_disconnect_session (a);
447 }
448}
449
Florin Coras30e79c22019-01-02 19:31:22 -0800450static void
451session_mq_worker_update_handler (void *data)
452{
453 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
454 session_worker_update_reply_msg_t *rmp;
455 svm_msg_q_msg_t _msg, *msg = &_msg;
456 app_worker_t *app_wrk;
457 u32 owner_app_wrk_map;
458 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800459 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800460 application_t *app;
461
462 app = application_lookup (mp->client_index);
463 if (!app)
464 return;
465 if (!(s = session_get_from_handle_if_valid (mp->handle)))
466 {
467 clib_warning ("invalid handle %llu", mp->handle);
468 return;
469 }
470 app_wrk = app_worker_get (s->app_wrk_index);
471 if (app_wrk->app_index != app->app_index)
472 {
473 clib_warning ("app %u does not own session %llu", app->app_index,
474 mp->handle);
475 return;
476 }
477 owner_app_wrk_map = app_wrk->wrk_map_index;
478 app_wrk = application_get_worker (app, mp->wrk_index);
479
480 /* This needs to come from the new owner */
481 if (mp->req_wrk_index == owner_app_wrk_map)
482 {
483 session_req_worker_update_msg_t *wump;
484
485 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
486 SESSION_MQ_CTRL_EVT_RING,
487 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800488 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
489 clib_memset (evt, 0, sizeof (*evt));
490 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
491 wump = (session_req_worker_update_msg_t *) evt->data;
492 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700493 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800494 return;
495 }
496
497 app_worker_own_session (app_wrk, s);
498
499 /*
500 * Send reply
501 */
502 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
503 SESSION_MQ_CTRL_EVT_RING,
504 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800505 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
506 clib_memset (evt, 0, sizeof (*evt));
507 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
508 rmp = (session_worker_update_reply_msg_t *) evt->data;
509 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800510 if (s->rx_fifo)
511 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
512 if (s->tx_fifo)
513 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800514 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700515 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800516
517 /*
518 * Retransmit messages that may have been lost
519 */
Florin Coras288eaab2019-02-03 15:26:14 -0800520 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800521 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800522
Florin Coras288eaab2019-02-03 15:26:14 -0800523 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800524 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800525
526 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700527 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800528}
529
Florin Coras40c07ce2020-07-16 20:46:17 -0700530static void
531session_mq_app_wrk_rpc_handler (void *data)
532{
533 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
534 svm_msg_q_msg_t _msg, *msg = &_msg;
535 session_app_wrk_rpc_msg_t *rmp;
536 app_worker_t *app_wrk;
537 session_event_t *evt;
538 application_t *app;
539
540 app = application_lookup (mp->client_index);
541 if (!app)
542 return;
543
544 app_wrk = application_get_worker (app, mp->wrk_index);
545
546 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
547 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
548 msg);
549 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
550 clib_memset (evt, 0, sizeof (*evt));
551 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
552 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
553 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
554 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
555}
556
Florin Coras04ae8272021-04-12 19:55:37 -0700557static void
558session_mq_transport_attr_handler (void *data)
559{
560 session_transport_attr_msg_t *mp = (session_transport_attr_msg_t *) data;
561 session_transport_attr_reply_msg_t *rmp;
562 svm_msg_q_msg_t _msg, *msg = &_msg;
563 app_worker_t *app_wrk;
564 session_event_t *evt;
565 application_t *app;
566 session_t *s;
567 int rv;
568
569 app = application_lookup (mp->client_index);
570 if (!app)
571 return;
572
573 if (!(s = session_get_from_handle_if_valid (mp->handle)))
574 {
575 clib_warning ("invalid handle %llu", mp->handle);
576 return;
577 }
578 app_wrk = app_worker_get (s->app_wrk_index);
579 if (app_wrk->app_index != app->app_index)
580 {
581 clib_warning ("app %u does not own session %llu", app->app_index,
582 mp->handle);
583 return;
584 }
585
586 rv = session_transport_attribute (s, mp->is_get, &mp->attr);
587
588 svm_msg_q_lock_and_alloc_msg_w_ring (
589 app_wrk->event_queue, SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT, msg);
590 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
591 clib_memset (evt, 0, sizeof (*evt));
592 evt->event_type = SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY;
593 rmp = (session_transport_attr_reply_msg_t *) evt->data;
594 rmp->handle = mp->handle;
595 rmp->retval = rv;
596 rmp->is_get = mp->is_get;
597 if (!rv && mp->is_get)
598 rmp->attr = mp->attr;
599 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
600}
601
Dave Barach68b0fb02017-02-28 15:15:56 -0500602vlib_node_registration_t session_queue_node;
603
604typedef struct
605{
606 u32 session_index;
607 u32 server_thread_index;
608} session_queue_trace_t;
609
610/* packet trace format function */
611static u8 *
612format_session_queue_trace (u8 * s, va_list * args)
613{
614 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
615 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
616 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
617
Florin Coras30928f82020-01-27 19:21:28 -0800618 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500619 t->session_index, t->server_thread_index);
620 return s;
621}
622
Florin Coras6792ec02017-03-13 03:49:51 -0700623#define foreach_session_queue_error \
624_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700625_(TIMER, "Timer events") \
626_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500627
628typedef enum
629{
630#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
631 foreach_session_queue_error
632#undef _
633 SESSION_QUEUE_N_ERROR,
634} session_queue_error_t;
635
636static char *session_queue_error_strings[] = {
637#define _(sym,string) string,
638 foreach_session_queue_error
639#undef _
640};
641
Florin Coras0d60a0f2018-06-29 02:02:08 -0700642enum
643{
644 SESSION_TX_NO_BUFFERS = -2,
645 SESSION_TX_NO_DATA,
646 SESSION_TX_OK
647};
648
Florin Coras66cf5e02018-06-08 09:17:39 -0700649static void
650session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
651 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800652 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700653{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200654 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700655 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200656 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
657 if (PREDICT_TRUE
658 (vlib_trace_buffer
659 (vm, node, next_index, b, 1 /* follow_chain */ )))
660 {
661 session_queue_trace_t *t =
662 vlib_add_trace (vm, node, b, sizeof (*t));
663 t->session_index = s->session_index;
664 t->server_thread_index = s->thread_index;
665 n_trace--;
666 }
667 to_next++;
668 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700669 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200670 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700671}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700672
Florin Coras8e43d042018-05-04 15:46:57 -0700673always_inline void
674session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
675 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
676{
Florin Coras8e43d042018-05-04 15:46:57 -0700677 vlib_buffer_t *chain_b, *prev_b;
678 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800679 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700680 u16 len_to_deq, n_bytes_read;
681 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700682
Florin Coras31c99552019-03-01 13:00:58 -0800683 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700684 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
685 b->total_length_not_including_first_buffer = 0;
686
687 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000688 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700689 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700690 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700691 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700692 {
Florin Coras8e43d042018-05-04 15:46:57 -0700693 prev_b = chain_b;
694 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700695
696 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700697 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700698 chain_b = vlib_get_buffer (vm, chain_bi0);
699 chain_b->current_data = 0;
700 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700701 if (peek_data)
702 {
Florin Coras288eaab2019-02-03 15:26:14 -0800703 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000704 ctx->sp.tx_offset, len_to_deq, data);
705 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700706 }
707 else
708 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200709 if (ctx->transport_vft->transport_options.tx_type ==
710 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700711 {
Florin Coras288eaab2019-02-03 15:26:14 -0800712 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700713 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700714 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300715 u32 offset;
716
Florin Coras7fb0fe12018-04-09 09:24:52 -0700717 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700718 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300719 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
720 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700721 ASSERT (n_bytes_read > 0);
722
723 hdr->data_offset += n_bytes_read;
724 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800725 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300726 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800727 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000728 if (ctx->left_to_snd > n_bytes_read)
729 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
730 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800731 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000732 else if (ctx->left_to_snd == n_bytes_read)
733 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
734 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700735 }
736 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700737 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
738 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700739 }
Florin Coras8e43d042018-05-04 15:46:57 -0700740 ASSERT (n_bytes_read == len_to_deq);
741 chain_b->current_length = n_bytes_read;
742 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700743
744 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700745 prev_b->next_buffer = chain_bi0;
746 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700747
748 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700749 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700750
Florin Corasb2215d62017-08-01 16:56:58 -0700751 to_deq -= n_bytes_read;
752 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700753 break;
754 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700755 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700756 && b->total_length_not_including_first_buffer == left_from_seg);
757 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700758}
759
Florin Coras8e43d042018-05-04 15:46:57 -0700760always_inline void
761session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
762 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
763{
764 u32 len_to_deq;
765 u8 *data0;
766 int n_bytes_read;
767
768 /*
769 * Start with the first buffer in chain
770 */
771 b->error = 0;
772 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
773 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700774
Florin Coras1ee78302019-02-05 15:51:15 -0800775 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700776 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
777
Florin Coras7fb0fe12018-04-09 09:24:52 -0700778 if (peek_data)
779 {
Florin Coras70f879d2020-03-13 17:54:42 +0000780 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700781 len_to_deq, data0);
782 ASSERT (n_bytes_read > 0);
783 /* Keep track of progress locally, transport is also supposed to
784 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000785 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700786 }
787 else
788 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200789 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700790 {
791 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800792 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700793 u16 deq_now;
794 u32 offset;
795
796 ASSERT (hdr->data_length > hdr->data_offset);
797 deq_now = clib_min (hdr->data_length - hdr->data_offset,
798 len_to_deq);
799 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
800 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
801 ASSERT (n_bytes_read > 0);
802
803 if (ctx->s->session_state == SESSION_STATE_LISTENING)
804 {
805 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
806 ctx->tc->rmt_port = hdr->rmt_port;
807 }
808 hdr->data_offset += n_bytes_read;
809 if (hdr->data_offset == hdr->data_length)
810 {
811 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
812 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000813 if (ctx->left_to_snd > n_bytes_read)
814 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
815 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700816 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000817 else if (ctx->left_to_snd == n_bytes_read)
818 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
819 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700820 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700821 else
822 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700823 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
824 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700825 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700826 }
827 }
Florin Coras8e43d042018-05-04 15:46:57 -0700828 b->current_length = n_bytes_read;
829 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500830
Florin Coras8e43d042018-05-04 15:46:57 -0700831 /*
832 * Fill in the remaining buffers in the chain, if any
833 */
834 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
835 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700836}
837
838always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800839session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700840{
841 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800842 {
Florin Corasa6789742019-08-07 19:12:38 -0700843 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
844 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700845 /* Can retransmit for closed sessions but can't send new data if
846 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700847 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700848 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700849 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
850 {
851 /* Allow closed transports to still send custom packets.
852 * For instance, tcp may want to send acks in time-wait. */
853 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
854 && (s->flags & SESSION_F_CUSTOM_TX))
855 return 0;
856 return 2;
857 }
Florin Corase04c2992017-03-01 08:17:34 -0800858 }
Florin Coras8e43d042018-05-04 15:46:57 -0700859 return 0;
860}
Dave Barach68b0fb02017-02-28 15:15:56 -0500861
Florin Coras8e43d042018-05-04 15:46:57 -0700862always_inline transport_connection_t *
863session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
864{
865 if (peek_data)
866 {
867 return ctx->transport_vft->get_connection (ctx->s->connection_index,
868 ctx->s->thread_index);
869 }
870 else
871 {
872 if (ctx->s->session_state == SESSION_STATE_LISTENING)
873 return ctx->transport_vft->get_listener (ctx->s->connection_index);
874 else
875 {
876 return ctx->transport_vft->get_connection (ctx->s->connection_index,
877 ctx->s->thread_index);
878 }
879 }
880}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800881
Florin Coras8e43d042018-05-04 15:46:57 -0700882always_inline void
883session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700884 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700885{
886 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +0000887
888 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -0600889 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +0000890
Dave Barach68b0fb02017-02-28 15:15:56 -0500891 if (peek_data)
892 {
Florin Coras9d063042017-09-14 03:08:00 -0400893 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000894 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700895 {
896 ctx->max_len_to_snd = 0;
897 return;
898 }
Florin Coras70f879d2020-03-13 17:54:42 +0000899 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500900 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700901 else
902 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200903 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700904 {
Florin Coras6e0ee952020-04-20 21:07:06 +0000905 u32 len, chain_limit;
906
Florin Coras8e43d042018-05-04 15:46:57 -0700907 if (ctx->max_dequeue <= sizeof (ctx->hdr))
908 {
909 ctx->max_len_to_snd = 0;
910 return;
911 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000912
Florin Coras288eaab2019-02-03 15:26:14 -0800913 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700914 (u8 *) & ctx->hdr);
915 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000916 len = ctx->hdr.data_length - ctx->hdr.data_offset;
917
918 /* Process multiple dgrams if smaller than min (buf_space, mss).
919 * This avoids handling multiple dgrams if they require buffer
920 * chains */
921 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
922 ctx->sp.snd_mss);
923 if (ctx->hdr.data_length <= chain_limit)
924 {
925 u32 first_dgram_len, dgram_len, offset, max_offset;
926 session_dgram_hdr_t hdr;
927
928 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
929 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
930 first_dgram_len = len;
931 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
932
933 while (offset < max_offset)
934 {
935 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
936 (u8 *) & hdr);
937 ASSERT (hdr.data_length > hdr.data_offset);
938 dgram_len = hdr.data_length - hdr.data_offset;
939 if (len + dgram_len > ctx->max_dequeue
940 || first_dgram_len != dgram_len)
941 break;
942 len += dgram_len;
943 offset += sizeof (hdr) + hdr.data_length;
944 }
945 }
946
947 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700948 }
949 }
Florin Coras8e43d042018-05-04 15:46:57 -0700950 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700951
952 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000953 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700954 {
955 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000956 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
957 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
958 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700959 /* TODO Nagle ? */
960 }
961 else
962 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700963 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000964 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700965 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500966
Florin Corasf08f26d2018-05-10 13:20:47 -0700967 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000968 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700969 if (ctx->n_segs_per_evt > max_segs)
970 {
971 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000972 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700973 }
974
Florin Coras1ee78302019-02-05 15:51:15 -0800975 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +0800976 if (ctx->n_segs_per_evt > 1)
977 {
978 u32 n_bytes_last_seg, n_bufs_last_seg;
979
980 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
981 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
982 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
983 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
984 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
985 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
986 + n_bufs_last_seg;
987 }
988 else
989 {
990 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
991 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
992 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
993 }
994
Florin Coras70f879d2020-03-13 17:54:42 +0000995 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
996 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800997 n_bytes_per_buf -
998 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700999}
Florin Corasf6d68ed2017-05-07 19:12:02 -07001000
Florin Corasaaf64a22020-02-23 01:37:34 +00001001always_inline void
1002session_tx_maybe_reschedule (session_worker_t * wrk,
1003 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +00001004 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +00001005{
1006 session_t *s = ctx->s;
1007
1008 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +00001009 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +00001010 if (svm_fifo_set_event (s->tx_fifo))
1011 session_evt_add_head_old (wrk, elt);
1012}
1013
Florin Coras8e43d042018-05-04 15:46:57 -07001014always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001015session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1016 vlib_node_runtime_t * node,
1017 session_evt_elt_t * elt,
1018 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001019{
Simon Zhangae16a982020-03-31 20:56:22 +08001020 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001021 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001022 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001023 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001024 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001025 transport_proto_t tp;
1026 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001027 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001028
Florin Coras1bcad5c2019-01-09 20:04:38 -08001029 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001030 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001031 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001032 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001033 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001034 }
1035
Florin Coras1bcad5c2019-01-09 20:04:38 -08001036 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001037 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001038
Florin Coras1bcad5c2019-01-09 20:04:38 -08001039 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001040 ctx->transport_vft = transport_protocol_get_vft (tp);
1041 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001042
1043 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1044 {
1045 if (ctx->transport_vft->flush_data)
1046 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001047 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001048 }
1049
Florin Coras26dd6de2019-07-23 23:54:47 -07001050 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1051 {
1052 u32 n_custom_tx;
1053 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001054 ctx->sp.max_burst_size = max_burst;
1055 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001056 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001057 if (PREDICT_FALSE
1058 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1059 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001060 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001061 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001062 {
1063 session_evt_add_old (wrk, elt);
1064 return SESSION_TX_OK;
1065 }
1066 }
1067
Florin Coras70f879d2020-03-13 17:54:42 +00001068 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001069
Florin Coras70f879d2020-03-13 17:54:42 +00001070 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001071 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001072 /* If the deschedule flag was set, remove session from scheduler.
1073 * Transport is responsible for rescheduling this session. */
1074 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1075 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001076 /* Request to postpone the session, e.g., zero-wnd and transport
1077 * is not currently probing */
1078 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1079 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001080 /* This flow queue is "empty" so it should be re-evaluated before
1081 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001082 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001083 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001084
Florin Coras0d60a0f2018-06-29 02:02:08 -07001085 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001086 }
1087
Florin Coras11e9e352019-11-13 19:09:47 -08001088 if (transport_connection_is_tx_paced (ctx->tc))
1089 {
1090 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1091 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1092 {
1093 session_evt_add_head_old (wrk, elt);
1094 return SESSION_TX_NO_DATA;
1095 }
Florin Coras70f879d2020-03-13 17:54:42 +00001096 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1097 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1098 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001099 }
1100
Florin Coras8e43d042018-05-04 15:46:57 -07001101 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001102 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001103
Florin Coras8e43d042018-05-04 15:46:57 -07001104 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001105 {
Florin Coras11e9e352019-11-13 19:09:47 -08001106 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001107 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001108 return SESSION_TX_NO_DATA;
1109 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001110
Simon Zhangae16a982020-03-31 20:56:22 +08001111 vec_validate_aligned (wrk->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001112 CLIB_CACHE_LINE_BYTES);
Simon Zhangae16a982020-03-31 20:56:22 +08001113 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, ctx->n_bufs_needed);
1114 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001115 {
Florin Coras2068fd42019-01-31 14:35:50 -08001116 if (n_bufs)
1117 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001118 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001119 vlib_node_increment_counter (wrk->vm, node->node_index,
1120 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001121 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001122 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001123
Florin Coras7808df22020-11-02 18:00:32 -08001124 if (transport_connection_is_tx_paced (ctx->tc))
1125 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001126
Florin Corasf08f26d2018-05-10 13:20:47 -07001127 ctx->left_to_snd = ctx->max_len_to_snd;
1128 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001129
1130 while (n_left >= 4)
1131 {
1132 vlib_buffer_t *b0, *b1;
1133 u32 bi0, bi1;
1134
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001135 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001136 pb = vlib_get_buffer (vm, pbi);
1137 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001138 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001139 pb = vlib_get_buffer (vm, pbi);
1140 vlib_prefetch_buffer_header (pb, STORE);
1141
Florin Coras8a754f12019-10-16 22:35:18 -07001142 bi0 = wrk->tx_buffers[--n_bufs];
1143 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001144
1145 b0 = vlib_get_buffer (vm, bi0);
1146 b1 = vlib_get_buffer (vm, bi1);
1147
1148 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1149 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1150
1151 ctx->transport_vft->push_header (ctx->tc, b0);
1152 ctx->transport_vft->push_header (ctx->tc, b1);
1153
Florin Coras66cf5e02018-06-08 09:17:39 -07001154 n_left -= 2;
1155
1156 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
1157 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
1158
Florin Coras8a754f12019-10-16 22:35:18 -07001159 vec_add1 (wrk->pending_tx_buffers, bi0);
1160 vec_add1 (wrk->pending_tx_buffers, bi1);
1161 vec_add1 (wrk->pending_tx_nexts, next_index);
1162 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001163 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001164 while (n_left)
1165 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001166 vlib_buffer_t *b0;
1167 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001168
Florin Coras91ca4622018-06-30 11:27:59 -07001169 if (n_left > 1)
1170 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001171 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001172 pb = vlib_get_buffer (vm, pbi);
1173 vlib_prefetch_buffer_header (pb, STORE);
1174 }
1175
Florin Coras8a754f12019-10-16 22:35:18 -07001176 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001177 b0 = vlib_get_buffer (vm, bi0);
1178 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001179
Florin Coras66cf5e02018-06-08 09:17:39 -07001180 /* Ask transport to push header after current_length and
1181 * total_length_not_including_first_buffer are updated */
1182 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001183
Florin Coras66cf5e02018-06-08 09:17:39 -07001184 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001185
Florin Coras66cf5e02018-06-08 09:17:39 -07001186 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001187
Florin Coras8a754f12019-10-16 22:35:18 -07001188 vec_add1 (wrk->pending_tx_buffers, bi0);
1189 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001190 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001191
Florin Coras60183db2019-07-20 15:53:16 -07001192 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001193 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001194 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001195
Florin Coras2068fd42019-01-31 14:35:50 -08001196 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001197 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1198
Florin Corasf08f26d2018-05-10 13:20:47 -07001199 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001200
Florin Corascca96182019-07-19 07:34:13 -07001201 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1202 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1203
Florin Corasf08f26d2018-05-10 13:20:47 -07001204 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001205
1206 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1207 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001208 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001209 session_evt_add_old (wrk, elt);
1210 else
Florin Coras70f879d2020-03-13 17:54:42 +00001211 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001212
Florin Corasab57edb2020-04-07 03:46:07 +00001213 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001214 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001215 u32 n_dequeued = ctx->max_len_to_snd;
1216 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1217 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1218 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001219 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001220 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001221 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001222}
1223
1224int
Florin Coras60183db2019-07-20 15:53:16 -07001225session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1226 vlib_node_runtime_t * node,
1227 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001228{
Florin Coras60183db2019-07-20 15:53:16 -07001229 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001230}
1231
1232int
Florin Coras60183db2019-07-20 15:53:16 -07001233session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1234 vlib_node_runtime_t * node,
1235 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001236{
Florin Coras60183db2019-07-20 15:53:16 -07001237 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001238}
1239
Florin Coras371ca502018-02-21 12:07:41 -08001240int
Florin Coras60183db2019-07-20 15:53:16 -07001241session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001242 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001243 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001244{
Florin Coras9f86d222020-03-23 15:34:22 +00001245 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001246 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001247 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001248
Florin Corasc0737e92019-03-04 14:19:39 -08001249 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001250 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001251
1252 /* Clear custom-tx flag used to request reschedule for tx */
1253 s->flags &= ~SESSION_F_CUSTOM_TX;
1254
Florin Coras89235c72020-11-02 19:00:10 -08001255 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001256 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001257
Florin Coras9f86d222020-03-23 15:34:22 +00001258 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1259 *n_tx_packets += n_packets;
1260
1261 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001262 {
1263 session_evt_add_old (wrk, elt);
1264 }
Florin Coras9f86d222020-03-23 15:34:22 +00001265 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001266 {
1267 svm_fifo_unset_event (s->tx_fifo);
1268 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1269 if (svm_fifo_set_event (s->tx_fifo))
1270 session_evt_add_head_old (wrk, elt);
1271 }
1272
Florin Coras1e6a0f62021-03-09 08:36:25 -08001273 if (sp->max_burst_size &&
1274 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1275 session_dequeue_notify (s);
1276
Florin Corased8db522020-02-27 04:32:51 +00001277 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001278}
1279
Florin Coras288eaab2019-02-03 15:26:14 -08001280always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001281session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001282{
Florin Corasdb999df2020-09-21 10:45:56 -07001283 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1284 return 0;
1285
1286 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1287 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001288}
1289
Florin Coras60183db2019-07-20 15:53:16 -07001290always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001291session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1292{
1293 clib_llist_index_t ei;
1294 void (*fp) (void *);
1295 session_event_t *e;
1296 session_t *s;
1297
1298 ei = clib_llist_entry_index (wrk->event_elts, elt);
1299 e = &elt->evt;
1300
1301 switch (e->event_type)
1302 {
1303 case SESSION_CTRL_EVT_RPC:
1304 fp = e->rpc_args.fp;
1305 (*fp) (e->rpc_args.arg);
1306 break;
1307 case SESSION_CTRL_EVT_CLOSE:
1308 s = session_get_from_handle_if_valid (e->session_handle);
1309 if (PREDICT_FALSE (!s))
1310 break;
1311 session_transport_close (s);
1312 break;
1313 case SESSION_CTRL_EVT_RESET:
1314 s = session_get_from_handle_if_valid (e->session_handle);
1315 if (PREDICT_FALSE (!s))
1316 break;
1317 session_transport_reset (s);
1318 break;
1319 case SESSION_CTRL_EVT_LISTEN:
1320 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1321 break;
1322 case SESSION_CTRL_EVT_LISTEN_URI:
1323 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1324 break;
1325 case SESSION_CTRL_EVT_UNLISTEN:
1326 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1327 break;
1328 case SESSION_CTRL_EVT_CONNECT:
1329 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1330 break;
1331 case SESSION_CTRL_EVT_CONNECT_URI:
1332 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1333 break;
1334 case SESSION_CTRL_EVT_DISCONNECT:
1335 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1336 break;
1337 case SESSION_CTRL_EVT_DISCONNECTED:
1338 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1339 break;
1340 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1341 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1342 break;
1343 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1344 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1345 elt));
1346 break;
1347 case SESSION_CTRL_EVT_RESET_REPLY:
1348 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1349 break;
1350 case SESSION_CTRL_EVT_WORKER_UPDATE:
1351 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1352 break;
1353 case SESSION_CTRL_EVT_APP_DETACH:
1354 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1355 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001356 case SESSION_CTRL_EVT_APP_WRK_RPC:
1357 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1358 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001359 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1360 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1361 break;
Florin Coras458089b2019-08-21 16:20:44 -07001362 default:
1363 clib_warning ("unhandled event type %d", e->event_type);
1364 }
1365
1366 /* Regrab elements in case pool moved */
1367 elt = pool_elt_at_index (wrk->event_elts, ei);
1368 if (!clib_llist_elt_is_linked (elt, evt_list))
1369 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001370 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001371 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1372 session_evt_ctrl_data_free (wrk, elt);
1373 session_evt_elt_free (wrk, elt);
1374 }
Srikanth Akula73570432020-04-06 19:19:49 -07001375 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001376}
1377
1378always_inline void
1379session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001380 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001381{
Florin Coras60183db2019-07-20 15:53:16 -07001382 session_main_t *smm = &session_main;
1383 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001384 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001385 session_event_t *e;
1386 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001387
Florin Corasb0ffbee2019-07-21 19:23:46 -07001388 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001389 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001390
Florin Coras60183db2019-07-20 15:53:16 -07001391 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001392 {
Florin Coras60183db2019-07-20 15:53:16 -07001393 case SESSION_IO_EVT_TX_FLUSH:
1394 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001395 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001396 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001397 break;
Florin Coras60183db2019-07-20 15:53:16 -07001398 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1399 wrk->ctx.s = s;
1400 /* Spray packets in per session type frames, since they go to
1401 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001402 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001403 break;
1404 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001405 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001406 if (!s)
1407 break;
1408 transport_app_rx_evt (session_get_transport_proto (s),
1409 s->connection_index, s->thread_index);
1410 break;
Florin Coras60183db2019-07-20 15:53:16 -07001411 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001412 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001413 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1414 break;
1415 svm_fifo_unset_event (s->rx_fifo);
1416 app_wrk = app_worker_get (s->app_wrk_index);
1417 app_worker_builtin_rx (app_wrk, s);
1418 break;
1419 case SESSION_IO_EVT_BUILTIN_TX:
1420 s = session_get_from_handle_if_valid (e->session_handle);
1421 wrk->ctx.s = s;
1422 if (PREDICT_TRUE (s != 0))
1423 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1424 break;
Florin Coras60183db2019-07-20 15:53:16 -07001425 default:
1426 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001427 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001428
Srikanth Akula73570432020-04-06 19:19:49 -07001429 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1430
Florin Corasb0ffbee2019-07-21 19:23:46 -07001431 /* Regrab elements in case pool moved */
1432 elt = pool_elt_at_index (wrk->event_elts, ei);
1433 if (!clib_llist_elt_is_linked (elt, evt_list))
1434 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001435}
1436
Florin Coras458089b2019-08-21 16:20:44 -07001437/* *INDENT-OFF* */
1438static const u32 session_evt_msg_sizes[] = {
1439#define _(symc, sym) \
1440 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1441 foreach_session_ctrl_evt
1442#undef _
1443};
1444/* *INDENT-ON* */
1445
1446always_inline void
1447session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1448{
1449 session_evt_elt_t *elt;
1450
1451 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1452 {
1453 elt = session_evt_alloc_ctrl (wrk);
1454 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1455 {
1456 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1457 elt->evt.event_type = evt->event_type;
1458 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1459 session_evt_msg_sizes[evt->event_type]);
1460 }
1461 else
1462 {
1463 /* Internal control events fit into io events footprint */
1464 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1465 }
1466 }
1467 else
1468 {
1469 elt = session_evt_alloc_new (wrk);
1470 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1471 }
1472}
1473
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001474static void
1475session_flush_pending_tx_buffers (session_worker_t * wrk,
1476 vlib_node_runtime_t * node)
1477{
1478 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1479 wrk->pending_tx_nexts,
1480 vec_len (wrk->pending_tx_nexts));
1481 vec_reset_length (wrk->pending_tx_buffers);
1482 vec_reset_length (wrk->pending_tx_nexts);
1483}
1484
Florin Coras41d5f542021-01-15 13:49:33 -08001485int
1486session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1487{
1488 svm_msg_q_msg_t _msg, *msg = &_msg;
1489 u32 i, n_to_dequeue = 0;
1490 session_event_t *evt;
1491
1492 n_to_dequeue = svm_msg_q_size (mq);
1493 for (i = 0; i < n_to_dequeue; i++)
1494 {
1495 svm_msg_q_sub_raw (mq, msg);
1496 evt = svm_msg_q_msg_data (mq, msg);
1497 session_evt_add_to_list (wrk, evt);
1498 svm_msg_q_free_msg (mq, msg);
1499 }
1500
1501 return n_to_dequeue;
1502}
1503
Florin Coras7da88292021-03-18 15:04:34 -07001504static void
1505session_wrk_timerfd_update (session_worker_t *wrk, u64 time_ns)
1506{
1507 struct itimerspec its;
1508
1509 its.it_value.tv_sec = 0;
1510 its.it_value.tv_nsec = time_ns;
1511 its.it_interval.tv_sec = 0;
1512 its.it_interval.tv_nsec = its.it_value.tv_nsec;
1513
1514 if (timerfd_settime (wrk->timerfd, 0, &its, NULL) == -1)
1515 clib_warning ("timerfd_settime");
1516}
1517
1518always_inline u64
1519session_wrk_tfd_timeout (session_wrk_state_t state, u32 thread_index)
1520{
1521 if (state == SESSION_WRK_INTERRUPT)
1522 return thread_index ? 1e6 : vlib_num_workers () ? 5e8 : 1e6;
1523 else if (state == SESSION_WRK_IDLE)
1524 return thread_index ? 1e8 : vlib_num_workers () ? 5e8 : 1e8;
1525 else
1526 return 0;
1527}
1528
1529static inline void
Florin Coras1c19aef2021-04-06 15:54:14 -07001530session_wrk_set_state (session_worker_t *wrk, session_wrk_state_t state)
Florin Coras7da88292021-03-18 15:04:34 -07001531{
1532 u64 time_ns;
1533
1534 wrk->state = state;
1535 time_ns = session_wrk_tfd_timeout (state, wrk->vm->thread_index);
1536 session_wrk_timerfd_update (wrk, time_ns);
1537}
1538
1539static void
1540session_wrk_update_state (session_worker_t *wrk)
1541{
1542 vlib_main_t *vm = wrk->vm;
1543
1544 if (wrk->state == SESSION_WRK_POLLING)
1545 {
1546 if (pool_elts (wrk->event_elts) == 3 &&
1547 vlib_last_vectors_per_main_loop (vm) < 1)
1548 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001549 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001550 vlib_node_set_state (vm, session_queue_node.index,
1551 VLIB_NODE_STATE_INTERRUPT);
1552 }
1553 }
1554 else if (wrk->state == SESSION_WRK_INTERRUPT)
1555 {
1556 if (pool_elts (wrk->event_elts) > 3 ||
1557 vlib_last_vectors_per_main_loop (vm) > 1)
1558 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001559 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001560 vlib_node_set_state (vm, session_queue_node.index,
1561 VLIB_NODE_STATE_POLLING);
1562 }
1563 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1564 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001565 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001566 }
1567 }
1568 else
1569 {
1570 if (pool_elts (wrk->event_elts))
1571 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001572 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001573 }
1574 }
1575}
1576
Florin Coras0d60a0f2018-06-29 02:02:08 -07001577static uword
1578session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1579 vlib_frame_t * frame)
1580{
Florin Coras41d5f542021-01-15 13:49:33 -08001581 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001582 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001583 session_main_t *smm = vnet_get_session_main ();
1584 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001585 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001586 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001587
Florin Corascca96182019-07-19 07:34:13 -07001588 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001589
Florin Coras8f10b902021-04-02 18:32:00 -07001590 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001591
Florin Coras0d60a0f2018-06-29 02:02:08 -07001592 /*
1593 * Update transport time
1594 */
Florin Coras60183db2019-07-20 15:53:16 -07001595 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001596 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001597 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001598
Florin Corasb0ffbee2019-07-21 19:23:46 -07001599 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001600 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001601 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001602
Florin Coras41d5f542021-01-15 13:49:33 -08001603 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1604 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001605
Florin Corasb0ffbee2019-07-21 19:23:46 -07001606 /*
1607 * Handle control events
1608 */
1609
1610 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1611
Florin Corasb0ffbee2019-07-21 19:23:46 -07001612 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1613 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001614 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001615 }));
Florin Corasb0ffbee2019-07-21 19:23:46 -07001616
Srikanth Akula73570432020-04-06 19:19:49 -07001617 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1618
Florin Corasb0ffbee2019-07-21 19:23:46 -07001619 /*
1620 * Handle the new io events.
1621 */
1622
1623 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001624 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1625 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001626
Florin Coras16d974e2020-02-09 20:03:12 +00001627 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001628 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001629 {
1630 elt = pool_elt_at_index (wrk->event_elts, ei);
1631 ei = clib_llist_next_index (elt, evt_list);
1632 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001633 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001634 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001635
Srikanth Akula73570432020-04-06 19:19:49 -07001636 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1637
Florin Corasb0ffbee2019-07-21 19:23:46 -07001638 /*
Florin Coras45b79732019-10-30 19:22:51 -07001639 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001640 */
1641
Florin Coras45b79732019-10-30 19:22:51 -07001642 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001643 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001644 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001645 ei = clib_llist_next_index (old_he, evt_list);
1646
Florin Coras89235c72020-11-02 19:00:10 -08001647 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001648 {
Florin Corasdd97a482019-11-02 14:32:52 -07001649 elt = pool_elt_at_index (wrk->event_elts, ei);
1650 next_ei = clib_llist_next_index (elt, evt_list);
1651 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001652
Florin Corasdb999df2020-09-21 10:45:56 -07001653 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001654
Florin Coras45b79732019-10-30 19:22:51 -07001655 if (ei == old_ti)
1656 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001657
1658 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001659 };
1660 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001661
Srikanth Akula73570432020-04-06 19:19:49 -07001662 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1663
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001664 if (vec_len (wrk->pending_tx_buffers))
1665 session_flush_pending_tx_buffers (wrk, node);
1666
Florin Coras0d60a0f2018-06-29 02:02:08 -07001667 vlib_node_increment_counter (vm, session_queue_node.index,
1668 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1669
Florin Corascca96182019-07-19 07:34:13 -07001670 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001671
Florin Coras7da88292021-03-18 15:04:34 -07001672 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1673 session_wrk_update_state (wrk);
1674
Florin Coras0d60a0f2018-06-29 02:02:08 -07001675 return n_tx_packets;
1676}
1677
1678/* *INDENT-OFF* */
1679VLIB_REGISTER_NODE (session_queue_node) =
1680{
1681 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001682 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001683 .name = "session-queue",
1684 .format_trace = format_session_queue_trace,
1685 .type = VLIB_NODE_TYPE_INPUT,
1686 .n_errors = ARRAY_LEN (session_queue_error_strings),
1687 .error_strings = session_queue_error_strings,
1688 .state = VLIB_NODE_STATE_DISABLED,
1689};
1690/* *INDENT-ON* */
1691
Dave Barach2a863912017-11-28 10:11:42 -05001692static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001693session_wrk_tfd_read_ready (clib_file_t *cf)
1694{
1695 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1696 u64 buf;
1697 int rv;
1698
1699 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1700 rv = read (wrk->timerfd, &buf, sizeof (buf));
1701 if (rv < 0 && errno != EAGAIN)
1702 clib_unix_warning ("failed");
1703 return 0;
1704}
1705
1706static clib_error_t *
1707session_wrk_tfd_write_ready (clib_file_t *cf)
1708{
1709 return 0;
1710}
1711
1712void
1713session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1714{
1715 u32 thread_index = wrk->vm->thread_index;
1716 clib_file_t template = { 0 };
1717
1718 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1719 clib_warning ("timerfd_create");
1720
1721 template.read_function = session_wrk_tfd_read_ready;
1722 template.write_function = session_wrk_tfd_write_ready;
1723 template.file_descriptor = wrk->timerfd;
1724 template.private_data = thread_index;
1725 template.polling_thread_index = thread_index;
1726 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1727
1728 wrk->timerfd_file = clib_file_add (&file_main, &template);
1729 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1730}
1731
1732static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001733session_queue_exit (vlib_main_t * vm)
1734{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001735 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001736 return 0;
1737
1738 /*
1739 * Shut off (especially) worker-thread session nodes.
1740 * Otherwise, vpp can crash as the main thread unmaps the
1741 * API segment.
1742 */
1743 vlib_worker_thread_barrier_sync (vm);
1744 session_node_enable_disable (0 /* is_enable */ );
1745 vlib_worker_thread_barrier_release (vm);
1746 return 0;
1747}
1748
1749VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1750
Florin Corasfd542f12018-05-16 19:28:24 -07001751static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001752session_queue_run_on_main (vlib_main_t * vm)
1753{
1754 vlib_node_runtime_t *node;
1755
1756 node = vlib_node_get_runtime (vm, session_queue_node.index);
1757 return session_queue_node_fn (vm, node, 0);
1758}
1759
1760static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001761session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1762 vlib_frame_t * f)
1763{
Florin Corasfd542f12018-05-16 19:28:24 -07001764 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001765 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001766 uword event_type;
1767
1768 while (1)
1769 {
1770 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001771 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1772
1773 switch (event_type)
1774 {
Florin Coras5484daa2020-03-27 23:55:06 +00001775 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1776 /* Run session queue node on main thread */
1777 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001778 break;
1779 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001780 vlib_node_set_state (vm, session_queue_process_node.index,
1781 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001782 timeout = 100000.0;
1783 break;
1784 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001785 /* Timed out. Run on main to ensure all events are handled */
1786 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001787 break;
1788 }
1789 vec_reset_length (event_data);
1790 }
1791 return 0;
1792}
1793
1794/* *INDENT-OFF* */
1795VLIB_REGISTER_NODE (session_queue_process_node) =
1796{
1797 .function = session_queue_process,
1798 .type = VLIB_NODE_TYPE_PROCESS,
1799 .name = "session-queue-process",
1800 .state = VLIB_NODE_STATE_DISABLED,
1801};
1802/* *INDENT-ON* */
1803
Florin Coras653e43f2019-03-04 10:56:23 -08001804static_always_inline uword
1805session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1806 vlib_frame_t * frame)
1807{
1808 session_main_t *sm = &session_main;
1809 if (!sm->wrk[0].vpp_event_queue)
1810 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001811 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001812 return session_queue_node_fn (vm, node, frame);
1813}
1814
1815/* *INDENT-OFF* */
1816VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1817{
1818 .function = session_queue_pre_input_inline,
1819 .type = VLIB_NODE_TYPE_PRE_INPUT,
1820 .name = "session-queue-main",
1821 .state = VLIB_NODE_STATE_DISABLED,
1822};
1823/* *INDENT-ON* */
1824
Dave Barach68b0fb02017-02-28 15:15:56 -05001825/*
1826 * fd.io coding-style-patch-verification: ON
1827 *
1828 * Local Variables:
1829 * eval: (c-set-style "gnu")
1830 * End:
1831 */