blob: d40411cb54781e1c76222ecd00e420047f31e7f8 [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
36static void
Florin Coras458089b2019-08-21 16:20:44 -070037session_mq_listen_handler (void *data)
Florin Coras2b81e3c2019-02-27 07:55:46 -080038{
Florin Coras458089b2019-08-21 16:20:44 -070039 session_listen_msg_t *mp = (session_listen_msg_t *) data;
40 vnet_listen_args_t _a, *a = &_a;
41 app_worker_t *app_wrk;
42 application_t *app;
43 int rv;
44
45 app_check_thread_and_barrier (session_mq_listen_handler, mp);
46
47 app = application_lookup (mp->client_index);
48 if (!app)
49 return;
50
51 clib_memset (a, 0, sizeof (*a));
52 a->sep.is_ip4 = mp->is_ip4;
Florin Corasea7e7082020-07-07 17:57:28 -070053 ip_copy (&a->sep.ip, &mp->ip, mp->is_ip4);
Florin Coras458089b2019-08-21 16:20:44 -070054 a->sep.port = mp->port;
55 a->sep.fib_index = mp->vrf;
56 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
57 a->sep.transport_proto = mp->proto;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020058 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +010059 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Coras458089b2019-08-21 16:20:44 -070060 a->app_index = app->app_index;
61 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +000062 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -070063
64 if ((rv = vnet_listen (a)))
Florin Coras585c86a2020-10-16 17:57:36 -070065 clib_warning ("listen returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -070066
67 app_wrk = application_get_worker (app, mp->wrk_index);
68 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
69 return;
70}
71
72static void
73session_mq_listen_uri_handler (void *data)
74{
75 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
76 vnet_listen_args_t _a, *a = &_a;
77 app_worker_t *app_wrk;
78 application_t *app;
79 int rv;
80
81 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
82
83 app = application_lookup (mp->client_index);
84 if (!app)
85 return;
86
87 clib_memset (a, 0, sizeof (*a));
88 a->uri = (char *) mp->uri;
89 a->app_index = app->app_index;
90 rv = vnet_bind_uri (a);
91
92 app_wrk = application_get_worker (app, 0);
93 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
94}
95
96static void
97session_mq_connect_handler (void *data)
98{
99 session_connect_msg_t *mp = (session_connect_msg_t *) data;
100 vnet_connect_args_t _a, *a = &_a;
101 app_worker_t *app_wrk;
102 application_t *app;
103 int rv;
104
105 app_check_thread_and_barrier (session_mq_connect_handler, mp);
106
107 app = application_lookup (mp->client_index);
108 if (!app)
109 return;
110
111 clib_memset (a, 0, sizeof (*a));
112 a->sep.is_ip4 = mp->is_ip4;
113 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
114 a->sep.port = mp->port;
115 a->sep.transport_proto = mp->proto;
116 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700117 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000118 if (mp->is_ip4)
119 {
120 ip46_address_mask_ip4 (&a->sep.ip);
121 ip46_address_mask_ip4 (&a->sep.peer.ip);
122 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000123 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700124 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
125 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200126 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +0100127 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Corasd85666f2020-04-03 00:58:48 +0000128 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700129 if (mp->hostname_len)
130 {
131 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
132 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
133 }
134 a->api_context = mp->context;
135 a->app_index = app->app_index;
136 a->wrk_map_index = mp->wrk_index;
137
138 if ((rv = vnet_connect (a)))
139 {
Florin Coras57660d92020-04-04 22:45:34 +0000140 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700141 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700142 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700143 }
144
145 vec_free (a->sep_ext.hostname);
146}
147
148static void
149session_mq_connect_uri_handler (void *data)
150{
151 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
152 vnet_connect_args_t _a, *a = &_a;
153 app_worker_t *app_wrk;
154 application_t *app;
155 int rv;
156
157 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
158
159 app = application_lookup (mp->client_index);
160 if (!app)
161 return;
162
163 clib_memset (a, 0, sizeof (*a));
164 a->uri = (char *) mp->uri;
165 a->api_context = mp->context;
166 a->app_index = app->app_index;
167 if ((rv = vnet_connect_uri (a)))
168 {
169 clib_warning ("connect_uri returned: %d", rv);
170 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700171 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700172 }
173}
174
175static void
176session_mq_disconnect_handler (void *data)
177{
178 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
179 vnet_disconnect_args_t _a, *a = &_a;
180 application_t *app;
181
182 app = application_lookup (mp->client_index);
183 if (!app)
184 return;
185
186 a->app_index = app->app_index;
187 a->handle = mp->handle;
188 vnet_disconnect_session (a);
189}
190
191static void
192app_mq_detach_handler (void *data)
193{
194 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
195 vnet_app_detach_args_t _a, *a = &_a;
196 application_t *app;
197
198 app_check_thread_and_barrier (app_mq_detach_handler, mp);
199
200 app = application_lookup (mp->client_index);
201 if (!app)
202 return;
203
204 a->app_index = app->app_index;
205 a->api_client_index = mp->client_index;
206 vnet_application_detach (a);
207}
208
209static void
210session_mq_unlisten_handler (void *data)
211{
212 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
213 vnet_unlisten_args_t _a, *a = &_a;
214 app_worker_t *app_wrk;
215 application_t *app;
216 int rv;
217
218 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
219
220 app = application_lookup (mp->client_index);
221 if (!app)
222 return;
223
224 clib_memset (a, 0, sizeof (*a));
225 a->app_index = app->app_index;
226 a->handle = mp->handle;
227 a->wrk_map_index = mp->wrk_index;
228 if ((rv = vnet_unlisten (a)))
229 clib_warning ("unlisten returned: %d", rv);
230
231 app_wrk = application_get_worker (app, a->wrk_map_index);
232 if (!app_wrk)
233 return;
234
235 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800236}
237
Florin Coras52207f12018-07-12 14:48:06 -0700238static void
239session_mq_accepted_reply_handler (void *data)
240{
241 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
242 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800243 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700244 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800245 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700246
247 /* Server isn't interested, kill the session */
248 if (mp->retval)
249 {
250 a->app_index = mp->context;
251 a->handle = mp->handle;
252 vnet_disconnect_session (a);
253 return;
254 }
255
Florin Coras2b81e3c2019-02-27 07:55:46 -0800256 /* Mail this back from the main thread. We're not polling in main
257 * thread so we're using other workers for notifications. */
258 if (vlib_num_workers () && vlib_get_thread_index () != 0
259 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700260 {
Florin Coras458089b2019-08-21 16:20:44 -0700261 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
262 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800263 return;
264 }
265
266 s = session_get_from_handle_if_valid (mp->handle);
267 if (!s)
268 return;
269
270 app_wrk = app_worker_get (s->app_wrk_index);
271 if (app_wrk->app_index != mp->context)
272 {
273 clib_warning ("app doesn't own session");
274 return;
275 }
276
277 if (!session_has_transport (s))
278 {
Florin Coras653e43f2019-03-04 10:56:23 -0800279 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800280 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700281 return;
Florin Coras52207f12018-07-12 14:48:06 -0700282 }
283 else
284 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800285 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700286 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600287
288 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800289 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800290
291 /* Closed while waiting for app to reply. Resend disconnect */
292 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
293 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700294 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800295 s->session_state = old_state;
296 return;
297 }
Florin Coras52207f12018-07-12 14:48:06 -0700298 }
299}
300
301static void
302session_mq_reset_reply_handler (void *data)
303{
Florin Coras4af830c2018-12-04 09:21:36 -0800304 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700305 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700306 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800307 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700308 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700309 u32 index, thread_index;
310
311 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800312 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700313 if (!app)
314 return;
315
316 session_parse_handle (mp->handle, &index, &thread_index);
317 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800318
Florin Corasf1910322019-12-05 12:05:57 -0800319 /* No session or not the right session */
320 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800321 return;
322
Florin Coras15531972018-08-12 23:50:53 -0700323 app_wrk = app_worker_get (s->app_wrk_index);
324 if (!app_wrk || app_wrk->app_index != app->app_index)
325 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200326 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700327 mp->handle);
328 return;
329 }
Florin Coras52207f12018-07-12 14:48:06 -0700330
331 /* Client objected to resetting the session, log and continue */
332 if (mp->retval)
333 {
334 clib_warning ("client retval %d", mp->retval);
335 return;
336 }
337
338 /* This comes as a response to a reset, transport only waiting for
339 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800340 a->handle = mp->handle;
341 a->app_index = app->app_index;
342 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700343}
344
345static void
346session_mq_disconnected_handler (void *data)
347{
348 session_disconnected_reply_msg_t *rmp;
349 vnet_disconnect_args_t _a, *a = &_a;
350 svm_msg_q_msg_t _msg, *msg = &_msg;
351 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700352 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700353 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800354 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700355 application_t *app;
356 int rv = 0;
357
358 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700359 if (!(s = session_get_from_handle_if_valid (mp->handle)))
360 {
361 clib_warning ("could not disconnect handle %llu", mp->handle);
362 return;
363 }
Florin Coras15531972018-08-12 23:50:53 -0700364 app_wrk = app_worker_get (s->app_wrk_index);
365 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700366 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700367 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700368 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700369 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700370 return;
Florin Coras52207f12018-07-12 14:48:06 -0700371 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700372
373 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700374 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700375 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700376
Florin Coras15531972018-08-12 23:50:53 -0700377 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700378 SESSION_MQ_CTRL_EVT_RING,
379 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700380 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400381 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800382 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700383 rmp = (session_disconnected_reply_msg_t *) evt->data;
384 rmp->handle = mp->handle;
385 rmp->context = mp->context;
386 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700387 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700388}
389
390static void
391session_mq_disconnected_reply_handler (void *data)
392{
393 session_disconnected_reply_msg_t *mp;
394 vnet_disconnect_args_t _a, *a = &_a;
395 application_t *app;
396
397 mp = (session_disconnected_reply_msg_t *) data;
398
399 /* Client objected to disconnecting the session, log and continue */
400 if (mp->retval)
401 {
402 clib_warning ("client retval %d", mp->retval);
403 return;
404 }
405
406 /* Disconnect has been confirmed. Confirm close to transport */
407 app = application_lookup (mp->context);
408 if (app)
409 {
410 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700411 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700412 vnet_disconnect_session (a);
413 }
414}
415
Florin Coras30e79c22019-01-02 19:31:22 -0800416static void
417session_mq_worker_update_handler (void *data)
418{
419 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
420 session_worker_update_reply_msg_t *rmp;
421 svm_msg_q_msg_t _msg, *msg = &_msg;
422 app_worker_t *app_wrk;
423 u32 owner_app_wrk_map;
424 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800425 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800426 application_t *app;
427
428 app = application_lookup (mp->client_index);
429 if (!app)
430 return;
431 if (!(s = session_get_from_handle_if_valid (mp->handle)))
432 {
433 clib_warning ("invalid handle %llu", mp->handle);
434 return;
435 }
436 app_wrk = app_worker_get (s->app_wrk_index);
437 if (app_wrk->app_index != app->app_index)
438 {
439 clib_warning ("app %u does not own session %llu", app->app_index,
440 mp->handle);
441 return;
442 }
443 owner_app_wrk_map = app_wrk->wrk_map_index;
444 app_wrk = application_get_worker (app, mp->wrk_index);
445
446 /* This needs to come from the new owner */
447 if (mp->req_wrk_index == owner_app_wrk_map)
448 {
449 session_req_worker_update_msg_t *wump;
450
451 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
452 SESSION_MQ_CTRL_EVT_RING,
453 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800454 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
455 clib_memset (evt, 0, sizeof (*evt));
456 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
457 wump = (session_req_worker_update_msg_t *) evt->data;
458 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700459 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800460 return;
461 }
462
463 app_worker_own_session (app_wrk, s);
464
465 /*
466 * Send reply
467 */
468 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
469 SESSION_MQ_CTRL_EVT_RING,
470 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800471 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
472 clib_memset (evt, 0, sizeof (*evt));
473 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
474 rmp = (session_worker_update_reply_msg_t *) evt->data;
475 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800476 if (s->rx_fifo)
477 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
478 if (s->tx_fifo)
479 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800480 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700481 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800482
483 /*
484 * Retransmit messages that may have been lost
485 */
Florin Coras288eaab2019-02-03 15:26:14 -0800486 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800487 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800488
Florin Coras288eaab2019-02-03 15:26:14 -0800489 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800490 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800491
492 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700493 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800494}
495
Florin Coras40c07ce2020-07-16 20:46:17 -0700496static void
497session_mq_app_wrk_rpc_handler (void *data)
498{
499 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
500 svm_msg_q_msg_t _msg, *msg = &_msg;
501 session_app_wrk_rpc_msg_t *rmp;
502 app_worker_t *app_wrk;
503 session_event_t *evt;
504 application_t *app;
505
506 app = application_lookup (mp->client_index);
507 if (!app)
508 return;
509
510 app_wrk = application_get_worker (app, mp->wrk_index);
511
512 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
513 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
514 msg);
515 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
516 clib_memset (evt, 0, sizeof (*evt));
517 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
518 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
519 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
520 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
521}
522
Dave Barach68b0fb02017-02-28 15:15:56 -0500523vlib_node_registration_t session_queue_node;
524
525typedef struct
526{
527 u32 session_index;
528 u32 server_thread_index;
529} session_queue_trace_t;
530
531/* packet trace format function */
532static u8 *
533format_session_queue_trace (u8 * s, va_list * args)
534{
535 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
536 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
537 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
538
Florin Coras30928f82020-01-27 19:21:28 -0800539 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500540 t->session_index, t->server_thread_index);
541 return s;
542}
543
Florin Coras6792ec02017-03-13 03:49:51 -0700544#define foreach_session_queue_error \
545_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700546_(TIMER, "Timer events") \
547_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500548
549typedef enum
550{
551#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
552 foreach_session_queue_error
553#undef _
554 SESSION_QUEUE_N_ERROR,
555} session_queue_error_t;
556
557static char *session_queue_error_strings[] = {
558#define _(sym,string) string,
559 foreach_session_queue_error
560#undef _
561};
562
Florin Coras0d60a0f2018-06-29 02:02:08 -0700563enum
564{
565 SESSION_TX_NO_BUFFERS = -2,
566 SESSION_TX_NO_DATA,
567 SESSION_TX_OK
568};
569
Florin Coras66cf5e02018-06-08 09:17:39 -0700570static void
571session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
572 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800573 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700574{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200575 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700576 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200577 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
578 if (PREDICT_TRUE
579 (vlib_trace_buffer
580 (vm, node, next_index, b, 1 /* follow_chain */ )))
581 {
582 session_queue_trace_t *t =
583 vlib_add_trace (vm, node, b, sizeof (*t));
584 t->session_index = s->session_index;
585 t->server_thread_index = s->thread_index;
586 n_trace--;
587 }
588 to_next++;
589 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700590 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200591 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700592}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700593
Florin Coras8e43d042018-05-04 15:46:57 -0700594always_inline void
595session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
596 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
597{
Florin Coras8e43d042018-05-04 15:46:57 -0700598 vlib_buffer_t *chain_b, *prev_b;
599 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800600 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700601 u16 len_to_deq, n_bytes_read;
602 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700603
Florin Coras31c99552019-03-01 13:00:58 -0800604 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700605 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
606 b->total_length_not_including_first_buffer = 0;
607
608 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000609 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700610 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700611 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700612 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700613 {
Florin Coras8e43d042018-05-04 15:46:57 -0700614 prev_b = chain_b;
615 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700616
617 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700618 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700619 chain_b = vlib_get_buffer (vm, chain_bi0);
620 chain_b->current_data = 0;
621 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700622 if (peek_data)
623 {
Florin Coras288eaab2019-02-03 15:26:14 -0800624 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000625 ctx->sp.tx_offset, len_to_deq, data);
626 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700627 }
628 else
629 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200630 if (ctx->transport_vft->transport_options.tx_type ==
631 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700632 {
Florin Coras288eaab2019-02-03 15:26:14 -0800633 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700634 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700635 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300636 u32 offset;
637
Florin Coras7fb0fe12018-04-09 09:24:52 -0700638 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700639 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300640 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
641 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700642 ASSERT (n_bytes_read > 0);
643
644 hdr->data_offset += n_bytes_read;
645 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800646 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300647 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800648 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000649 if (ctx->left_to_snd > n_bytes_read)
650 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
651 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800652 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000653 else if (ctx->left_to_snd == n_bytes_read)
654 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
655 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700656 }
657 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700658 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
659 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700660 }
Florin Coras8e43d042018-05-04 15:46:57 -0700661 ASSERT (n_bytes_read == len_to_deq);
662 chain_b->current_length = n_bytes_read;
663 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700664
665 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700666 prev_b->next_buffer = chain_bi0;
667 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700668
669 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700670 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700671
Florin Corasb2215d62017-08-01 16:56:58 -0700672 to_deq -= n_bytes_read;
673 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700674 break;
675 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700676 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700677 && b->total_length_not_including_first_buffer == left_from_seg);
678 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700679}
680
Florin Coras8e43d042018-05-04 15:46:57 -0700681always_inline void
682session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
683 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
684{
685 u32 len_to_deq;
686 u8 *data0;
687 int n_bytes_read;
688
689 /*
690 * Start with the first buffer in chain
691 */
692 b->error = 0;
693 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
694 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700695
Florin Coras1ee78302019-02-05 15:51:15 -0800696 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700697 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
698
Florin Coras7fb0fe12018-04-09 09:24:52 -0700699 if (peek_data)
700 {
Florin Coras70f879d2020-03-13 17:54:42 +0000701 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700702 len_to_deq, data0);
703 ASSERT (n_bytes_read > 0);
704 /* Keep track of progress locally, transport is also supposed to
705 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000706 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700707 }
708 else
709 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200710 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700711 {
712 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800713 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700714 u16 deq_now;
715 u32 offset;
716
717 ASSERT (hdr->data_length > hdr->data_offset);
718 deq_now = clib_min (hdr->data_length - hdr->data_offset,
719 len_to_deq);
720 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
721 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
722 ASSERT (n_bytes_read > 0);
723
724 if (ctx->s->session_state == SESSION_STATE_LISTENING)
725 {
726 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
727 ctx->tc->rmt_port = hdr->rmt_port;
728 }
729 hdr->data_offset += n_bytes_read;
730 if (hdr->data_offset == hdr->data_length)
731 {
732 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
733 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000734 if (ctx->left_to_snd > n_bytes_read)
735 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
736 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700737 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000738 else if (ctx->left_to_snd == n_bytes_read)
739 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
740 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700741 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700742 else
743 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700744 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
745 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700746 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700747 }
748 }
Florin Coras8e43d042018-05-04 15:46:57 -0700749 b->current_length = n_bytes_read;
750 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500751
Florin Coras8e43d042018-05-04 15:46:57 -0700752 /*
753 * Fill in the remaining buffers in the chain, if any
754 */
755 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
756 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700757}
758
759always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800760session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700761{
762 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800763 {
Florin Corasa6789742019-08-07 19:12:38 -0700764 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
765 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700766 /* Can retransmit for closed sessions but can't send new data if
767 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700768 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700769 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700770 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
771 {
772 /* Allow closed transports to still send custom packets.
773 * For instance, tcp may want to send acks in time-wait. */
774 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
775 && (s->flags & SESSION_F_CUSTOM_TX))
776 return 0;
777 return 2;
778 }
Florin Corase04c2992017-03-01 08:17:34 -0800779 }
Florin Coras8e43d042018-05-04 15:46:57 -0700780 return 0;
781}
Dave Barach68b0fb02017-02-28 15:15:56 -0500782
Florin Coras8e43d042018-05-04 15:46:57 -0700783always_inline transport_connection_t *
784session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
785{
786 if (peek_data)
787 {
788 return ctx->transport_vft->get_connection (ctx->s->connection_index,
789 ctx->s->thread_index);
790 }
791 else
792 {
793 if (ctx->s->session_state == SESSION_STATE_LISTENING)
794 return ctx->transport_vft->get_listener (ctx->s->connection_index);
795 else
796 {
797 return ctx->transport_vft->get_connection (ctx->s->connection_index,
798 ctx->s->thread_index);
799 }
800 }
801}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800802
Florin Coras8e43d042018-05-04 15:46:57 -0700803always_inline void
804session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700805 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700806{
807 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +0000808
809 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -0600810 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +0000811
Dave Barach68b0fb02017-02-28 15:15:56 -0500812 if (peek_data)
813 {
Florin Coras9d063042017-09-14 03:08:00 -0400814 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000815 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700816 {
817 ctx->max_len_to_snd = 0;
818 return;
819 }
Florin Coras70f879d2020-03-13 17:54:42 +0000820 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500821 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700822 else
823 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200824 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700825 {
Florin Coras6e0ee952020-04-20 21:07:06 +0000826 u32 len, chain_limit;
827
Florin Coras8e43d042018-05-04 15:46:57 -0700828 if (ctx->max_dequeue <= sizeof (ctx->hdr))
829 {
830 ctx->max_len_to_snd = 0;
831 return;
832 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000833
Florin Coras288eaab2019-02-03 15:26:14 -0800834 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700835 (u8 *) & ctx->hdr);
836 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000837 len = ctx->hdr.data_length - ctx->hdr.data_offset;
838
839 /* Process multiple dgrams if smaller than min (buf_space, mss).
840 * This avoids handling multiple dgrams if they require buffer
841 * chains */
842 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
843 ctx->sp.snd_mss);
844 if (ctx->hdr.data_length <= chain_limit)
845 {
846 u32 first_dgram_len, dgram_len, offset, max_offset;
847 session_dgram_hdr_t hdr;
848
849 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
850 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
851 first_dgram_len = len;
852 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
853
854 while (offset < max_offset)
855 {
856 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
857 (u8 *) & hdr);
858 ASSERT (hdr.data_length > hdr.data_offset);
859 dgram_len = hdr.data_length - hdr.data_offset;
860 if (len + dgram_len > ctx->max_dequeue
861 || first_dgram_len != dgram_len)
862 break;
863 len += dgram_len;
864 offset += sizeof (hdr) + hdr.data_length;
865 }
866 }
867
868 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700869 }
870 }
Florin Coras8e43d042018-05-04 15:46:57 -0700871 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700872
873 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000874 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700875 {
876 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000877 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
878 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
879 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700880 /* TODO Nagle ? */
881 }
882 else
883 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700884 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000885 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700886 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500887
Florin Corasf08f26d2018-05-10 13:20:47 -0700888 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000889 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700890 if (ctx->n_segs_per_evt > max_segs)
891 {
892 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000893 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700894 }
895
Florin Coras1ee78302019-02-05 15:51:15 -0800896 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +0800897 if (ctx->n_segs_per_evt > 1)
898 {
899 u32 n_bytes_last_seg, n_bufs_last_seg;
900
901 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
902 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
903 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
904 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
905 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
906 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
907 + n_bufs_last_seg;
908 }
909 else
910 {
911 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
912 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
913 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
914 }
915
Florin Coras70f879d2020-03-13 17:54:42 +0000916 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
917 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800918 n_bytes_per_buf -
919 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700920}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700921
Florin Corasaaf64a22020-02-23 01:37:34 +0000922always_inline void
923session_tx_maybe_reschedule (session_worker_t * wrk,
924 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +0000925 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +0000926{
927 session_t *s = ctx->s;
928
929 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +0000930 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +0000931 if (svm_fifo_set_event (s->tx_fifo))
932 session_evt_add_head_old (wrk, elt);
933}
934
Florin Coras8e43d042018-05-04 15:46:57 -0700935always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700936session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
937 vlib_node_runtime_t * node,
938 session_evt_elt_t * elt,
939 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700940{
Simon Zhangae16a982020-03-31 20:56:22 +0800941 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700942 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700943 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700944 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700945 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700946 transport_proto_t tp;
947 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700948 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700949
Florin Coras1bcad5c2019-01-09 20:04:38 -0800950 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700951 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700952 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700953 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700954 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700955 }
956
Florin Coras1bcad5c2019-01-09 20:04:38 -0800957 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -0800958 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700959
Florin Coras1bcad5c2019-01-09 20:04:38 -0800960 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700961 ctx->transport_vft = transport_protocol_get_vft (tp);
962 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800963
964 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
965 {
966 if (ctx->transport_vft->flush_data)
967 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700968 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -0800969 }
970
Florin Coras26dd6de2019-07-23 23:54:47 -0700971 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
972 {
973 u32 n_custom_tx;
974 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +0000975 ctx->sp.max_burst_size = max_burst;
976 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -0700977 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700978 if (PREDICT_FALSE
979 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
980 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700981 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +0000982 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -0700983 {
984 session_evt_add_old (wrk, elt);
985 return SESSION_TX_OK;
986 }
987 }
988
Florin Coras70f879d2020-03-13 17:54:42 +0000989 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -0700990
Florin Coras70f879d2020-03-13 17:54:42 +0000991 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -0700992 {
Florin Coras6080e0d2020-03-13 20:39:43 +0000993 /* If the deschedule flag was set, remove session from scheduler.
994 * Transport is responsible for rescheduling this session. */
995 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
996 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +0000997 /* Request to postpone the session, e.g., zero-wnd and transport
998 * is not currently probing */
999 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1000 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001001 /* This flow queue is "empty" so it should be re-evaluated before
1002 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001003 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001004 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001005
Florin Coras0d60a0f2018-06-29 02:02:08 -07001006 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001007 }
1008
Florin Coras11e9e352019-11-13 19:09:47 -08001009 if (transport_connection_is_tx_paced (ctx->tc))
1010 {
1011 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1012 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1013 {
1014 session_evt_add_head_old (wrk, elt);
1015 return SESSION_TX_NO_DATA;
1016 }
Florin Coras70f879d2020-03-13 17:54:42 +00001017 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1018 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1019 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001020 }
1021
Florin Coras8e43d042018-05-04 15:46:57 -07001022 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001023 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001024
Florin Coras8e43d042018-05-04 15:46:57 -07001025 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001026 {
Florin Coras11e9e352019-11-13 19:09:47 -08001027 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001028 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001029 return SESSION_TX_NO_DATA;
1030 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001031
Simon Zhangae16a982020-03-31 20:56:22 +08001032 vec_validate_aligned (wrk->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001033 CLIB_CACHE_LINE_BYTES);
Simon Zhangae16a982020-03-31 20:56:22 +08001034 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, ctx->n_bufs_needed);
1035 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001036 {
Florin Coras2068fd42019-01-31 14:35:50 -08001037 if (n_bufs)
1038 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001039 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001040 vlib_node_increment_counter (wrk->vm, node->node_index,
1041 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001042 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001043 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001044
Florin Coras7808df22020-11-02 18:00:32 -08001045 if (transport_connection_is_tx_paced (ctx->tc))
1046 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001047
Florin Corasf08f26d2018-05-10 13:20:47 -07001048 ctx->left_to_snd = ctx->max_len_to_snd;
1049 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001050
1051 while (n_left >= 4)
1052 {
1053 vlib_buffer_t *b0, *b1;
1054 u32 bi0, bi1;
1055
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001056 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001057 pb = vlib_get_buffer (vm, pbi);
1058 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001059 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001060 pb = vlib_get_buffer (vm, pbi);
1061 vlib_prefetch_buffer_header (pb, STORE);
1062
Florin Coras8a754f12019-10-16 22:35:18 -07001063 bi0 = wrk->tx_buffers[--n_bufs];
1064 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001065
1066 b0 = vlib_get_buffer (vm, bi0);
1067 b1 = vlib_get_buffer (vm, bi1);
1068
1069 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1070 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1071
1072 ctx->transport_vft->push_header (ctx->tc, b0);
1073 ctx->transport_vft->push_header (ctx->tc, b1);
1074
Florin Coras66cf5e02018-06-08 09:17:39 -07001075 n_left -= 2;
1076
1077 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
1078 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
1079
Florin Coras8a754f12019-10-16 22:35:18 -07001080 vec_add1 (wrk->pending_tx_buffers, bi0);
1081 vec_add1 (wrk->pending_tx_buffers, bi1);
1082 vec_add1 (wrk->pending_tx_nexts, next_index);
1083 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001084 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001085 while (n_left)
1086 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001087 vlib_buffer_t *b0;
1088 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001089
Florin Coras91ca4622018-06-30 11:27:59 -07001090 if (n_left > 1)
1091 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001092 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001093 pb = vlib_get_buffer (vm, pbi);
1094 vlib_prefetch_buffer_header (pb, STORE);
1095 }
1096
Florin Coras8a754f12019-10-16 22:35:18 -07001097 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001098 b0 = vlib_get_buffer (vm, bi0);
1099 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001100
Florin Coras66cf5e02018-06-08 09:17:39 -07001101 /* Ask transport to push header after current_length and
1102 * total_length_not_including_first_buffer are updated */
1103 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001104
Florin Coras66cf5e02018-06-08 09:17:39 -07001105 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001106
Florin Coras66cf5e02018-06-08 09:17:39 -07001107 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001108
Florin Coras8a754f12019-10-16 22:35:18 -07001109 vec_add1 (wrk->pending_tx_buffers, bi0);
1110 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001111 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001112
Florin Coras60183db2019-07-20 15:53:16 -07001113 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001114 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001115 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001116
Florin Coras2068fd42019-01-31 14:35:50 -08001117 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001118 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1119
Florin Corasf08f26d2018-05-10 13:20:47 -07001120 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001121
Florin Corascca96182019-07-19 07:34:13 -07001122 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1123 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1124
Florin Corasf08f26d2018-05-10 13:20:47 -07001125 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001126
1127 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1128 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001129 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001130 session_evt_add_old (wrk, elt);
1131 else
Florin Coras70f879d2020-03-13 17:54:42 +00001132 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001133
Florin Corasab57edb2020-04-07 03:46:07 +00001134 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001135 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001136 u32 n_dequeued = ctx->max_len_to_snd;
1137 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1138 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1139 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001140 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001141 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001142 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001143}
1144
1145int
Florin Coras60183db2019-07-20 15:53:16 -07001146session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1147 vlib_node_runtime_t * node,
1148 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001149{
Florin Coras60183db2019-07-20 15:53:16 -07001150 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001151}
1152
1153int
Florin Coras60183db2019-07-20 15:53:16 -07001154session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1155 vlib_node_runtime_t * node,
1156 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001157{
Florin Coras60183db2019-07-20 15:53:16 -07001158 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001159}
1160
Florin Coras371ca502018-02-21 12:07:41 -08001161int
Florin Coras60183db2019-07-20 15:53:16 -07001162session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001163 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001164 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001165{
Florin Coras9f86d222020-03-23 15:34:22 +00001166 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001167 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001168 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001169
Florin Corasc0737e92019-03-04 14:19:39 -08001170 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001171 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001172
1173 /* Clear custom-tx flag used to request reschedule for tx */
1174 s->flags &= ~SESSION_F_CUSTOM_TX;
1175
Florin Coras89235c72020-11-02 19:00:10 -08001176 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001177 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001178
Florin Coras9f86d222020-03-23 15:34:22 +00001179 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1180 *n_tx_packets += n_packets;
1181
1182 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001183 {
1184 session_evt_add_old (wrk, elt);
1185 }
Florin Coras9f86d222020-03-23 15:34:22 +00001186 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001187 {
1188 svm_fifo_unset_event (s->tx_fifo);
1189 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1190 if (svm_fifo_set_event (s->tx_fifo))
1191 session_evt_add_head_old (wrk, elt);
1192 }
1193
Florin Coras1e6a0f62021-03-09 08:36:25 -08001194 if (sp->max_burst_size &&
1195 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1196 session_dequeue_notify (s);
1197
Florin Corased8db522020-02-27 04:32:51 +00001198 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001199}
1200
Florin Coras288eaab2019-02-03 15:26:14 -08001201always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001202session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001203{
Florin Corasdb999df2020-09-21 10:45:56 -07001204 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1205 return 0;
1206
1207 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1208 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001209}
1210
Florin Coras60183db2019-07-20 15:53:16 -07001211always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001212session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1213{
1214 clib_llist_index_t ei;
1215 void (*fp) (void *);
1216 session_event_t *e;
1217 session_t *s;
1218
1219 ei = clib_llist_entry_index (wrk->event_elts, elt);
1220 e = &elt->evt;
1221
1222 switch (e->event_type)
1223 {
1224 case SESSION_CTRL_EVT_RPC:
1225 fp = e->rpc_args.fp;
1226 (*fp) (e->rpc_args.arg);
1227 break;
1228 case SESSION_CTRL_EVT_CLOSE:
1229 s = session_get_from_handle_if_valid (e->session_handle);
1230 if (PREDICT_FALSE (!s))
1231 break;
1232 session_transport_close (s);
1233 break;
1234 case SESSION_CTRL_EVT_RESET:
1235 s = session_get_from_handle_if_valid (e->session_handle);
1236 if (PREDICT_FALSE (!s))
1237 break;
1238 session_transport_reset (s);
1239 break;
1240 case SESSION_CTRL_EVT_LISTEN:
1241 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1242 break;
1243 case SESSION_CTRL_EVT_LISTEN_URI:
1244 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1245 break;
1246 case SESSION_CTRL_EVT_UNLISTEN:
1247 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1248 break;
1249 case SESSION_CTRL_EVT_CONNECT:
1250 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1251 break;
1252 case SESSION_CTRL_EVT_CONNECT_URI:
1253 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1254 break;
1255 case SESSION_CTRL_EVT_DISCONNECT:
1256 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1257 break;
1258 case SESSION_CTRL_EVT_DISCONNECTED:
1259 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1260 break;
1261 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1262 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1263 break;
1264 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1265 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1266 elt));
1267 break;
1268 case SESSION_CTRL_EVT_RESET_REPLY:
1269 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1270 break;
1271 case SESSION_CTRL_EVT_WORKER_UPDATE:
1272 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1273 break;
1274 case SESSION_CTRL_EVT_APP_DETACH:
1275 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1276 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001277 case SESSION_CTRL_EVT_APP_WRK_RPC:
1278 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1279 break;
Florin Coras458089b2019-08-21 16:20:44 -07001280 default:
1281 clib_warning ("unhandled event type %d", e->event_type);
1282 }
1283
1284 /* Regrab elements in case pool moved */
1285 elt = pool_elt_at_index (wrk->event_elts, ei);
1286 if (!clib_llist_elt_is_linked (elt, evt_list))
1287 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001288 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001289 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1290 session_evt_ctrl_data_free (wrk, elt);
1291 session_evt_elt_free (wrk, elt);
1292 }
Srikanth Akula73570432020-04-06 19:19:49 -07001293 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001294}
1295
1296always_inline void
1297session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001298 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001299{
Florin Coras60183db2019-07-20 15:53:16 -07001300 session_main_t *smm = &session_main;
1301 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001302 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001303 session_event_t *e;
1304 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001305
Florin Corasb0ffbee2019-07-21 19:23:46 -07001306 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001307 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001308
Florin Coras60183db2019-07-20 15:53:16 -07001309 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001310 {
Florin Coras60183db2019-07-20 15:53:16 -07001311 case SESSION_IO_EVT_TX_FLUSH:
1312 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001313 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001314 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001315 break;
Florin Coras60183db2019-07-20 15:53:16 -07001316 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1317 wrk->ctx.s = s;
1318 /* Spray packets in per session type frames, since they go to
1319 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001320 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001321 break;
1322 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001323 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001324 if (!s)
1325 break;
1326 transport_app_rx_evt (session_get_transport_proto (s),
1327 s->connection_index, s->thread_index);
1328 break;
Florin Coras60183db2019-07-20 15:53:16 -07001329 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001330 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001331 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1332 break;
1333 svm_fifo_unset_event (s->rx_fifo);
1334 app_wrk = app_worker_get (s->app_wrk_index);
1335 app_worker_builtin_rx (app_wrk, s);
1336 break;
1337 case SESSION_IO_EVT_BUILTIN_TX:
1338 s = session_get_from_handle_if_valid (e->session_handle);
1339 wrk->ctx.s = s;
1340 if (PREDICT_TRUE (s != 0))
1341 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1342 break;
Florin Coras60183db2019-07-20 15:53:16 -07001343 default:
1344 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001345 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001346
Srikanth Akula73570432020-04-06 19:19:49 -07001347 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1348
Florin Corasb0ffbee2019-07-21 19:23:46 -07001349 /* Regrab elements in case pool moved */
1350 elt = pool_elt_at_index (wrk->event_elts, ei);
1351 if (!clib_llist_elt_is_linked (elt, evt_list))
1352 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001353}
1354
Florin Coras458089b2019-08-21 16:20:44 -07001355/* *INDENT-OFF* */
1356static const u32 session_evt_msg_sizes[] = {
1357#define _(symc, sym) \
1358 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1359 foreach_session_ctrl_evt
1360#undef _
1361};
1362/* *INDENT-ON* */
1363
1364always_inline void
1365session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1366{
1367 session_evt_elt_t *elt;
1368
1369 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1370 {
1371 elt = session_evt_alloc_ctrl (wrk);
1372 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1373 {
1374 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1375 elt->evt.event_type = evt->event_type;
1376 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1377 session_evt_msg_sizes[evt->event_type]);
1378 }
1379 else
1380 {
1381 /* Internal control events fit into io events footprint */
1382 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1383 }
1384 }
1385 else
1386 {
1387 elt = session_evt_alloc_new (wrk);
1388 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1389 }
1390}
1391
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001392static void
1393session_flush_pending_tx_buffers (session_worker_t * wrk,
1394 vlib_node_runtime_t * node)
1395{
1396 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1397 wrk->pending_tx_nexts,
1398 vec_len (wrk->pending_tx_nexts));
1399 vec_reset_length (wrk->pending_tx_buffers);
1400 vec_reset_length (wrk->pending_tx_nexts);
1401}
1402
Florin Coras41d5f542021-01-15 13:49:33 -08001403int
1404session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1405{
1406 svm_msg_q_msg_t _msg, *msg = &_msg;
1407 u32 i, n_to_dequeue = 0;
1408 session_event_t *evt;
1409
1410 n_to_dequeue = svm_msg_q_size (mq);
1411 for (i = 0; i < n_to_dequeue; i++)
1412 {
1413 svm_msg_q_sub_raw (mq, msg);
1414 evt = svm_msg_q_msg_data (mq, msg);
1415 session_evt_add_to_list (wrk, evt);
1416 svm_msg_q_free_msg (mq, msg);
1417 }
1418
1419 return n_to_dequeue;
1420}
1421
Florin Coras7da88292021-03-18 15:04:34 -07001422static void
1423session_wrk_timerfd_update (session_worker_t *wrk, u64 time_ns)
1424{
1425 struct itimerspec its;
1426
1427 its.it_value.tv_sec = 0;
1428 its.it_value.tv_nsec = time_ns;
1429 its.it_interval.tv_sec = 0;
1430 its.it_interval.tv_nsec = its.it_value.tv_nsec;
1431
1432 if (timerfd_settime (wrk->timerfd, 0, &its, NULL) == -1)
1433 clib_warning ("timerfd_settime");
1434}
1435
1436always_inline u64
1437session_wrk_tfd_timeout (session_wrk_state_t state, u32 thread_index)
1438{
1439 if (state == SESSION_WRK_INTERRUPT)
1440 return thread_index ? 1e6 : vlib_num_workers () ? 5e8 : 1e6;
1441 else if (state == SESSION_WRK_IDLE)
1442 return thread_index ? 1e8 : vlib_num_workers () ? 5e8 : 1e8;
1443 else
1444 return 0;
1445}
1446
1447static inline void
Florin Coras1c19aef2021-04-06 15:54:14 -07001448session_wrk_set_state (session_worker_t *wrk, session_wrk_state_t state)
Florin Coras7da88292021-03-18 15:04:34 -07001449{
1450 u64 time_ns;
1451
1452 wrk->state = state;
1453 time_ns = session_wrk_tfd_timeout (state, wrk->vm->thread_index);
1454 session_wrk_timerfd_update (wrk, time_ns);
1455}
1456
1457static void
1458session_wrk_update_state (session_worker_t *wrk)
1459{
1460 vlib_main_t *vm = wrk->vm;
1461
1462 if (wrk->state == SESSION_WRK_POLLING)
1463 {
1464 if (pool_elts (wrk->event_elts) == 3 &&
1465 vlib_last_vectors_per_main_loop (vm) < 1)
1466 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001467 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001468 vlib_node_set_state (vm, session_queue_node.index,
1469 VLIB_NODE_STATE_INTERRUPT);
1470 }
1471 }
1472 else if (wrk->state == SESSION_WRK_INTERRUPT)
1473 {
1474 if (pool_elts (wrk->event_elts) > 3 ||
1475 vlib_last_vectors_per_main_loop (vm) > 1)
1476 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001477 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001478 vlib_node_set_state (vm, session_queue_node.index,
1479 VLIB_NODE_STATE_POLLING);
1480 }
1481 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1482 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001483 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001484 }
1485 }
1486 else
1487 {
1488 if (pool_elts (wrk->event_elts))
1489 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001490 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001491 }
1492 }
1493}
1494
Florin Coras0d60a0f2018-06-29 02:02:08 -07001495static uword
1496session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1497 vlib_frame_t * frame)
1498{
Florin Coras41d5f542021-01-15 13:49:33 -08001499 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001500 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001501 session_main_t *smm = vnet_get_session_main ();
1502 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001503 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001504 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001505
Florin Corascca96182019-07-19 07:34:13 -07001506 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001507
Florin Coras8f10b902021-04-02 18:32:00 -07001508 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001509
Florin Coras0d60a0f2018-06-29 02:02:08 -07001510 /*
1511 * Update transport time
1512 */
Florin Coras60183db2019-07-20 15:53:16 -07001513 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001514 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001515 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001516
Florin Corasb0ffbee2019-07-21 19:23:46 -07001517 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001518 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001519 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001520
Florin Coras41d5f542021-01-15 13:49:33 -08001521 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1522 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001523
Florin Corasb0ffbee2019-07-21 19:23:46 -07001524 /*
1525 * Handle control events
1526 */
1527
1528 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1529
Florin Corasb0ffbee2019-07-21 19:23:46 -07001530 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1531 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001532 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001533 }));
Florin Corasb0ffbee2019-07-21 19:23:46 -07001534
Srikanth Akula73570432020-04-06 19:19:49 -07001535 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1536
Florin Corasb0ffbee2019-07-21 19:23:46 -07001537 /*
1538 * Handle the new io events.
1539 */
1540
1541 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001542 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1543 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001544
Florin Coras16d974e2020-02-09 20:03:12 +00001545 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001546 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001547 {
1548 elt = pool_elt_at_index (wrk->event_elts, ei);
1549 ei = clib_llist_next_index (elt, evt_list);
1550 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001551 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001552 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001553
Srikanth Akula73570432020-04-06 19:19:49 -07001554 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1555
Florin Corasb0ffbee2019-07-21 19:23:46 -07001556 /*
Florin Coras45b79732019-10-30 19:22:51 -07001557 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001558 */
1559
Florin Coras45b79732019-10-30 19:22:51 -07001560 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001561 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001562 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001563 ei = clib_llist_next_index (old_he, evt_list);
1564
Florin Coras89235c72020-11-02 19:00:10 -08001565 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001566 {
Florin Corasdd97a482019-11-02 14:32:52 -07001567 elt = pool_elt_at_index (wrk->event_elts, ei);
1568 next_ei = clib_llist_next_index (elt, evt_list);
1569 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001570
Florin Corasdb999df2020-09-21 10:45:56 -07001571 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001572
Florin Coras45b79732019-10-30 19:22:51 -07001573 if (ei == old_ti)
1574 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001575
1576 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001577 };
1578 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001579
Srikanth Akula73570432020-04-06 19:19:49 -07001580 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1581
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001582 if (vec_len (wrk->pending_tx_buffers))
1583 session_flush_pending_tx_buffers (wrk, node);
1584
Florin Coras0d60a0f2018-06-29 02:02:08 -07001585 vlib_node_increment_counter (vm, session_queue_node.index,
1586 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1587
Florin Corascca96182019-07-19 07:34:13 -07001588 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001589
Florin Coras7da88292021-03-18 15:04:34 -07001590 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1591 session_wrk_update_state (wrk);
1592
Florin Coras0d60a0f2018-06-29 02:02:08 -07001593 return n_tx_packets;
1594}
1595
1596/* *INDENT-OFF* */
1597VLIB_REGISTER_NODE (session_queue_node) =
1598{
1599 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001600 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001601 .name = "session-queue",
1602 .format_trace = format_session_queue_trace,
1603 .type = VLIB_NODE_TYPE_INPUT,
1604 .n_errors = ARRAY_LEN (session_queue_error_strings),
1605 .error_strings = session_queue_error_strings,
1606 .state = VLIB_NODE_STATE_DISABLED,
1607};
1608/* *INDENT-ON* */
1609
Dave Barach2a863912017-11-28 10:11:42 -05001610static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001611session_wrk_tfd_read_ready (clib_file_t *cf)
1612{
1613 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1614 u64 buf;
1615 int rv;
1616
1617 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1618 rv = read (wrk->timerfd, &buf, sizeof (buf));
1619 if (rv < 0 && errno != EAGAIN)
1620 clib_unix_warning ("failed");
1621 return 0;
1622}
1623
1624static clib_error_t *
1625session_wrk_tfd_write_ready (clib_file_t *cf)
1626{
1627 return 0;
1628}
1629
1630void
1631session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1632{
1633 u32 thread_index = wrk->vm->thread_index;
1634 clib_file_t template = { 0 };
1635
1636 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1637 clib_warning ("timerfd_create");
1638
1639 template.read_function = session_wrk_tfd_read_ready;
1640 template.write_function = session_wrk_tfd_write_ready;
1641 template.file_descriptor = wrk->timerfd;
1642 template.private_data = thread_index;
1643 template.polling_thread_index = thread_index;
1644 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1645
1646 wrk->timerfd_file = clib_file_add (&file_main, &template);
1647 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1648}
1649
1650static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001651session_queue_exit (vlib_main_t * vm)
1652{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001653 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001654 return 0;
1655
1656 /*
1657 * Shut off (especially) worker-thread session nodes.
1658 * Otherwise, vpp can crash as the main thread unmaps the
1659 * API segment.
1660 */
1661 vlib_worker_thread_barrier_sync (vm);
1662 session_node_enable_disable (0 /* is_enable */ );
1663 vlib_worker_thread_barrier_release (vm);
1664 return 0;
1665}
1666
1667VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1668
Florin Corasfd542f12018-05-16 19:28:24 -07001669static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001670session_queue_run_on_main (vlib_main_t * vm)
1671{
1672 vlib_node_runtime_t *node;
1673
1674 node = vlib_node_get_runtime (vm, session_queue_node.index);
1675 return session_queue_node_fn (vm, node, 0);
1676}
1677
1678static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001679session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1680 vlib_frame_t * f)
1681{
Florin Corasfd542f12018-05-16 19:28:24 -07001682 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001683 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001684 uword event_type;
1685
1686 while (1)
1687 {
1688 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001689 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1690
1691 switch (event_type)
1692 {
Florin Coras5484daa2020-03-27 23:55:06 +00001693 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1694 /* Run session queue node on main thread */
1695 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001696 break;
1697 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001698 vlib_node_set_state (vm, session_queue_process_node.index,
1699 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001700 timeout = 100000.0;
1701 break;
1702 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001703 /* Timed out. Run on main to ensure all events are handled */
1704 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001705 break;
1706 }
1707 vec_reset_length (event_data);
1708 }
1709 return 0;
1710}
1711
1712/* *INDENT-OFF* */
1713VLIB_REGISTER_NODE (session_queue_process_node) =
1714{
1715 .function = session_queue_process,
1716 .type = VLIB_NODE_TYPE_PROCESS,
1717 .name = "session-queue-process",
1718 .state = VLIB_NODE_STATE_DISABLED,
1719};
1720/* *INDENT-ON* */
1721
Florin Coras653e43f2019-03-04 10:56:23 -08001722static_always_inline uword
1723session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1724 vlib_frame_t * frame)
1725{
1726 session_main_t *sm = &session_main;
1727 if (!sm->wrk[0].vpp_event_queue)
1728 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001729 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001730 return session_queue_node_fn (vm, node, frame);
1731}
1732
1733/* *INDENT-OFF* */
1734VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1735{
1736 .function = session_queue_pre_input_inline,
1737 .type = VLIB_NODE_TYPE_PRE_INPUT,
1738 .name = "session-queue-main",
1739 .state = VLIB_NODE_STATE_DISABLED,
1740};
1741/* *INDENT-ON* */
1742
Dave Barach68b0fb02017-02-28 15:15:56 -05001743/*
1744 * fd.io coding-style-patch-verification: ON
1745 *
1746 * Local Variables:
1747 * eval: (c-set-style "gnu")
1748 * End:
1749 */