blob: 810c75061afb54b71c75d20b26df14716133bd57 [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 Corasa48dffe2021-05-16 10:58:53 -070036static void
37session_wrk_timerfd_update (session_worker_t *wrk, u64 time_ns)
38{
39 struct itimerspec its;
40
41 its.it_value.tv_sec = 0;
42 its.it_value.tv_nsec = time_ns;
43 its.it_interval.tv_sec = 0;
44 its.it_interval.tv_nsec = its.it_value.tv_nsec;
45
46 if (timerfd_settime (wrk->timerfd, 0, &its, NULL) == -1)
47 clib_warning ("timerfd_settime");
48}
49
50always_inline u64
51session_wrk_tfd_timeout (session_wrk_state_t state, u32 thread_index)
52{
53 if (state == SESSION_WRK_INTERRUPT)
54 return thread_index ? 1e6 : vlib_num_workers () ? 5e8 : 1e6;
55 else if (state == SESSION_WRK_IDLE)
56 return thread_index ? 1e8 : vlib_num_workers () ? 5e8 : 1e8;
57 else
58 return 0;
59}
60
61static inline void
62session_wrk_set_state (session_worker_t *wrk, session_wrk_state_t state)
63{
64 u64 time_ns;
65
66 wrk->state = state;
67 if (wrk->timerfd == -1)
68 return;
69 time_ns = session_wrk_tfd_timeout (state, wrk->vm->thread_index);
70 session_wrk_timerfd_update (wrk, time_ns);
71}
72
Florin Coras4ac25842021-04-19 17:34:54 -070073static transport_endpt_ext_cfg_t *
74session_mq_get_ext_config (application_t *app, uword offset)
75{
76 svm_fifo_chunk_t *c;
77 fifo_segment_t *fs;
78
79 fs = application_get_rx_mqs_segment (app);
80 c = fs_chunk_ptr (fs->h, offset);
81 return (transport_endpt_ext_cfg_t *) c->data;
82}
83
84static void
85session_mq_free_ext_config (application_t *app, uword offset)
86{
Florin Coras4ac25842021-04-19 17:34:54 -070087 svm_fifo_chunk_t *c;
88 fifo_segment_t *fs;
89
90 fs = application_get_rx_mqs_segment (app);
91 c = fs_chunk_ptr (fs->h, offset);
Florin Coras5c97dbf2021-04-27 13:30:37 -070092 fifo_segment_collect_chunk (fs, 0 /* only one slice */, c);
Florin Coras4ac25842021-04-19 17:34:54 -070093}
94
Florin Coras2b81e3c2019-02-27 07:55:46 -080095static void
Florin Coras458089b2019-08-21 16:20:44 -070096session_mq_listen_handler (void *data)
Florin Coras2b81e3c2019-02-27 07:55:46 -080097{
Florin Coras458089b2019-08-21 16:20:44 -070098 session_listen_msg_t *mp = (session_listen_msg_t *) data;
99 vnet_listen_args_t _a, *a = &_a;
100 app_worker_t *app_wrk;
101 application_t *app;
102 int rv;
103
104 app_check_thread_and_barrier (session_mq_listen_handler, mp);
105
106 app = application_lookup (mp->client_index);
107 if (!app)
108 return;
109
110 clib_memset (a, 0, sizeof (*a));
111 a->sep.is_ip4 = mp->is_ip4;
Florin Corasea7e7082020-07-07 17:57:28 -0700112 ip_copy (&a->sep.ip, &mp->ip, mp->is_ip4);
Florin Coras458089b2019-08-21 16:20:44 -0700113 a->sep.port = mp->port;
114 a->sep.fib_index = mp->vrf;
115 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
116 a->sep.transport_proto = mp->proto;
117 a->app_index = app->app_index;
118 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +0000119 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700120
Florin Coras4ac25842021-04-19 17:34:54 -0700121 if (mp->ext_config)
122 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
123
Florin Coras458089b2019-08-21 16:20:44 -0700124 if ((rv = vnet_listen (a)))
Florin Coras585c86a2020-10-16 17:57:36 -0700125 clib_warning ("listen returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700126
127 app_wrk = application_get_worker (app, mp->wrk_index);
128 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
Florin Coras4ac25842021-04-19 17:34:54 -0700129
130 if (mp->ext_config)
131 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700132}
133
134static void
135session_mq_listen_uri_handler (void *data)
136{
137 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
138 vnet_listen_args_t _a, *a = &_a;
139 app_worker_t *app_wrk;
140 application_t *app;
141 int rv;
142
143 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
144
145 app = application_lookup (mp->client_index);
146 if (!app)
147 return;
148
149 clib_memset (a, 0, sizeof (*a));
150 a->uri = (char *) mp->uri;
151 a->app_index = app->app_index;
152 rv = vnet_bind_uri (a);
153
154 app_wrk = application_get_worker (app, 0);
155 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
156}
157
158static void
Florin Corasaf972212021-05-05 09:54:00 -0700159session_mq_connect_one (session_connect_msg_t *mp)
Florin Coras458089b2019-08-21 16:20:44 -0700160{
Florin Coras458089b2019-08-21 16:20:44 -0700161 vnet_connect_args_t _a, *a = &_a;
162 app_worker_t *app_wrk;
163 application_t *app;
164 int rv;
165
Florin Coras458089b2019-08-21 16:20:44 -0700166 app = application_lookup (mp->client_index);
167 if (!app)
168 return;
169
170 clib_memset (a, 0, sizeof (*a));
171 a->sep.is_ip4 = mp->is_ip4;
172 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
173 a->sep.port = mp->port;
174 a->sep.transport_proto = mp->proto;
175 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700176 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000177 if (mp->is_ip4)
178 {
179 ip46_address_mask_ip4 (&a->sep.ip);
180 ip46_address_mask_ip4 (&a->sep.peer.ip);
181 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000182 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700183 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
184 a->sep_ext.parent_handle = mp->parent_handle;
Florin Corasd85666f2020-04-03 00:58:48 +0000185 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700186 a->api_context = mp->context;
187 a->app_index = app->app_index;
188 a->wrk_map_index = mp->wrk_index;
189
Florin Coras4ac25842021-04-19 17:34:54 -0700190 if (mp->ext_config)
191 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
192
Florin Coras458089b2019-08-21 16:20:44 -0700193 if ((rv = vnet_connect (a)))
194 {
Florin Coras57660d92020-04-04 22:45:34 +0000195 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700196 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700197 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700198 }
199
Florin Coras4ac25842021-04-19 17:34:54 -0700200 if (mp->ext_config)
201 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700202}
203
204static void
Florin Corasaf972212021-05-05 09:54:00 -0700205session_mq_handle_connects_rpc (void *arg)
206{
207 u32 max_connects = 32, n_connects = 0;
208 vlib_main_t *vm = vlib_get_main ();
209 session_evt_elt_t *he, *elt, *next;
Florin Corasa48dffe2021-05-16 10:58:53 -0700210 session_worker_t *fwrk, *wrk;
Florin Corasaf972212021-05-05 09:54:00 -0700211
212 ASSERT (vlib_get_thread_index () == 0);
213
214 /* Pending connects on linked list pertaining to first worker */
215 fwrk = session_main_get_worker (1);
Florin Coras0f273392021-05-21 15:48:18 -0700216 if (!fwrk->n_pending_connects)
217 goto update_state;
Florin Corasaf972212021-05-05 09:54:00 -0700218
219 vlib_worker_thread_barrier_sync (vm);
220
Florin Coras46b8b1a2021-05-17 19:09:33 -0700221 he = clib_llist_elt (fwrk->event_elts, fwrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700222 elt = clib_llist_next (fwrk->event_elts, evt_list, he);
223
224 /* Avoid holding the barrier for too long */
225 while (n_connects < max_connects && elt != he)
226 {
227 next = clib_llist_next (fwrk->event_elts, evt_list, elt);
228 clib_llist_remove (fwrk->event_elts, evt_list, elt);
229 session_mq_connect_one (session_evt_ctrl_data (fwrk, elt));
Florin Coras46b8b1a2021-05-17 19:09:33 -0700230 clib_llist_put (fwrk->event_elts, elt);
Florin Corasaf972212021-05-05 09:54:00 -0700231 elt = next;
232 n_connects += 1;
233 }
234
Florin Coras0f273392021-05-21 15:48:18 -0700235 /* Decrement with worker barrier */
236 fwrk->n_pending_connects -= n_connects;
237
238 vlib_worker_thread_barrier_release (vm);
239
240update_state:
241
Florin Corasa48dffe2021-05-16 10:58:53 -0700242 /* Switch worker to poll mode if it was in interrupt mode and had work or
243 * back to interrupt if threshold of loops without a connect is passed.
244 * While in poll mode, reprogram connects rpc */
245 wrk = session_main_get_worker (0);
246 if (wrk->state != SESSION_WRK_POLLING)
Florin Corasaf972212021-05-05 09:54:00 -0700247 {
Florin Coras0f273392021-05-21 15:48:18 -0700248 if (n_connects)
249 {
250 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
251 vlib_node_set_state (vm, session_queue_node.index,
252 VLIB_NODE_STATE_POLLING);
253 wrk->no_connect_loops = 0;
254 }
Florin Corasa48dffe2021-05-16 10:58:53 -0700255 }
256 else
257 {
258 if (!n_connects)
259 {
260 if (++wrk->no_connect_loops > 1e5)
261 {
262 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
263 vlib_node_set_state (vm, session_queue_node.index,
264 VLIB_NODE_STATE_INTERRUPT);
Florin Corasa48dffe2021-05-16 10:58:53 -0700265 }
266 }
267 else
268 wrk->no_connect_loops = 0;
Florin Corasaf972212021-05-05 09:54:00 -0700269 }
270
Florin Coras0f273392021-05-21 15:48:18 -0700271 if (wrk->state == SESSION_WRK_POLLING)
272 {
273 elt = session_evt_alloc_ctrl (wrk);
274 elt->evt.event_type = SESSION_CTRL_EVT_RPC;
275 elt->evt.rpc_args.fp = session_mq_handle_connects_rpc;
276 }
Florin Corasaf972212021-05-05 09:54:00 -0700277}
278
279static void
280session_mq_connect_handler (session_worker_t *wrk, session_evt_elt_t *elt)
281{
282 u32 thread_index = wrk - session_main.wrk;
283 session_evt_elt_t *he;
284
285 /* No workers, so just deal with the connect now */
286 if (PREDICT_FALSE (!thread_index))
287 {
288 session_mq_connect_one (session_evt_ctrl_data (wrk, elt));
289 return;
290 }
291
292 if (PREDICT_FALSE (thread_index != 1))
293 {
294 clib_warning ("Connect on wrong thread. Dropping");
295 return;
296 }
297
298 /* Add to pending list to be handled by main thread */
Florin Coras46b8b1a2021-05-17 19:09:33 -0700299 he = clib_llist_elt (wrk->event_elts, wrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700300 clib_llist_add_tail (wrk->event_elts, evt_list, elt, he);
301
Florin Coras0f273392021-05-21 15:48:18 -0700302 /* Decremented with worker barrier */
303 wrk->n_pending_connects += 1;
304 if (wrk->n_pending_connects == 1)
Florin Corasaf972212021-05-05 09:54:00 -0700305 {
306 vlib_node_set_interrupt_pending (vlib_get_main_by_index (0),
307 session_queue_node.index);
308 session_send_rpc_evt_to_thread (0, session_mq_handle_connects_rpc, 0);
Florin Corasaf972212021-05-05 09:54:00 -0700309 }
310}
311
312static void
Florin Coras458089b2019-08-21 16:20:44 -0700313session_mq_connect_uri_handler (void *data)
314{
315 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
316 vnet_connect_args_t _a, *a = &_a;
317 app_worker_t *app_wrk;
318 application_t *app;
319 int rv;
320
321 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
322
323 app = application_lookup (mp->client_index);
324 if (!app)
325 return;
326
327 clib_memset (a, 0, sizeof (*a));
328 a->uri = (char *) mp->uri;
329 a->api_context = mp->context;
330 a->app_index = app->app_index;
331 if ((rv = vnet_connect_uri (a)))
332 {
333 clib_warning ("connect_uri returned: %d", rv);
334 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700335 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700336 }
337}
338
339static void
liuyacan534468e2021-05-09 03:50:40 +0000340session_mq_shutdown_handler (void *data)
341{
342 session_shutdown_msg_t *mp = (session_shutdown_msg_t *) data;
343 vnet_shutdown_args_t _a, *a = &_a;
344 application_t *app;
345
346 app = application_lookup (mp->client_index);
347 if (!app)
348 return;
349
350 a->app_index = app->app_index;
351 a->handle = mp->handle;
352 vnet_shutdown_session (a);
353}
354
355static void
Florin Coras458089b2019-08-21 16:20:44 -0700356session_mq_disconnect_handler (void *data)
357{
358 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
359 vnet_disconnect_args_t _a, *a = &_a;
360 application_t *app;
361
362 app = application_lookup (mp->client_index);
363 if (!app)
364 return;
365
366 a->app_index = app->app_index;
367 a->handle = mp->handle;
368 vnet_disconnect_session (a);
369}
370
371static void
372app_mq_detach_handler (void *data)
373{
374 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
375 vnet_app_detach_args_t _a, *a = &_a;
376 application_t *app;
377
378 app_check_thread_and_barrier (app_mq_detach_handler, mp);
379
380 app = application_lookup (mp->client_index);
381 if (!app)
382 return;
383
384 a->app_index = app->app_index;
385 a->api_client_index = mp->client_index;
386 vnet_application_detach (a);
387}
388
389static void
Florin Corasc53eb722021-06-22 14:20:39 -0700390session_mq_unlisten_rpc (session_unlisten_msg_t *mp)
Florin Coras458089b2019-08-21 16:20:44 -0700391{
Florin Corasc53eb722021-06-22 14:20:39 -0700392 vlib_main_t *vm = vlib_get_main ();
Florin Coras458089b2019-08-21 16:20:44 -0700393 vnet_unlisten_args_t _a, *a = &_a;
394 app_worker_t *app_wrk;
Florin Corasc53eb722021-06-22 14:20:39 -0700395 session_handle_t sh;
Florin Coras458089b2019-08-21 16:20:44 -0700396 application_t *app;
Florin Corasc53eb722021-06-22 14:20:39 -0700397 u32 context;
Florin Coras458089b2019-08-21 16:20:44 -0700398 int rv;
399
Florin Corasc53eb722021-06-22 14:20:39 -0700400 sh = mp->handle;
401 context = mp->context;
402
403 vlib_worker_thread_barrier_sync (vm);
Florin Coras458089b2019-08-21 16:20:44 -0700404
405 app = application_lookup (mp->client_index);
406 if (!app)
407 return;
408
409 clib_memset (a, 0, sizeof (*a));
410 a->app_index = app->app_index;
Florin Corasc53eb722021-06-22 14:20:39 -0700411 a->handle = sh;
Florin Coras458089b2019-08-21 16:20:44 -0700412 a->wrk_map_index = mp->wrk_index;
413 if ((rv = vnet_unlisten (a)))
414 clib_warning ("unlisten returned: %d", rv);
415
416 app_wrk = application_get_worker (app, a->wrk_map_index);
417 if (!app_wrk)
418 return;
419
Florin Corasc53eb722021-06-22 14:20:39 -0700420 vlib_worker_thread_barrier_release (vm);
421
422 mq_send_unlisten_reply (app_wrk, sh, context, rv);
423 clib_mem_free (mp);
424}
425
426static void
427session_mq_unlisten_handler (session_worker_t *wrk, session_evt_elt_t *elt)
428{
429 u32 thread_index = wrk - session_main.wrk;
430 session_unlisten_msg_t *mp, *arg;
431
432 mp = session_evt_ctrl_data (wrk, elt);
433 arg = clib_mem_alloc (sizeof (session_unlisten_msg_t));
434 clib_memcpy_fast (arg, mp, sizeof (*arg));
435
436 if (PREDICT_FALSE (!thread_index))
437 {
438 session_mq_unlisten_rpc (arg);
439 return;
440 }
441
442 session_send_rpc_evt_to_thread_force (0, session_mq_unlisten_rpc, arg);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800443}
444
Florin Coras52207f12018-07-12 14:48:06 -0700445static void
446session_mq_accepted_reply_handler (void *data)
447{
448 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
449 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800450 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700451 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800452 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700453
454 /* Server isn't interested, kill the session */
455 if (mp->retval)
456 {
457 a->app_index = mp->context;
458 a->handle = mp->handle;
459 vnet_disconnect_session (a);
460 return;
461 }
462
Florin Coras2b81e3c2019-02-27 07:55:46 -0800463 /* Mail this back from the main thread. We're not polling in main
464 * thread so we're using other workers for notifications. */
465 if (vlib_num_workers () && vlib_get_thread_index () != 0
466 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700467 {
Florin Coras458089b2019-08-21 16:20:44 -0700468 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
469 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800470 return;
471 }
472
473 s = session_get_from_handle_if_valid (mp->handle);
474 if (!s)
475 return;
476
477 app_wrk = app_worker_get (s->app_wrk_index);
478 if (app_wrk->app_index != mp->context)
479 {
480 clib_warning ("app doesn't own session");
481 return;
482 }
483
484 if (!session_has_transport (s))
485 {
Florin Coras653e43f2019-03-04 10:56:23 -0800486 s->session_state = SESSION_STATE_READY;
Florin Coras6973c732021-06-17 15:53:38 -0700487 if (ct_session_connect_notify (s, SESSION_E_NONE))
Florin Coras52207f12018-07-12 14:48:06 -0700488 return;
Florin Coras52207f12018-07-12 14:48:06 -0700489 }
490 else
491 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800492 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700493 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600494
495 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800496 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800497
498 /* Closed while waiting for app to reply. Resend disconnect */
499 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
500 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700501 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800502 s->session_state = old_state;
503 return;
504 }
Florin Coras52207f12018-07-12 14:48:06 -0700505 }
506}
507
508static void
509session_mq_reset_reply_handler (void *data)
510{
Florin Coras4af830c2018-12-04 09:21:36 -0800511 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700512 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700513 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800514 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700515 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700516 u32 index, thread_index;
517
518 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800519 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700520 if (!app)
521 return;
522
523 session_parse_handle (mp->handle, &index, &thread_index);
524 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800525
Florin Corasf1910322019-12-05 12:05:57 -0800526 /* No session or not the right session */
527 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800528 return;
529
Florin Coras15531972018-08-12 23:50:53 -0700530 app_wrk = app_worker_get (s->app_wrk_index);
531 if (!app_wrk || app_wrk->app_index != app->app_index)
532 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200533 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700534 mp->handle);
535 return;
536 }
Florin Coras52207f12018-07-12 14:48:06 -0700537
538 /* Client objected to resetting the session, log and continue */
539 if (mp->retval)
540 {
541 clib_warning ("client retval %d", mp->retval);
542 return;
543 }
544
545 /* This comes as a response to a reset, transport only waiting for
546 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800547 a->handle = mp->handle;
548 a->app_index = app->app_index;
549 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700550}
551
552static void
553session_mq_disconnected_handler (void *data)
554{
555 session_disconnected_reply_msg_t *rmp;
556 vnet_disconnect_args_t _a, *a = &_a;
557 svm_msg_q_msg_t _msg, *msg = &_msg;
558 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700559 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700560 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800561 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700562 application_t *app;
563 int rv = 0;
564
565 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700566 if (!(s = session_get_from_handle_if_valid (mp->handle)))
567 {
568 clib_warning ("could not disconnect handle %llu", mp->handle);
569 return;
570 }
Florin Coras15531972018-08-12 23:50:53 -0700571 app_wrk = app_worker_get (s->app_wrk_index);
572 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700573 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700574 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700575 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700576 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700577 return;
Florin Coras52207f12018-07-12 14:48:06 -0700578 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700579
580 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700581 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700582 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700583
Florin Coras15531972018-08-12 23:50:53 -0700584 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700585 SESSION_MQ_CTRL_EVT_RING,
586 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700587 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400588 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800589 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700590 rmp = (session_disconnected_reply_msg_t *) evt->data;
591 rmp->handle = mp->handle;
592 rmp->context = mp->context;
593 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700594 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700595}
596
597static void
598session_mq_disconnected_reply_handler (void *data)
599{
600 session_disconnected_reply_msg_t *mp;
601 vnet_disconnect_args_t _a, *a = &_a;
602 application_t *app;
603
604 mp = (session_disconnected_reply_msg_t *) data;
605
606 /* Client objected to disconnecting the session, log and continue */
607 if (mp->retval)
608 {
609 clib_warning ("client retval %d", mp->retval);
610 return;
611 }
612
613 /* Disconnect has been confirmed. Confirm close to transport */
614 app = application_lookup (mp->context);
615 if (app)
616 {
617 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700618 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700619 vnet_disconnect_session (a);
620 }
621}
622
Florin Coras30e79c22019-01-02 19:31:22 -0800623static void
624session_mq_worker_update_handler (void *data)
625{
626 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
627 session_worker_update_reply_msg_t *rmp;
628 svm_msg_q_msg_t _msg, *msg = &_msg;
629 app_worker_t *app_wrk;
630 u32 owner_app_wrk_map;
631 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800632 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800633 application_t *app;
634
635 app = application_lookup (mp->client_index);
636 if (!app)
637 return;
638 if (!(s = session_get_from_handle_if_valid (mp->handle)))
639 {
640 clib_warning ("invalid handle %llu", mp->handle);
641 return;
642 }
643 app_wrk = app_worker_get (s->app_wrk_index);
644 if (app_wrk->app_index != app->app_index)
645 {
646 clib_warning ("app %u does not own session %llu", app->app_index,
647 mp->handle);
648 return;
649 }
650 owner_app_wrk_map = app_wrk->wrk_map_index;
651 app_wrk = application_get_worker (app, mp->wrk_index);
652
653 /* This needs to come from the new owner */
654 if (mp->req_wrk_index == owner_app_wrk_map)
655 {
656 session_req_worker_update_msg_t *wump;
657
658 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
659 SESSION_MQ_CTRL_EVT_RING,
660 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800661 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
662 clib_memset (evt, 0, sizeof (*evt));
663 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
664 wump = (session_req_worker_update_msg_t *) evt->data;
665 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700666 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800667 return;
668 }
669
670 app_worker_own_session (app_wrk, s);
671
672 /*
673 * Send reply
674 */
675 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
676 SESSION_MQ_CTRL_EVT_RING,
677 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800678 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
679 clib_memset (evt, 0, sizeof (*evt));
680 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
681 rmp = (session_worker_update_reply_msg_t *) evt->data;
682 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800683 if (s->rx_fifo)
684 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
685 if (s->tx_fifo)
686 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800687 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700688 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800689
690 /*
691 * Retransmit messages that may have been lost
692 */
Florin Coras288eaab2019-02-03 15:26:14 -0800693 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800694 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800695
Florin Coras288eaab2019-02-03 15:26:14 -0800696 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800697 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800698
699 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700700 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800701}
702
Florin Coras40c07ce2020-07-16 20:46:17 -0700703static void
704session_mq_app_wrk_rpc_handler (void *data)
705{
706 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
707 svm_msg_q_msg_t _msg, *msg = &_msg;
708 session_app_wrk_rpc_msg_t *rmp;
709 app_worker_t *app_wrk;
710 session_event_t *evt;
711 application_t *app;
712
713 app = application_lookup (mp->client_index);
714 if (!app)
715 return;
716
717 app_wrk = application_get_worker (app, mp->wrk_index);
718
719 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
720 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
721 msg);
722 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
723 clib_memset (evt, 0, sizeof (*evt));
724 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
725 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
726 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
727 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
728}
729
Florin Coras04ae8272021-04-12 19:55:37 -0700730static void
731session_mq_transport_attr_handler (void *data)
732{
733 session_transport_attr_msg_t *mp = (session_transport_attr_msg_t *) data;
734 session_transport_attr_reply_msg_t *rmp;
735 svm_msg_q_msg_t _msg, *msg = &_msg;
736 app_worker_t *app_wrk;
737 session_event_t *evt;
738 application_t *app;
739 session_t *s;
740 int rv;
741
742 app = application_lookup (mp->client_index);
743 if (!app)
744 return;
745
746 if (!(s = session_get_from_handle_if_valid (mp->handle)))
747 {
748 clib_warning ("invalid handle %llu", mp->handle);
749 return;
750 }
751 app_wrk = app_worker_get (s->app_wrk_index);
752 if (app_wrk->app_index != app->app_index)
753 {
754 clib_warning ("app %u does not own session %llu", app->app_index,
755 mp->handle);
756 return;
757 }
758
759 rv = session_transport_attribute (s, mp->is_get, &mp->attr);
760
761 svm_msg_q_lock_and_alloc_msg_w_ring (
762 app_wrk->event_queue, SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT, msg);
763 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
764 clib_memset (evt, 0, sizeof (*evt));
765 evt->event_type = SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY;
766 rmp = (session_transport_attr_reply_msg_t *) evt->data;
767 rmp->handle = mp->handle;
768 rmp->retval = rv;
769 rmp->is_get = mp->is_get;
770 if (!rv && mp->is_get)
771 rmp->attr = mp->attr;
772 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
773}
774
Dave Barach68b0fb02017-02-28 15:15:56 -0500775vlib_node_registration_t session_queue_node;
776
777typedef struct
778{
779 u32 session_index;
780 u32 server_thread_index;
781} session_queue_trace_t;
782
783/* packet trace format function */
784static u8 *
785format_session_queue_trace (u8 * s, va_list * args)
786{
787 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
788 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
789 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
790
Florin Coras30928f82020-01-27 19:21:28 -0800791 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500792 t->session_index, t->server_thread_index);
793 return s;
794}
795
Florin Coras6792ec02017-03-13 03:49:51 -0700796#define foreach_session_queue_error \
797_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700798_(TIMER, "Timer events") \
799_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500800
801typedef enum
802{
803#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
804 foreach_session_queue_error
805#undef _
806 SESSION_QUEUE_N_ERROR,
807} session_queue_error_t;
808
809static char *session_queue_error_strings[] = {
810#define _(sym,string) string,
811 foreach_session_queue_error
812#undef _
813};
814
Florin Coras0d60a0f2018-06-29 02:02:08 -0700815enum
816{
817 SESSION_TX_NO_BUFFERS = -2,
818 SESSION_TX_NO_DATA,
819 SESSION_TX_OK
820};
821
Florin Coras66cf5e02018-06-08 09:17:39 -0700822static void
823session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
824 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800825 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700826{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200827 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700828 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200829 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
830 if (PREDICT_TRUE
831 (vlib_trace_buffer
832 (vm, node, next_index, b, 1 /* follow_chain */ )))
833 {
834 session_queue_trace_t *t =
835 vlib_add_trace (vm, node, b, sizeof (*t));
836 t->session_index = s->session_index;
837 t->server_thread_index = s->thread_index;
838 n_trace--;
839 }
840 to_next++;
841 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700842 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200843 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700844}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700845
Florin Coras8e43d042018-05-04 15:46:57 -0700846always_inline void
847session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
848 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
849{
Florin Coras8e43d042018-05-04 15:46:57 -0700850 vlib_buffer_t *chain_b, *prev_b;
851 u32 chain_bi0, to_deq, left_from_seg;
852 u16 len_to_deq, n_bytes_read;
853 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700854
Florin Coras8e43d042018-05-04 15:46:57 -0700855 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
856 b->total_length_not_including_first_buffer = 0;
857
858 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000859 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700860 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700861 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700862 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700863 {
Florin Coras8e43d042018-05-04 15:46:57 -0700864 prev_b = chain_b;
865 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700866
867 *n_bufs -= 1;
Florin Coras1d7a6632021-05-17 23:44:53 -0700868 chain_bi0 = ctx->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700869 chain_b = vlib_get_buffer (vm, chain_bi0);
870 chain_b->current_data = 0;
871 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700872 if (peek_data)
873 {
Florin Coras288eaab2019-02-03 15:26:14 -0800874 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000875 ctx->sp.tx_offset, len_to_deq, data);
876 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700877 }
878 else
879 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200880 if (ctx->transport_vft->transport_options.tx_type ==
881 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700882 {
Florin Coras288eaab2019-02-03 15:26:14 -0800883 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700884 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700885 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300886 u32 offset;
887
Florin Coras7fb0fe12018-04-09 09:24:52 -0700888 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700889 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300890 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
891 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700892 ASSERT (n_bytes_read > 0);
893
894 hdr->data_offset += n_bytes_read;
895 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800896 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300897 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800898 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000899 if (ctx->left_to_snd > n_bytes_read)
900 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
901 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800902 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000903 else if (ctx->left_to_snd == n_bytes_read)
904 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
905 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700906 }
907 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700908 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
909 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700910 }
Florin Coras8e43d042018-05-04 15:46:57 -0700911 ASSERT (n_bytes_read == len_to_deq);
912 chain_b->current_length = n_bytes_read;
913 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700914
915 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700916 prev_b->next_buffer = chain_bi0;
917 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700918
919 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700920 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700921
Florin Corasb2215d62017-08-01 16:56:58 -0700922 to_deq -= n_bytes_read;
923 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700924 break;
925 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700926 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700927 && b->total_length_not_including_first_buffer == left_from_seg);
928 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700929}
930
Florin Coras8e43d042018-05-04 15:46:57 -0700931always_inline void
932session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
933 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
934{
935 u32 len_to_deq;
936 u8 *data0;
937 int n_bytes_read;
938
939 /*
940 * Start with the first buffer in chain
941 */
942 b->error = 0;
943 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
944 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700945
Florin Coras1ee78302019-02-05 15:51:15 -0800946 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700947 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
948
Florin Coras7fb0fe12018-04-09 09:24:52 -0700949 if (peek_data)
950 {
Florin Coras70f879d2020-03-13 17:54:42 +0000951 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700952 len_to_deq, data0);
953 ASSERT (n_bytes_read > 0);
954 /* Keep track of progress locally, transport is also supposed to
955 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000956 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700957 }
958 else
959 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200960 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700961 {
962 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800963 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700964 u16 deq_now;
965 u32 offset;
966
967 ASSERT (hdr->data_length > hdr->data_offset);
968 deq_now = clib_min (hdr->data_length - hdr->data_offset,
969 len_to_deq);
970 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
971 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
972 ASSERT (n_bytes_read > 0);
973
974 if (ctx->s->session_state == SESSION_STATE_LISTENING)
975 {
976 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
977 ctx->tc->rmt_port = hdr->rmt_port;
978 }
979 hdr->data_offset += n_bytes_read;
980 if (hdr->data_offset == hdr->data_length)
981 {
982 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
983 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000984 if (ctx->left_to_snd > n_bytes_read)
985 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
986 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700987 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000988 else if (ctx->left_to_snd == n_bytes_read)
989 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
990 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700991 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700992 else
993 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700994 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
995 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700996 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700997 }
998 }
Florin Coras8e43d042018-05-04 15:46:57 -0700999 b->current_length = n_bytes_read;
1000 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -05001001
Florin Coras8e43d042018-05-04 15:46:57 -07001002 /*
1003 * Fill in the remaining buffers in the chain, if any
1004 */
1005 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
1006 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -07001007}
1008
1009always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -08001010session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001011{
1012 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -08001013 {
Florin Corasa6789742019-08-07 19:12:38 -07001014 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
1015 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -07001016 /* Can retransmit for closed sessions but can't send new data if
1017 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -07001018 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -07001019 return 1;
Florin Corasa6789742019-08-07 19:12:38 -07001020 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1021 {
1022 /* Allow closed transports to still send custom packets.
1023 * For instance, tcp may want to send acks in time-wait. */
1024 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
1025 && (s->flags & SESSION_F_CUSTOM_TX))
1026 return 0;
1027 return 2;
1028 }
Florin Corase04c2992017-03-01 08:17:34 -08001029 }
Florin Coras8e43d042018-05-04 15:46:57 -07001030 return 0;
1031}
Dave Barach68b0fb02017-02-28 15:15:56 -05001032
Florin Coras8e43d042018-05-04 15:46:57 -07001033always_inline transport_connection_t *
1034session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
1035{
1036 if (peek_data)
1037 {
1038 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1039 ctx->s->thread_index);
1040 }
1041 else
1042 {
1043 if (ctx->s->session_state == SESSION_STATE_LISTENING)
1044 return ctx->transport_vft->get_listener (ctx->s->connection_index);
1045 else
1046 {
1047 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1048 ctx->s->thread_index);
1049 }
1050 }
1051}
Florin Coras6a9b68b2017-11-21 04:20:42 -08001052
Florin Coras8e43d042018-05-04 15:46:57 -07001053always_inline void
1054session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -07001055 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001056{
1057 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +00001058
1059 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -06001060 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +00001061
Dave Barach68b0fb02017-02-28 15:15:56 -05001062 if (peek_data)
1063 {
Florin Coras9d063042017-09-14 03:08:00 -04001064 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +00001065 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -07001066 {
1067 ctx->max_len_to_snd = 0;
1068 return;
1069 }
Florin Coras70f879d2020-03-13 17:54:42 +00001070 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -05001071 }
Florin Coras7fb0fe12018-04-09 09:24:52 -07001072 else
1073 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001074 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001075 {
Florin Coras6e0ee952020-04-20 21:07:06 +00001076 u32 len, chain_limit;
1077
Florin Coras8e43d042018-05-04 15:46:57 -07001078 if (ctx->max_dequeue <= sizeof (ctx->hdr))
1079 {
1080 ctx->max_len_to_snd = 0;
1081 return;
1082 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001083
Florin Coras288eaab2019-02-03 15:26:14 -08001084 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -07001085 (u8 *) & ctx->hdr);
1086 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001087 len = ctx->hdr.data_length - ctx->hdr.data_offset;
1088
1089 /* Process multiple dgrams if smaller than min (buf_space, mss).
1090 * This avoids handling multiple dgrams if they require buffer
1091 * chains */
1092 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
1093 ctx->sp.snd_mss);
1094 if (ctx->hdr.data_length <= chain_limit)
1095 {
1096 u32 first_dgram_len, dgram_len, offset, max_offset;
1097 session_dgram_hdr_t hdr;
1098
1099 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
1100 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
1101 first_dgram_len = len;
1102 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
1103
1104 while (offset < max_offset)
1105 {
1106 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
1107 (u8 *) & hdr);
1108 ASSERT (hdr.data_length > hdr.data_offset);
1109 dgram_len = hdr.data_length - hdr.data_offset;
1110 if (len + dgram_len > ctx->max_dequeue
1111 || first_dgram_len != dgram_len)
1112 break;
1113 len += dgram_len;
1114 offset += sizeof (hdr) + hdr.data_length;
1115 }
1116 }
1117
1118 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001119 }
1120 }
Florin Coras8e43d042018-05-04 15:46:57 -07001121 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001122
1123 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +00001124 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -07001125 {
1126 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +00001127 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
1128 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
1129 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -07001130 /* TODO Nagle ? */
1131 }
1132 else
1133 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001134 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +00001135 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -07001136 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001137
Florin Corasf08f26d2018-05-10 13:20:47 -07001138 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +00001139 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -07001140 if (ctx->n_segs_per_evt > max_segs)
1141 {
1142 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +00001143 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -07001144 }
1145
Florin Coras1ee78302019-02-05 15:51:15 -08001146 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +08001147 if (ctx->n_segs_per_evt > 1)
1148 {
1149 u32 n_bytes_last_seg, n_bufs_last_seg;
1150
1151 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
1152 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
1153 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
1154 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1155 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
1156 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
1157 + n_bufs_last_seg;
1158 }
1159 else
1160 {
1161 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
1162 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1163 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
1164 }
1165
Florin Coras70f879d2020-03-13 17:54:42 +00001166 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
1167 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -08001168 n_bytes_per_buf -
1169 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -07001170}
Florin Corasf6d68ed2017-05-07 19:12:02 -07001171
Florin Corasaaf64a22020-02-23 01:37:34 +00001172always_inline void
1173session_tx_maybe_reschedule (session_worker_t * wrk,
1174 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +00001175 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +00001176{
1177 session_t *s = ctx->s;
1178
1179 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +00001180 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +00001181 if (svm_fifo_set_event (s->tx_fifo))
1182 session_evt_add_head_old (wrk, elt);
1183}
1184
Florin Coras8e43d042018-05-04 15:46:57 -07001185always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001186session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1187 vlib_node_runtime_t * node,
1188 session_evt_elt_t * elt,
1189 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001190{
Simon Zhangae16a982020-03-31 20:56:22 +08001191 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001192 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001193 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001194 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001195 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001196 transport_proto_t tp;
1197 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001198 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001199
Florin Coras1bcad5c2019-01-09 20:04:38 -08001200 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001201 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001202 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001203 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001204 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001205 }
1206
Florin Coras1bcad5c2019-01-09 20:04:38 -08001207 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001208 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001209
Florin Coras1bcad5c2019-01-09 20:04:38 -08001210 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001211 ctx->transport_vft = transport_protocol_get_vft (tp);
1212 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001213
1214 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1215 {
1216 if (ctx->transport_vft->flush_data)
1217 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001218 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001219 }
1220
Florin Coras26dd6de2019-07-23 23:54:47 -07001221 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1222 {
1223 u32 n_custom_tx;
1224 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001225 ctx->sp.max_burst_size = max_burst;
1226 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001227 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001228 if (PREDICT_FALSE
1229 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1230 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001231 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001232 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001233 {
1234 session_evt_add_old (wrk, elt);
1235 return SESSION_TX_OK;
1236 }
1237 }
1238
Florin Coras70f879d2020-03-13 17:54:42 +00001239 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001240
Florin Coras70f879d2020-03-13 17:54:42 +00001241 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001242 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001243 /* If the deschedule flag was set, remove session from scheduler.
1244 * Transport is responsible for rescheduling this session. */
1245 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1246 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001247 /* Request to postpone the session, e.g., zero-wnd and transport
1248 * is not currently probing */
1249 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1250 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001251 /* This flow queue is "empty" so it should be re-evaluated before
1252 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001253 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001254 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001255
Florin Coras0d60a0f2018-06-29 02:02:08 -07001256 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001257 }
1258
Florin Coras11e9e352019-11-13 19:09:47 -08001259 if (transport_connection_is_tx_paced (ctx->tc))
1260 {
1261 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1262 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1263 {
1264 session_evt_add_head_old (wrk, elt);
1265 return SESSION_TX_NO_DATA;
1266 }
Florin Coras70f879d2020-03-13 17:54:42 +00001267 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1268 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1269 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001270 }
1271
Florin Coras8e43d042018-05-04 15:46:57 -07001272 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001273 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001274
Florin Coras8e43d042018-05-04 15:46:57 -07001275 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001276 {
Florin Coras11e9e352019-11-13 19:09:47 -08001277 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001278 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001279 return SESSION_TX_NO_DATA;
1280 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001281
Florin Coras1d7a6632021-05-17 23:44:53 -07001282 vec_validate_aligned (ctx->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001283 CLIB_CACHE_LINE_BYTES);
Florin Coras1d7a6632021-05-17 23:44:53 -07001284 n_bufs = vlib_buffer_alloc (vm, ctx->tx_buffers, ctx->n_bufs_needed);
Simon Zhangae16a982020-03-31 20:56:22 +08001285 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001286 {
Florin Coras2068fd42019-01-31 14:35:50 -08001287 if (n_bufs)
Florin Coras1d7a6632021-05-17 23:44:53 -07001288 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001289 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001290 vlib_node_increment_counter (wrk->vm, node->node_index,
1291 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001292 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001293 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001294
Florin Coras7808df22020-11-02 18:00:32 -08001295 if (transport_connection_is_tx_paced (ctx->tc))
1296 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001297
Florin Corasf08f26d2018-05-10 13:20:47 -07001298 ctx->left_to_snd = ctx->max_len_to_snd;
1299 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001300
1301 while (n_left >= 4)
1302 {
1303 vlib_buffer_t *b0, *b1;
1304 u32 bi0, bi1;
1305
Florin Coras1d7a6632021-05-17 23:44:53 -07001306 pbi = ctx->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001307 pb = vlib_get_buffer (vm, pbi);
1308 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras1d7a6632021-05-17 23:44:53 -07001309 pbi = ctx->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001310 pb = vlib_get_buffer (vm, pbi);
1311 vlib_prefetch_buffer_header (pb, STORE);
1312
Florin Coras1d7a6632021-05-17 23:44:53 -07001313 bi0 = ctx->tx_buffers[--n_bufs];
1314 bi1 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001315
1316 b0 = vlib_get_buffer (vm, bi0);
1317 b1 = vlib_get_buffer (vm, bi1);
1318
1319 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1320 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1321
1322 ctx->transport_vft->push_header (ctx->tc, b0);
1323 ctx->transport_vft->push_header (ctx->tc, b1);
1324
Florin Coras66cf5e02018-06-08 09:17:39 -07001325 n_left -= 2;
1326
Florin Coras8a754f12019-10-16 22:35:18 -07001327 vec_add1 (wrk->pending_tx_buffers, bi0);
1328 vec_add1 (wrk->pending_tx_buffers, bi1);
1329 vec_add1 (wrk->pending_tx_nexts, next_index);
1330 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001331 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001332 while (n_left)
1333 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001334 vlib_buffer_t *b0;
1335 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001336
Florin Coras91ca4622018-06-30 11:27:59 -07001337 if (n_left > 1)
1338 {
Florin Coras1d7a6632021-05-17 23:44:53 -07001339 pbi = ctx->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001340 pb = vlib_get_buffer (vm, pbi);
1341 vlib_prefetch_buffer_header (pb, STORE);
1342 }
1343
Florin Coras1d7a6632021-05-17 23:44:53 -07001344 bi0 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001345 b0 = vlib_get_buffer (vm, bi0);
1346 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001347
Florin Coras66cf5e02018-06-08 09:17:39 -07001348 /* Ask transport to push header after current_length and
1349 * total_length_not_including_first_buffer are updated */
1350 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001351
Florin Coras66cf5e02018-06-08 09:17:39 -07001352 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001353
Florin Coras8a754f12019-10-16 22:35:18 -07001354 vec_add1 (wrk->pending_tx_buffers, bi0);
1355 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001356 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001357
Florin Coras60183db2019-07-20 15:53:16 -07001358 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001359 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001360 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001361
Florin Coras2068fd42019-01-31 14:35:50 -08001362 if (PREDICT_FALSE (n_bufs))
Florin Coras1d7a6632021-05-17 23:44:53 -07001363 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -07001364
Florin Corasf08f26d2018-05-10 13:20:47 -07001365 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001366
Florin Corascca96182019-07-19 07:34:13 -07001367 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1368 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1369
Florin Corasf08f26d2018-05-10 13:20:47 -07001370 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001371
1372 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1373 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001374 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001375 session_evt_add_old (wrk, elt);
1376 else
Florin Coras70f879d2020-03-13 17:54:42 +00001377 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001378
Florin Corasab57edb2020-04-07 03:46:07 +00001379 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001380 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001381 u32 n_dequeued = ctx->max_len_to_snd;
1382 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1383 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1384 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001385 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001386 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001387 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001388}
1389
1390int
Florin Coras60183db2019-07-20 15:53:16 -07001391session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1392 vlib_node_runtime_t * node,
1393 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001394{
Florin Coras60183db2019-07-20 15:53:16 -07001395 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001396}
1397
1398int
Florin Coras60183db2019-07-20 15:53:16 -07001399session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1400 vlib_node_runtime_t * node,
1401 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001402{
Florin Coras60183db2019-07-20 15:53:16 -07001403 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001404}
1405
Florin Coras371ca502018-02-21 12:07:41 -08001406int
Florin Coras60183db2019-07-20 15:53:16 -07001407session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001408 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001409 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001410{
Florin Coras9f86d222020-03-23 15:34:22 +00001411 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001412 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001413 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001414
Florin Corasc0737e92019-03-04 14:19:39 -08001415 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001416 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001417
1418 /* Clear custom-tx flag used to request reschedule for tx */
1419 s->flags &= ~SESSION_F_CUSTOM_TX;
1420
Florin Coras89235c72020-11-02 19:00:10 -08001421 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001422 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001423
Florin Coras9f86d222020-03-23 15:34:22 +00001424 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1425 *n_tx_packets += n_packets;
1426
1427 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001428 {
1429 session_evt_add_old (wrk, elt);
1430 }
Florin Coras9f86d222020-03-23 15:34:22 +00001431 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001432 {
1433 svm_fifo_unset_event (s->tx_fifo);
1434 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1435 if (svm_fifo_set_event (s->tx_fifo))
1436 session_evt_add_head_old (wrk, elt);
1437 }
1438
Florin Coras1e6a0f62021-03-09 08:36:25 -08001439 if (sp->max_burst_size &&
1440 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1441 session_dequeue_notify (s);
1442
Florin Corased8db522020-02-27 04:32:51 +00001443 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001444}
1445
Florin Coras288eaab2019-02-03 15:26:14 -08001446always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001447session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001448{
Florin Corasdb999df2020-09-21 10:45:56 -07001449 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1450 return 0;
1451
1452 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1453 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001454}
1455
Florin Coras60183db2019-07-20 15:53:16 -07001456always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001457session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1458{
1459 clib_llist_index_t ei;
1460 void (*fp) (void *);
1461 session_event_t *e;
1462 session_t *s;
1463
1464 ei = clib_llist_entry_index (wrk->event_elts, elt);
1465 e = &elt->evt;
1466
1467 switch (e->event_type)
1468 {
1469 case SESSION_CTRL_EVT_RPC:
1470 fp = e->rpc_args.fp;
1471 (*fp) (e->rpc_args.arg);
1472 break;
liuyacan534468e2021-05-09 03:50:40 +00001473 case SESSION_CTRL_EVT_HALF_CLOSE:
1474 s = session_get_from_handle_if_valid (e->session_handle);
1475 if (PREDICT_FALSE (!s))
1476 break;
1477 session_transport_half_close (s);
1478 break;
Florin Coras458089b2019-08-21 16:20:44 -07001479 case SESSION_CTRL_EVT_CLOSE:
1480 s = session_get_from_handle_if_valid (e->session_handle);
1481 if (PREDICT_FALSE (!s))
1482 break;
1483 session_transport_close (s);
1484 break;
1485 case SESSION_CTRL_EVT_RESET:
1486 s = session_get_from_handle_if_valid (e->session_handle);
1487 if (PREDICT_FALSE (!s))
1488 break;
1489 session_transport_reset (s);
1490 break;
1491 case SESSION_CTRL_EVT_LISTEN:
1492 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1493 break;
1494 case SESSION_CTRL_EVT_LISTEN_URI:
1495 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1496 break;
1497 case SESSION_CTRL_EVT_UNLISTEN:
Florin Corasc53eb722021-06-22 14:20:39 -07001498 session_mq_unlisten_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001499 break;
1500 case SESSION_CTRL_EVT_CONNECT:
Florin Corasaf972212021-05-05 09:54:00 -07001501 session_mq_connect_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001502 break;
1503 case SESSION_CTRL_EVT_CONNECT_URI:
1504 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1505 break;
liuyacan534468e2021-05-09 03:50:40 +00001506 case SESSION_CTRL_EVT_SHUTDOWN:
1507 session_mq_shutdown_handler (session_evt_ctrl_data (wrk, elt));
1508 break;
Florin Coras458089b2019-08-21 16:20:44 -07001509 case SESSION_CTRL_EVT_DISCONNECT:
1510 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1511 break;
1512 case SESSION_CTRL_EVT_DISCONNECTED:
1513 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1514 break;
1515 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1516 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1517 break;
1518 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1519 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1520 elt));
1521 break;
1522 case SESSION_CTRL_EVT_RESET_REPLY:
1523 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1524 break;
1525 case SESSION_CTRL_EVT_WORKER_UPDATE:
1526 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1527 break;
1528 case SESSION_CTRL_EVT_APP_DETACH:
1529 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1530 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001531 case SESSION_CTRL_EVT_APP_WRK_RPC:
1532 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1533 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001534 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1535 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1536 break;
Florin Coras458089b2019-08-21 16:20:44 -07001537 default:
1538 clib_warning ("unhandled event type %d", e->event_type);
1539 }
1540
1541 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001542 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras458089b2019-08-21 16:20:44 -07001543 if (!clib_llist_elt_is_linked (elt, evt_list))
1544 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001545 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001546 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1547 session_evt_ctrl_data_free (wrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -07001548 clib_llist_put (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001549 }
Srikanth Akula73570432020-04-06 19:19:49 -07001550 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001551}
1552
1553always_inline void
1554session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001555 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001556{
Florin Coras60183db2019-07-20 15:53:16 -07001557 session_main_t *smm = &session_main;
1558 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001559 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001560 session_event_t *e;
1561 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001562
Florin Corasb0ffbee2019-07-21 19:23:46 -07001563 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001564 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001565
Florin Coras60183db2019-07-20 15:53:16 -07001566 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001567 {
Florin Coras60183db2019-07-20 15:53:16 -07001568 case SESSION_IO_EVT_TX_FLUSH:
1569 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001570 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001571 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001572 break;
Florin Coras60183db2019-07-20 15:53:16 -07001573 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1574 wrk->ctx.s = s;
1575 /* Spray packets in per session type frames, since they go to
1576 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001577 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001578 break;
1579 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001580 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001581 if (!s)
1582 break;
1583 transport_app_rx_evt (session_get_transport_proto (s),
1584 s->connection_index, s->thread_index);
1585 break;
Florin Coras60183db2019-07-20 15:53:16 -07001586 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001587 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001588 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1589 break;
1590 svm_fifo_unset_event (s->rx_fifo);
1591 app_wrk = app_worker_get (s->app_wrk_index);
1592 app_worker_builtin_rx (app_wrk, s);
1593 break;
1594 case SESSION_IO_EVT_BUILTIN_TX:
1595 s = session_get_from_handle_if_valid (e->session_handle);
1596 wrk->ctx.s = s;
1597 if (PREDICT_TRUE (s != 0))
1598 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1599 break;
Florin Coras60183db2019-07-20 15:53:16 -07001600 default:
1601 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001602 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001603
Srikanth Akula73570432020-04-06 19:19:49 -07001604 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1605
Florin Corasb0ffbee2019-07-21 19:23:46 -07001606 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001607 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001608 if (!clib_llist_elt_is_linked (elt, evt_list))
Florin Coras46b8b1a2021-05-17 19:09:33 -07001609 clib_llist_put (wrk->event_elts, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001610}
1611
Florin Coras458089b2019-08-21 16:20:44 -07001612/* *INDENT-OFF* */
1613static const u32 session_evt_msg_sizes[] = {
1614#define _(symc, sym) \
1615 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1616 foreach_session_ctrl_evt
1617#undef _
1618};
1619/* *INDENT-ON* */
1620
1621always_inline void
1622session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1623{
1624 session_evt_elt_t *elt;
1625
1626 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1627 {
1628 elt = session_evt_alloc_ctrl (wrk);
1629 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1630 {
1631 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1632 elt->evt.event_type = evt->event_type;
1633 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1634 session_evt_msg_sizes[evt->event_type]);
1635 }
1636 else
1637 {
1638 /* Internal control events fit into io events footprint */
1639 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1640 }
1641 }
1642 else
1643 {
1644 elt = session_evt_alloc_new (wrk);
1645 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1646 }
1647}
1648
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001649static void
1650session_flush_pending_tx_buffers (session_worker_t * wrk,
1651 vlib_node_runtime_t * node)
1652{
1653 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1654 wrk->pending_tx_nexts,
1655 vec_len (wrk->pending_tx_nexts));
1656 vec_reset_length (wrk->pending_tx_buffers);
1657 vec_reset_length (wrk->pending_tx_nexts);
1658}
1659
Florin Coras41d5f542021-01-15 13:49:33 -08001660int
1661session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1662{
1663 svm_msg_q_msg_t _msg, *msg = &_msg;
1664 u32 i, n_to_dequeue = 0;
1665 session_event_t *evt;
1666
1667 n_to_dequeue = svm_msg_q_size (mq);
1668 for (i = 0; i < n_to_dequeue; i++)
1669 {
1670 svm_msg_q_sub_raw (mq, msg);
1671 evt = svm_msg_q_msg_data (mq, msg);
1672 session_evt_add_to_list (wrk, evt);
1673 svm_msg_q_free_msg (mq, msg);
1674 }
1675
1676 return n_to_dequeue;
1677}
1678
Florin Coras7da88292021-03-18 15:04:34 -07001679static void
Florin Coras7da88292021-03-18 15:04:34 -07001680session_wrk_update_state (session_worker_t *wrk)
1681{
1682 vlib_main_t *vm = wrk->vm;
1683
1684 if (wrk->state == SESSION_WRK_POLLING)
1685 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001686 if (clib_llist_elts (wrk->event_elts) == 4 &&
Florin Coras7da88292021-03-18 15:04:34 -07001687 vlib_last_vectors_per_main_loop (vm) < 1)
1688 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001689 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001690 vlib_node_set_state (vm, session_queue_node.index,
1691 VLIB_NODE_STATE_INTERRUPT);
1692 }
1693 }
1694 else if (wrk->state == SESSION_WRK_INTERRUPT)
1695 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001696 if (clib_llist_elts (wrk->event_elts) > 4 ||
Florin Coras7da88292021-03-18 15:04:34 -07001697 vlib_last_vectors_per_main_loop (vm) > 1)
1698 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001699 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001700 vlib_node_set_state (vm, session_queue_node.index,
1701 VLIB_NODE_STATE_POLLING);
1702 }
1703 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1704 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001705 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001706 }
1707 }
1708 else
1709 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001710 if (clib_llist_elts (wrk->event_elts))
Florin Coras7da88292021-03-18 15:04:34 -07001711 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001712 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001713 }
1714 }
1715}
1716
Florin Coras0d60a0f2018-06-29 02:02:08 -07001717static uword
1718session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1719 vlib_frame_t * frame)
1720{
Florin Coras41d5f542021-01-15 13:49:33 -08001721 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001722 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001723 session_main_t *smm = vnet_get_session_main ();
1724 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001725 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001726 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001727
Florin Corascca96182019-07-19 07:34:13 -07001728 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001729
Florin Coras8f10b902021-04-02 18:32:00 -07001730 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001731
Florin Coras0d60a0f2018-06-29 02:02:08 -07001732 /*
1733 * Update transport time
1734 */
Florin Coras60183db2019-07-20 15:53:16 -07001735 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001736 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001737 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001738
Florin Corasb0ffbee2019-07-21 19:23:46 -07001739 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001740 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001741 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001742
Florin Coras41d5f542021-01-15 13:49:33 -08001743 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1744 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001745
Florin Corasb0ffbee2019-07-21 19:23:46 -07001746 /*
1747 * Handle control events
1748 */
1749
Florin Coras09843952021-05-17 16:05:41 -07001750 ei = wrk->ctrl_head;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001751 ctrl_he = clib_llist_elt (wrk->event_elts, ei);
Florin Coras09843952021-05-17 16:05:41 -07001752 next_ei = clib_llist_next_index (ctrl_he, evt_list);
1753 old_ti = clib_llist_prev_index (ctrl_he, evt_list);
1754 while (ei != old_ti)
1755 {
1756 ei = next_ei;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001757 elt = clib_llist_elt (wrk->event_elts, next_ei);
Florin Coras09843952021-05-17 16:05:41 -07001758 next_ei = clib_llist_next_index (elt, evt_list);
1759 clib_llist_remove (wrk->event_elts, evt_list, elt);
1760 session_event_dispatch_ctrl (wrk, elt);
1761 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001762
Srikanth Akula73570432020-04-06 19:19:49 -07001763 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1764
Florin Corasb0ffbee2019-07-21 19:23:46 -07001765 /*
1766 * Handle the new io events.
1767 */
1768
Florin Coras46b8b1a2021-05-17 19:09:33 -07001769 new_he = clib_llist_elt (wrk->event_elts, wrk->new_head);
1770 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Coras45b79732019-10-30 19:22:51 -07001771 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001772
Florin Coras16d974e2020-02-09 20:03:12 +00001773 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001774 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001775 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001776 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras16d974e2020-02-09 20:03:12 +00001777 ei = clib_llist_next_index (elt, evt_list);
1778 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001779 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001780 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001781
Srikanth Akula73570432020-04-06 19:19:49 -07001782 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1783
Florin Corasb0ffbee2019-07-21 19:23:46 -07001784 /*
Florin Coras45b79732019-10-30 19:22:51 -07001785 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001786 */
1787
Florin Coras45b79732019-10-30 19:22:51 -07001788 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001789 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001790 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001791 ei = clib_llist_next_index (old_he, evt_list);
1792
Florin Coras89235c72020-11-02 19:00:10 -08001793 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001794 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001795 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasdd97a482019-11-02 14:32:52 -07001796 next_ei = clib_llist_next_index (elt, evt_list);
1797 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001798
Florin Corasdb999df2020-09-21 10:45:56 -07001799 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001800
Florin Coras45b79732019-10-30 19:22:51 -07001801 if (ei == old_ti)
1802 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001803
1804 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001805 };
1806 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001807
Srikanth Akula73570432020-04-06 19:19:49 -07001808 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1809
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001810 if (vec_len (wrk->pending_tx_buffers))
1811 session_flush_pending_tx_buffers (wrk, node);
1812
Florin Coras0d60a0f2018-06-29 02:02:08 -07001813 vlib_node_increment_counter (vm, session_queue_node.index,
1814 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1815
Florin Corascca96182019-07-19 07:34:13 -07001816 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001817
Florin Coras7da88292021-03-18 15:04:34 -07001818 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1819 session_wrk_update_state (wrk);
1820
Florin Coras0d60a0f2018-06-29 02:02:08 -07001821 return n_tx_packets;
1822}
1823
1824/* *INDENT-OFF* */
1825VLIB_REGISTER_NODE (session_queue_node) =
1826{
1827 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001828 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001829 .name = "session-queue",
1830 .format_trace = format_session_queue_trace,
1831 .type = VLIB_NODE_TYPE_INPUT,
1832 .n_errors = ARRAY_LEN (session_queue_error_strings),
1833 .error_strings = session_queue_error_strings,
1834 .state = VLIB_NODE_STATE_DISABLED,
1835};
1836/* *INDENT-ON* */
1837
Dave Barach2a863912017-11-28 10:11:42 -05001838static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001839session_wrk_tfd_read_ready (clib_file_t *cf)
1840{
1841 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1842 u64 buf;
1843 int rv;
1844
1845 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1846 rv = read (wrk->timerfd, &buf, sizeof (buf));
1847 if (rv < 0 && errno != EAGAIN)
1848 clib_unix_warning ("failed");
1849 return 0;
1850}
1851
1852static clib_error_t *
1853session_wrk_tfd_write_ready (clib_file_t *cf)
1854{
1855 return 0;
1856}
1857
1858void
1859session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1860{
1861 u32 thread_index = wrk->vm->thread_index;
1862 clib_file_t template = { 0 };
1863
1864 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1865 clib_warning ("timerfd_create");
1866
1867 template.read_function = session_wrk_tfd_read_ready;
1868 template.write_function = session_wrk_tfd_write_ready;
1869 template.file_descriptor = wrk->timerfd;
1870 template.private_data = thread_index;
1871 template.polling_thread_index = thread_index;
1872 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1873
1874 wrk->timerfd_file = clib_file_add (&file_main, &template);
1875 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1876}
1877
1878static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001879session_queue_exit (vlib_main_t * vm)
1880{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001881 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001882 return 0;
1883
1884 /*
1885 * Shut off (especially) worker-thread session nodes.
1886 * Otherwise, vpp can crash as the main thread unmaps the
1887 * API segment.
1888 */
1889 vlib_worker_thread_barrier_sync (vm);
1890 session_node_enable_disable (0 /* is_enable */ );
1891 vlib_worker_thread_barrier_release (vm);
1892 return 0;
1893}
1894
1895VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1896
Florin Corasfd542f12018-05-16 19:28:24 -07001897static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001898session_queue_run_on_main (vlib_main_t * vm)
1899{
1900 vlib_node_runtime_t *node;
1901
1902 node = vlib_node_get_runtime (vm, session_queue_node.index);
1903 return session_queue_node_fn (vm, node, 0);
1904}
1905
1906static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001907session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1908 vlib_frame_t * f)
1909{
Florin Corasfd542f12018-05-16 19:28:24 -07001910 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001911 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001912 uword event_type;
1913
1914 while (1)
1915 {
1916 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001917 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1918
1919 switch (event_type)
1920 {
Florin Coras5484daa2020-03-27 23:55:06 +00001921 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1922 /* Run session queue node on main thread */
1923 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001924 break;
1925 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001926 vlib_node_set_state (vm, session_queue_process_node.index,
1927 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001928 timeout = 100000.0;
1929 break;
1930 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001931 /* Timed out. Run on main to ensure all events are handled */
1932 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001933 break;
1934 }
1935 vec_reset_length (event_data);
1936 }
1937 return 0;
1938}
1939
1940/* *INDENT-OFF* */
1941VLIB_REGISTER_NODE (session_queue_process_node) =
1942{
1943 .function = session_queue_process,
1944 .type = VLIB_NODE_TYPE_PROCESS,
1945 .name = "session-queue-process",
1946 .state = VLIB_NODE_STATE_DISABLED,
1947};
1948/* *INDENT-ON* */
1949
Florin Coras653e43f2019-03-04 10:56:23 -08001950static_always_inline uword
1951session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1952 vlib_frame_t * frame)
1953{
1954 session_main_t *sm = &session_main;
1955 if (!sm->wrk[0].vpp_event_queue)
1956 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001957 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001958 return session_queue_node_fn (vm, node, frame);
1959}
1960
1961/* *INDENT-OFF* */
1962VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1963{
1964 .function = session_queue_pre_input_inline,
1965 .type = VLIB_NODE_TYPE_PRE_INPUT,
1966 .name = "session-queue-main",
1967 .state = VLIB_NODE_STATE_DISABLED,
1968};
1969/* *INDENT-ON* */
1970
Dave Barach68b0fb02017-02-28 15:15:56 -05001971/*
1972 * fd.io coding-style-patch-verification: ON
1973 *
1974 * Local Variables:
1975 * eval: (c-set-style "gnu")
1976 * End:
1977 */