blob: 981fa66eae1f63f919869b1cdec22df76cc48c35 [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
liuyacan0242fd82021-08-20 10:25:43 +0800976 if (transport_connection_is_cless (ctx->tc))
Florin Coras8e43d042018-05-04 15:46:57 -0700977 {
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)
liuyacan1b6b09b2021-08-16 10:51:13 +08001021 {
1022 /* Allow accepting session to send custom packets.
1023 * For instance, tcp want to send acks in established, but
1024 * the app has not called accept() yet */
1025 if (s->session_state == SESSION_STATE_ACCEPTING &&
1026 (s->flags & SESSION_F_CUSTOM_TX))
1027 return 0;
1028 return 1;
1029 }
Florin Corasa6789742019-08-07 19:12:38 -07001030 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1031 {
1032 /* Allow closed transports to still send custom packets.
1033 * For instance, tcp may want to send acks in time-wait. */
1034 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
1035 && (s->flags & SESSION_F_CUSTOM_TX))
1036 return 0;
1037 return 2;
1038 }
Florin Corase04c2992017-03-01 08:17:34 -08001039 }
Florin Coras8e43d042018-05-04 15:46:57 -07001040 return 0;
1041}
Dave Barach68b0fb02017-02-28 15:15:56 -05001042
Florin Coras8e43d042018-05-04 15:46:57 -07001043always_inline transport_connection_t *
1044session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
1045{
1046 if (peek_data)
1047 {
1048 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1049 ctx->s->thread_index);
1050 }
1051 else
1052 {
1053 if (ctx->s->session_state == SESSION_STATE_LISTENING)
1054 return ctx->transport_vft->get_listener (ctx->s->connection_index);
1055 else
1056 {
1057 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1058 ctx->s->thread_index);
1059 }
1060 }
1061}
Florin Coras6a9b68b2017-11-21 04:20:42 -08001062
Florin Coras8e43d042018-05-04 15:46:57 -07001063always_inline void
1064session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -07001065 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001066{
1067 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +00001068
1069 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -06001070 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +00001071
Dave Barach68b0fb02017-02-28 15:15:56 -05001072 if (peek_data)
1073 {
Florin Coras9d063042017-09-14 03:08:00 -04001074 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +00001075 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -07001076 {
1077 ctx->max_len_to_snd = 0;
1078 return;
1079 }
Florin Coras70f879d2020-03-13 17:54:42 +00001080 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -05001081 }
Florin Coras7fb0fe12018-04-09 09:24:52 -07001082 else
1083 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001084 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001085 {
Florin Coras6e0ee952020-04-20 21:07:06 +00001086 u32 len, chain_limit;
1087
Florin Coras8e43d042018-05-04 15:46:57 -07001088 if (ctx->max_dequeue <= sizeof (ctx->hdr))
1089 {
1090 ctx->max_len_to_snd = 0;
1091 return;
1092 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001093
Florin Coras288eaab2019-02-03 15:26:14 -08001094 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -07001095 (u8 *) & ctx->hdr);
1096 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001097 len = ctx->hdr.data_length - ctx->hdr.data_offset;
1098
1099 /* Process multiple dgrams if smaller than min (buf_space, mss).
1100 * This avoids handling multiple dgrams if they require buffer
1101 * chains */
1102 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
1103 ctx->sp.snd_mss);
1104 if (ctx->hdr.data_length <= chain_limit)
1105 {
1106 u32 first_dgram_len, dgram_len, offset, max_offset;
1107 session_dgram_hdr_t hdr;
1108
1109 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
1110 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
1111 first_dgram_len = len;
1112 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
1113
1114 while (offset < max_offset)
1115 {
1116 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
1117 (u8 *) & hdr);
1118 ASSERT (hdr.data_length > hdr.data_offset);
1119 dgram_len = hdr.data_length - hdr.data_offset;
1120 if (len + dgram_len > ctx->max_dequeue
1121 || first_dgram_len != dgram_len)
1122 break;
1123 len += dgram_len;
1124 offset += sizeof (hdr) + hdr.data_length;
1125 }
1126 }
1127
1128 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001129 }
1130 }
Florin Coras8e43d042018-05-04 15:46:57 -07001131 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001132
1133 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +00001134 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -07001135 {
1136 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +00001137 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
1138 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
1139 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -07001140 /* TODO Nagle ? */
1141 }
1142 else
1143 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001144 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +00001145 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -07001146 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001147
Florin Corasf08f26d2018-05-10 13:20:47 -07001148 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +00001149 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -07001150 if (ctx->n_segs_per_evt > max_segs)
1151 {
1152 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +00001153 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -07001154 }
1155
Florin Coras1ee78302019-02-05 15:51:15 -08001156 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +08001157 if (ctx->n_segs_per_evt > 1)
1158 {
1159 u32 n_bytes_last_seg, n_bufs_last_seg;
1160
1161 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
1162 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
1163 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
1164 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1165 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
1166 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
1167 + n_bufs_last_seg;
1168 }
1169 else
1170 {
1171 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
1172 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1173 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
1174 }
1175
Florin Coras70f879d2020-03-13 17:54:42 +00001176 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
1177 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -08001178 n_bytes_per_buf -
1179 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -07001180}
Florin Corasf6d68ed2017-05-07 19:12:02 -07001181
Florin Corasaaf64a22020-02-23 01:37:34 +00001182always_inline void
1183session_tx_maybe_reschedule (session_worker_t * wrk,
1184 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +00001185 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +00001186{
1187 session_t *s = ctx->s;
1188
1189 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +00001190 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +00001191 if (svm_fifo_set_event (s->tx_fifo))
1192 session_evt_add_head_old (wrk, elt);
1193}
1194
Florin Coras8e43d042018-05-04 15:46:57 -07001195always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001196session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1197 vlib_node_runtime_t * node,
1198 session_evt_elt_t * elt,
1199 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001200{
Simon Zhangae16a982020-03-31 20:56:22 +08001201 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001202 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001203 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001204 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001205 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001206 transport_proto_t tp;
1207 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001208 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001209
Florin Coras1bcad5c2019-01-09 20:04:38 -08001210 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001211 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001212 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001213 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001214 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001215 }
1216
Florin Coras1bcad5c2019-01-09 20:04:38 -08001217 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001218 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001219
Florin Coras1bcad5c2019-01-09 20:04:38 -08001220 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001221 ctx->transport_vft = transport_protocol_get_vft (tp);
1222 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001223
1224 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1225 {
1226 if (ctx->transport_vft->flush_data)
1227 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001228 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001229 }
1230
Florin Coras26dd6de2019-07-23 23:54:47 -07001231 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1232 {
1233 u32 n_custom_tx;
1234 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001235 ctx->sp.max_burst_size = max_burst;
1236 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001237 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001238 if (PREDICT_FALSE
1239 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1240 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001241 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001242 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001243 {
1244 session_evt_add_old (wrk, elt);
1245 return SESSION_TX_OK;
1246 }
1247 }
1248
Florin Coras70f879d2020-03-13 17:54:42 +00001249 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001250
Florin Coras70f879d2020-03-13 17:54:42 +00001251 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001252 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001253 /* If the deschedule flag was set, remove session from scheduler.
1254 * Transport is responsible for rescheduling this session. */
1255 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1256 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001257 /* Request to postpone the session, e.g., zero-wnd and transport
1258 * is not currently probing */
1259 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1260 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001261 /* This flow queue is "empty" so it should be re-evaluated before
1262 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001263 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001264 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001265
Florin Coras0d60a0f2018-06-29 02:02:08 -07001266 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001267 }
1268
Florin Coras11e9e352019-11-13 19:09:47 -08001269 if (transport_connection_is_tx_paced (ctx->tc))
1270 {
1271 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1272 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1273 {
1274 session_evt_add_head_old (wrk, elt);
1275 return SESSION_TX_NO_DATA;
1276 }
Florin Coras70f879d2020-03-13 17:54:42 +00001277 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1278 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1279 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001280 }
1281
Florin Coras8e43d042018-05-04 15:46:57 -07001282 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001283 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001284
Florin Coras8e43d042018-05-04 15:46:57 -07001285 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001286 {
Florin Coras11e9e352019-11-13 19:09:47 -08001287 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001288 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001289 return SESSION_TX_NO_DATA;
1290 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001291
Florin Coras1d7a6632021-05-17 23:44:53 -07001292 vec_validate_aligned (ctx->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001293 CLIB_CACHE_LINE_BYTES);
Florin Coras1d7a6632021-05-17 23:44:53 -07001294 n_bufs = vlib_buffer_alloc (vm, ctx->tx_buffers, ctx->n_bufs_needed);
Simon Zhangae16a982020-03-31 20:56:22 +08001295 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001296 {
Florin Coras2068fd42019-01-31 14:35:50 -08001297 if (n_bufs)
Florin Coras1d7a6632021-05-17 23:44:53 -07001298 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001299 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001300 vlib_node_increment_counter (wrk->vm, node->node_index,
1301 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001302 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001303 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001304
Florin Coras7808df22020-11-02 18:00:32 -08001305 if (transport_connection_is_tx_paced (ctx->tc))
1306 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001307
Florin Corasf08f26d2018-05-10 13:20:47 -07001308 ctx->left_to_snd = ctx->max_len_to_snd;
1309 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001310
1311 while (n_left >= 4)
1312 {
1313 vlib_buffer_t *b0, *b1;
1314 u32 bi0, bi1;
1315
Florin Coras1d7a6632021-05-17 23:44:53 -07001316 pbi = ctx->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001317 pb = vlib_get_buffer (vm, pbi);
1318 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras1d7a6632021-05-17 23:44:53 -07001319 pbi = ctx->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001320 pb = vlib_get_buffer (vm, pbi);
1321 vlib_prefetch_buffer_header (pb, STORE);
1322
Florin Coras1d7a6632021-05-17 23:44:53 -07001323 bi0 = ctx->tx_buffers[--n_bufs];
1324 bi1 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001325
1326 b0 = vlib_get_buffer (vm, bi0);
1327 b1 = vlib_get_buffer (vm, bi1);
1328
1329 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1330 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1331
1332 ctx->transport_vft->push_header (ctx->tc, b0);
1333 ctx->transport_vft->push_header (ctx->tc, b1);
1334
Florin Coras66cf5e02018-06-08 09:17:39 -07001335 n_left -= 2;
1336
Florin Coras8a754f12019-10-16 22:35:18 -07001337 vec_add1 (wrk->pending_tx_buffers, bi0);
1338 vec_add1 (wrk->pending_tx_buffers, bi1);
1339 vec_add1 (wrk->pending_tx_nexts, next_index);
1340 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001341 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001342 while (n_left)
1343 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001344 vlib_buffer_t *b0;
1345 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001346
Florin Coras91ca4622018-06-30 11:27:59 -07001347 if (n_left > 1)
1348 {
Florin Coras1d7a6632021-05-17 23:44:53 -07001349 pbi = ctx->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001350 pb = vlib_get_buffer (vm, pbi);
1351 vlib_prefetch_buffer_header (pb, STORE);
1352 }
1353
Florin Coras1d7a6632021-05-17 23:44:53 -07001354 bi0 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001355 b0 = vlib_get_buffer (vm, bi0);
1356 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001357
Florin Coras66cf5e02018-06-08 09:17:39 -07001358 /* Ask transport to push header after current_length and
1359 * total_length_not_including_first_buffer are updated */
1360 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001361
Florin Coras66cf5e02018-06-08 09:17:39 -07001362 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001363
Florin Coras8a754f12019-10-16 22:35:18 -07001364 vec_add1 (wrk->pending_tx_buffers, bi0);
1365 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001366 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001367
Florin Coras60183db2019-07-20 15:53:16 -07001368 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001369 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001370 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001371
Florin Coras2068fd42019-01-31 14:35:50 -08001372 if (PREDICT_FALSE (n_bufs))
Florin Coras1d7a6632021-05-17 23:44:53 -07001373 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -07001374
Florin Corasf08f26d2018-05-10 13:20:47 -07001375 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001376
Florin Corascca96182019-07-19 07:34:13 -07001377 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1378 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1379
Florin Corasf08f26d2018-05-10 13:20:47 -07001380 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001381
1382 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1383 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001384 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001385 session_evt_add_old (wrk, elt);
1386 else
Florin Coras70f879d2020-03-13 17:54:42 +00001387 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001388
Florin Corasab57edb2020-04-07 03:46:07 +00001389 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001390 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001391 u32 n_dequeued = ctx->max_len_to_snd;
1392 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1393 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1394 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001395 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001396 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001397 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001398}
1399
1400int
Florin Coras60183db2019-07-20 15:53:16 -07001401session_tx_fifo_peek_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, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001406}
1407
1408int
Florin Coras60183db2019-07-20 15:53:16 -07001409session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1410 vlib_node_runtime_t * node,
1411 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001412{
Florin Coras60183db2019-07-20 15:53:16 -07001413 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001414}
1415
Florin Coras371ca502018-02-21 12:07:41 -08001416int
Florin Coras60183db2019-07-20 15:53:16 -07001417session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001418 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001419 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001420{
Florin Coras9f86d222020-03-23 15:34:22 +00001421 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001422 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001423 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001424
Florin Corasc0737e92019-03-04 14:19:39 -08001425 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001426 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001427
1428 /* Clear custom-tx flag used to request reschedule for tx */
1429 s->flags &= ~SESSION_F_CUSTOM_TX;
1430
Florin Coras89235c72020-11-02 19:00:10 -08001431 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001432 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001433
Florin Coras9f86d222020-03-23 15:34:22 +00001434 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1435 *n_tx_packets += n_packets;
1436
1437 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001438 {
1439 session_evt_add_old (wrk, elt);
1440 }
Florin Coras9f86d222020-03-23 15:34:22 +00001441 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001442 {
1443 svm_fifo_unset_event (s->tx_fifo);
1444 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1445 if (svm_fifo_set_event (s->tx_fifo))
1446 session_evt_add_head_old (wrk, elt);
1447 }
1448
Florin Coras1e6a0f62021-03-09 08:36:25 -08001449 if (sp->max_burst_size &&
1450 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1451 session_dequeue_notify (s);
1452
Florin Corased8db522020-02-27 04:32:51 +00001453 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001454}
1455
Florin Coras288eaab2019-02-03 15:26:14 -08001456always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001457session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001458{
Florin Corasdb999df2020-09-21 10:45:56 -07001459 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1460 return 0;
1461
1462 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1463 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001464}
1465
Florin Coras60183db2019-07-20 15:53:16 -07001466always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001467session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1468{
1469 clib_llist_index_t ei;
1470 void (*fp) (void *);
1471 session_event_t *e;
1472 session_t *s;
1473
1474 ei = clib_llist_entry_index (wrk->event_elts, elt);
1475 e = &elt->evt;
1476
1477 switch (e->event_type)
1478 {
1479 case SESSION_CTRL_EVT_RPC:
1480 fp = e->rpc_args.fp;
1481 (*fp) (e->rpc_args.arg);
1482 break;
liuyacan534468e2021-05-09 03:50:40 +00001483 case SESSION_CTRL_EVT_HALF_CLOSE:
1484 s = session_get_from_handle_if_valid (e->session_handle);
1485 if (PREDICT_FALSE (!s))
1486 break;
1487 session_transport_half_close (s);
1488 break;
Florin Coras458089b2019-08-21 16:20:44 -07001489 case SESSION_CTRL_EVT_CLOSE:
1490 s = session_get_from_handle_if_valid (e->session_handle);
1491 if (PREDICT_FALSE (!s))
1492 break;
1493 session_transport_close (s);
1494 break;
1495 case SESSION_CTRL_EVT_RESET:
1496 s = session_get_from_handle_if_valid (e->session_handle);
1497 if (PREDICT_FALSE (!s))
1498 break;
1499 session_transport_reset (s);
1500 break;
1501 case SESSION_CTRL_EVT_LISTEN:
1502 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1503 break;
1504 case SESSION_CTRL_EVT_LISTEN_URI:
1505 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1506 break;
1507 case SESSION_CTRL_EVT_UNLISTEN:
Florin Corasc53eb722021-06-22 14:20:39 -07001508 session_mq_unlisten_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001509 break;
1510 case SESSION_CTRL_EVT_CONNECT:
Florin Corasaf972212021-05-05 09:54:00 -07001511 session_mq_connect_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001512 break;
1513 case SESSION_CTRL_EVT_CONNECT_URI:
1514 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1515 break;
liuyacan534468e2021-05-09 03:50:40 +00001516 case SESSION_CTRL_EVT_SHUTDOWN:
1517 session_mq_shutdown_handler (session_evt_ctrl_data (wrk, elt));
1518 break;
Florin Coras458089b2019-08-21 16:20:44 -07001519 case SESSION_CTRL_EVT_DISCONNECT:
1520 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1521 break;
1522 case SESSION_CTRL_EVT_DISCONNECTED:
1523 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1524 break;
1525 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1526 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1527 break;
1528 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1529 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1530 elt));
1531 break;
1532 case SESSION_CTRL_EVT_RESET_REPLY:
1533 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1534 break;
1535 case SESSION_CTRL_EVT_WORKER_UPDATE:
1536 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1537 break;
1538 case SESSION_CTRL_EVT_APP_DETACH:
1539 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1540 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001541 case SESSION_CTRL_EVT_APP_WRK_RPC:
1542 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1543 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001544 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1545 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1546 break;
Florin Coras458089b2019-08-21 16:20:44 -07001547 default:
1548 clib_warning ("unhandled event type %d", e->event_type);
1549 }
1550
1551 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001552 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras458089b2019-08-21 16:20:44 -07001553 if (!clib_llist_elt_is_linked (elt, evt_list))
1554 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001555 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001556 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1557 session_evt_ctrl_data_free (wrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -07001558 clib_llist_put (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001559 }
Srikanth Akula73570432020-04-06 19:19:49 -07001560 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001561}
1562
1563always_inline void
1564session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001565 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001566{
Florin Coras60183db2019-07-20 15:53:16 -07001567 session_main_t *smm = &session_main;
1568 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001569 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001570 session_event_t *e;
1571 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001572
Florin Corasb0ffbee2019-07-21 19:23:46 -07001573 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001574 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001575
Florin Coras60183db2019-07-20 15:53:16 -07001576 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001577 {
Florin Coras60183db2019-07-20 15:53:16 -07001578 case SESSION_IO_EVT_TX_FLUSH:
1579 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001580 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001581 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001582 break;
Tianyu Li40ba6922021-08-26 10:03:43 +08001583 CLIB_PREFETCH (s->tx_fifo, sizeof (*(s->tx_fifo)), LOAD);
Florin Coras60183db2019-07-20 15:53:16 -07001584 wrk->ctx.s = s;
1585 /* Spray packets in per session type frames, since they go to
1586 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001587 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001588 break;
1589 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001590 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001591 if (!s)
1592 break;
1593 transport_app_rx_evt (session_get_transport_proto (s),
1594 s->connection_index, s->thread_index);
1595 break;
Florin Coras60183db2019-07-20 15:53:16 -07001596 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001597 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001598 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1599 break;
1600 svm_fifo_unset_event (s->rx_fifo);
1601 app_wrk = app_worker_get (s->app_wrk_index);
1602 app_worker_builtin_rx (app_wrk, s);
1603 break;
1604 case SESSION_IO_EVT_BUILTIN_TX:
1605 s = session_get_from_handle_if_valid (e->session_handle);
1606 wrk->ctx.s = s;
1607 if (PREDICT_TRUE (s != 0))
1608 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1609 break;
Florin Coras60183db2019-07-20 15:53:16 -07001610 default:
1611 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001612 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001613
Srikanth Akula73570432020-04-06 19:19:49 -07001614 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1615
Florin Corasb0ffbee2019-07-21 19:23:46 -07001616 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001617 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001618 if (!clib_llist_elt_is_linked (elt, evt_list))
Florin Coras46b8b1a2021-05-17 19:09:33 -07001619 clib_llist_put (wrk->event_elts, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001620}
1621
Florin Coras458089b2019-08-21 16:20:44 -07001622/* *INDENT-OFF* */
1623static const u32 session_evt_msg_sizes[] = {
1624#define _(symc, sym) \
1625 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1626 foreach_session_ctrl_evt
1627#undef _
1628};
1629/* *INDENT-ON* */
1630
1631always_inline void
1632session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1633{
1634 session_evt_elt_t *elt;
1635
1636 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1637 {
1638 elt = session_evt_alloc_ctrl (wrk);
1639 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1640 {
1641 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1642 elt->evt.event_type = evt->event_type;
1643 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1644 session_evt_msg_sizes[evt->event_type]);
1645 }
1646 else
1647 {
1648 /* Internal control events fit into io events footprint */
1649 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1650 }
1651 }
1652 else
1653 {
1654 elt = session_evt_alloc_new (wrk);
1655 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1656 }
1657}
1658
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001659static void
1660session_flush_pending_tx_buffers (session_worker_t * wrk,
1661 vlib_node_runtime_t * node)
1662{
Benoît Ganne10bb21f2021-09-08 16:26:52 +02001663 vlib_buffer_enqueue_to_next_vec (wrk->vm, node, &wrk->pending_tx_buffers,
1664 &wrk->pending_tx_nexts,
1665 vec_len (wrk->pending_tx_nexts));
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001666 vec_reset_length (wrk->pending_tx_buffers);
1667 vec_reset_length (wrk->pending_tx_nexts);
1668}
1669
Florin Coras41d5f542021-01-15 13:49:33 -08001670int
1671session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1672{
1673 svm_msg_q_msg_t _msg, *msg = &_msg;
1674 u32 i, n_to_dequeue = 0;
1675 session_event_t *evt;
1676
1677 n_to_dequeue = svm_msg_q_size (mq);
1678 for (i = 0; i < n_to_dequeue; i++)
1679 {
1680 svm_msg_q_sub_raw (mq, msg);
1681 evt = svm_msg_q_msg_data (mq, msg);
1682 session_evt_add_to_list (wrk, evt);
1683 svm_msg_q_free_msg (mq, msg);
1684 }
1685
1686 return n_to_dequeue;
1687}
1688
Florin Coras7da88292021-03-18 15:04:34 -07001689static void
Florin Coras7da88292021-03-18 15:04:34 -07001690session_wrk_update_state (session_worker_t *wrk)
1691{
1692 vlib_main_t *vm = wrk->vm;
1693
1694 if (wrk->state == SESSION_WRK_POLLING)
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_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001700 vlib_node_set_state (vm, session_queue_node.index,
1701 VLIB_NODE_STATE_INTERRUPT);
1702 }
1703 }
1704 else if (wrk->state == SESSION_WRK_INTERRUPT)
1705 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001706 if (clib_llist_elts (wrk->event_elts) > 4 ||
Florin Coras7da88292021-03-18 15:04:34 -07001707 vlib_last_vectors_per_main_loop (vm) > 1)
1708 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001709 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001710 vlib_node_set_state (vm, session_queue_node.index,
1711 VLIB_NODE_STATE_POLLING);
1712 }
1713 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1714 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001715 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001716 }
1717 }
1718 else
1719 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001720 if (clib_llist_elts (wrk->event_elts))
Florin Coras7da88292021-03-18 15:04:34 -07001721 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001722 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001723 }
1724 }
1725}
1726
Florin Coras0d60a0f2018-06-29 02:02:08 -07001727static uword
1728session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1729 vlib_frame_t * frame)
1730{
Florin Coras41d5f542021-01-15 13:49:33 -08001731 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001732 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001733 session_main_t *smm = vnet_get_session_main ();
1734 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001735 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001736 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001737
Florin Corascca96182019-07-19 07:34:13 -07001738 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001739
Florin Coras8f10b902021-04-02 18:32:00 -07001740 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001741
Florin Coras0d60a0f2018-06-29 02:02:08 -07001742 /*
1743 * Update transport time
1744 */
Florin Coras60183db2019-07-20 15:53:16 -07001745 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001746 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001747 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001748
Florin Corasb0ffbee2019-07-21 19:23:46 -07001749 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001750 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001751 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001752
Florin Coras41d5f542021-01-15 13:49:33 -08001753 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1754 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001755
Florin Corasb0ffbee2019-07-21 19:23:46 -07001756 /*
1757 * Handle control events
1758 */
1759
Florin Coras09843952021-05-17 16:05:41 -07001760 ei = wrk->ctrl_head;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001761 ctrl_he = clib_llist_elt (wrk->event_elts, ei);
Florin Coras09843952021-05-17 16:05:41 -07001762 next_ei = clib_llist_next_index (ctrl_he, evt_list);
1763 old_ti = clib_llist_prev_index (ctrl_he, evt_list);
1764 while (ei != old_ti)
1765 {
1766 ei = next_ei;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001767 elt = clib_llist_elt (wrk->event_elts, next_ei);
Florin Coras09843952021-05-17 16:05:41 -07001768 next_ei = clib_llist_next_index (elt, evt_list);
1769 clib_llist_remove (wrk->event_elts, evt_list, elt);
1770 session_event_dispatch_ctrl (wrk, elt);
1771 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001772
Srikanth Akula73570432020-04-06 19:19:49 -07001773 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1774
Florin Corasb0ffbee2019-07-21 19:23:46 -07001775 /*
1776 * Handle the new io events.
1777 */
1778
Florin Coras46b8b1a2021-05-17 19:09:33 -07001779 new_he = clib_llist_elt (wrk->event_elts, wrk->new_head);
1780 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Coras45b79732019-10-30 19:22:51 -07001781 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001782
Florin Coras16d974e2020-02-09 20:03:12 +00001783 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001784 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001785 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001786 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras16d974e2020-02-09 20:03:12 +00001787 ei = clib_llist_next_index (elt, evt_list);
1788 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001789 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001790 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001791
Srikanth Akula73570432020-04-06 19:19:49 -07001792 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1793
Florin Corasb0ffbee2019-07-21 19:23:46 -07001794 /*
Florin Coras45b79732019-10-30 19:22:51 -07001795 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001796 */
1797
Florin Coras45b79732019-10-30 19:22:51 -07001798 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001799 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001800 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001801 ei = clib_llist_next_index (old_he, evt_list);
1802
Florin Coras89235c72020-11-02 19:00:10 -08001803 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001804 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001805 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasdd97a482019-11-02 14:32:52 -07001806 next_ei = clib_llist_next_index (elt, evt_list);
1807 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001808
Florin Corasdb999df2020-09-21 10:45:56 -07001809 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001810
Florin Coras45b79732019-10-30 19:22:51 -07001811 if (ei == old_ti)
1812 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001813
1814 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001815 };
1816 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001817
Srikanth Akula73570432020-04-06 19:19:49 -07001818 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1819
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001820 if (vec_len (wrk->pending_tx_buffers))
1821 session_flush_pending_tx_buffers (wrk, node);
1822
Florin Coras0d60a0f2018-06-29 02:02:08 -07001823 vlib_node_increment_counter (vm, session_queue_node.index,
1824 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1825
Florin Corascca96182019-07-19 07:34:13 -07001826 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001827
Florin Coras7da88292021-03-18 15:04:34 -07001828 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1829 session_wrk_update_state (wrk);
1830
Florin Coras0d60a0f2018-06-29 02:02:08 -07001831 return n_tx_packets;
1832}
1833
1834/* *INDENT-OFF* */
1835VLIB_REGISTER_NODE (session_queue_node) =
1836{
1837 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001838 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001839 .name = "session-queue",
1840 .format_trace = format_session_queue_trace,
1841 .type = VLIB_NODE_TYPE_INPUT,
1842 .n_errors = ARRAY_LEN (session_queue_error_strings),
1843 .error_strings = session_queue_error_strings,
1844 .state = VLIB_NODE_STATE_DISABLED,
1845};
1846/* *INDENT-ON* */
1847
Dave Barach2a863912017-11-28 10:11:42 -05001848static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001849session_wrk_tfd_read_ready (clib_file_t *cf)
1850{
1851 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1852 u64 buf;
1853 int rv;
1854
1855 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1856 rv = read (wrk->timerfd, &buf, sizeof (buf));
1857 if (rv < 0 && errno != EAGAIN)
1858 clib_unix_warning ("failed");
1859 return 0;
1860}
1861
1862static clib_error_t *
1863session_wrk_tfd_write_ready (clib_file_t *cf)
1864{
1865 return 0;
1866}
1867
1868void
1869session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1870{
1871 u32 thread_index = wrk->vm->thread_index;
1872 clib_file_t template = { 0 };
1873
1874 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1875 clib_warning ("timerfd_create");
1876
1877 template.read_function = session_wrk_tfd_read_ready;
1878 template.write_function = session_wrk_tfd_write_ready;
1879 template.file_descriptor = wrk->timerfd;
1880 template.private_data = thread_index;
1881 template.polling_thread_index = thread_index;
1882 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1883
1884 wrk->timerfd_file = clib_file_add (&file_main, &template);
1885 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1886}
1887
1888static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001889session_queue_exit (vlib_main_t * vm)
1890{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001891 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001892 return 0;
1893
1894 /*
1895 * Shut off (especially) worker-thread session nodes.
1896 * Otherwise, vpp can crash as the main thread unmaps the
1897 * API segment.
1898 */
1899 vlib_worker_thread_barrier_sync (vm);
1900 session_node_enable_disable (0 /* is_enable */ );
1901 vlib_worker_thread_barrier_release (vm);
1902 return 0;
1903}
1904
1905VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1906
Florin Corasfd542f12018-05-16 19:28:24 -07001907static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001908session_queue_run_on_main (vlib_main_t * vm)
1909{
1910 vlib_node_runtime_t *node;
1911
1912 node = vlib_node_get_runtime (vm, session_queue_node.index);
1913 return session_queue_node_fn (vm, node, 0);
1914}
1915
1916static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001917session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1918 vlib_frame_t * f)
1919{
Florin Corasfd542f12018-05-16 19:28:24 -07001920 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001921 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001922 uword event_type;
1923
1924 while (1)
1925 {
1926 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001927 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1928
1929 switch (event_type)
1930 {
Florin Coras5484daa2020-03-27 23:55:06 +00001931 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1932 /* Run session queue node on main thread */
1933 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001934 break;
1935 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001936 vlib_node_set_state (vm, session_queue_process_node.index,
1937 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001938 timeout = 100000.0;
1939 break;
1940 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001941 /* Timed out. Run on main to ensure all events are handled */
1942 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001943 break;
1944 }
1945 vec_reset_length (event_data);
1946 }
1947 return 0;
1948}
1949
1950/* *INDENT-OFF* */
1951VLIB_REGISTER_NODE (session_queue_process_node) =
1952{
1953 .function = session_queue_process,
1954 .type = VLIB_NODE_TYPE_PROCESS,
1955 .name = "session-queue-process",
1956 .state = VLIB_NODE_STATE_DISABLED,
1957};
1958/* *INDENT-ON* */
1959
Florin Coras653e43f2019-03-04 10:56:23 -08001960static_always_inline uword
1961session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1962 vlib_frame_t * frame)
1963{
1964 session_main_t *sm = &session_main;
1965 if (!sm->wrk[0].vpp_event_queue)
1966 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001967 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001968 return session_queue_node_fn (vm, node, frame);
1969}
1970
1971/* *INDENT-OFF* */
1972VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1973{
1974 .function = session_queue_pre_input_inline,
1975 .type = VLIB_NODE_TYPE_PRE_INPUT,
1976 .name = "session-queue-main",
1977 .state = VLIB_NODE_STATE_DISABLED,
1978};
1979/* *INDENT-ON* */
1980
Dave Barach68b0fb02017-02-28 15:15:56 -05001981/*
1982 * fd.io coding-style-patch-verification: ON
1983 *
1984 * Local Variables:
1985 * eval: (c-set-style "gnu")
1986 * End:
1987 */