blob: 93ed7b7c3f2271a2c8051076e813cfacdab06660 [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;
81 a->app_index = app->app_index;
82 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +000083 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -070084
Florin Coras4ac25842021-04-19 17:34:54 -070085 if (mp->ext_config)
86 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
87
Florin Coras458089b2019-08-21 16:20:44 -070088 if ((rv = vnet_listen (a)))
Florin Coras585c86a2020-10-16 17:57:36 -070089 clib_warning ("listen returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -070090
91 app_wrk = application_get_worker (app, mp->wrk_index);
92 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
Florin Coras4ac25842021-04-19 17:34:54 -070093
94 if (mp->ext_config)
95 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -070096}
97
98static void
99session_mq_listen_uri_handler (void *data)
100{
101 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
102 vnet_listen_args_t _a, *a = &_a;
103 app_worker_t *app_wrk;
104 application_t *app;
105 int rv;
106
107 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
108
109 app = application_lookup (mp->client_index);
110 if (!app)
111 return;
112
113 clib_memset (a, 0, sizeof (*a));
114 a->uri = (char *) mp->uri;
115 a->app_index = app->app_index;
116 rv = vnet_bind_uri (a);
117
118 app_wrk = application_get_worker (app, 0);
119 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
120}
121
122static void
123session_mq_connect_handler (void *data)
124{
125 session_connect_msg_t *mp = (session_connect_msg_t *) data;
126 vnet_connect_args_t _a, *a = &_a;
127 app_worker_t *app_wrk;
128 application_t *app;
129 int rv;
130
131 app_check_thread_and_barrier (session_mq_connect_handler, mp);
132
133 app = application_lookup (mp->client_index);
134 if (!app)
135 return;
136
137 clib_memset (a, 0, sizeof (*a));
138 a->sep.is_ip4 = mp->is_ip4;
139 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
140 a->sep.port = mp->port;
141 a->sep.transport_proto = mp->proto;
142 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700143 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000144 if (mp->is_ip4)
145 {
146 ip46_address_mask_ip4 (&a->sep.ip);
147 ip46_address_mask_ip4 (&a->sep.peer.ip);
148 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000149 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700150 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
151 a->sep_ext.parent_handle = mp->parent_handle;
Florin Corasd85666f2020-04-03 00:58:48 +0000152 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700153 a->api_context = mp->context;
154 a->app_index = app->app_index;
155 a->wrk_map_index = mp->wrk_index;
156
Florin Coras4ac25842021-04-19 17:34:54 -0700157 if (mp->ext_config)
158 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
159
Florin Coras458089b2019-08-21 16:20:44 -0700160 if ((rv = vnet_connect (a)))
161 {
Florin Coras57660d92020-04-04 22:45:34 +0000162 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700163 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700164 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700165 }
166
Florin Coras4ac25842021-04-19 17:34:54 -0700167 if (mp->ext_config)
168 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700169}
170
171static void
172session_mq_connect_uri_handler (void *data)
173{
174 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
175 vnet_connect_args_t _a, *a = &_a;
176 app_worker_t *app_wrk;
177 application_t *app;
178 int rv;
179
180 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
181
182 app = application_lookup (mp->client_index);
183 if (!app)
184 return;
185
186 clib_memset (a, 0, sizeof (*a));
187 a->uri = (char *) mp->uri;
188 a->api_context = mp->context;
189 a->app_index = app->app_index;
190 if ((rv = vnet_connect_uri (a)))
191 {
192 clib_warning ("connect_uri returned: %d", rv);
193 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700194 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700195 }
196}
197
198static void
199session_mq_disconnect_handler (void *data)
200{
201 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
202 vnet_disconnect_args_t _a, *a = &_a;
203 application_t *app;
204
205 app = application_lookup (mp->client_index);
206 if (!app)
207 return;
208
209 a->app_index = app->app_index;
210 a->handle = mp->handle;
211 vnet_disconnect_session (a);
212}
213
214static void
215app_mq_detach_handler (void *data)
216{
217 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
218 vnet_app_detach_args_t _a, *a = &_a;
219 application_t *app;
220
221 app_check_thread_and_barrier (app_mq_detach_handler, mp);
222
223 app = application_lookup (mp->client_index);
224 if (!app)
225 return;
226
227 a->app_index = app->app_index;
228 a->api_client_index = mp->client_index;
229 vnet_application_detach (a);
230}
231
232static void
233session_mq_unlisten_handler (void *data)
234{
235 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
236 vnet_unlisten_args_t _a, *a = &_a;
237 app_worker_t *app_wrk;
238 application_t *app;
239 int rv;
240
241 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
242
243 app = application_lookup (mp->client_index);
244 if (!app)
245 return;
246
247 clib_memset (a, 0, sizeof (*a));
248 a->app_index = app->app_index;
249 a->handle = mp->handle;
250 a->wrk_map_index = mp->wrk_index;
251 if ((rv = vnet_unlisten (a)))
252 clib_warning ("unlisten returned: %d", rv);
253
254 app_wrk = application_get_worker (app, a->wrk_map_index);
255 if (!app_wrk)
256 return;
257
258 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800259}
260
Florin Coras52207f12018-07-12 14:48:06 -0700261static void
262session_mq_accepted_reply_handler (void *data)
263{
264 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
265 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800266 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700267 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800268 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700269
270 /* Server isn't interested, kill the session */
271 if (mp->retval)
272 {
273 a->app_index = mp->context;
274 a->handle = mp->handle;
275 vnet_disconnect_session (a);
276 return;
277 }
278
Florin Coras2b81e3c2019-02-27 07:55:46 -0800279 /* Mail this back from the main thread. We're not polling in main
280 * thread so we're using other workers for notifications. */
281 if (vlib_num_workers () && vlib_get_thread_index () != 0
282 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700283 {
Florin Coras458089b2019-08-21 16:20:44 -0700284 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
285 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800286 return;
287 }
288
289 s = session_get_from_handle_if_valid (mp->handle);
290 if (!s)
291 return;
292
293 app_wrk = app_worker_get (s->app_wrk_index);
294 if (app_wrk->app_index != mp->context)
295 {
296 clib_warning ("app doesn't own session");
297 return;
298 }
299
300 if (!session_has_transport (s))
301 {
Florin Coras653e43f2019-03-04 10:56:23 -0800302 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800303 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700304 return;
Florin Coras52207f12018-07-12 14:48:06 -0700305 }
306 else
307 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800308 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700309 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600310
311 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800312 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800313
314 /* Closed while waiting for app to reply. Resend disconnect */
315 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
316 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700317 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800318 s->session_state = old_state;
319 return;
320 }
Florin Coras52207f12018-07-12 14:48:06 -0700321 }
322}
323
324static void
325session_mq_reset_reply_handler (void *data)
326{
Florin Coras4af830c2018-12-04 09:21:36 -0800327 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700328 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700329 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800330 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700331 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700332 u32 index, thread_index;
333
334 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800335 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700336 if (!app)
337 return;
338
339 session_parse_handle (mp->handle, &index, &thread_index);
340 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800341
Florin Corasf1910322019-12-05 12:05:57 -0800342 /* No session or not the right session */
343 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800344 return;
345
Florin Coras15531972018-08-12 23:50:53 -0700346 app_wrk = app_worker_get (s->app_wrk_index);
347 if (!app_wrk || app_wrk->app_index != app->app_index)
348 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200349 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700350 mp->handle);
351 return;
352 }
Florin Coras52207f12018-07-12 14:48:06 -0700353
354 /* Client objected to resetting the session, log and continue */
355 if (mp->retval)
356 {
357 clib_warning ("client retval %d", mp->retval);
358 return;
359 }
360
361 /* This comes as a response to a reset, transport only waiting for
362 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800363 a->handle = mp->handle;
364 a->app_index = app->app_index;
365 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700366}
367
368static void
369session_mq_disconnected_handler (void *data)
370{
371 session_disconnected_reply_msg_t *rmp;
372 vnet_disconnect_args_t _a, *a = &_a;
373 svm_msg_q_msg_t _msg, *msg = &_msg;
374 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700375 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700376 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800377 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700378 application_t *app;
379 int rv = 0;
380
381 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700382 if (!(s = session_get_from_handle_if_valid (mp->handle)))
383 {
384 clib_warning ("could not disconnect handle %llu", mp->handle);
385 return;
386 }
Florin Coras15531972018-08-12 23:50:53 -0700387 app_wrk = app_worker_get (s->app_wrk_index);
388 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700389 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700390 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700391 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700392 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700393 return;
Florin Coras52207f12018-07-12 14:48:06 -0700394 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700395
396 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700397 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700398 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700399
Florin Coras15531972018-08-12 23:50:53 -0700400 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700401 SESSION_MQ_CTRL_EVT_RING,
402 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700403 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400404 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800405 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700406 rmp = (session_disconnected_reply_msg_t *) evt->data;
407 rmp->handle = mp->handle;
408 rmp->context = mp->context;
409 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700410 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700411}
412
413static void
414session_mq_disconnected_reply_handler (void *data)
415{
416 session_disconnected_reply_msg_t *mp;
417 vnet_disconnect_args_t _a, *a = &_a;
418 application_t *app;
419
420 mp = (session_disconnected_reply_msg_t *) data;
421
422 /* Client objected to disconnecting the session, log and continue */
423 if (mp->retval)
424 {
425 clib_warning ("client retval %d", mp->retval);
426 return;
427 }
428
429 /* Disconnect has been confirmed. Confirm close to transport */
430 app = application_lookup (mp->context);
431 if (app)
432 {
433 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700434 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700435 vnet_disconnect_session (a);
436 }
437}
438
Florin Coras30e79c22019-01-02 19:31:22 -0800439static void
440session_mq_worker_update_handler (void *data)
441{
442 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
443 session_worker_update_reply_msg_t *rmp;
444 svm_msg_q_msg_t _msg, *msg = &_msg;
445 app_worker_t *app_wrk;
446 u32 owner_app_wrk_map;
447 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800448 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800449 application_t *app;
450
451 app = application_lookup (mp->client_index);
452 if (!app)
453 return;
454 if (!(s = session_get_from_handle_if_valid (mp->handle)))
455 {
456 clib_warning ("invalid handle %llu", mp->handle);
457 return;
458 }
459 app_wrk = app_worker_get (s->app_wrk_index);
460 if (app_wrk->app_index != app->app_index)
461 {
462 clib_warning ("app %u does not own session %llu", app->app_index,
463 mp->handle);
464 return;
465 }
466 owner_app_wrk_map = app_wrk->wrk_map_index;
467 app_wrk = application_get_worker (app, mp->wrk_index);
468
469 /* This needs to come from the new owner */
470 if (mp->req_wrk_index == owner_app_wrk_map)
471 {
472 session_req_worker_update_msg_t *wump;
473
474 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
475 SESSION_MQ_CTRL_EVT_RING,
476 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800477 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
478 clib_memset (evt, 0, sizeof (*evt));
479 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
480 wump = (session_req_worker_update_msg_t *) evt->data;
481 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700482 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800483 return;
484 }
485
486 app_worker_own_session (app_wrk, s);
487
488 /*
489 * Send reply
490 */
491 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
492 SESSION_MQ_CTRL_EVT_RING,
493 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800494 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
495 clib_memset (evt, 0, sizeof (*evt));
496 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
497 rmp = (session_worker_update_reply_msg_t *) evt->data;
498 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800499 if (s->rx_fifo)
500 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
501 if (s->tx_fifo)
502 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800503 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700504 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800505
506 /*
507 * Retransmit messages that may have been lost
508 */
Florin Coras288eaab2019-02-03 15:26:14 -0800509 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800510 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800511
Florin Coras288eaab2019-02-03 15:26:14 -0800512 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800513 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800514
515 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700516 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800517}
518
Florin Coras40c07ce2020-07-16 20:46:17 -0700519static void
520session_mq_app_wrk_rpc_handler (void *data)
521{
522 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
523 svm_msg_q_msg_t _msg, *msg = &_msg;
524 session_app_wrk_rpc_msg_t *rmp;
525 app_worker_t *app_wrk;
526 session_event_t *evt;
527 application_t *app;
528
529 app = application_lookup (mp->client_index);
530 if (!app)
531 return;
532
533 app_wrk = application_get_worker (app, mp->wrk_index);
534
535 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
536 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
537 msg);
538 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
539 clib_memset (evt, 0, sizeof (*evt));
540 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
541 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
542 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
543 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
544}
545
Florin Coras04ae8272021-04-12 19:55:37 -0700546static void
547session_mq_transport_attr_handler (void *data)
548{
549 session_transport_attr_msg_t *mp = (session_transport_attr_msg_t *) data;
550 session_transport_attr_reply_msg_t *rmp;
551 svm_msg_q_msg_t _msg, *msg = &_msg;
552 app_worker_t *app_wrk;
553 session_event_t *evt;
554 application_t *app;
555 session_t *s;
556 int rv;
557
558 app = application_lookup (mp->client_index);
559 if (!app)
560 return;
561
562 if (!(s = session_get_from_handle_if_valid (mp->handle)))
563 {
564 clib_warning ("invalid handle %llu", mp->handle);
565 return;
566 }
567 app_wrk = app_worker_get (s->app_wrk_index);
568 if (app_wrk->app_index != app->app_index)
569 {
570 clib_warning ("app %u does not own session %llu", app->app_index,
571 mp->handle);
572 return;
573 }
574
575 rv = session_transport_attribute (s, mp->is_get, &mp->attr);
576
577 svm_msg_q_lock_and_alloc_msg_w_ring (
578 app_wrk->event_queue, SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT, msg);
579 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
580 clib_memset (evt, 0, sizeof (*evt));
581 evt->event_type = SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY;
582 rmp = (session_transport_attr_reply_msg_t *) evt->data;
583 rmp->handle = mp->handle;
584 rmp->retval = rv;
585 rmp->is_get = mp->is_get;
586 if (!rv && mp->is_get)
587 rmp->attr = mp->attr;
588 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
589}
590
Dave Barach68b0fb02017-02-28 15:15:56 -0500591vlib_node_registration_t session_queue_node;
592
593typedef struct
594{
595 u32 session_index;
596 u32 server_thread_index;
597} session_queue_trace_t;
598
599/* packet trace format function */
600static u8 *
601format_session_queue_trace (u8 * s, va_list * args)
602{
603 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
604 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
605 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
606
Florin Coras30928f82020-01-27 19:21:28 -0800607 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500608 t->session_index, t->server_thread_index);
609 return s;
610}
611
Florin Coras6792ec02017-03-13 03:49:51 -0700612#define foreach_session_queue_error \
613_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700614_(TIMER, "Timer events") \
615_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500616
617typedef enum
618{
619#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
620 foreach_session_queue_error
621#undef _
622 SESSION_QUEUE_N_ERROR,
623} session_queue_error_t;
624
625static char *session_queue_error_strings[] = {
626#define _(sym,string) string,
627 foreach_session_queue_error
628#undef _
629};
630
Florin Coras0d60a0f2018-06-29 02:02:08 -0700631enum
632{
633 SESSION_TX_NO_BUFFERS = -2,
634 SESSION_TX_NO_DATA,
635 SESSION_TX_OK
636};
637
Florin Coras66cf5e02018-06-08 09:17:39 -0700638static void
639session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
640 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800641 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700642{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200643 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700644 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200645 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
646 if (PREDICT_TRUE
647 (vlib_trace_buffer
648 (vm, node, next_index, b, 1 /* follow_chain */ )))
649 {
650 session_queue_trace_t *t =
651 vlib_add_trace (vm, node, b, sizeof (*t));
652 t->session_index = s->session_index;
653 t->server_thread_index = s->thread_index;
654 n_trace--;
655 }
656 to_next++;
657 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700658 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200659 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700660}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700661
Florin Coras8e43d042018-05-04 15:46:57 -0700662always_inline void
663session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
664 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
665{
Florin Coras8e43d042018-05-04 15:46:57 -0700666 vlib_buffer_t *chain_b, *prev_b;
667 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800668 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700669 u16 len_to_deq, n_bytes_read;
670 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700671
Florin Coras31c99552019-03-01 13:00:58 -0800672 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700673 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
674 b->total_length_not_including_first_buffer = 0;
675
676 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000677 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700678 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700679 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700680 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700681 {
Florin Coras8e43d042018-05-04 15:46:57 -0700682 prev_b = chain_b;
683 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700684
685 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700686 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700687 chain_b = vlib_get_buffer (vm, chain_bi0);
688 chain_b->current_data = 0;
689 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700690 if (peek_data)
691 {
Florin Coras288eaab2019-02-03 15:26:14 -0800692 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000693 ctx->sp.tx_offset, len_to_deq, data);
694 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700695 }
696 else
697 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200698 if (ctx->transport_vft->transport_options.tx_type ==
699 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700700 {
Florin Coras288eaab2019-02-03 15:26:14 -0800701 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700702 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700703 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300704 u32 offset;
705
Florin Coras7fb0fe12018-04-09 09:24:52 -0700706 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700707 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300708 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
709 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700710 ASSERT (n_bytes_read > 0);
711
712 hdr->data_offset += n_bytes_read;
713 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800714 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300715 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800716 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000717 if (ctx->left_to_snd > n_bytes_read)
718 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
719 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800720 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000721 else if (ctx->left_to_snd == n_bytes_read)
722 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
723 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700724 }
725 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700726 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
727 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700728 }
Florin Coras8e43d042018-05-04 15:46:57 -0700729 ASSERT (n_bytes_read == len_to_deq);
730 chain_b->current_length = n_bytes_read;
731 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700732
733 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700734 prev_b->next_buffer = chain_bi0;
735 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700736
737 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700738 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700739
Florin Corasb2215d62017-08-01 16:56:58 -0700740 to_deq -= n_bytes_read;
741 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700742 break;
743 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700744 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700745 && b->total_length_not_including_first_buffer == left_from_seg);
746 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700747}
748
Florin Coras8e43d042018-05-04 15:46:57 -0700749always_inline void
750session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
751 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
752{
753 u32 len_to_deq;
754 u8 *data0;
755 int n_bytes_read;
756
757 /*
758 * Start with the first buffer in chain
759 */
760 b->error = 0;
761 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
762 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700763
Florin Coras1ee78302019-02-05 15:51:15 -0800764 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700765 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
766
Florin Coras7fb0fe12018-04-09 09:24:52 -0700767 if (peek_data)
768 {
Florin Coras70f879d2020-03-13 17:54:42 +0000769 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700770 len_to_deq, data0);
771 ASSERT (n_bytes_read > 0);
772 /* Keep track of progress locally, transport is also supposed to
773 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000774 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700775 }
776 else
777 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200778 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700779 {
780 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800781 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700782 u16 deq_now;
783 u32 offset;
784
785 ASSERT (hdr->data_length > hdr->data_offset);
786 deq_now = clib_min (hdr->data_length - hdr->data_offset,
787 len_to_deq);
788 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
789 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
790 ASSERT (n_bytes_read > 0);
791
792 if (ctx->s->session_state == SESSION_STATE_LISTENING)
793 {
794 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
795 ctx->tc->rmt_port = hdr->rmt_port;
796 }
797 hdr->data_offset += n_bytes_read;
798 if (hdr->data_offset == hdr->data_length)
799 {
800 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
801 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000802 if (ctx->left_to_snd > n_bytes_read)
803 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
804 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700805 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000806 else if (ctx->left_to_snd == n_bytes_read)
807 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
808 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700809 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700810 else
811 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700812 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
813 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700814 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700815 }
816 }
Florin Coras8e43d042018-05-04 15:46:57 -0700817 b->current_length = n_bytes_read;
818 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500819
Florin Coras8e43d042018-05-04 15:46:57 -0700820 /*
821 * Fill in the remaining buffers in the chain, if any
822 */
823 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
824 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700825}
826
827always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800828session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700829{
830 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800831 {
Florin Corasa6789742019-08-07 19:12:38 -0700832 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
833 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700834 /* Can retransmit for closed sessions but can't send new data if
835 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700836 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700837 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700838 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
839 {
840 /* Allow closed transports to still send custom packets.
841 * For instance, tcp may want to send acks in time-wait. */
842 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
843 && (s->flags & SESSION_F_CUSTOM_TX))
844 return 0;
845 return 2;
846 }
Florin Corase04c2992017-03-01 08:17:34 -0800847 }
Florin Coras8e43d042018-05-04 15:46:57 -0700848 return 0;
849}
Dave Barach68b0fb02017-02-28 15:15:56 -0500850
Florin Coras8e43d042018-05-04 15:46:57 -0700851always_inline transport_connection_t *
852session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
853{
854 if (peek_data)
855 {
856 return ctx->transport_vft->get_connection (ctx->s->connection_index,
857 ctx->s->thread_index);
858 }
859 else
860 {
861 if (ctx->s->session_state == SESSION_STATE_LISTENING)
862 return ctx->transport_vft->get_listener (ctx->s->connection_index);
863 else
864 {
865 return ctx->transport_vft->get_connection (ctx->s->connection_index,
866 ctx->s->thread_index);
867 }
868 }
869}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800870
Florin Coras8e43d042018-05-04 15:46:57 -0700871always_inline void
872session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700873 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700874{
875 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +0000876
877 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -0600878 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +0000879
Dave Barach68b0fb02017-02-28 15:15:56 -0500880 if (peek_data)
881 {
Florin Coras9d063042017-09-14 03:08:00 -0400882 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000883 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700884 {
885 ctx->max_len_to_snd = 0;
886 return;
887 }
Florin Coras70f879d2020-03-13 17:54:42 +0000888 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500889 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700890 else
891 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200892 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700893 {
Florin Coras6e0ee952020-04-20 21:07:06 +0000894 u32 len, chain_limit;
895
Florin Coras8e43d042018-05-04 15:46:57 -0700896 if (ctx->max_dequeue <= sizeof (ctx->hdr))
897 {
898 ctx->max_len_to_snd = 0;
899 return;
900 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000901
Florin Coras288eaab2019-02-03 15:26:14 -0800902 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700903 (u8 *) & ctx->hdr);
904 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000905 len = ctx->hdr.data_length - ctx->hdr.data_offset;
906
907 /* Process multiple dgrams if smaller than min (buf_space, mss).
908 * This avoids handling multiple dgrams if they require buffer
909 * chains */
910 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
911 ctx->sp.snd_mss);
912 if (ctx->hdr.data_length <= chain_limit)
913 {
914 u32 first_dgram_len, dgram_len, offset, max_offset;
915 session_dgram_hdr_t hdr;
916
917 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
918 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
919 first_dgram_len = len;
920 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
921
922 while (offset < max_offset)
923 {
924 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
925 (u8 *) & hdr);
926 ASSERT (hdr.data_length > hdr.data_offset);
927 dgram_len = hdr.data_length - hdr.data_offset;
928 if (len + dgram_len > ctx->max_dequeue
929 || first_dgram_len != dgram_len)
930 break;
931 len += dgram_len;
932 offset += sizeof (hdr) + hdr.data_length;
933 }
934 }
935
936 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700937 }
938 }
Florin Coras8e43d042018-05-04 15:46:57 -0700939 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700940
941 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000942 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700943 {
944 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000945 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
946 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
947 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700948 /* TODO Nagle ? */
949 }
950 else
951 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700952 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000953 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700954 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500955
Florin Corasf08f26d2018-05-10 13:20:47 -0700956 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000957 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700958 if (ctx->n_segs_per_evt > max_segs)
959 {
960 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000961 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700962 }
963
Florin Coras1ee78302019-02-05 15:51:15 -0800964 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +0800965 if (ctx->n_segs_per_evt > 1)
966 {
967 u32 n_bytes_last_seg, n_bufs_last_seg;
968
969 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
970 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
971 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
972 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
973 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
974 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
975 + n_bufs_last_seg;
976 }
977 else
978 {
979 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
980 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
981 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
982 }
983
Florin Coras70f879d2020-03-13 17:54:42 +0000984 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
985 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800986 n_bytes_per_buf -
987 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700988}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700989
Florin Corasaaf64a22020-02-23 01:37:34 +0000990always_inline void
991session_tx_maybe_reschedule (session_worker_t * wrk,
992 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +0000993 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +0000994{
995 session_t *s = ctx->s;
996
997 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +0000998 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +0000999 if (svm_fifo_set_event (s->tx_fifo))
1000 session_evt_add_head_old (wrk, elt);
1001}
1002
Florin Coras8e43d042018-05-04 15:46:57 -07001003always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001004session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1005 vlib_node_runtime_t * node,
1006 session_evt_elt_t * elt,
1007 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001008{
Simon Zhangae16a982020-03-31 20:56:22 +08001009 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001010 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001011 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001012 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001013 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001014 transport_proto_t tp;
1015 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001016 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001017
Florin Coras1bcad5c2019-01-09 20:04:38 -08001018 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001019 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001020 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001021 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001022 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001023 }
1024
Florin Coras1bcad5c2019-01-09 20:04:38 -08001025 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001026 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001027
Florin Coras1bcad5c2019-01-09 20:04:38 -08001028 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001029 ctx->transport_vft = transport_protocol_get_vft (tp);
1030 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001031
1032 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1033 {
1034 if (ctx->transport_vft->flush_data)
1035 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001036 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001037 }
1038
Florin Coras26dd6de2019-07-23 23:54:47 -07001039 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1040 {
1041 u32 n_custom_tx;
1042 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001043 ctx->sp.max_burst_size = max_burst;
1044 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001045 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001046 if (PREDICT_FALSE
1047 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1048 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001049 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001050 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001051 {
1052 session_evt_add_old (wrk, elt);
1053 return SESSION_TX_OK;
1054 }
1055 }
1056
Florin Coras70f879d2020-03-13 17:54:42 +00001057 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001058
Florin Coras70f879d2020-03-13 17:54:42 +00001059 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001060 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001061 /* If the deschedule flag was set, remove session from scheduler.
1062 * Transport is responsible for rescheduling this session. */
1063 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1064 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001065 /* Request to postpone the session, e.g., zero-wnd and transport
1066 * is not currently probing */
1067 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1068 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001069 /* This flow queue is "empty" so it should be re-evaluated before
1070 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001071 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001072 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001073
Florin Coras0d60a0f2018-06-29 02:02:08 -07001074 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001075 }
1076
Florin Coras11e9e352019-11-13 19:09:47 -08001077 if (transport_connection_is_tx_paced (ctx->tc))
1078 {
1079 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1080 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1081 {
1082 session_evt_add_head_old (wrk, elt);
1083 return SESSION_TX_NO_DATA;
1084 }
Florin Coras70f879d2020-03-13 17:54:42 +00001085 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1086 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1087 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001088 }
1089
Florin Coras8e43d042018-05-04 15:46:57 -07001090 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001091 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001092
Florin Coras8e43d042018-05-04 15:46:57 -07001093 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001094 {
Florin Coras11e9e352019-11-13 19:09:47 -08001095 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001096 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001097 return SESSION_TX_NO_DATA;
1098 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001099
Simon Zhangae16a982020-03-31 20:56:22 +08001100 vec_validate_aligned (wrk->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001101 CLIB_CACHE_LINE_BYTES);
Simon Zhangae16a982020-03-31 20:56:22 +08001102 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, ctx->n_bufs_needed);
1103 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001104 {
Florin Coras2068fd42019-01-31 14:35:50 -08001105 if (n_bufs)
1106 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001107 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001108 vlib_node_increment_counter (wrk->vm, node->node_index,
1109 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001110 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001111 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001112
Florin Coras7808df22020-11-02 18:00:32 -08001113 if (transport_connection_is_tx_paced (ctx->tc))
1114 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001115
Florin Corasf08f26d2018-05-10 13:20:47 -07001116 ctx->left_to_snd = ctx->max_len_to_snd;
1117 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001118
1119 while (n_left >= 4)
1120 {
1121 vlib_buffer_t *b0, *b1;
1122 u32 bi0, bi1;
1123
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001124 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001125 pb = vlib_get_buffer (vm, pbi);
1126 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001127 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001128 pb = vlib_get_buffer (vm, pbi);
1129 vlib_prefetch_buffer_header (pb, STORE);
1130
Florin Coras8a754f12019-10-16 22:35:18 -07001131 bi0 = wrk->tx_buffers[--n_bufs];
1132 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001133
1134 b0 = vlib_get_buffer (vm, bi0);
1135 b1 = vlib_get_buffer (vm, bi1);
1136
1137 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1138 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1139
1140 ctx->transport_vft->push_header (ctx->tc, b0);
1141 ctx->transport_vft->push_header (ctx->tc, b1);
1142
Florin Coras66cf5e02018-06-08 09:17:39 -07001143 n_left -= 2;
1144
1145 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
1146 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
1147
Florin Coras8a754f12019-10-16 22:35:18 -07001148 vec_add1 (wrk->pending_tx_buffers, bi0);
1149 vec_add1 (wrk->pending_tx_buffers, bi1);
1150 vec_add1 (wrk->pending_tx_nexts, next_index);
1151 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001152 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001153 while (n_left)
1154 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001155 vlib_buffer_t *b0;
1156 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001157
Florin Coras91ca4622018-06-30 11:27:59 -07001158 if (n_left > 1)
1159 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001160 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001161 pb = vlib_get_buffer (vm, pbi);
1162 vlib_prefetch_buffer_header (pb, STORE);
1163 }
1164
Florin Coras8a754f12019-10-16 22:35:18 -07001165 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001166 b0 = vlib_get_buffer (vm, bi0);
1167 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001168
Florin Coras66cf5e02018-06-08 09:17:39 -07001169 /* Ask transport to push header after current_length and
1170 * total_length_not_including_first_buffer are updated */
1171 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001172
Florin Coras66cf5e02018-06-08 09:17:39 -07001173 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001174
Florin Coras66cf5e02018-06-08 09:17:39 -07001175 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001176
Florin Coras8a754f12019-10-16 22:35:18 -07001177 vec_add1 (wrk->pending_tx_buffers, bi0);
1178 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001179 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001180
Florin Coras60183db2019-07-20 15:53:16 -07001181 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001182 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001183 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001184
Florin Coras2068fd42019-01-31 14:35:50 -08001185 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001186 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1187
Florin Corasf08f26d2018-05-10 13:20:47 -07001188 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001189
Florin Corascca96182019-07-19 07:34:13 -07001190 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1191 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1192
Florin Corasf08f26d2018-05-10 13:20:47 -07001193 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001194
1195 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1196 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001197 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001198 session_evt_add_old (wrk, elt);
1199 else
Florin Coras70f879d2020-03-13 17:54:42 +00001200 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001201
Florin Corasab57edb2020-04-07 03:46:07 +00001202 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001203 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001204 u32 n_dequeued = ctx->max_len_to_snd;
1205 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1206 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1207 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001208 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001209 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001210 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001211}
1212
1213int
Florin Coras60183db2019-07-20 15:53:16 -07001214session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1215 vlib_node_runtime_t * node,
1216 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001217{
Florin Coras60183db2019-07-20 15:53:16 -07001218 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001219}
1220
1221int
Florin Coras60183db2019-07-20 15:53:16 -07001222session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1223 vlib_node_runtime_t * node,
1224 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001225{
Florin Coras60183db2019-07-20 15:53:16 -07001226 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001227}
1228
Florin Coras371ca502018-02-21 12:07:41 -08001229int
Florin Coras60183db2019-07-20 15:53:16 -07001230session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001231 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001232 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001233{
Florin Coras9f86d222020-03-23 15:34:22 +00001234 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001235 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001236 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001237
Florin Corasc0737e92019-03-04 14:19:39 -08001238 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001239 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001240
1241 /* Clear custom-tx flag used to request reschedule for tx */
1242 s->flags &= ~SESSION_F_CUSTOM_TX;
1243
Florin Coras89235c72020-11-02 19:00:10 -08001244 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001245 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001246
Florin Coras9f86d222020-03-23 15:34:22 +00001247 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1248 *n_tx_packets += n_packets;
1249
1250 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001251 {
1252 session_evt_add_old (wrk, elt);
1253 }
Florin Coras9f86d222020-03-23 15:34:22 +00001254 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001255 {
1256 svm_fifo_unset_event (s->tx_fifo);
1257 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1258 if (svm_fifo_set_event (s->tx_fifo))
1259 session_evt_add_head_old (wrk, elt);
1260 }
1261
Florin Coras1e6a0f62021-03-09 08:36:25 -08001262 if (sp->max_burst_size &&
1263 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1264 session_dequeue_notify (s);
1265
Florin Corased8db522020-02-27 04:32:51 +00001266 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001267}
1268
Florin Coras288eaab2019-02-03 15:26:14 -08001269always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001270session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001271{
Florin Corasdb999df2020-09-21 10:45:56 -07001272 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1273 return 0;
1274
1275 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1276 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001277}
1278
Florin Coras60183db2019-07-20 15:53:16 -07001279always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001280session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1281{
1282 clib_llist_index_t ei;
1283 void (*fp) (void *);
1284 session_event_t *e;
1285 session_t *s;
1286
1287 ei = clib_llist_entry_index (wrk->event_elts, elt);
1288 e = &elt->evt;
1289
1290 switch (e->event_type)
1291 {
1292 case SESSION_CTRL_EVT_RPC:
1293 fp = e->rpc_args.fp;
1294 (*fp) (e->rpc_args.arg);
1295 break;
1296 case SESSION_CTRL_EVT_CLOSE:
1297 s = session_get_from_handle_if_valid (e->session_handle);
1298 if (PREDICT_FALSE (!s))
1299 break;
1300 session_transport_close (s);
1301 break;
1302 case SESSION_CTRL_EVT_RESET:
1303 s = session_get_from_handle_if_valid (e->session_handle);
1304 if (PREDICT_FALSE (!s))
1305 break;
1306 session_transport_reset (s);
1307 break;
1308 case SESSION_CTRL_EVT_LISTEN:
1309 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1310 break;
1311 case SESSION_CTRL_EVT_LISTEN_URI:
1312 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1313 break;
1314 case SESSION_CTRL_EVT_UNLISTEN:
1315 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1316 break;
1317 case SESSION_CTRL_EVT_CONNECT:
1318 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1319 break;
1320 case SESSION_CTRL_EVT_CONNECT_URI:
1321 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1322 break;
1323 case SESSION_CTRL_EVT_DISCONNECT:
1324 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1325 break;
1326 case SESSION_CTRL_EVT_DISCONNECTED:
1327 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1328 break;
1329 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1330 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1331 break;
1332 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1333 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1334 elt));
1335 break;
1336 case SESSION_CTRL_EVT_RESET_REPLY:
1337 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1338 break;
1339 case SESSION_CTRL_EVT_WORKER_UPDATE:
1340 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1341 break;
1342 case SESSION_CTRL_EVT_APP_DETACH:
1343 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1344 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001345 case SESSION_CTRL_EVT_APP_WRK_RPC:
1346 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1347 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001348 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1349 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1350 break;
Florin Coras458089b2019-08-21 16:20:44 -07001351 default:
1352 clib_warning ("unhandled event type %d", e->event_type);
1353 }
1354
1355 /* Regrab elements in case pool moved */
1356 elt = pool_elt_at_index (wrk->event_elts, ei);
1357 if (!clib_llist_elt_is_linked (elt, evt_list))
1358 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001359 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001360 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1361 session_evt_ctrl_data_free (wrk, elt);
1362 session_evt_elt_free (wrk, elt);
1363 }
Srikanth Akula73570432020-04-06 19:19:49 -07001364 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001365}
1366
1367always_inline void
1368session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001369 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001370{
Florin Coras60183db2019-07-20 15:53:16 -07001371 session_main_t *smm = &session_main;
1372 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001373 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001374 session_event_t *e;
1375 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001376
Florin Corasb0ffbee2019-07-21 19:23:46 -07001377 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001378 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001379
Florin Coras60183db2019-07-20 15:53:16 -07001380 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001381 {
Florin Coras60183db2019-07-20 15:53:16 -07001382 case SESSION_IO_EVT_TX_FLUSH:
1383 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001384 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001385 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001386 break;
Florin Coras60183db2019-07-20 15:53:16 -07001387 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1388 wrk->ctx.s = s;
1389 /* Spray packets in per session type frames, since they go to
1390 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001391 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001392 break;
1393 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001394 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001395 if (!s)
1396 break;
1397 transport_app_rx_evt (session_get_transport_proto (s),
1398 s->connection_index, s->thread_index);
1399 break;
Florin Coras60183db2019-07-20 15:53:16 -07001400 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001401 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001402 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1403 break;
1404 svm_fifo_unset_event (s->rx_fifo);
1405 app_wrk = app_worker_get (s->app_wrk_index);
1406 app_worker_builtin_rx (app_wrk, s);
1407 break;
1408 case SESSION_IO_EVT_BUILTIN_TX:
1409 s = session_get_from_handle_if_valid (e->session_handle);
1410 wrk->ctx.s = s;
1411 if (PREDICT_TRUE (s != 0))
1412 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1413 break;
Florin Coras60183db2019-07-20 15:53:16 -07001414 default:
1415 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001416 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001417
Srikanth Akula73570432020-04-06 19:19:49 -07001418 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1419
Florin Corasb0ffbee2019-07-21 19:23:46 -07001420 /* Regrab elements in case pool moved */
1421 elt = pool_elt_at_index (wrk->event_elts, ei);
1422 if (!clib_llist_elt_is_linked (elt, evt_list))
1423 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001424}
1425
Florin Coras458089b2019-08-21 16:20:44 -07001426/* *INDENT-OFF* */
1427static const u32 session_evt_msg_sizes[] = {
1428#define _(symc, sym) \
1429 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1430 foreach_session_ctrl_evt
1431#undef _
1432};
1433/* *INDENT-ON* */
1434
1435always_inline void
1436session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1437{
1438 session_evt_elt_t *elt;
1439
1440 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1441 {
1442 elt = session_evt_alloc_ctrl (wrk);
1443 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1444 {
1445 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1446 elt->evt.event_type = evt->event_type;
1447 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1448 session_evt_msg_sizes[evt->event_type]);
1449 }
1450 else
1451 {
1452 /* Internal control events fit into io events footprint */
1453 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1454 }
1455 }
1456 else
1457 {
1458 elt = session_evt_alloc_new (wrk);
1459 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1460 }
1461}
1462
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001463static void
1464session_flush_pending_tx_buffers (session_worker_t * wrk,
1465 vlib_node_runtime_t * node)
1466{
1467 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1468 wrk->pending_tx_nexts,
1469 vec_len (wrk->pending_tx_nexts));
1470 vec_reset_length (wrk->pending_tx_buffers);
1471 vec_reset_length (wrk->pending_tx_nexts);
1472}
1473
Florin Coras41d5f542021-01-15 13:49:33 -08001474int
1475session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1476{
1477 svm_msg_q_msg_t _msg, *msg = &_msg;
1478 u32 i, n_to_dequeue = 0;
1479 session_event_t *evt;
1480
1481 n_to_dequeue = svm_msg_q_size (mq);
1482 for (i = 0; i < n_to_dequeue; i++)
1483 {
1484 svm_msg_q_sub_raw (mq, msg);
1485 evt = svm_msg_q_msg_data (mq, msg);
1486 session_evt_add_to_list (wrk, evt);
1487 svm_msg_q_free_msg (mq, msg);
1488 }
1489
1490 return n_to_dequeue;
1491}
1492
Florin Coras7da88292021-03-18 15:04:34 -07001493static void
1494session_wrk_timerfd_update (session_worker_t *wrk, u64 time_ns)
1495{
1496 struct itimerspec its;
1497
1498 its.it_value.tv_sec = 0;
1499 its.it_value.tv_nsec = time_ns;
1500 its.it_interval.tv_sec = 0;
1501 its.it_interval.tv_nsec = its.it_value.tv_nsec;
1502
1503 if (timerfd_settime (wrk->timerfd, 0, &its, NULL) == -1)
1504 clib_warning ("timerfd_settime");
1505}
1506
1507always_inline u64
1508session_wrk_tfd_timeout (session_wrk_state_t state, u32 thread_index)
1509{
1510 if (state == SESSION_WRK_INTERRUPT)
1511 return thread_index ? 1e6 : vlib_num_workers () ? 5e8 : 1e6;
1512 else if (state == SESSION_WRK_IDLE)
1513 return thread_index ? 1e8 : vlib_num_workers () ? 5e8 : 1e8;
1514 else
1515 return 0;
1516}
1517
1518static inline void
Florin Coras1c19aef2021-04-06 15:54:14 -07001519session_wrk_set_state (session_worker_t *wrk, session_wrk_state_t state)
Florin Coras7da88292021-03-18 15:04:34 -07001520{
1521 u64 time_ns;
1522
1523 wrk->state = state;
1524 time_ns = session_wrk_tfd_timeout (state, wrk->vm->thread_index);
1525 session_wrk_timerfd_update (wrk, time_ns);
1526}
1527
1528static void
1529session_wrk_update_state (session_worker_t *wrk)
1530{
1531 vlib_main_t *vm = wrk->vm;
1532
1533 if (wrk->state == SESSION_WRK_POLLING)
1534 {
1535 if (pool_elts (wrk->event_elts) == 3 &&
1536 vlib_last_vectors_per_main_loop (vm) < 1)
1537 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001538 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001539 vlib_node_set_state (vm, session_queue_node.index,
1540 VLIB_NODE_STATE_INTERRUPT);
1541 }
1542 }
1543 else if (wrk->state == SESSION_WRK_INTERRUPT)
1544 {
1545 if (pool_elts (wrk->event_elts) > 3 ||
1546 vlib_last_vectors_per_main_loop (vm) > 1)
1547 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001548 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001549 vlib_node_set_state (vm, session_queue_node.index,
1550 VLIB_NODE_STATE_POLLING);
1551 }
1552 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1553 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001554 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001555 }
1556 }
1557 else
1558 {
1559 if (pool_elts (wrk->event_elts))
1560 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001561 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001562 }
1563 }
1564}
1565
Florin Coras0d60a0f2018-06-29 02:02:08 -07001566static uword
1567session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1568 vlib_frame_t * frame)
1569{
Florin Coras41d5f542021-01-15 13:49:33 -08001570 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001571 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001572 session_main_t *smm = vnet_get_session_main ();
1573 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001574 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001575 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001576
Florin Corascca96182019-07-19 07:34:13 -07001577 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001578
Florin Coras8f10b902021-04-02 18:32:00 -07001579 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001580
Florin Coras0d60a0f2018-06-29 02:02:08 -07001581 /*
1582 * Update transport time
1583 */
Florin Coras60183db2019-07-20 15:53:16 -07001584 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001585 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001586 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001587
Florin Corasb0ffbee2019-07-21 19:23:46 -07001588 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001589 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001590 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001591
Florin Coras41d5f542021-01-15 13:49:33 -08001592 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1593 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001594
Florin Corasb0ffbee2019-07-21 19:23:46 -07001595 /*
1596 * Handle control events
1597 */
1598
1599 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1600
Florin Corasb0ffbee2019-07-21 19:23:46 -07001601 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1602 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001603 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001604 }));
Florin Corasb0ffbee2019-07-21 19:23:46 -07001605
Srikanth Akula73570432020-04-06 19:19:49 -07001606 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1607
Florin Corasb0ffbee2019-07-21 19:23:46 -07001608 /*
1609 * Handle the new io events.
1610 */
1611
1612 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001613 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1614 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001615
Florin Coras16d974e2020-02-09 20:03:12 +00001616 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001617 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001618 {
1619 elt = pool_elt_at_index (wrk->event_elts, ei);
1620 ei = clib_llist_next_index (elt, evt_list);
1621 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001622 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001623 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001624
Srikanth Akula73570432020-04-06 19:19:49 -07001625 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1626
Florin Corasb0ffbee2019-07-21 19:23:46 -07001627 /*
Florin Coras45b79732019-10-30 19:22:51 -07001628 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001629 */
1630
Florin Coras45b79732019-10-30 19:22:51 -07001631 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001632 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001633 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001634 ei = clib_llist_next_index (old_he, evt_list);
1635
Florin Coras89235c72020-11-02 19:00:10 -08001636 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001637 {
Florin Corasdd97a482019-11-02 14:32:52 -07001638 elt = pool_elt_at_index (wrk->event_elts, ei);
1639 next_ei = clib_llist_next_index (elt, evt_list);
1640 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001641
Florin Corasdb999df2020-09-21 10:45:56 -07001642 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001643
Florin Coras45b79732019-10-30 19:22:51 -07001644 if (ei == old_ti)
1645 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001646
1647 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001648 };
1649 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001650
Srikanth Akula73570432020-04-06 19:19:49 -07001651 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1652
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001653 if (vec_len (wrk->pending_tx_buffers))
1654 session_flush_pending_tx_buffers (wrk, node);
1655
Florin Coras0d60a0f2018-06-29 02:02:08 -07001656 vlib_node_increment_counter (vm, session_queue_node.index,
1657 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1658
Florin Corascca96182019-07-19 07:34:13 -07001659 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001660
Florin Coras7da88292021-03-18 15:04:34 -07001661 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1662 session_wrk_update_state (wrk);
1663
Florin Coras0d60a0f2018-06-29 02:02:08 -07001664 return n_tx_packets;
1665}
1666
1667/* *INDENT-OFF* */
1668VLIB_REGISTER_NODE (session_queue_node) =
1669{
1670 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001671 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001672 .name = "session-queue",
1673 .format_trace = format_session_queue_trace,
1674 .type = VLIB_NODE_TYPE_INPUT,
1675 .n_errors = ARRAY_LEN (session_queue_error_strings),
1676 .error_strings = session_queue_error_strings,
1677 .state = VLIB_NODE_STATE_DISABLED,
1678};
1679/* *INDENT-ON* */
1680
Dave Barach2a863912017-11-28 10:11:42 -05001681static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001682session_wrk_tfd_read_ready (clib_file_t *cf)
1683{
1684 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1685 u64 buf;
1686 int rv;
1687
1688 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1689 rv = read (wrk->timerfd, &buf, sizeof (buf));
1690 if (rv < 0 && errno != EAGAIN)
1691 clib_unix_warning ("failed");
1692 return 0;
1693}
1694
1695static clib_error_t *
1696session_wrk_tfd_write_ready (clib_file_t *cf)
1697{
1698 return 0;
1699}
1700
1701void
1702session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1703{
1704 u32 thread_index = wrk->vm->thread_index;
1705 clib_file_t template = { 0 };
1706
1707 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1708 clib_warning ("timerfd_create");
1709
1710 template.read_function = session_wrk_tfd_read_ready;
1711 template.write_function = session_wrk_tfd_write_ready;
1712 template.file_descriptor = wrk->timerfd;
1713 template.private_data = thread_index;
1714 template.polling_thread_index = thread_index;
1715 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1716
1717 wrk->timerfd_file = clib_file_add (&file_main, &template);
1718 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1719}
1720
1721static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001722session_queue_exit (vlib_main_t * vm)
1723{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001724 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001725 return 0;
1726
1727 /*
1728 * Shut off (especially) worker-thread session nodes.
1729 * Otherwise, vpp can crash as the main thread unmaps the
1730 * API segment.
1731 */
1732 vlib_worker_thread_barrier_sync (vm);
1733 session_node_enable_disable (0 /* is_enable */ );
1734 vlib_worker_thread_barrier_release (vm);
1735 return 0;
1736}
1737
1738VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1739
Florin Corasfd542f12018-05-16 19:28:24 -07001740static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001741session_queue_run_on_main (vlib_main_t * vm)
1742{
1743 vlib_node_runtime_t *node;
1744
1745 node = vlib_node_get_runtime (vm, session_queue_node.index);
1746 return session_queue_node_fn (vm, node, 0);
1747}
1748
1749static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001750session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1751 vlib_frame_t * f)
1752{
Florin Corasfd542f12018-05-16 19:28:24 -07001753 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001754 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001755 uword event_type;
1756
1757 while (1)
1758 {
1759 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001760 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1761
1762 switch (event_type)
1763 {
Florin Coras5484daa2020-03-27 23:55:06 +00001764 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1765 /* Run session queue node on main thread */
1766 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001767 break;
1768 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001769 vlib_node_set_state (vm, session_queue_process_node.index,
1770 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001771 timeout = 100000.0;
1772 break;
1773 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001774 /* Timed out. Run on main to ensure all events are handled */
1775 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001776 break;
1777 }
1778 vec_reset_length (event_data);
1779 }
1780 return 0;
1781}
1782
1783/* *INDENT-OFF* */
1784VLIB_REGISTER_NODE (session_queue_process_node) =
1785{
1786 .function = session_queue_process,
1787 .type = VLIB_NODE_TYPE_PROCESS,
1788 .name = "session-queue-process",
1789 .state = VLIB_NODE_STATE_DISABLED,
1790};
1791/* *INDENT-ON* */
1792
Florin Coras653e43f2019-03-04 10:56:23 -08001793static_always_inline uword
1794session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1795 vlib_frame_t * frame)
1796{
1797 session_main_t *sm = &session_main;
1798 if (!sm->wrk[0].vpp_event_queue)
1799 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001800 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001801 return session_queue_node_fn (vm, node, frame);
1802}
1803
1804/* *INDENT-OFF* */
1805VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1806{
1807 .function = session_queue_pre_input_inline,
1808 .type = VLIB_NODE_TYPE_PRE_INPUT,
1809 .name = "session-queue-main",
1810 .state = VLIB_NODE_STATE_DISABLED,
1811};
1812/* *INDENT-ON* */
1813
Dave Barach68b0fb02017-02-28 15:15:56 -05001814/*
1815 * fd.io coding-style-patch-verification: ON
1816 *
1817 * Local Variables:
1818 * eval: (c-set-style "gnu")
1819 * End:
1820 */