blob: 8817b08f3d294474705604a7f7b95e796e84afa6 [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
404 vlib_worker_thread_barrier_sync (vm);
Florin Coras458089b2019-08-21 16:20:44 -0700405
406 app = application_lookup (mp->client_index);
407 if (!app)
408 return;
409
410 clib_memset (a, 0, sizeof (*a));
411 a->app_index = app->app_index;
Florin Corasc53eb722021-06-22 14:20:39 -0700412 a->handle = sh;
Florin Coras458089b2019-08-21 16:20:44 -0700413 a->wrk_map_index = mp->wrk_index;
414 if ((rv = vnet_unlisten (a)))
415 clib_warning ("unlisten returned: %d", rv);
416
417 app_wrk = application_get_worker (app, a->wrk_map_index);
418 if (!app_wrk)
419 return;
420
Florin Corasc53eb722021-06-22 14:20:39 -0700421 vlib_worker_thread_barrier_release (vm);
422
423 mq_send_unlisten_reply (app_wrk, sh, context, rv);
424 clib_mem_free (mp);
425}
426
427static void
428session_mq_unlisten_handler (session_worker_t *wrk, session_evt_elt_t *elt)
429{
430 u32 thread_index = wrk - session_main.wrk;
431 session_unlisten_msg_t *mp, *arg;
432
433 mp = session_evt_ctrl_data (wrk, elt);
434 arg = clib_mem_alloc (sizeof (session_unlisten_msg_t));
435 clib_memcpy_fast (arg, mp, sizeof (*arg));
436
437 if (PREDICT_FALSE (!thread_index))
438 {
439 session_mq_unlisten_rpc (arg);
440 return;
441 }
442
443 session_send_rpc_evt_to_thread_force (0, session_mq_unlisten_rpc, arg);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800444}
445
Florin Coras52207f12018-07-12 14:48:06 -0700446static void
447session_mq_accepted_reply_handler (void *data)
448{
449 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
450 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800451 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700452 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800453 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700454
455 /* Server isn't interested, kill the session */
456 if (mp->retval)
457 {
458 a->app_index = mp->context;
459 a->handle = mp->handle;
460 vnet_disconnect_session (a);
461 return;
462 }
463
Florin Coras2b81e3c2019-02-27 07:55:46 -0800464 /* Mail this back from the main thread. We're not polling in main
465 * thread so we're using other workers for notifications. */
466 if (vlib_num_workers () && vlib_get_thread_index () != 0
467 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700468 {
Florin Coras458089b2019-08-21 16:20:44 -0700469 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
470 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800471 return;
472 }
473
474 s = session_get_from_handle_if_valid (mp->handle);
475 if (!s)
476 return;
477
478 app_wrk = app_worker_get (s->app_wrk_index);
479 if (app_wrk->app_index != mp->context)
480 {
481 clib_warning ("app doesn't own session");
482 return;
483 }
484
485 if (!session_has_transport (s))
486 {
Florin Coras653e43f2019-03-04 10:56:23 -0800487 s->session_state = SESSION_STATE_READY;
Florin Coras6973c732021-06-17 15:53:38 -0700488 if (ct_session_connect_notify (s, SESSION_E_NONE))
Florin Coras52207f12018-07-12 14:48:06 -0700489 return;
Florin Coras52207f12018-07-12 14:48:06 -0700490 }
491 else
492 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800493 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700494 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600495
496 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800497 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800498
499 /* Closed while waiting for app to reply. Resend disconnect */
500 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
501 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700502 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800503 s->session_state = old_state;
504 return;
505 }
Florin Coras52207f12018-07-12 14:48:06 -0700506 }
507}
508
509static void
510session_mq_reset_reply_handler (void *data)
511{
Florin Coras4af830c2018-12-04 09:21:36 -0800512 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700513 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700514 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800515 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700516 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700517 u32 index, thread_index;
518
519 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800520 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700521 if (!app)
522 return;
523
524 session_parse_handle (mp->handle, &index, &thread_index);
525 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800526
Florin Corasf1910322019-12-05 12:05:57 -0800527 /* No session or not the right session */
528 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800529 return;
530
Florin Coras15531972018-08-12 23:50:53 -0700531 app_wrk = app_worker_get (s->app_wrk_index);
532 if (!app_wrk || app_wrk->app_index != app->app_index)
533 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200534 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700535 mp->handle);
536 return;
537 }
Florin Coras52207f12018-07-12 14:48:06 -0700538
539 /* Client objected to resetting the session, log and continue */
540 if (mp->retval)
541 {
542 clib_warning ("client retval %d", mp->retval);
543 return;
544 }
545
546 /* This comes as a response to a reset, transport only waiting for
547 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800548 a->handle = mp->handle;
549 a->app_index = app->app_index;
550 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700551}
552
553static void
554session_mq_disconnected_handler (void *data)
555{
556 session_disconnected_reply_msg_t *rmp;
557 vnet_disconnect_args_t _a, *a = &_a;
558 svm_msg_q_msg_t _msg, *msg = &_msg;
559 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700560 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700561 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800562 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700563 application_t *app;
564 int rv = 0;
565
566 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700567 if (!(s = session_get_from_handle_if_valid (mp->handle)))
568 {
569 clib_warning ("could not disconnect handle %llu", mp->handle);
570 return;
571 }
Florin Coras15531972018-08-12 23:50:53 -0700572 app_wrk = app_worker_get (s->app_wrk_index);
573 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700574 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700575 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700576 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700577 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700578 return;
Florin Coras52207f12018-07-12 14:48:06 -0700579 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700580
581 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700582 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700583 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700584
Florin Coras15531972018-08-12 23:50:53 -0700585 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700586 SESSION_MQ_CTRL_EVT_RING,
587 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700588 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400589 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800590 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700591 rmp = (session_disconnected_reply_msg_t *) evt->data;
592 rmp->handle = mp->handle;
593 rmp->context = mp->context;
594 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700595 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700596}
597
598static void
599session_mq_disconnected_reply_handler (void *data)
600{
601 session_disconnected_reply_msg_t *mp;
602 vnet_disconnect_args_t _a, *a = &_a;
603 application_t *app;
604
605 mp = (session_disconnected_reply_msg_t *) data;
606
607 /* Client objected to disconnecting the session, log and continue */
608 if (mp->retval)
609 {
610 clib_warning ("client retval %d", mp->retval);
611 return;
612 }
613
614 /* Disconnect has been confirmed. Confirm close to transport */
615 app = application_lookup (mp->context);
616 if (app)
617 {
618 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700619 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700620 vnet_disconnect_session (a);
621 }
622}
623
Florin Coras30e79c22019-01-02 19:31:22 -0800624static void
625session_mq_worker_update_handler (void *data)
626{
627 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
628 session_worker_update_reply_msg_t *rmp;
629 svm_msg_q_msg_t _msg, *msg = &_msg;
630 app_worker_t *app_wrk;
631 u32 owner_app_wrk_map;
632 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800633 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800634 application_t *app;
635
636 app = application_lookup (mp->client_index);
637 if (!app)
638 return;
639 if (!(s = session_get_from_handle_if_valid (mp->handle)))
640 {
641 clib_warning ("invalid handle %llu", mp->handle);
642 return;
643 }
644 app_wrk = app_worker_get (s->app_wrk_index);
645 if (app_wrk->app_index != app->app_index)
646 {
647 clib_warning ("app %u does not own session %llu", app->app_index,
648 mp->handle);
649 return;
650 }
651 owner_app_wrk_map = app_wrk->wrk_map_index;
652 app_wrk = application_get_worker (app, mp->wrk_index);
653
654 /* This needs to come from the new owner */
655 if (mp->req_wrk_index == owner_app_wrk_map)
656 {
657 session_req_worker_update_msg_t *wump;
658
659 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
660 SESSION_MQ_CTRL_EVT_RING,
661 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800662 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
663 clib_memset (evt, 0, sizeof (*evt));
664 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
665 wump = (session_req_worker_update_msg_t *) evt->data;
666 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700667 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800668 return;
669 }
670
671 app_worker_own_session (app_wrk, s);
672
673 /*
674 * Send reply
675 */
676 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
677 SESSION_MQ_CTRL_EVT_RING,
678 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800679 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
680 clib_memset (evt, 0, sizeof (*evt));
681 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
682 rmp = (session_worker_update_reply_msg_t *) evt->data;
683 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800684 if (s->rx_fifo)
685 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
686 if (s->tx_fifo)
687 rmp->tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800688 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700689 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800690
691 /*
692 * Retransmit messages that may have been lost
693 */
Florin Coras288eaab2019-02-03 15:26:14 -0800694 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800695 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800696
Florin Coras288eaab2019-02-03 15:26:14 -0800697 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800698 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800699
700 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700701 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800702}
703
Florin Coras40c07ce2020-07-16 20:46:17 -0700704static void
705session_mq_app_wrk_rpc_handler (void *data)
706{
707 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
708 svm_msg_q_msg_t _msg, *msg = &_msg;
709 session_app_wrk_rpc_msg_t *rmp;
710 app_worker_t *app_wrk;
711 session_event_t *evt;
712 application_t *app;
713
714 app = application_lookup (mp->client_index);
715 if (!app)
716 return;
717
718 app_wrk = application_get_worker (app, mp->wrk_index);
719
720 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
721 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
722 msg);
723 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
724 clib_memset (evt, 0, sizeof (*evt));
725 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
726 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
727 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
728 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
729}
730
Florin Coras04ae8272021-04-12 19:55:37 -0700731static void
732session_mq_transport_attr_handler (void *data)
733{
734 session_transport_attr_msg_t *mp = (session_transport_attr_msg_t *) data;
735 session_transport_attr_reply_msg_t *rmp;
736 svm_msg_q_msg_t _msg, *msg = &_msg;
737 app_worker_t *app_wrk;
738 session_event_t *evt;
739 application_t *app;
740 session_t *s;
741 int rv;
742
743 app = application_lookup (mp->client_index);
744 if (!app)
745 return;
746
747 if (!(s = session_get_from_handle_if_valid (mp->handle)))
748 {
749 clib_warning ("invalid handle %llu", mp->handle);
750 return;
751 }
752 app_wrk = app_worker_get (s->app_wrk_index);
753 if (app_wrk->app_index != app->app_index)
754 {
755 clib_warning ("app %u does not own session %llu", app->app_index,
756 mp->handle);
757 return;
758 }
759
760 rv = session_transport_attribute (s, mp->is_get, &mp->attr);
761
762 svm_msg_q_lock_and_alloc_msg_w_ring (
763 app_wrk->event_queue, SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT, msg);
764 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
765 clib_memset (evt, 0, sizeof (*evt));
766 evt->event_type = SESSION_CTRL_EVT_TRANSPORT_ATTR_REPLY;
767 rmp = (session_transport_attr_reply_msg_t *) evt->data;
768 rmp->handle = mp->handle;
769 rmp->retval = rv;
770 rmp->is_get = mp->is_get;
771 if (!rv && mp->is_get)
772 rmp->attr = mp->attr;
773 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
774}
775
Dave Barach68b0fb02017-02-28 15:15:56 -0500776vlib_node_registration_t session_queue_node;
777
778typedef struct
779{
780 u32 session_index;
781 u32 server_thread_index;
782} session_queue_trace_t;
783
784/* packet trace format function */
785static u8 *
786format_session_queue_trace (u8 * s, va_list * args)
787{
788 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
789 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
790 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
791
Florin Coras30928f82020-01-27 19:21:28 -0800792 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500793 t->session_index, t->server_thread_index);
794 return s;
795}
796
Florin Coras6792ec02017-03-13 03:49:51 -0700797#define foreach_session_queue_error \
798_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700799_(TIMER, "Timer events") \
800_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500801
802typedef enum
803{
804#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
805 foreach_session_queue_error
806#undef _
807 SESSION_QUEUE_N_ERROR,
808} session_queue_error_t;
809
810static char *session_queue_error_strings[] = {
811#define _(sym,string) string,
812 foreach_session_queue_error
813#undef _
814};
815
Florin Coras0d60a0f2018-06-29 02:02:08 -0700816enum
817{
818 SESSION_TX_NO_BUFFERS = -2,
819 SESSION_TX_NO_DATA,
820 SESSION_TX_OK
821};
822
Florin Coras66cf5e02018-06-08 09:17:39 -0700823static void
824session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
825 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800826 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700827{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200828 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700829 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200830 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
831 if (PREDICT_TRUE
832 (vlib_trace_buffer
833 (vm, node, next_index, b, 1 /* follow_chain */ )))
834 {
835 session_queue_trace_t *t =
836 vlib_add_trace (vm, node, b, sizeof (*t));
837 t->session_index = s->session_index;
838 t->server_thread_index = s->thread_index;
839 n_trace--;
840 }
841 to_next++;
842 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700843 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200844 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700845}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700846
Florin Coras8e43d042018-05-04 15:46:57 -0700847always_inline void
848session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
849 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
850{
Florin Coras8e43d042018-05-04 15:46:57 -0700851 vlib_buffer_t *chain_b, *prev_b;
852 u32 chain_bi0, to_deq, left_from_seg;
853 u16 len_to_deq, n_bytes_read;
854 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700855
Florin Coras8e43d042018-05-04 15:46:57 -0700856 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
857 b->total_length_not_including_first_buffer = 0;
858
859 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000860 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700861 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700862 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700863 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700864 {
Florin Coras8e43d042018-05-04 15:46:57 -0700865 prev_b = chain_b;
866 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700867
868 *n_bufs -= 1;
Florin Coras1d7a6632021-05-17 23:44:53 -0700869 chain_bi0 = ctx->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700870 chain_b = vlib_get_buffer (vm, chain_bi0);
871 chain_b->current_data = 0;
872 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700873 if (peek_data)
874 {
Florin Coras288eaab2019-02-03 15:26:14 -0800875 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000876 ctx->sp.tx_offset, len_to_deq, data);
877 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700878 }
879 else
880 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200881 if (ctx->transport_vft->transport_options.tx_type ==
882 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700883 {
Florin Coras288eaab2019-02-03 15:26:14 -0800884 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700885 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700886 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300887 u32 offset;
888
Florin Coras7fb0fe12018-04-09 09:24:52 -0700889 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700890 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300891 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
892 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700893 ASSERT (n_bytes_read > 0);
894
895 hdr->data_offset += n_bytes_read;
896 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800897 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300898 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800899 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000900 if (ctx->left_to_snd > n_bytes_read)
901 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
902 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800903 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000904 else if (ctx->left_to_snd == n_bytes_read)
905 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
906 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700907 }
908 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700909 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
910 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700911 }
Florin Coras8e43d042018-05-04 15:46:57 -0700912 ASSERT (n_bytes_read == len_to_deq);
913 chain_b->current_length = n_bytes_read;
914 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700915
916 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700917 prev_b->next_buffer = chain_bi0;
918 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700919
920 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700921 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700922
Florin Corasb2215d62017-08-01 16:56:58 -0700923 to_deq -= n_bytes_read;
924 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700925 break;
926 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700927 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700928 && b->total_length_not_including_first_buffer == left_from_seg);
929 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700930}
931
Florin Coras8e43d042018-05-04 15:46:57 -0700932always_inline void
933session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
934 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
935{
936 u32 len_to_deq;
937 u8 *data0;
938 int n_bytes_read;
939
940 /*
941 * Start with the first buffer in chain
942 */
943 b->error = 0;
944 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
945 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700946
Florin Coras1ee78302019-02-05 15:51:15 -0800947 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700948 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
949
Florin Coras7fb0fe12018-04-09 09:24:52 -0700950 if (peek_data)
951 {
Florin Coras70f879d2020-03-13 17:54:42 +0000952 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700953 len_to_deq, data0);
954 ASSERT (n_bytes_read > 0);
955 /* Keep track of progress locally, transport is also supposed to
956 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000957 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700958 }
959 else
960 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200961 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700962 {
963 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800964 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700965 u16 deq_now;
966 u32 offset;
967
968 ASSERT (hdr->data_length > hdr->data_offset);
969 deq_now = clib_min (hdr->data_length - hdr->data_offset,
970 len_to_deq);
971 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
972 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
973 ASSERT (n_bytes_read > 0);
974
975 if (ctx->s->session_state == SESSION_STATE_LISTENING)
976 {
977 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
978 ctx->tc->rmt_port = hdr->rmt_port;
979 }
980 hdr->data_offset += n_bytes_read;
981 if (hdr->data_offset == hdr->data_length)
982 {
983 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
984 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000985 if (ctx->left_to_snd > n_bytes_read)
986 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
987 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700988 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000989 else if (ctx->left_to_snd == n_bytes_read)
990 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
991 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700992 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700993 else
994 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700995 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
996 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700997 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700998 }
999 }
Florin Coras8e43d042018-05-04 15:46:57 -07001000 b->current_length = n_bytes_read;
1001 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -05001002
Florin Coras8e43d042018-05-04 15:46:57 -07001003 /*
1004 * Fill in the remaining buffers in the chain, if any
1005 */
1006 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
1007 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -07001008}
1009
1010always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -08001011session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001012{
1013 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -08001014 {
Florin Corasa6789742019-08-07 19:12:38 -07001015 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
1016 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -07001017 /* Can retransmit for closed sessions but can't send new data if
1018 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -07001019 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -07001020 return 1;
Florin Corasa6789742019-08-07 19:12:38 -07001021 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
1022 {
1023 /* Allow closed transports to still send custom packets.
1024 * For instance, tcp may want to send acks in time-wait. */
1025 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
1026 && (s->flags & SESSION_F_CUSTOM_TX))
1027 return 0;
1028 return 2;
1029 }
Florin Corase04c2992017-03-01 08:17:34 -08001030 }
Florin Coras8e43d042018-05-04 15:46:57 -07001031 return 0;
1032}
Dave Barach68b0fb02017-02-28 15:15:56 -05001033
Florin Coras8e43d042018-05-04 15:46:57 -07001034always_inline transport_connection_t *
1035session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
1036{
1037 if (peek_data)
1038 {
1039 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1040 ctx->s->thread_index);
1041 }
1042 else
1043 {
1044 if (ctx->s->session_state == SESSION_STATE_LISTENING)
1045 return ctx->transport_vft->get_listener (ctx->s->connection_index);
1046 else
1047 {
1048 return ctx->transport_vft->get_connection (ctx->s->connection_index,
1049 ctx->s->thread_index);
1050 }
1051 }
1052}
Florin Coras6a9b68b2017-11-21 04:20:42 -08001053
Florin Coras8e43d042018-05-04 15:46:57 -07001054always_inline void
1055session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -07001056 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001057{
1058 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +00001059
1060 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -06001061 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +00001062
Dave Barach68b0fb02017-02-28 15:15:56 -05001063 if (peek_data)
1064 {
Florin Coras9d063042017-09-14 03:08:00 -04001065 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +00001066 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -07001067 {
1068 ctx->max_len_to_snd = 0;
1069 return;
1070 }
Florin Coras70f879d2020-03-13 17:54:42 +00001071 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -05001072 }
Florin Coras7fb0fe12018-04-09 09:24:52 -07001073 else
1074 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001075 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -07001076 {
Florin Coras6e0ee952020-04-20 21:07:06 +00001077 u32 len, chain_limit;
1078
Florin Coras8e43d042018-05-04 15:46:57 -07001079 if (ctx->max_dequeue <= sizeof (ctx->hdr))
1080 {
1081 ctx->max_len_to_snd = 0;
1082 return;
1083 }
Florin Coras6e0ee952020-04-20 21:07:06 +00001084
Florin Coras288eaab2019-02-03 15:26:14 -08001085 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -07001086 (u8 *) & ctx->hdr);
1087 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +00001088 len = ctx->hdr.data_length - ctx->hdr.data_offset;
1089
1090 /* Process multiple dgrams if smaller than min (buf_space, mss).
1091 * This avoids handling multiple dgrams if they require buffer
1092 * chains */
1093 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
1094 ctx->sp.snd_mss);
1095 if (ctx->hdr.data_length <= chain_limit)
1096 {
1097 u32 first_dgram_len, dgram_len, offset, max_offset;
1098 session_dgram_hdr_t hdr;
1099
1100 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
1101 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
1102 first_dgram_len = len;
1103 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
1104
1105 while (offset < max_offset)
1106 {
1107 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
1108 (u8 *) & hdr);
1109 ASSERT (hdr.data_length > hdr.data_offset);
1110 dgram_len = hdr.data_length - hdr.data_offset;
1111 if (len + dgram_len > ctx->max_dequeue
1112 || first_dgram_len != dgram_len)
1113 break;
1114 len += dgram_len;
1115 offset += sizeof (hdr) + hdr.data_length;
1116 }
1117 }
1118
1119 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -07001120 }
1121 }
Florin Coras8e43d042018-05-04 15:46:57 -07001122 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001123
1124 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +00001125 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -07001126 {
1127 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +00001128 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
1129 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
1130 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -07001131 /* TODO Nagle ? */
1132 }
1133 else
1134 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001135 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +00001136 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -07001137 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001138
Florin Corasf08f26d2018-05-10 13:20:47 -07001139 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +00001140 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -07001141 if (ctx->n_segs_per_evt > max_segs)
1142 {
1143 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +00001144 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -07001145 }
1146
Florin Coras1ee78302019-02-05 15:51:15 -08001147 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +08001148 if (ctx->n_segs_per_evt > 1)
1149 {
1150 u32 n_bytes_last_seg, n_bufs_last_seg;
1151
1152 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
1153 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
1154 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
1155 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1156 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
1157 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
1158 + n_bufs_last_seg;
1159 }
1160 else
1161 {
1162 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
1163 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
1164 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
1165 }
1166
Florin Coras70f879d2020-03-13 17:54:42 +00001167 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
1168 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -08001169 n_bytes_per_buf -
1170 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -07001171}
Florin Corasf6d68ed2017-05-07 19:12:02 -07001172
Florin Corasaaf64a22020-02-23 01:37:34 +00001173always_inline void
1174session_tx_maybe_reschedule (session_worker_t * wrk,
1175 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +00001176 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +00001177{
1178 session_t *s = ctx->s;
1179
1180 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +00001181 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +00001182 if (svm_fifo_set_event (s->tx_fifo))
1183 session_evt_add_head_old (wrk, elt);
1184}
1185
Florin Coras8e43d042018-05-04 15:46:57 -07001186always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001187session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1188 vlib_node_runtime_t * node,
1189 session_evt_elt_t * elt,
1190 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001191{
Simon Zhangae16a982020-03-31 20:56:22 +08001192 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001193 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001194 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001195 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001196 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001197 transport_proto_t tp;
1198 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001199 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001200
Florin Coras1bcad5c2019-01-09 20:04:38 -08001201 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001202 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001203 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001204 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001205 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001206 }
1207
Florin Coras1bcad5c2019-01-09 20:04:38 -08001208 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001209 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001210
Florin Coras1bcad5c2019-01-09 20:04:38 -08001211 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001212 ctx->transport_vft = transport_protocol_get_vft (tp);
1213 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001214
1215 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1216 {
1217 if (ctx->transport_vft->flush_data)
1218 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001219 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001220 }
1221
Florin Coras26dd6de2019-07-23 23:54:47 -07001222 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1223 {
1224 u32 n_custom_tx;
1225 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001226 ctx->sp.max_burst_size = max_burst;
1227 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001228 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001229 if (PREDICT_FALSE
1230 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1231 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001232 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001233 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001234 {
1235 session_evt_add_old (wrk, elt);
1236 return SESSION_TX_OK;
1237 }
1238 }
1239
Florin Coras70f879d2020-03-13 17:54:42 +00001240 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001241
Florin Coras70f879d2020-03-13 17:54:42 +00001242 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001243 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001244 /* If the deschedule flag was set, remove session from scheduler.
1245 * Transport is responsible for rescheduling this session. */
1246 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1247 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001248 /* Request to postpone the session, e.g., zero-wnd and transport
1249 * is not currently probing */
1250 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1251 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001252 /* This flow queue is "empty" so it should be re-evaluated before
1253 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001254 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001255 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001256
Florin Coras0d60a0f2018-06-29 02:02:08 -07001257 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001258 }
1259
Florin Coras11e9e352019-11-13 19:09:47 -08001260 if (transport_connection_is_tx_paced (ctx->tc))
1261 {
1262 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1263 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1264 {
1265 session_evt_add_head_old (wrk, elt);
1266 return SESSION_TX_NO_DATA;
1267 }
Florin Coras70f879d2020-03-13 17:54:42 +00001268 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1269 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1270 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001271 }
1272
Florin Coras8e43d042018-05-04 15:46:57 -07001273 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001274 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001275
Florin Coras8e43d042018-05-04 15:46:57 -07001276 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001277 {
Florin Coras11e9e352019-11-13 19:09:47 -08001278 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001279 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001280 return SESSION_TX_NO_DATA;
1281 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001282
Florin Coras1d7a6632021-05-17 23:44:53 -07001283 vec_validate_aligned (ctx->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001284 CLIB_CACHE_LINE_BYTES);
Florin Coras1d7a6632021-05-17 23:44:53 -07001285 n_bufs = vlib_buffer_alloc (vm, ctx->tx_buffers, ctx->n_bufs_needed);
Simon Zhangae16a982020-03-31 20:56:22 +08001286 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001287 {
Florin Coras2068fd42019-01-31 14:35:50 -08001288 if (n_bufs)
Florin Coras1d7a6632021-05-17 23:44:53 -07001289 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001290 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001291 vlib_node_increment_counter (wrk->vm, node->node_index,
1292 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001293 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001294 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001295
Florin Coras7808df22020-11-02 18:00:32 -08001296 if (transport_connection_is_tx_paced (ctx->tc))
1297 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001298
Florin Corasf08f26d2018-05-10 13:20:47 -07001299 ctx->left_to_snd = ctx->max_len_to_snd;
1300 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001301
1302 while (n_left >= 4)
1303 {
1304 vlib_buffer_t *b0, *b1;
1305 u32 bi0, bi1;
1306
Florin Coras1d7a6632021-05-17 23:44:53 -07001307 pbi = ctx->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001308 pb = vlib_get_buffer (vm, pbi);
1309 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras1d7a6632021-05-17 23:44:53 -07001310 pbi = ctx->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001311 pb = vlib_get_buffer (vm, pbi);
1312 vlib_prefetch_buffer_header (pb, STORE);
1313
Florin Coras1d7a6632021-05-17 23:44:53 -07001314 bi0 = ctx->tx_buffers[--n_bufs];
1315 bi1 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001316
1317 b0 = vlib_get_buffer (vm, bi0);
1318 b1 = vlib_get_buffer (vm, bi1);
1319
1320 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1321 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1322
1323 ctx->transport_vft->push_header (ctx->tc, b0);
1324 ctx->transport_vft->push_header (ctx->tc, b1);
1325
Florin Coras66cf5e02018-06-08 09:17:39 -07001326 n_left -= 2;
1327
Florin Coras8a754f12019-10-16 22:35:18 -07001328 vec_add1 (wrk->pending_tx_buffers, bi0);
1329 vec_add1 (wrk->pending_tx_buffers, bi1);
1330 vec_add1 (wrk->pending_tx_nexts, next_index);
1331 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001332 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001333 while (n_left)
1334 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001335 vlib_buffer_t *b0;
1336 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001337
Florin Coras91ca4622018-06-30 11:27:59 -07001338 if (n_left > 1)
1339 {
Florin Coras1d7a6632021-05-17 23:44:53 -07001340 pbi = ctx->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001341 pb = vlib_get_buffer (vm, pbi);
1342 vlib_prefetch_buffer_header (pb, STORE);
1343 }
1344
Florin Coras1d7a6632021-05-17 23:44:53 -07001345 bi0 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001346 b0 = vlib_get_buffer (vm, bi0);
1347 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001348
Florin Coras66cf5e02018-06-08 09:17:39 -07001349 /* Ask transport to push header after current_length and
1350 * total_length_not_including_first_buffer are updated */
1351 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001352
Florin Coras66cf5e02018-06-08 09:17:39 -07001353 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001354
Florin Coras8a754f12019-10-16 22:35:18 -07001355 vec_add1 (wrk->pending_tx_buffers, bi0);
1356 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001357 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001358
Florin Coras60183db2019-07-20 15:53:16 -07001359 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001360 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001361 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001362
Florin Coras2068fd42019-01-31 14:35:50 -08001363 if (PREDICT_FALSE (n_bufs))
Florin Coras1d7a6632021-05-17 23:44:53 -07001364 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -07001365
Florin Corasf08f26d2018-05-10 13:20:47 -07001366 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001367
Florin Corascca96182019-07-19 07:34:13 -07001368 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1369 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1370
Florin Corasf08f26d2018-05-10 13:20:47 -07001371 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001372
1373 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1374 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001375 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001376 session_evt_add_old (wrk, elt);
1377 else
Florin Coras70f879d2020-03-13 17:54:42 +00001378 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001379
Florin Corasab57edb2020-04-07 03:46:07 +00001380 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001381 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001382 u32 n_dequeued = ctx->max_len_to_snd;
1383 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1384 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1385 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001386 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001387 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001388 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001389}
1390
1391int
Florin Coras60183db2019-07-20 15:53:16 -07001392session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1393 vlib_node_runtime_t * node,
1394 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001395{
Florin Coras60183db2019-07-20 15:53:16 -07001396 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001397}
1398
1399int
Florin Coras60183db2019-07-20 15:53:16 -07001400session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1401 vlib_node_runtime_t * node,
1402 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001403{
Florin Coras60183db2019-07-20 15:53:16 -07001404 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001405}
1406
Florin Coras371ca502018-02-21 12:07:41 -08001407int
Florin Coras60183db2019-07-20 15:53:16 -07001408session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001409 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001410 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001411{
Florin Coras9f86d222020-03-23 15:34:22 +00001412 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001413 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001414 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001415
Florin Corasc0737e92019-03-04 14:19:39 -08001416 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001417 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001418
1419 /* Clear custom-tx flag used to request reschedule for tx */
1420 s->flags &= ~SESSION_F_CUSTOM_TX;
1421
Florin Coras89235c72020-11-02 19:00:10 -08001422 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001423 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001424
Florin Coras9f86d222020-03-23 15:34:22 +00001425 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1426 *n_tx_packets += n_packets;
1427
1428 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001429 {
1430 session_evt_add_old (wrk, elt);
1431 }
Florin Coras9f86d222020-03-23 15:34:22 +00001432 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001433 {
1434 svm_fifo_unset_event (s->tx_fifo);
1435 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1436 if (svm_fifo_set_event (s->tx_fifo))
1437 session_evt_add_head_old (wrk, elt);
1438 }
1439
Florin Coras1e6a0f62021-03-09 08:36:25 -08001440 if (sp->max_burst_size &&
1441 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1442 session_dequeue_notify (s);
1443
Florin Corased8db522020-02-27 04:32:51 +00001444 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001445}
1446
Florin Coras288eaab2019-02-03 15:26:14 -08001447always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001448session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001449{
Florin Corasdb999df2020-09-21 10:45:56 -07001450 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1451 return 0;
1452
1453 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1454 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001455}
1456
Florin Coras60183db2019-07-20 15:53:16 -07001457always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001458session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1459{
1460 clib_llist_index_t ei;
1461 void (*fp) (void *);
1462 session_event_t *e;
1463 session_t *s;
1464
1465 ei = clib_llist_entry_index (wrk->event_elts, elt);
1466 e = &elt->evt;
1467
1468 switch (e->event_type)
1469 {
1470 case SESSION_CTRL_EVT_RPC:
1471 fp = e->rpc_args.fp;
1472 (*fp) (e->rpc_args.arg);
1473 break;
liuyacan534468e2021-05-09 03:50:40 +00001474 case SESSION_CTRL_EVT_HALF_CLOSE:
1475 s = session_get_from_handle_if_valid (e->session_handle);
1476 if (PREDICT_FALSE (!s))
1477 break;
1478 session_transport_half_close (s);
1479 break;
Florin Coras458089b2019-08-21 16:20:44 -07001480 case SESSION_CTRL_EVT_CLOSE:
1481 s = session_get_from_handle_if_valid (e->session_handle);
1482 if (PREDICT_FALSE (!s))
1483 break;
1484 session_transport_close (s);
1485 break;
1486 case SESSION_CTRL_EVT_RESET:
1487 s = session_get_from_handle_if_valid (e->session_handle);
1488 if (PREDICT_FALSE (!s))
1489 break;
1490 session_transport_reset (s);
1491 break;
1492 case SESSION_CTRL_EVT_LISTEN:
1493 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1494 break;
1495 case SESSION_CTRL_EVT_LISTEN_URI:
1496 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1497 break;
1498 case SESSION_CTRL_EVT_UNLISTEN:
Florin Corasc53eb722021-06-22 14:20:39 -07001499 session_mq_unlisten_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001500 break;
1501 case SESSION_CTRL_EVT_CONNECT:
Florin Corasaf972212021-05-05 09:54:00 -07001502 session_mq_connect_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001503 break;
1504 case SESSION_CTRL_EVT_CONNECT_URI:
1505 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1506 break;
liuyacan534468e2021-05-09 03:50:40 +00001507 case SESSION_CTRL_EVT_SHUTDOWN:
1508 session_mq_shutdown_handler (session_evt_ctrl_data (wrk, elt));
1509 break;
Florin Coras458089b2019-08-21 16:20:44 -07001510 case SESSION_CTRL_EVT_DISCONNECT:
1511 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1512 break;
1513 case SESSION_CTRL_EVT_DISCONNECTED:
1514 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1515 break;
1516 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1517 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1518 break;
1519 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1520 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1521 elt));
1522 break;
1523 case SESSION_CTRL_EVT_RESET_REPLY:
1524 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1525 break;
1526 case SESSION_CTRL_EVT_WORKER_UPDATE:
1527 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1528 break;
1529 case SESSION_CTRL_EVT_APP_DETACH:
1530 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1531 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001532 case SESSION_CTRL_EVT_APP_WRK_RPC:
1533 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1534 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001535 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1536 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1537 break;
Florin Coras458089b2019-08-21 16:20:44 -07001538 default:
1539 clib_warning ("unhandled event type %d", e->event_type);
1540 }
1541
1542 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001543 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras458089b2019-08-21 16:20:44 -07001544 if (!clib_llist_elt_is_linked (elt, evt_list))
1545 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001546 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001547 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1548 session_evt_ctrl_data_free (wrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -07001549 clib_llist_put (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001550 }
Srikanth Akula73570432020-04-06 19:19:49 -07001551 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001552}
1553
1554always_inline void
1555session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001556 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001557{
Florin Coras60183db2019-07-20 15:53:16 -07001558 session_main_t *smm = &session_main;
1559 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001560 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001561 session_event_t *e;
1562 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001563
Florin Corasb0ffbee2019-07-21 19:23:46 -07001564 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001565 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001566
Florin Coras60183db2019-07-20 15:53:16 -07001567 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001568 {
Florin Coras60183db2019-07-20 15:53:16 -07001569 case SESSION_IO_EVT_TX_FLUSH:
1570 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001571 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001572 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001573 break;
Florin Coras60183db2019-07-20 15:53:16 -07001574 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1575 wrk->ctx.s = s;
1576 /* Spray packets in per session type frames, since they go to
1577 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001578 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001579 break;
1580 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001581 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001582 if (!s)
1583 break;
1584 transport_app_rx_evt (session_get_transport_proto (s),
1585 s->connection_index, s->thread_index);
1586 break;
Florin Coras60183db2019-07-20 15:53:16 -07001587 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001588 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001589 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1590 break;
1591 svm_fifo_unset_event (s->rx_fifo);
1592 app_wrk = app_worker_get (s->app_wrk_index);
1593 app_worker_builtin_rx (app_wrk, s);
1594 break;
1595 case SESSION_IO_EVT_BUILTIN_TX:
1596 s = session_get_from_handle_if_valid (e->session_handle);
1597 wrk->ctx.s = s;
1598 if (PREDICT_TRUE (s != 0))
1599 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1600 break;
Florin Coras60183db2019-07-20 15:53:16 -07001601 default:
1602 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001603 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001604
Srikanth Akula73570432020-04-06 19:19:49 -07001605 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1606
Florin Corasb0ffbee2019-07-21 19:23:46 -07001607 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001608 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001609 if (!clib_llist_elt_is_linked (elt, evt_list))
Florin Coras46b8b1a2021-05-17 19:09:33 -07001610 clib_llist_put (wrk->event_elts, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001611}
1612
Florin Coras458089b2019-08-21 16:20:44 -07001613/* *INDENT-OFF* */
1614static const u32 session_evt_msg_sizes[] = {
1615#define _(symc, sym) \
1616 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1617 foreach_session_ctrl_evt
1618#undef _
1619};
1620/* *INDENT-ON* */
1621
1622always_inline void
1623session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1624{
1625 session_evt_elt_t *elt;
1626
1627 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1628 {
1629 elt = session_evt_alloc_ctrl (wrk);
1630 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1631 {
1632 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1633 elt->evt.event_type = evt->event_type;
1634 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1635 session_evt_msg_sizes[evt->event_type]);
1636 }
1637 else
1638 {
1639 /* Internal control events fit into io events footprint */
1640 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1641 }
1642 }
1643 else
1644 {
1645 elt = session_evt_alloc_new (wrk);
1646 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1647 }
1648}
1649
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001650static void
1651session_flush_pending_tx_buffers (session_worker_t * wrk,
1652 vlib_node_runtime_t * node)
1653{
1654 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1655 wrk->pending_tx_nexts,
1656 vec_len (wrk->pending_tx_nexts));
1657 vec_reset_length (wrk->pending_tx_buffers);
1658 vec_reset_length (wrk->pending_tx_nexts);
1659}
1660
Florin Coras41d5f542021-01-15 13:49:33 -08001661int
1662session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1663{
1664 svm_msg_q_msg_t _msg, *msg = &_msg;
1665 u32 i, n_to_dequeue = 0;
1666 session_event_t *evt;
1667
1668 n_to_dequeue = svm_msg_q_size (mq);
1669 for (i = 0; i < n_to_dequeue; i++)
1670 {
1671 svm_msg_q_sub_raw (mq, msg);
1672 evt = svm_msg_q_msg_data (mq, msg);
1673 session_evt_add_to_list (wrk, evt);
1674 svm_msg_q_free_msg (mq, msg);
1675 }
1676
1677 return n_to_dequeue;
1678}
1679
Florin Coras7da88292021-03-18 15:04:34 -07001680static void
Florin Coras7da88292021-03-18 15:04:34 -07001681session_wrk_update_state (session_worker_t *wrk)
1682{
1683 vlib_main_t *vm = wrk->vm;
1684
1685 if (wrk->state == SESSION_WRK_POLLING)
1686 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001687 if (clib_llist_elts (wrk->event_elts) == 4 &&
Florin Coras7da88292021-03-18 15:04:34 -07001688 vlib_last_vectors_per_main_loop (vm) < 1)
1689 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001690 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001691 vlib_node_set_state (vm, session_queue_node.index,
1692 VLIB_NODE_STATE_INTERRUPT);
1693 }
1694 }
1695 else if (wrk->state == SESSION_WRK_INTERRUPT)
1696 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001697 if (clib_llist_elts (wrk->event_elts) > 4 ||
Florin Coras7da88292021-03-18 15:04:34 -07001698 vlib_last_vectors_per_main_loop (vm) > 1)
1699 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001700 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001701 vlib_node_set_state (vm, session_queue_node.index,
1702 VLIB_NODE_STATE_POLLING);
1703 }
1704 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1705 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001706 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001707 }
1708 }
1709 else
1710 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001711 if (clib_llist_elts (wrk->event_elts))
Florin Coras7da88292021-03-18 15:04:34 -07001712 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001713 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001714 }
1715 }
1716}
1717
Florin Coras0d60a0f2018-06-29 02:02:08 -07001718static uword
1719session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1720 vlib_frame_t * frame)
1721{
Florin Coras41d5f542021-01-15 13:49:33 -08001722 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001723 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001724 session_main_t *smm = vnet_get_session_main ();
1725 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001726 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001727 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001728
Florin Corascca96182019-07-19 07:34:13 -07001729 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001730
Florin Coras8f10b902021-04-02 18:32:00 -07001731 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001732
Florin Coras0d60a0f2018-06-29 02:02:08 -07001733 /*
1734 * Update transport time
1735 */
Florin Coras60183db2019-07-20 15:53:16 -07001736 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001737 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001738 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001739
Florin Corasb0ffbee2019-07-21 19:23:46 -07001740 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001741 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001742 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001743
Florin Coras41d5f542021-01-15 13:49:33 -08001744 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1745 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001746
Florin Corasb0ffbee2019-07-21 19:23:46 -07001747 /*
1748 * Handle control events
1749 */
1750
Florin Coras09843952021-05-17 16:05:41 -07001751 ei = wrk->ctrl_head;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001752 ctrl_he = clib_llist_elt (wrk->event_elts, ei);
Florin Coras09843952021-05-17 16:05:41 -07001753 next_ei = clib_llist_next_index (ctrl_he, evt_list);
1754 old_ti = clib_llist_prev_index (ctrl_he, evt_list);
1755 while (ei != old_ti)
1756 {
1757 ei = next_ei;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001758 elt = clib_llist_elt (wrk->event_elts, next_ei);
Florin Coras09843952021-05-17 16:05:41 -07001759 next_ei = clib_llist_next_index (elt, evt_list);
1760 clib_llist_remove (wrk->event_elts, evt_list, elt);
1761 session_event_dispatch_ctrl (wrk, elt);
1762 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001763
Srikanth Akula73570432020-04-06 19:19:49 -07001764 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1765
Florin Corasb0ffbee2019-07-21 19:23:46 -07001766 /*
1767 * Handle the new io events.
1768 */
1769
Florin Coras46b8b1a2021-05-17 19:09:33 -07001770 new_he = clib_llist_elt (wrk->event_elts, wrk->new_head);
1771 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Coras45b79732019-10-30 19:22:51 -07001772 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001773
Florin Coras16d974e2020-02-09 20:03:12 +00001774 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001775 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001776 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001777 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras16d974e2020-02-09 20:03:12 +00001778 ei = clib_llist_next_index (elt, evt_list);
1779 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001780 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001781 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001782
Srikanth Akula73570432020-04-06 19:19:49 -07001783 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1784
Florin Corasb0ffbee2019-07-21 19:23:46 -07001785 /*
Florin Coras45b79732019-10-30 19:22:51 -07001786 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001787 */
1788
Florin Coras45b79732019-10-30 19:22:51 -07001789 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001790 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001791 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001792 ei = clib_llist_next_index (old_he, evt_list);
1793
Florin Coras89235c72020-11-02 19:00:10 -08001794 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001795 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001796 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasdd97a482019-11-02 14:32:52 -07001797 next_ei = clib_llist_next_index (elt, evt_list);
1798 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001799
Florin Corasdb999df2020-09-21 10:45:56 -07001800 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001801
Florin Coras45b79732019-10-30 19:22:51 -07001802 if (ei == old_ti)
1803 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001804
1805 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001806 };
1807 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001808
Srikanth Akula73570432020-04-06 19:19:49 -07001809 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1810
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001811 if (vec_len (wrk->pending_tx_buffers))
1812 session_flush_pending_tx_buffers (wrk, node);
1813
Florin Coras0d60a0f2018-06-29 02:02:08 -07001814 vlib_node_increment_counter (vm, session_queue_node.index,
1815 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1816
Florin Corascca96182019-07-19 07:34:13 -07001817 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001818
Florin Coras7da88292021-03-18 15:04:34 -07001819 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1820 session_wrk_update_state (wrk);
1821
Florin Coras0d60a0f2018-06-29 02:02:08 -07001822 return n_tx_packets;
1823}
1824
1825/* *INDENT-OFF* */
1826VLIB_REGISTER_NODE (session_queue_node) =
1827{
1828 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001829 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001830 .name = "session-queue",
1831 .format_trace = format_session_queue_trace,
1832 .type = VLIB_NODE_TYPE_INPUT,
1833 .n_errors = ARRAY_LEN (session_queue_error_strings),
1834 .error_strings = session_queue_error_strings,
1835 .state = VLIB_NODE_STATE_DISABLED,
1836};
1837/* *INDENT-ON* */
1838
Dave Barach2a863912017-11-28 10:11:42 -05001839static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001840session_wrk_tfd_read_ready (clib_file_t *cf)
1841{
1842 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1843 u64 buf;
1844 int rv;
1845
1846 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1847 rv = read (wrk->timerfd, &buf, sizeof (buf));
1848 if (rv < 0 && errno != EAGAIN)
1849 clib_unix_warning ("failed");
1850 return 0;
1851}
1852
1853static clib_error_t *
1854session_wrk_tfd_write_ready (clib_file_t *cf)
1855{
1856 return 0;
1857}
1858
1859void
1860session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1861{
1862 u32 thread_index = wrk->vm->thread_index;
1863 clib_file_t template = { 0 };
1864
1865 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1866 clib_warning ("timerfd_create");
1867
1868 template.read_function = session_wrk_tfd_read_ready;
1869 template.write_function = session_wrk_tfd_write_ready;
1870 template.file_descriptor = wrk->timerfd;
1871 template.private_data = thread_index;
1872 template.polling_thread_index = thread_index;
1873 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1874
1875 wrk->timerfd_file = clib_file_add (&file_main, &template);
1876 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1877}
1878
1879static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001880session_queue_exit (vlib_main_t * vm)
1881{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001882 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001883 return 0;
1884
1885 /*
1886 * Shut off (especially) worker-thread session nodes.
1887 * Otherwise, vpp can crash as the main thread unmaps the
1888 * API segment.
1889 */
1890 vlib_worker_thread_barrier_sync (vm);
1891 session_node_enable_disable (0 /* is_enable */ );
1892 vlib_worker_thread_barrier_release (vm);
1893 return 0;
1894}
1895
1896VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1897
Florin Corasfd542f12018-05-16 19:28:24 -07001898static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001899session_queue_run_on_main (vlib_main_t * vm)
1900{
1901 vlib_node_runtime_t *node;
1902
1903 node = vlib_node_get_runtime (vm, session_queue_node.index);
1904 return session_queue_node_fn (vm, node, 0);
1905}
1906
1907static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001908session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1909 vlib_frame_t * f)
1910{
Florin Corasfd542f12018-05-16 19:28:24 -07001911 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001912 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001913 uword event_type;
1914
1915 while (1)
1916 {
1917 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001918 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1919
1920 switch (event_type)
1921 {
Florin Coras5484daa2020-03-27 23:55:06 +00001922 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1923 /* Run session queue node on main thread */
1924 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001925 break;
1926 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001927 vlib_node_set_state (vm, session_queue_process_node.index,
1928 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001929 timeout = 100000.0;
1930 break;
1931 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001932 /* Timed out. Run on main to ensure all events are handled */
1933 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001934 break;
1935 }
1936 vec_reset_length (event_data);
1937 }
1938 return 0;
1939}
1940
1941/* *INDENT-OFF* */
1942VLIB_REGISTER_NODE (session_queue_process_node) =
1943{
1944 .function = session_queue_process,
1945 .type = VLIB_NODE_TYPE_PROCESS,
1946 .name = "session-queue-process",
1947 .state = VLIB_NODE_STATE_DISABLED,
1948};
1949/* *INDENT-ON* */
1950
Florin Coras653e43f2019-03-04 10:56:23 -08001951static_always_inline uword
1952session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1953 vlib_frame_t * frame)
1954{
1955 session_main_t *sm = &session_main;
1956 if (!sm->wrk[0].vpp_event_queue)
1957 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001958 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001959 return session_queue_node_fn (vm, node, frame);
1960}
1961
1962/* *INDENT-OFF* */
1963VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1964{
1965 .function = session_queue_pre_input_inline,
1966 .type = VLIB_NODE_TYPE_PRE_INPUT,
1967 .name = "session-queue-main",
1968 .state = VLIB_NODE_STATE_DISABLED,
1969};
1970/* *INDENT-ON* */
1971
Dave Barach68b0fb02017-02-28 15:15:56 -05001972/*
1973 * fd.io coding-style-patch-verification: ON
1974 *
1975 * Local Variables:
1976 * eval: (c-set-style "gnu")
1977 * End:
1978 */