blob: b8b5ce2d8de87caeada783f6065665ca63944f8c [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 Coras595724a2021-06-29 13:27:45 -0700230 session_evt_ctrl_data_free (fwrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -0700231 clib_llist_put (fwrk->event_elts, elt);
Florin Corasaf972212021-05-05 09:54:00 -0700232 elt = next;
233 n_connects += 1;
234 }
235
Florin Coras0f273392021-05-21 15:48:18 -0700236 /* Decrement with worker barrier */
237 fwrk->n_pending_connects -= n_connects;
238
239 vlib_worker_thread_barrier_release (vm);
240
241update_state:
242
Florin Corasa48dffe2021-05-16 10:58:53 -0700243 /* Switch worker to poll mode if it was in interrupt mode and had work or
244 * back to interrupt if threshold of loops without a connect is passed.
245 * While in poll mode, reprogram connects rpc */
246 wrk = session_main_get_worker (0);
247 if (wrk->state != SESSION_WRK_POLLING)
Florin Corasaf972212021-05-05 09:54:00 -0700248 {
Florin Coras0f273392021-05-21 15:48:18 -0700249 if (n_connects)
250 {
251 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
252 vlib_node_set_state (vm, session_queue_node.index,
253 VLIB_NODE_STATE_POLLING);
254 wrk->no_connect_loops = 0;
255 }
Florin Corasa48dffe2021-05-16 10:58:53 -0700256 }
257 else
258 {
259 if (!n_connects)
260 {
261 if (++wrk->no_connect_loops > 1e5)
262 {
263 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
264 vlib_node_set_state (vm, session_queue_node.index,
265 VLIB_NODE_STATE_INTERRUPT);
Florin Corasa48dffe2021-05-16 10:58:53 -0700266 }
267 }
268 else
269 wrk->no_connect_loops = 0;
Florin Corasaf972212021-05-05 09:54:00 -0700270 }
271
Florin Coras0f273392021-05-21 15:48:18 -0700272 if (wrk->state == SESSION_WRK_POLLING)
273 {
274 elt = session_evt_alloc_ctrl (wrk);
275 elt->evt.event_type = SESSION_CTRL_EVT_RPC;
276 elt->evt.rpc_args.fp = session_mq_handle_connects_rpc;
277 }
Florin Corasaf972212021-05-05 09:54:00 -0700278}
279
280static void
281session_mq_connect_handler (session_worker_t *wrk, session_evt_elt_t *elt)
282{
283 u32 thread_index = wrk - session_main.wrk;
284 session_evt_elt_t *he;
285
286 /* No workers, so just deal with the connect now */
287 if (PREDICT_FALSE (!thread_index))
288 {
289 session_mq_connect_one (session_evt_ctrl_data (wrk, elt));
290 return;
291 }
292
293 if (PREDICT_FALSE (thread_index != 1))
294 {
295 clib_warning ("Connect on wrong thread. Dropping");
296 return;
297 }
298
299 /* Add to pending list to be handled by main thread */
Florin Coras46b8b1a2021-05-17 19:09:33 -0700300 he = clib_llist_elt (wrk->event_elts, wrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700301 clib_llist_add_tail (wrk->event_elts, evt_list, elt, he);
302
Florin Coras0f273392021-05-21 15:48:18 -0700303 /* Decremented with worker barrier */
304 wrk->n_pending_connects += 1;
305 if (wrk->n_pending_connects == 1)
Florin Corasaf972212021-05-05 09:54:00 -0700306 {
307 vlib_node_set_interrupt_pending (vlib_get_main_by_index (0),
308 session_queue_node.index);
309 session_send_rpc_evt_to_thread (0, session_mq_handle_connects_rpc, 0);
Florin Corasaf972212021-05-05 09:54:00 -0700310 }
311}
312
313static void
Florin Coras458089b2019-08-21 16:20:44 -0700314session_mq_connect_uri_handler (void *data)
315{
316 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
317 vnet_connect_args_t _a, *a = &_a;
318 app_worker_t *app_wrk;
319 application_t *app;
320 int rv;
321
322 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
323
324 app = application_lookup (mp->client_index);
325 if (!app)
326 return;
327
328 clib_memset (a, 0, sizeof (*a));
329 a->uri = (char *) mp->uri;
330 a->api_context = mp->context;
331 a->app_index = app->app_index;
332 if ((rv = vnet_connect_uri (a)))
333 {
334 clib_warning ("connect_uri returned: %d", rv);
335 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700336 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700337 }
338}
339
340static void
liuyacan534468e2021-05-09 03:50:40 +0000341session_mq_shutdown_handler (void *data)
342{
343 session_shutdown_msg_t *mp = (session_shutdown_msg_t *) data;
344 vnet_shutdown_args_t _a, *a = &_a;
345 application_t *app;
346
347 app = application_lookup (mp->client_index);
348 if (!app)
349 return;
350
351 a->app_index = app->app_index;
352 a->handle = mp->handle;
353 vnet_shutdown_session (a);
354}
355
356static void
Florin Coras458089b2019-08-21 16:20:44 -0700357session_mq_disconnect_handler (void *data)
358{
359 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
360 vnet_disconnect_args_t _a, *a = &_a;
361 application_t *app;
362
363 app = application_lookup (mp->client_index);
364 if (!app)
365 return;
366
367 a->app_index = app->app_index;
368 a->handle = mp->handle;
369 vnet_disconnect_session (a);
370}
371
372static void
373app_mq_detach_handler (void *data)
374{
375 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
376 vnet_app_detach_args_t _a, *a = &_a;
377 application_t *app;
378
379 app_check_thread_and_barrier (app_mq_detach_handler, mp);
380
381 app = application_lookup (mp->client_index);
382 if (!app)
383 return;
384
385 a->app_index = app->app_index;
386 a->api_client_index = mp->client_index;
387 vnet_application_detach (a);
388}
389
390static void
Florin Corasc53eb722021-06-22 14:20:39 -0700391session_mq_unlisten_rpc (session_unlisten_msg_t *mp)
Florin Coras458089b2019-08-21 16:20:44 -0700392{
Florin Corasc53eb722021-06-22 14:20:39 -0700393 vlib_main_t *vm = vlib_get_main ();
Florin Coras458089b2019-08-21 16:20:44 -0700394 vnet_unlisten_args_t _a, *a = &_a;
395 app_worker_t *app_wrk;
Florin Corasc53eb722021-06-22 14:20:39 -0700396 session_handle_t sh;
Florin Coras458089b2019-08-21 16:20:44 -0700397 application_t *app;
Florin Corasc53eb722021-06-22 14:20:39 -0700398 u32 context;
Florin Coras458089b2019-08-21 16:20:44 -0700399 int rv;
400
Florin Corasc53eb722021-06-22 14:20:39 -0700401 sh = mp->handle;
402 context = mp->context;
403
Florin Coras458089b2019-08-21 16:20:44 -0700404 app = application_lookup (mp->client_index);
405 if (!app)
406 return;
407
408 clib_memset (a, 0, sizeof (*a));
409 a->app_index = app->app_index;
Florin Corasc53eb722021-06-22 14:20:39 -0700410 a->handle = sh;
Florin Coras458089b2019-08-21 16:20:44 -0700411 a->wrk_map_index = mp->wrk_index;
Florin Corasc941fcb2021-07-20 19:08:12 -0700412
413 vlib_worker_thread_barrier_sync (vm);
414
Florin Coras458089b2019-08-21 16:20:44 -0700415 if ((rv = vnet_unlisten (a)))
416 clib_warning ("unlisten returned: %d", rv);
417
Florin Corasc941fcb2021-07-20 19:08:12 -0700418 vlib_worker_thread_barrier_release (vm);
419
Florin Coras458089b2019-08-21 16:20:44 -0700420 app_wrk = application_get_worker (app, a->wrk_map_index);
421 if (!app_wrk)
422 return;
423
Florin Corasc53eb722021-06-22 14:20:39 -0700424 mq_send_unlisten_reply (app_wrk, sh, context, rv);
425 clib_mem_free (mp);
426}
427
428static void
429session_mq_unlisten_handler (session_worker_t *wrk, session_evt_elt_t *elt)
430{
431 u32 thread_index = wrk - session_main.wrk;
432 session_unlisten_msg_t *mp, *arg;
433
434 mp = session_evt_ctrl_data (wrk, elt);
435 arg = clib_mem_alloc (sizeof (session_unlisten_msg_t));
436 clib_memcpy_fast (arg, mp, sizeof (*arg));
437
438 if (PREDICT_FALSE (!thread_index))
439 {
440 session_mq_unlisten_rpc (arg);
441 return;
442 }
443
444 session_send_rpc_evt_to_thread_force (0, session_mq_unlisten_rpc, arg);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800445}
446
Florin Coras52207f12018-07-12 14:48:06 -0700447static void
448session_mq_accepted_reply_handler (void *data)
449{
450 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
451 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800452 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700453 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800454 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700455
456 /* Server isn't interested, kill the session */
457 if (mp->retval)
458 {
459 a->app_index = mp->context;
460 a->handle = mp->handle;
461 vnet_disconnect_session (a);
462 return;
463 }
464
Florin Coras2b81e3c2019-02-27 07:55:46 -0800465 /* Mail this back from the main thread. We're not polling in main
466 * thread so we're using other workers for notifications. */
467 if (vlib_num_workers () && vlib_get_thread_index () != 0
468 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700469 {
Florin Coras458089b2019-08-21 16:20:44 -0700470 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
471 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800472 return;
473 }
474
475 s = session_get_from_handle_if_valid (mp->handle);
476 if (!s)
477 return;
478
479 app_wrk = app_worker_get (s->app_wrk_index);
480 if (app_wrk->app_index != mp->context)
481 {
482 clib_warning ("app doesn't own session");
483 return;
484 }
485
486 if (!session_has_transport (s))
487 {
Florin Coras653e43f2019-03-04 10:56:23 -0800488 s->session_state = SESSION_STATE_READY;
Florin Coras6973c732021-06-17 15:53:38 -0700489 if (ct_session_connect_notify (s, SESSION_E_NONE))
Florin Coras52207f12018-07-12 14:48:06 -0700490 return;
Florin Coras52207f12018-07-12 14:48:06 -0700491 }
492 else
493 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800494 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700495 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600496
497 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800498 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800499
500 /* Closed while waiting for app to reply. Resend disconnect */
501 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
502 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700503 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800504 s->session_state = old_state;
505 return;
506 }
Florin Coras52207f12018-07-12 14:48:06 -0700507 }
508}
509
510static void
511session_mq_reset_reply_handler (void *data)
512{
Florin Coras4af830c2018-12-04 09:21:36 -0800513 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700514 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700515 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800516 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700517 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700518 u32 index, thread_index;
519
520 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800521 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700522 if (!app)
523 return;
524
525 session_parse_handle (mp->handle, &index, &thread_index);
526 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800527
Florin Corasf1910322019-12-05 12:05:57 -0800528 /* No session or not the right session */
529 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800530 return;
531
Florin Coras15531972018-08-12 23:50:53 -0700532 app_wrk = app_worker_get (s->app_wrk_index);
533 if (!app_wrk || app_wrk->app_index != app->app_index)
534 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200535 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700536 mp->handle);
537 return;
538 }
Florin Coras52207f12018-07-12 14:48:06 -0700539
540 /* Client objected to resetting the session, log and continue */
541 if (mp->retval)
542 {
543 clib_warning ("client retval %d", mp->retval);
544 return;
545 }
546
547 /* This comes as a response to a reset, transport only waiting for
548 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800549 a->handle = mp->handle;
550 a->app_index = app->app_index;
551 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700552}
553
554static void
555session_mq_disconnected_handler (void *data)
556{
557 session_disconnected_reply_msg_t *rmp;
558 vnet_disconnect_args_t _a, *a = &_a;
559 svm_msg_q_msg_t _msg, *msg = &_msg;
560 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700561 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700562 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800563 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700564 application_t *app;
565 int rv = 0;
566
567 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700568 if (!(s = session_get_from_handle_if_valid (mp->handle)))
569 {
570 clib_warning ("could not disconnect handle %llu", mp->handle);
571 return;
572 }
Florin Coras15531972018-08-12 23:50:53 -0700573 app_wrk = app_worker_get (s->app_wrk_index);
574 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700575 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700576 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700577 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700578 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700579 return;
Florin Coras52207f12018-07-12 14:48:06 -0700580 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700581
582 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700583 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700584 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700585
Florin Coras15531972018-08-12 23:50:53 -0700586 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700587 SESSION_MQ_CTRL_EVT_RING,
588 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700589 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400590 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800591 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700592 rmp = (session_disconnected_reply_msg_t *) evt->data;
593 rmp->handle = mp->handle;
594 rmp->context = mp->context;
595 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700596 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700597}
598
599static void
600session_mq_disconnected_reply_handler (void *data)
601{
602 session_disconnected_reply_msg_t *mp;
603 vnet_disconnect_args_t _a, *a = &_a;
604 application_t *app;
605
606 mp = (session_disconnected_reply_msg_t *) data;
607
608 /* Client objected to disconnecting the session, log and continue */
609 if (mp->retval)
610 {
611 clib_warning ("client retval %d", mp->retval);
612 return;
613 }
614
615 /* Disconnect has been confirmed. Confirm close to transport */
616 app = application_lookup (mp->context);
617 if (app)
618 {
619 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700620 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700621 vnet_disconnect_session (a);
622 }
623}
624
Florin Coras30e79c22019-01-02 19:31:22 -0800625static void
626session_mq_worker_update_handler (void *data)
627{
628 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
629 session_worker_update_reply_msg_t *rmp;
630 svm_msg_q_msg_t _msg, *msg = &_msg;
631 app_worker_t *app_wrk;
632 u32 owner_app_wrk_map;
633 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800634 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800635 application_t *app;
636
637 app = application_lookup (mp->client_index);
638 if (!app)
639 return;
640 if (!(s = session_get_from_handle_if_valid (mp->handle)))
641 {
642 clib_warning ("invalid handle %llu", mp->handle);
643 return;
644 }
645 app_wrk = app_worker_get (s->app_wrk_index);
646 if (app_wrk->app_index != app->app_index)
647 {
648 clib_warning ("app %u does not own session %llu", app->app_index,
649 mp->handle);
650 return;
651 }
652 owner_app_wrk_map = app_wrk->wrk_map_index;
653 app_wrk = application_get_worker (app, mp->wrk_index);
654
655 /* This needs to come from the new owner */
656 if (mp->req_wrk_index == owner_app_wrk_map)
657 {
658 session_req_worker_update_msg_t *wump;
659
660 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
661 SESSION_MQ_CTRL_EVT_RING,
662 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800663 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
664 clib_memset (evt, 0, sizeof (*evt));
665 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
666 wump = (session_req_worker_update_msg_t *) evt->data;
667 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700668 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800669 return;
670 }
671
672 app_worker_own_session (app_wrk, s);
673
674 /*
675 * Send reply
676 */
677 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
678 SESSION_MQ_CTRL_EVT_RING,
679 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800680 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
681 clib_memset (evt, 0, sizeof (*evt));
682 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
683 rmp = (session_worker_update_reply_msg_t *) evt->data;
684 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800685 if (s->rx_fifo)
686 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
687 if (s->tx_fifo)
688 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800689 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700690 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800691
692 /*
693 * Retransmit messages that may have been lost
694 */
Florin Coras288eaab2019-02-03 15:26:14 -0800695 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800696 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800697
Florin Coras288eaab2019-02-03 15:26:14 -0800698 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800699 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800700
701 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700702 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800703}
704
Florin Coras40c07ce2020-07-16 20:46:17 -0700705static void
706session_mq_app_wrk_rpc_handler (void *data)
707{
708 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
709 svm_msg_q_msg_t _msg, *msg = &_msg;
710 session_app_wrk_rpc_msg_t *rmp;
711 app_worker_t *app_wrk;
712 session_event_t *evt;
713 application_t *app;
714
715 app = application_lookup (mp->client_index);
716 if (!app)
717 return;
718
719 app_wrk = application_get_worker (app, mp->wrk_index);
720
721 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
722 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
723 msg);
724 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
725 clib_memset (evt, 0, sizeof (*evt));
726 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
727 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
728 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
729 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
730}
731
Florin Coras04ae8272021-04-12 19:55:37 -0700732static void
733session_mq_transport_attr_handler (void *data)
734{
735 session_transport_attr_msg_t *mp = (session_transport_attr_msg_t *) data;
736 session_transport_attr_reply_msg_t *rmp;
737 svm_msg_q_msg_t _msg, *msg = &_msg;
738 app_worker_t *app_wrk;
739 session_event_t *evt;
740 application_t *app;
741 session_t *s;
742 int rv;
743
744 app = application_lookup (mp->client_index);
745 if (!app)
746 return;
747
748 if (!(s = session_get_from_handle_if_valid (mp->handle)))
749 {
750 clib_warning ("invalid handle %llu", mp->handle);
751 return;
752 }
753 app_wrk = app_worker_get (s->app_wrk_index);
754 if (app_wrk->app_index != app->app_index)
755 {
756 clib_warning ("app %u does not own session %llu", app->app_index,
757 mp->handle);
758 return;
759 }
760
761 rv = session_transport_attribute (s, mp->is_get, &mp->attr);
762
763 svm_msg_q_lock_and_alloc_msg_w_ring (
764 app_wrk->event_queue, SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT, msg);
765 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
766 clib_memset (evt, 0, sizeof (*evt));
767 evt->event_type = SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY;
768 rmp = (session_transport_attr_reply_msg_t *) evt->data;
769 rmp->handle = mp->handle;
770 rmp->retval = rv;
771 rmp->is_get = mp->is_get;
772 if (!rv && mp->is_get)
773 rmp->attr = mp->attr;
774 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
775}
776
Dave Barach68b0fb02017-02-28 15:15:56 -0500777vlib_node_registration_t session_queue_node;
778
779typedef struct
780{
781 u32 session_index;
782 u32 server_thread_index;
783} session_queue_trace_t;
784
785/* packet trace format function */
786static u8 *
787format_session_queue_trace (u8 * s, va_list * args)
788{
789 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
790 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
791 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
792
Florin Coras30928f82020-01-27 19:21:28 -0800793 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500794 t->session_index, t->server_thread_index);
795 return s;
796}
797
Florin Coras6792ec02017-03-13 03:49:51 -0700798#define foreach_session_queue_error \
799_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700800_(TIMER, "Timer events") \
801_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500802
803typedef enum
804{
805#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
806 foreach_session_queue_error
807#undef _
808 SESSION_QUEUE_N_ERROR,
809} session_queue_error_t;
810
811static char *session_queue_error_strings[] = {
812#define _(sym,string) string,
813 foreach_session_queue_error
814#undef _
815};
816
Florin Coras0d60a0f2018-06-29 02:02:08 -0700817enum
818{
819 SESSION_TX_NO_BUFFERS = -2,
820 SESSION_TX_NO_DATA,
821 SESSION_TX_OK
822};
823
Florin Coras66cf5e02018-06-08 09:17:39 -0700824static void
825session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
826 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800827 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700828{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200829 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700830 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200831 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
832 if (PREDICT_TRUE
833 (vlib_trace_buffer
834 (vm, node, next_index, b, 1 /* follow_chain */ )))
835 {
836 session_queue_trace_t *t =
837 vlib_add_trace (vm, node, b, sizeof (*t));
838 t->session_index = s->session_index;
839 t->server_thread_index = s->thread_index;
840 n_trace--;
841 }
842 to_next++;
843 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700844 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200845 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700846}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700847
Florin Coras8e43d042018-05-04 15:46:57 -0700848always_inline void
849session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
850 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
851{
Florin Coras8e43d042018-05-04 15:46:57 -0700852 vlib_buffer_t *chain_b, *prev_b;
853 u32 chain_bi0, to_deq, left_from_seg;
854 u16 len_to_deq, n_bytes_read;
855 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700856
Florin Coras8e43d042018-05-04 15:46:57 -0700857 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
858 b->total_length_not_including_first_buffer = 0;
859
860 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000861 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700862 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700863 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700864 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700865 {
Florin Coras8e43d042018-05-04 15:46:57 -0700866 prev_b = chain_b;
867 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700868
869 *n_bufs -= 1;
Florin Coras1d7a6632021-05-17 23:44:53 -0700870 chain_bi0 = ctx->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700871 chain_b = vlib_get_buffer (vm, chain_bi0);
872 chain_b->current_data = 0;
873 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700874 if (peek_data)
875 {
Florin Coras288eaab2019-02-03 15:26:14 -0800876 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000877 ctx->sp.tx_offset, len_to_deq, data);
878 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700879 }
880 else
881 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200882 if (ctx->transport_vft->transport_options.tx_type ==
883 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700884 {
Florin Coras288eaab2019-02-03 15:26:14 -0800885 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700886 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700887 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300888 u32 offset;
889
Florin Coras7fb0fe12018-04-09 09:24:52 -0700890 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700891 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300892 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
893 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700894 ASSERT (n_bytes_read > 0);
895
896 hdr->data_offset += n_bytes_read;
897 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800898 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300899 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800900 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000901 if (ctx->left_to_snd > n_bytes_read)
902 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
903 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800904 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000905 else if (ctx->left_to_snd == n_bytes_read)
906 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
907 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700908 }
909 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700910 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
911 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700912 }
Florin Coras8e43d042018-05-04 15:46:57 -0700913 ASSERT (n_bytes_read == len_to_deq);
914 chain_b->current_length = n_bytes_read;
915 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700916
917 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700918 prev_b->next_buffer = chain_bi0;
919 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700920
921 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700922 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700923
Florin Corasb2215d62017-08-01 16:56:58 -0700924 to_deq -= n_bytes_read;
925 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700926 break;
927 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700928 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700929 && b->total_length_not_including_first_buffer == left_from_seg);
930 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700931}
932
Florin Coras8e43d042018-05-04 15:46:57 -0700933always_inline void
934session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
935 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
936{
937 u32 len_to_deq;
938 u8 *data0;
939 int n_bytes_read;
940
941 /*
942 * Start with the first buffer in chain
943 */
944 b->error = 0;
945 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
946 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700947
Florin Coras1ee78302019-02-05 15:51:15 -0800948 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700949 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
950
Florin Coras7fb0fe12018-04-09 09:24:52 -0700951 if (peek_data)
952 {
Florin Coras70f879d2020-03-13 17:54:42 +0000953 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700954 len_to_deq, data0);
955 ASSERT (n_bytes_read > 0);
956 /* Keep track of progress locally, transport is also supposed to
957 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000958 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700959 }
960 else
961 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200962 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700963 {
964 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800965 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700966 u16 deq_now;
967 u32 offset;
968
969 ASSERT (hdr->data_length > hdr->data_offset);
970 deq_now = clib_min (hdr->data_length - hdr->data_offset,
971 len_to_deq);
972 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
973 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
974 ASSERT (n_bytes_read > 0);
975
976 if (ctx->s->session_state == SESSION_STATE_LISTENING)
977 {
978 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
979 ctx->tc->rmt_port = hdr->rmt_port;
980 }
981 hdr->data_offset += n_bytes_read;
982 if (hdr->data_offset == hdr->data_length)
983 {
984 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
985 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000986 if (ctx->left_to_snd > n_bytes_read)
987 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
988 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700989 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000990 else if (ctx->left_to_snd == n_bytes_read)
991 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
992 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700993 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700994 else
995 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700996 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
997 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700998 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700999 }
1000 }
Florin Coras8e43d042018-05-04 15:46:57 -07001001 b->current_length = n_bytes_read;
1002 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -05001003
Florin Coras8e43d042018-05-04 15:46:57 -07001004 /*
1005 * Fill in the remaining buffers in the chain, if any
1006 */
1007 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
1008 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -07001009}
1010
1011always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -08001012session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001013{
1014 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -08001015 {
Florin Corasa6789742019-08-07 19:12:38 -07001016 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
1017 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -07001018 /* Can retransmit for closed sessions but can't send new data if
1019 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -07001020 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -07001021 return 1;
Florin Corasa6789742019-08-07 19:12:38 -07001022 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1023 {
1024 /* Allow closed transports to still send custom packets.
1025 * For instance, tcp may want to send acks in time-wait. */
1026 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
1027 && (s->flags & SESSION_F_CUSTOM_TX))
1028 return 0;
1029 return 2;
1030 }
Florin Corase04c2992017-03-01 08:17:34 -08001031 }
Florin Coras8e43d042018-05-04 15:46:57 -07001032 return 0;
1033}
Dave Barach68b0fb02017-02-28 15:15:56 -05001034
Florin Coras8e43d042018-05-04 15:46:57 -07001035always_inline transport_connection_t *
1036session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
1037{
1038 if (peek_data)
1039 {
1040 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1041 ctx->s->thread_index);
1042 }
1043 else
1044 {
1045 if (ctx->s->session_state == SESSION_STATE_LISTENING)
1046 return ctx->transport_vft->get_listener (ctx->s->connection_index);
1047 else
1048 {
1049 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1050 ctx->s->thread_index);
1051 }
1052 }
1053}
Florin Coras6a9b68b2017-11-21 04:20:42 -08001054
Florin Coras8e43d042018-05-04 15:46:57 -07001055always_inline void
1056session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -07001057 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001058{
1059 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +00001060
1061 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -06001062 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +00001063
Dave Barach68b0fb02017-02-28 15:15:56 -05001064 if (peek_data)
1065 {
Florin Coras9d063042017-09-14 03:08:00 -04001066 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +00001067 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -07001068 {
1069 ctx->max_len_to_snd = 0;
1070 return;
1071 }
Florin Coras70f879d2020-03-13 17:54:42 +00001072 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -05001073 }
Florin Coras7fb0fe12018-04-09 09:24:52 -07001074 else
1075 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001076 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001077 {
Florin Coras6e0ee952020-04-20 21:07:06 +00001078 u32 len, chain_limit;
1079
Florin Coras8e43d042018-05-04 15:46:57 -07001080 if (ctx->max_dequeue <= sizeof (ctx->hdr))
1081 {
1082 ctx->max_len_to_snd = 0;
1083 return;
1084 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001085
Florin Coras288eaab2019-02-03 15:26:14 -08001086 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -07001087 (u8 *) & ctx->hdr);
1088 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001089 len = ctx->hdr.data_length - ctx->hdr.data_offset;
1090
1091 /* Process multiple dgrams if smaller than min (buf_space, mss).
1092 * This avoids handling multiple dgrams if they require buffer
1093 * chains */
1094 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
1095 ctx->sp.snd_mss);
1096 if (ctx->hdr.data_length <= chain_limit)
1097 {
1098 u32 first_dgram_len, dgram_len, offset, max_offset;
1099 session_dgram_hdr_t hdr;
1100
1101 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
1102 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
1103 first_dgram_len = len;
1104 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
1105
1106 while (offset < max_offset)
1107 {
1108 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
1109 (u8 *) & hdr);
1110 ASSERT (hdr.data_length > hdr.data_offset);
1111 dgram_len = hdr.data_length - hdr.data_offset;
1112 if (len + dgram_len > ctx->max_dequeue
1113 || first_dgram_len != dgram_len)
1114 break;
1115 len += dgram_len;
1116 offset += sizeof (hdr) + hdr.data_length;
1117 }
1118 }
1119
1120 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001121 }
1122 }
Florin Coras8e43d042018-05-04 15:46:57 -07001123 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001124
1125 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +00001126 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -07001127 {
1128 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +00001129 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
1130 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
1131 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -07001132 /* TODO Nagle ? */
1133 }
1134 else
1135 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001136 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +00001137 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -07001138 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001139
Florin Corasf08f26d2018-05-10 13:20:47 -07001140 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +00001141 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -07001142 if (ctx->n_segs_per_evt > max_segs)
1143 {
1144 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +00001145 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -07001146 }
1147
Florin Coras1ee78302019-02-05 15:51:15 -08001148 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +08001149 if (ctx->n_segs_per_evt > 1)
1150 {
1151 u32 n_bytes_last_seg, n_bufs_last_seg;
1152
1153 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
1154 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
1155 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
1156 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1157 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
1158 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
1159 + n_bufs_last_seg;
1160 }
1161 else
1162 {
1163 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
1164 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1165 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
1166 }
1167
Florin Coras70f879d2020-03-13 17:54:42 +00001168 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
1169 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -08001170 n_bytes_per_buf -
1171 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -07001172}
Florin Corasf6d68ed2017-05-07 19:12:02 -07001173
Florin Corasaaf64a22020-02-23 01:37:34 +00001174always_inline void
1175session_tx_maybe_reschedule (session_worker_t * wrk,
1176 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +00001177 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +00001178{
1179 session_t *s = ctx->s;
1180
1181 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +00001182 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +00001183 if (svm_fifo_set_event (s->tx_fifo))
1184 session_evt_add_head_old (wrk, elt);
1185}
1186
Florin Coras8e43d042018-05-04 15:46:57 -07001187always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001188session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1189 vlib_node_runtime_t * node,
1190 session_evt_elt_t * elt,
1191 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001192{
Simon Zhangae16a982020-03-31 20:56:22 +08001193 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001194 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001195 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001196 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001197 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001198 transport_proto_t tp;
1199 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001200 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001201
Florin Coras1bcad5c2019-01-09 20:04:38 -08001202 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001203 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001204 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001205 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001206 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001207 }
1208
Florin Coras1bcad5c2019-01-09 20:04:38 -08001209 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001210 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001211
Florin Coras1bcad5c2019-01-09 20:04:38 -08001212 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001213 ctx->transport_vft = transport_protocol_get_vft (tp);
1214 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001215
1216 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1217 {
1218 if (ctx->transport_vft->flush_data)
1219 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001220 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001221 }
1222
Florin Coras26dd6de2019-07-23 23:54:47 -07001223 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1224 {
1225 u32 n_custom_tx;
1226 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001227 ctx->sp.max_burst_size = max_burst;
1228 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001229 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001230 if (PREDICT_FALSE
1231 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1232 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001233 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001234 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001235 {
1236 session_evt_add_old (wrk, elt);
1237 return SESSION_TX_OK;
1238 }
1239 }
1240
Florin Coras70f879d2020-03-13 17:54:42 +00001241 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001242
Florin Coras70f879d2020-03-13 17:54:42 +00001243 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001244 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001245 /* If the deschedule flag was set, remove session from scheduler.
1246 * Transport is responsible for rescheduling this session. */
1247 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1248 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001249 /* Request to postpone the session, e.g., zero-wnd and transport
1250 * is not currently probing */
1251 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1252 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001253 /* This flow queue is "empty" so it should be re-evaluated before
1254 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001255 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001256 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001257
Florin Coras0d60a0f2018-06-29 02:02:08 -07001258 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001259 }
1260
Florin Coras11e9e352019-11-13 19:09:47 -08001261 if (transport_connection_is_tx_paced (ctx->tc))
1262 {
1263 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1264 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1265 {
1266 session_evt_add_head_old (wrk, elt);
1267 return SESSION_TX_NO_DATA;
1268 }
Florin Coras70f879d2020-03-13 17:54:42 +00001269 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1270 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1271 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001272 }
1273
Florin Coras8e43d042018-05-04 15:46:57 -07001274 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001275 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001276
Florin Coras8e43d042018-05-04 15:46:57 -07001277 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001278 {
Florin Coras11e9e352019-11-13 19:09:47 -08001279 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001280 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001281 return SESSION_TX_NO_DATA;
1282 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001283
Florin Coras1d7a6632021-05-17 23:44:53 -07001284 vec_validate_aligned (ctx->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001285 CLIB_CACHE_LINE_BYTES);
Florin Coras1d7a6632021-05-17 23:44:53 -07001286 n_bufs = vlib_buffer_alloc (vm, ctx->tx_buffers, ctx->n_bufs_needed);
Simon Zhangae16a982020-03-31 20:56:22 +08001287 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001288 {
Florin Coras2068fd42019-01-31 14:35:50 -08001289 if (n_bufs)
Florin Coras1d7a6632021-05-17 23:44:53 -07001290 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001291 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001292 vlib_node_increment_counter (wrk->vm, node->node_index,
1293 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001294 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001295 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001296
Florin Coras7808df22020-11-02 18:00:32 -08001297 if (transport_connection_is_tx_paced (ctx->tc))
1298 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001299
Florin Corasf08f26d2018-05-10 13:20:47 -07001300 ctx->left_to_snd = ctx->max_len_to_snd;
1301 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001302
1303 while (n_left >= 4)
1304 {
1305 vlib_buffer_t *b0, *b1;
1306 u32 bi0, bi1;
1307
Florin Coras1d7a6632021-05-17 23:44:53 -07001308 pbi = ctx->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001309 pb = vlib_get_buffer (vm, pbi);
1310 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras1d7a6632021-05-17 23:44:53 -07001311 pbi = ctx->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001312 pb = vlib_get_buffer (vm, pbi);
1313 vlib_prefetch_buffer_header (pb, STORE);
1314
Florin Coras1d7a6632021-05-17 23:44:53 -07001315 bi0 = ctx->tx_buffers[--n_bufs];
1316 bi1 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001317
1318 b0 = vlib_get_buffer (vm, bi0);
1319 b1 = vlib_get_buffer (vm, bi1);
1320
1321 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1322 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1323
1324 ctx->transport_vft->push_header (ctx->tc, b0);
1325 ctx->transport_vft->push_header (ctx->tc, b1);
1326
Florin Coras66cf5e02018-06-08 09:17:39 -07001327 n_left -= 2;
1328
Florin Coras8a754f12019-10-16 22:35:18 -07001329 vec_add1 (wrk->pending_tx_buffers, bi0);
1330 vec_add1 (wrk->pending_tx_buffers, bi1);
1331 vec_add1 (wrk->pending_tx_nexts, next_index);
1332 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001333 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001334 while (n_left)
1335 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001336 vlib_buffer_t *b0;
1337 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001338
Florin Coras91ca4622018-06-30 11:27:59 -07001339 if (n_left > 1)
1340 {
Florin Coras1d7a6632021-05-17 23:44:53 -07001341 pbi = ctx->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001342 pb = vlib_get_buffer (vm, pbi);
1343 vlib_prefetch_buffer_header (pb, STORE);
1344 }
1345
Florin Coras1d7a6632021-05-17 23:44:53 -07001346 bi0 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001347 b0 = vlib_get_buffer (vm, bi0);
1348 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001349
Florin Coras66cf5e02018-06-08 09:17:39 -07001350 /* Ask transport to push header after current_length and
1351 * total_length_not_including_first_buffer are updated */
1352 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001353
Florin Coras66cf5e02018-06-08 09:17:39 -07001354 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001355
Florin Coras8a754f12019-10-16 22:35:18 -07001356 vec_add1 (wrk->pending_tx_buffers, bi0);
1357 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001358 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001359
Florin Coras60183db2019-07-20 15:53:16 -07001360 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001361 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001362 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001363
Florin Coras2068fd42019-01-31 14:35:50 -08001364 if (PREDICT_FALSE (n_bufs))
Florin Coras1d7a6632021-05-17 23:44:53 -07001365 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -07001366
Florin Corasf08f26d2018-05-10 13:20:47 -07001367 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001368
Florin Corascca96182019-07-19 07:34:13 -07001369 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1370 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1371
Florin Corasf08f26d2018-05-10 13:20:47 -07001372 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001373
1374 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1375 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001376 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001377 session_evt_add_old (wrk, elt);
1378 else
Florin Coras70f879d2020-03-13 17:54:42 +00001379 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001380
Florin Corasab57edb2020-04-07 03:46:07 +00001381 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001382 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001383 u32 n_dequeued = ctx->max_len_to_snd;
1384 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1385 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1386 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001387 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001388 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001389 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001390}
1391
1392int
Florin Coras60183db2019-07-20 15:53:16 -07001393session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1394 vlib_node_runtime_t * node,
1395 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001396{
Florin Coras60183db2019-07-20 15:53:16 -07001397 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001398}
1399
1400int
Florin Coras60183db2019-07-20 15:53:16 -07001401session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1402 vlib_node_runtime_t * node,
1403 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001404{
Florin Coras60183db2019-07-20 15:53:16 -07001405 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001406}
1407
Florin Coras371ca502018-02-21 12:07:41 -08001408int
Florin Coras60183db2019-07-20 15:53:16 -07001409session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001410 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001411 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001412{
Florin Coras9f86d222020-03-23 15:34:22 +00001413 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001414 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001415 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001416
Florin Corasc0737e92019-03-04 14:19:39 -08001417 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001418 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001419
1420 /* Clear custom-tx flag used to request reschedule for tx */
1421 s->flags &= ~SESSION_F_CUSTOM_TX;
1422
Florin Coras89235c72020-11-02 19:00:10 -08001423 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001424 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001425
Florin Coras9f86d222020-03-23 15:34:22 +00001426 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1427 *n_tx_packets += n_packets;
1428
1429 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001430 {
1431 session_evt_add_old (wrk, elt);
1432 }
Florin Coras9f86d222020-03-23 15:34:22 +00001433 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001434 {
1435 svm_fifo_unset_event (s->tx_fifo);
1436 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1437 if (svm_fifo_set_event (s->tx_fifo))
1438 session_evt_add_head_old (wrk, elt);
1439 }
1440
Florin Coras1e6a0f62021-03-09 08:36:25 -08001441 if (sp->max_burst_size &&
1442 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1443 session_dequeue_notify (s);
1444
Florin Corased8db522020-02-27 04:32:51 +00001445 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001446}
1447
Florin Coras288eaab2019-02-03 15:26:14 -08001448always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001449session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001450{
Florin Corasdb999df2020-09-21 10:45:56 -07001451 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1452 return 0;
1453
1454 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1455 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001456}
1457
Florin Coras60183db2019-07-20 15:53:16 -07001458always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001459session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1460{
1461 clib_llist_index_t ei;
1462 void (*fp) (void *);
1463 session_event_t *e;
1464 session_t *s;
1465
1466 ei = clib_llist_entry_index (wrk->event_elts, elt);
1467 e = &elt->evt;
1468
1469 switch (e->event_type)
1470 {
1471 case SESSION_CTRL_EVT_RPC:
1472 fp = e->rpc_args.fp;
1473 (*fp) (e->rpc_args.arg);
1474 break;
liuyacan534468e2021-05-09 03:50:40 +00001475 case SESSION_CTRL_EVT_HALF_CLOSE:
1476 s = session_get_from_handle_if_valid (e->session_handle);
1477 if (PREDICT_FALSE (!s))
1478 break;
1479 session_transport_half_close (s);
1480 break;
Florin Coras458089b2019-08-21 16:20:44 -07001481 case SESSION_CTRL_EVT_CLOSE:
1482 s = session_get_from_handle_if_valid (e->session_handle);
1483 if (PREDICT_FALSE (!s))
1484 break;
1485 session_transport_close (s);
1486 break;
1487 case SESSION_CTRL_EVT_RESET:
1488 s = session_get_from_handle_if_valid (e->session_handle);
1489 if (PREDICT_FALSE (!s))
1490 break;
1491 session_transport_reset (s);
1492 break;
1493 case SESSION_CTRL_EVT_LISTEN:
1494 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1495 break;
1496 case SESSION_CTRL_EVT_LISTEN_URI:
1497 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1498 break;
1499 case SESSION_CTRL_EVT_UNLISTEN:
Florin Corasc53eb722021-06-22 14:20:39 -07001500 session_mq_unlisten_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001501 break;
1502 case SESSION_CTRL_EVT_CONNECT:
Florin Corasaf972212021-05-05 09:54:00 -07001503 session_mq_connect_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001504 break;
1505 case SESSION_CTRL_EVT_CONNECT_URI:
1506 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1507 break;
liuyacan534468e2021-05-09 03:50:40 +00001508 case SESSION_CTRL_EVT_SHUTDOWN:
1509 session_mq_shutdown_handler (session_evt_ctrl_data (wrk, elt));
1510 break;
Florin Coras458089b2019-08-21 16:20:44 -07001511 case SESSION_CTRL_EVT_DISCONNECT:
1512 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1513 break;
1514 case SESSION_CTRL_EVT_DISCONNECTED:
1515 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1516 break;
1517 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1518 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1519 break;
1520 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1521 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1522 elt));
1523 break;
1524 case SESSION_CTRL_EVT_RESET_REPLY:
1525 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1526 break;
1527 case SESSION_CTRL_EVT_WORKER_UPDATE:
1528 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1529 break;
1530 case SESSION_CTRL_EVT_APP_DETACH:
1531 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1532 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001533 case SESSION_CTRL_EVT_APP_WRK_RPC:
1534 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1535 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001536 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1537 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1538 break;
Florin Coras458089b2019-08-21 16:20:44 -07001539 default:
1540 clib_warning ("unhandled event type %d", e->event_type);
1541 }
1542
1543 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001544 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras458089b2019-08-21 16:20:44 -07001545 if (!clib_llist_elt_is_linked (elt, evt_list))
1546 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001547 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001548 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1549 session_evt_ctrl_data_free (wrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -07001550 clib_llist_put (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001551 }
Srikanth Akula73570432020-04-06 19:19:49 -07001552 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001553}
1554
1555always_inline void
1556session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001557 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001558{
Florin Coras60183db2019-07-20 15:53:16 -07001559 session_main_t *smm = &session_main;
1560 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001561 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001562 session_event_t *e;
1563 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001564
Florin Corasb0ffbee2019-07-21 19:23:46 -07001565 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001566 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001567
Florin Coras60183db2019-07-20 15:53:16 -07001568 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001569 {
Florin Coras60183db2019-07-20 15:53:16 -07001570 case SESSION_IO_EVT_TX_FLUSH:
1571 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001572 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001573 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001574 break;
Florin Coras60183db2019-07-20 15:53:16 -07001575 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1576 wrk->ctx.s = s;
1577 /* Spray packets in per session type frames, since they go to
1578 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001579 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001580 break;
1581 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001582 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001583 if (!s)
1584 break;
1585 transport_app_rx_evt (session_get_transport_proto (s),
1586 s->connection_index, s->thread_index);
1587 break;
Florin Coras60183db2019-07-20 15:53:16 -07001588 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001589 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001590 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1591 break;
1592 svm_fifo_unset_event (s->rx_fifo);
1593 app_wrk = app_worker_get (s->app_wrk_index);
1594 app_worker_builtin_rx (app_wrk, s);
1595 break;
1596 case SESSION_IO_EVT_BUILTIN_TX:
1597 s = session_get_from_handle_if_valid (e->session_handle);
1598 wrk->ctx.s = s;
1599 if (PREDICT_TRUE (s != 0))
1600 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1601 break;
Florin Coras60183db2019-07-20 15:53:16 -07001602 default:
1603 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001604 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001605
Srikanth Akula73570432020-04-06 19:19:49 -07001606 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1607
Florin Corasb0ffbee2019-07-21 19:23:46 -07001608 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001609 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001610 if (!clib_llist_elt_is_linked (elt, evt_list))
Florin Coras46b8b1a2021-05-17 19:09:33 -07001611 clib_llist_put (wrk->event_elts, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001612}
1613
Florin Coras458089b2019-08-21 16:20:44 -07001614/* *INDENT-OFF* */
1615static const u32 session_evt_msg_sizes[] = {
1616#define _(symc, sym) \
1617 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1618 foreach_session_ctrl_evt
1619#undef _
1620};
1621/* *INDENT-ON* */
1622
1623always_inline void
1624session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1625{
1626 session_evt_elt_t *elt;
1627
1628 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1629 {
1630 elt = session_evt_alloc_ctrl (wrk);
1631 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1632 {
1633 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1634 elt->evt.event_type = evt->event_type;
1635 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1636 session_evt_msg_sizes[evt->event_type]);
1637 }
1638 else
1639 {
1640 /* Internal control events fit into io events footprint */
1641 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1642 }
1643 }
1644 else
1645 {
1646 elt = session_evt_alloc_new (wrk);
1647 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1648 }
1649}
1650
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001651static void
1652session_flush_pending_tx_buffers (session_worker_t * wrk,
1653 vlib_node_runtime_t * node)
1654{
1655 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1656 wrk->pending_tx_nexts,
1657 vec_len (wrk->pending_tx_nexts));
1658 vec_reset_length (wrk->pending_tx_buffers);
1659 vec_reset_length (wrk->pending_tx_nexts);
1660}
1661
Florin Coras41d5f542021-01-15 13:49:33 -08001662int
1663session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1664{
1665 svm_msg_q_msg_t _msg, *msg = &_msg;
1666 u32 i, n_to_dequeue = 0;
1667 session_event_t *evt;
1668
1669 n_to_dequeue = svm_msg_q_size (mq);
1670 for (i = 0; i < n_to_dequeue; i++)
1671 {
1672 svm_msg_q_sub_raw (mq, msg);
1673 evt = svm_msg_q_msg_data (mq, msg);
1674 session_evt_add_to_list (wrk, evt);
1675 svm_msg_q_free_msg (mq, msg);
1676 }
1677
1678 return n_to_dequeue;
1679}
1680
Florin Coras7da88292021-03-18 15:04:34 -07001681static void
Florin Coras7da88292021-03-18 15:04:34 -07001682session_wrk_update_state (session_worker_t *wrk)
1683{
1684 vlib_main_t *vm = wrk->vm;
1685
1686 if (wrk->state == SESSION_WRK_POLLING)
1687 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001688 if (clib_llist_elts (wrk->event_elts) == 4 &&
Florin Coras7da88292021-03-18 15:04:34 -07001689 vlib_last_vectors_per_main_loop (vm) < 1)
1690 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001691 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001692 vlib_node_set_state (vm, session_queue_node.index,
1693 VLIB_NODE_STATE_INTERRUPT);
1694 }
1695 }
1696 else if (wrk->state == SESSION_WRK_INTERRUPT)
1697 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001698 if (clib_llist_elts (wrk->event_elts) > 4 ||
Florin Coras7da88292021-03-18 15:04:34 -07001699 vlib_last_vectors_per_main_loop (vm) > 1)
1700 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001701 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001702 vlib_node_set_state (vm, session_queue_node.index,
1703 VLIB_NODE_STATE_POLLING);
1704 }
1705 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1706 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001707 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001708 }
1709 }
1710 else
1711 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001712 if (clib_llist_elts (wrk->event_elts))
Florin Coras7da88292021-03-18 15:04:34 -07001713 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001714 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001715 }
1716 }
1717}
1718
Florin Coras0d60a0f2018-06-29 02:02:08 -07001719static uword
1720session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1721 vlib_frame_t * frame)
1722{
Florin Coras41d5f542021-01-15 13:49:33 -08001723 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001724 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001725 session_main_t *smm = vnet_get_session_main ();
1726 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001727 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001728 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001729
Florin Corascca96182019-07-19 07:34:13 -07001730 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001731
Florin Coras8f10b902021-04-02 18:32:00 -07001732 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001733
Florin Coras0d60a0f2018-06-29 02:02:08 -07001734 /*
1735 * Update transport time
1736 */
Florin Coras60183db2019-07-20 15:53:16 -07001737 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001738 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001739 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001740
Florin Corasb0ffbee2019-07-21 19:23:46 -07001741 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001742 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001743 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001744
Florin Coras41d5f542021-01-15 13:49:33 -08001745 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1746 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001747
Florin Corasb0ffbee2019-07-21 19:23:46 -07001748 /*
1749 * Handle control events
1750 */
1751
Florin Coras09843952021-05-17 16:05:41 -07001752 ei = wrk->ctrl_head;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001753 ctrl_he = clib_llist_elt (wrk->event_elts, ei);
Florin Coras09843952021-05-17 16:05:41 -07001754 next_ei = clib_llist_next_index (ctrl_he, evt_list);
1755 old_ti = clib_llist_prev_index (ctrl_he, evt_list);
1756 while (ei != old_ti)
1757 {
1758 ei = next_ei;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001759 elt = clib_llist_elt (wrk->event_elts, next_ei);
Florin Coras09843952021-05-17 16:05:41 -07001760 next_ei = clib_llist_next_index (elt, evt_list);
1761 clib_llist_remove (wrk->event_elts, evt_list, elt);
1762 session_event_dispatch_ctrl (wrk, elt);
1763 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001764
Srikanth Akula73570432020-04-06 19:19:49 -07001765 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1766
Florin Corasb0ffbee2019-07-21 19:23:46 -07001767 /*
1768 * Handle the new io events.
1769 */
1770
Florin Coras46b8b1a2021-05-17 19:09:33 -07001771 new_he = clib_llist_elt (wrk->event_elts, wrk->new_head);
1772 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Coras45b79732019-10-30 19:22:51 -07001773 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001774
Florin Coras16d974e2020-02-09 20:03:12 +00001775 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001776 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001777 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001778 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras16d974e2020-02-09 20:03:12 +00001779 ei = clib_llist_next_index (elt, evt_list);
1780 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001781 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001782 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001783
Srikanth Akula73570432020-04-06 19:19:49 -07001784 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1785
Florin Corasb0ffbee2019-07-21 19:23:46 -07001786 /*
Florin Coras45b79732019-10-30 19:22:51 -07001787 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001788 */
1789
Florin Coras45b79732019-10-30 19:22:51 -07001790 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001791 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001792 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001793 ei = clib_llist_next_index (old_he, evt_list);
1794
Florin Coras89235c72020-11-02 19:00:10 -08001795 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001796 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001797 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasdd97a482019-11-02 14:32:52 -07001798 next_ei = clib_llist_next_index (elt, evt_list);
1799 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001800
Florin Corasdb999df2020-09-21 10:45:56 -07001801 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001802
Florin Coras45b79732019-10-30 19:22:51 -07001803 if (ei == old_ti)
1804 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001805
1806 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001807 };
1808 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001809
Srikanth Akula73570432020-04-06 19:19:49 -07001810 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1811
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001812 if (vec_len (wrk->pending_tx_buffers))
1813 session_flush_pending_tx_buffers (wrk, node);
1814
Florin Coras0d60a0f2018-06-29 02:02:08 -07001815 vlib_node_increment_counter (vm, session_queue_node.index,
1816 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1817
Florin Corascca96182019-07-19 07:34:13 -07001818 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001819
Florin Coras7da88292021-03-18 15:04:34 -07001820 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1821 session_wrk_update_state (wrk);
1822
Florin Coras0d60a0f2018-06-29 02:02:08 -07001823 return n_tx_packets;
1824}
1825
1826/* *INDENT-OFF* */
1827VLIB_REGISTER_NODE (session_queue_node) =
1828{
1829 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001830 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001831 .name = "session-queue",
1832 .format_trace = format_session_queue_trace,
1833 .type = VLIB_NODE_TYPE_INPUT,
1834 .n_errors = ARRAY_LEN (session_queue_error_strings),
1835 .error_strings = session_queue_error_strings,
1836 .state = VLIB_NODE_STATE_DISABLED,
1837};
1838/* *INDENT-ON* */
1839
Dave Barach2a863912017-11-28 10:11:42 -05001840static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001841session_wrk_tfd_read_ready (clib_file_t *cf)
1842{
1843 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1844 u64 buf;
1845 int rv;
1846
1847 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1848 rv = read (wrk->timerfd, &buf, sizeof (buf));
1849 if (rv < 0 && errno != EAGAIN)
1850 clib_unix_warning ("failed");
1851 return 0;
1852}
1853
1854static clib_error_t *
1855session_wrk_tfd_write_ready (clib_file_t *cf)
1856{
1857 return 0;
1858}
1859
1860void
1861session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1862{
1863 u32 thread_index = wrk->vm->thread_index;
1864 clib_file_t template = { 0 };
1865
1866 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1867 clib_warning ("timerfd_create");
1868
1869 template.read_function = session_wrk_tfd_read_ready;
1870 template.write_function = session_wrk_tfd_write_ready;
1871 template.file_descriptor = wrk->timerfd;
1872 template.private_data = thread_index;
1873 template.polling_thread_index = thread_index;
1874 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1875
1876 wrk->timerfd_file = clib_file_add (&file_main, &template);
1877 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1878}
1879
1880static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001881session_queue_exit (vlib_main_t * vm)
1882{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001883 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001884 return 0;
1885
1886 /*
1887 * Shut off (especially) worker-thread session nodes.
1888 * Otherwise, vpp can crash as the main thread unmaps the
1889 * API segment.
1890 */
1891 vlib_worker_thread_barrier_sync (vm);
1892 session_node_enable_disable (0 /* is_enable */ );
1893 vlib_worker_thread_barrier_release (vm);
1894 return 0;
1895}
1896
1897VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1898
Florin Corasfd542f12018-05-16 19:28:24 -07001899static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001900session_queue_run_on_main (vlib_main_t * vm)
1901{
1902 vlib_node_runtime_t *node;
1903
1904 node = vlib_node_get_runtime (vm, session_queue_node.index);
1905 return session_queue_node_fn (vm, node, 0);
1906}
1907
1908static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001909session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1910 vlib_frame_t * f)
1911{
Florin Corasfd542f12018-05-16 19:28:24 -07001912 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001913 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001914 uword event_type;
1915
1916 while (1)
1917 {
1918 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001919 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1920
1921 switch (event_type)
1922 {
Florin Coras5484daa2020-03-27 23:55:06 +00001923 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1924 /* Run session queue node on main thread */
1925 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001926 break;
1927 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001928 vlib_node_set_state (vm, session_queue_process_node.index,
1929 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001930 timeout = 100000.0;
1931 break;
1932 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001933 /* Timed out. Run on main to ensure all events are handled */
1934 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001935 break;
1936 }
1937 vec_reset_length (event_data);
1938 }
1939 return 0;
1940}
1941
1942/* *INDENT-OFF* */
1943VLIB_REGISTER_NODE (session_queue_process_node) =
1944{
1945 .function = session_queue_process,
1946 .type = VLIB_NODE_TYPE_PROCESS,
1947 .name = "session-queue-process",
1948 .state = VLIB_NODE_STATE_DISABLED,
1949};
1950/* *INDENT-ON* */
1951
Florin Coras653e43f2019-03-04 10:56:23 -08001952static_always_inline uword
1953session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1954 vlib_frame_t * frame)
1955{
1956 session_main_t *sm = &session_main;
1957 if (!sm->wrk[0].vpp_event_queue)
1958 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001959 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001960 return session_queue_node_fn (vm, node, frame);
1961}
1962
1963/* *INDENT-OFF* */
1964VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1965{
1966 .function = session_queue_pre_input_inline,
1967 .type = VLIB_NODE_TYPE_PRE_INPUT,
1968 .name = "session-queue-main",
1969 .state = VLIB_NODE_STATE_DISABLED,
1970};
1971/* *INDENT-ON* */
1972
Dave Barach68b0fb02017-02-28 15:15:56 -05001973/*
1974 * fd.io coding-style-patch-verification: ON
1975 *
1976 * Local Variables:
1977 * eval: (c-set-style "gnu")
1978 * End:
1979 */