blob: 403c28f28ce6c16137dfe7f5bff7ec4d9c54f6aa [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;
Filip Tehlar2f09bfc2021-11-15 10:26:56 +0000176 a->sep.dscp = mp->dscp;
Florin Corasef7cbf62019-10-17 09:56:27 -0700177 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000178 if (mp->is_ip4)
179 {
180 ip46_address_mask_ip4 (&a->sep.ip);
181 ip46_address_mask_ip4 (&a->sep.peer.ip);
182 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000183 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700184 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
185 a->sep_ext.parent_handle = mp->parent_handle;
Florin Corasd85666f2020-04-03 00:58:48 +0000186 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700187 a->api_context = mp->context;
188 a->app_index = app->app_index;
189 a->wrk_map_index = mp->wrk_index;
190
Florin Coras4ac25842021-04-19 17:34:54 -0700191 if (mp->ext_config)
192 a->sep_ext.ext_cfg = session_mq_get_ext_config (app, mp->ext_config);
193
Florin Coras458089b2019-08-21 16:20:44 -0700194 if ((rv = vnet_connect (a)))
195 {
Florin Coras57660d92020-04-04 22:45:34 +0000196 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700197 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700198 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700199 }
200
Florin Coras4ac25842021-04-19 17:34:54 -0700201 if (mp->ext_config)
202 session_mq_free_ext_config (app, mp->ext_config);
Florin Coras458089b2019-08-21 16:20:44 -0700203}
204
205static void
Florin Corasaf972212021-05-05 09:54:00 -0700206session_mq_handle_connects_rpc (void *arg)
207{
208 u32 max_connects = 32, n_connects = 0;
209 vlib_main_t *vm = vlib_get_main ();
210 session_evt_elt_t *he, *elt, *next;
Florin Corasa48dffe2021-05-16 10:58:53 -0700211 session_worker_t *fwrk, *wrk;
Florin Corasaf972212021-05-05 09:54:00 -0700212
213 ASSERT (vlib_get_thread_index () == 0);
214
215 /* Pending connects on linked list pertaining to first worker */
216 fwrk = session_main_get_worker (1);
Florin Coras0f273392021-05-21 15:48:18 -0700217 if (!fwrk->n_pending_connects)
218 goto update_state;
Florin Corasaf972212021-05-05 09:54:00 -0700219
220 vlib_worker_thread_barrier_sync (vm);
221
Florin Coras46b8b1a2021-05-17 19:09:33 -0700222 he = clib_llist_elt (fwrk->event_elts, fwrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700223 elt = clib_llist_next (fwrk->event_elts, evt_list, he);
224
225 /* Avoid holding the barrier for too long */
226 while (n_connects < max_connects && elt != he)
227 {
228 next = clib_llist_next (fwrk->event_elts, evt_list, elt);
229 clib_llist_remove (fwrk->event_elts, evt_list, elt);
230 session_mq_connect_one (session_evt_ctrl_data (fwrk, elt));
Florin Coras595724a2021-06-29 13:27:45 -0700231 session_evt_ctrl_data_free (fwrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -0700232 clib_llist_put (fwrk->event_elts, elt);
Florin Corasaf972212021-05-05 09:54:00 -0700233 elt = next;
234 n_connects += 1;
235 }
236
Florin Coras0f273392021-05-21 15:48:18 -0700237 /* Decrement with worker barrier */
238 fwrk->n_pending_connects -= n_connects;
239
240 vlib_worker_thread_barrier_release (vm);
241
242update_state:
243
Florin Corasa48dffe2021-05-16 10:58:53 -0700244 /* Switch worker to poll mode if it was in interrupt mode and had work or
245 * back to interrupt if threshold of loops without a connect is passed.
246 * While in poll mode, reprogram connects rpc */
247 wrk = session_main_get_worker (0);
248 if (wrk->state != SESSION_WRK_POLLING)
Florin Corasaf972212021-05-05 09:54:00 -0700249 {
Florin Coras0f273392021-05-21 15:48:18 -0700250 if (n_connects)
251 {
252 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
253 vlib_node_set_state (vm, session_queue_node.index,
254 VLIB_NODE_STATE_POLLING);
255 wrk->no_connect_loops = 0;
256 }
Florin Corasa48dffe2021-05-16 10:58:53 -0700257 }
258 else
259 {
260 if (!n_connects)
261 {
262 if (++wrk->no_connect_loops > 1e5)
263 {
264 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
265 vlib_node_set_state (vm, session_queue_node.index,
266 VLIB_NODE_STATE_INTERRUPT);
Florin Corasa48dffe2021-05-16 10:58:53 -0700267 }
268 }
269 else
270 wrk->no_connect_loops = 0;
Florin Corasaf972212021-05-05 09:54:00 -0700271 }
272
Florin Coras0f273392021-05-21 15:48:18 -0700273 if (wrk->state == SESSION_WRK_POLLING)
274 {
275 elt = session_evt_alloc_ctrl (wrk);
276 elt->evt.event_type = SESSION_CTRL_EVT_RPC;
277 elt->evt.rpc_args.fp = session_mq_handle_connects_rpc;
278 }
Florin Corasaf972212021-05-05 09:54:00 -0700279}
280
281static void
282session_mq_connect_handler (session_worker_t *wrk, session_evt_elt_t *elt)
283{
284 u32 thread_index = wrk - session_main.wrk;
285 session_evt_elt_t *he;
286
287 /* No workers, so just deal with the connect now */
288 if (PREDICT_FALSE (!thread_index))
289 {
290 session_mq_connect_one (session_evt_ctrl_data (wrk, elt));
291 return;
292 }
293
294 if (PREDICT_FALSE (thread_index != 1))
295 {
296 clib_warning ("Connect on wrong thread. Dropping");
297 return;
298 }
299
300 /* Add to pending list to be handled by main thread */
Florin Coras46b8b1a2021-05-17 19:09:33 -0700301 he = clib_llist_elt (wrk->event_elts, wrk->pending_connects);
Florin Corasaf972212021-05-05 09:54:00 -0700302 clib_llist_add_tail (wrk->event_elts, evt_list, elt, he);
303
Florin Coras0f273392021-05-21 15:48:18 -0700304 /* Decremented with worker barrier */
305 wrk->n_pending_connects += 1;
306 if (wrk->n_pending_connects == 1)
Florin Corasaf972212021-05-05 09:54:00 -0700307 {
308 vlib_node_set_interrupt_pending (vlib_get_main_by_index (0),
309 session_queue_node.index);
310 session_send_rpc_evt_to_thread (0, session_mq_handle_connects_rpc, 0);
Florin Corasaf972212021-05-05 09:54:00 -0700311 }
312}
313
314static void
Florin Coras458089b2019-08-21 16:20:44 -0700315session_mq_connect_uri_handler (void *data)
316{
317 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
318 vnet_connect_args_t _a, *a = &_a;
319 app_worker_t *app_wrk;
320 application_t *app;
321 int rv;
322
323 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
324
325 app = application_lookup (mp->client_index);
326 if (!app)
327 return;
328
329 clib_memset (a, 0, sizeof (*a));
330 a->uri = (char *) mp->uri;
331 a->api_context = mp->context;
332 a->app_index = app->app_index;
333 if ((rv = vnet_connect_uri (a)))
334 {
335 clib_warning ("connect_uri returned: %d", rv);
336 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700337 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700338 }
339}
340
341static void
liuyacan534468e2021-05-09 03:50:40 +0000342session_mq_shutdown_handler (void *data)
343{
344 session_shutdown_msg_t *mp = (session_shutdown_msg_t *) data;
345 vnet_shutdown_args_t _a, *a = &_a;
346 application_t *app;
347
348 app = application_lookup (mp->client_index);
349 if (!app)
350 return;
351
352 a->app_index = app->app_index;
353 a->handle = mp->handle;
354 vnet_shutdown_session (a);
355}
356
357static void
Florin Coras458089b2019-08-21 16:20:44 -0700358session_mq_disconnect_handler (void *data)
359{
360 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
361 vnet_disconnect_args_t _a, *a = &_a;
362 application_t *app;
363
364 app = application_lookup (mp->client_index);
365 if (!app)
366 return;
367
368 a->app_index = app->app_index;
369 a->handle = mp->handle;
370 vnet_disconnect_session (a);
371}
372
373static void
374app_mq_detach_handler (void *data)
375{
376 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
377 vnet_app_detach_args_t _a, *a = &_a;
378 application_t *app;
379
380 app_check_thread_and_barrier (app_mq_detach_handler, mp);
381
382 app = application_lookup (mp->client_index);
383 if (!app)
384 return;
385
386 a->app_index = app->app_index;
387 a->api_client_index = mp->client_index;
388 vnet_application_detach (a);
389}
390
391static void
Florin Corasc53eb722021-06-22 14:20:39 -0700392session_mq_unlisten_rpc (session_unlisten_msg_t *mp)
Florin Coras458089b2019-08-21 16:20:44 -0700393{
Florin Corasc53eb722021-06-22 14:20:39 -0700394 vlib_main_t *vm = vlib_get_main ();
Florin Coras458089b2019-08-21 16:20:44 -0700395 vnet_unlisten_args_t _a, *a = &_a;
396 app_worker_t *app_wrk;
Florin Corasc53eb722021-06-22 14:20:39 -0700397 session_handle_t sh;
Florin Coras458089b2019-08-21 16:20:44 -0700398 application_t *app;
Florin Corasc53eb722021-06-22 14:20:39 -0700399 u32 context;
Florin Coras458089b2019-08-21 16:20:44 -0700400 int rv;
401
Florin Corasc53eb722021-06-22 14:20:39 -0700402 sh = mp->handle;
403 context = mp->context;
404
Florin Coras458089b2019-08-21 16:20:44 -0700405 app = application_lookup (mp->client_index);
406 if (!app)
407 return;
408
409 clib_memset (a, 0, sizeof (*a));
410 a->app_index = app->app_index;
Florin Corasc53eb722021-06-22 14:20:39 -0700411 a->handle = sh;
Florin Coras458089b2019-08-21 16:20:44 -0700412 a->wrk_map_index = mp->wrk_index;
Florin Corasc941fcb2021-07-20 19:08:12 -0700413
414 vlib_worker_thread_barrier_sync (vm);
415
Florin Coras458089b2019-08-21 16:20:44 -0700416 if ((rv = vnet_unlisten (a)))
417 clib_warning ("unlisten returned: %d", rv);
418
Florin Corasc941fcb2021-07-20 19:08:12 -0700419 vlib_worker_thread_barrier_release (vm);
420
Florin Coras458089b2019-08-21 16:20:44 -0700421 app_wrk = application_get_worker (app, a->wrk_map_index);
422 if (!app_wrk)
423 return;
424
Florin Corasc53eb722021-06-22 14:20:39 -0700425 mq_send_unlisten_reply (app_wrk, sh, context, rv);
426 clib_mem_free (mp);
427}
428
429static void
430session_mq_unlisten_handler (session_worker_t *wrk, session_evt_elt_t *elt)
431{
432 u32 thread_index = wrk - session_main.wrk;
433 session_unlisten_msg_t *mp, *arg;
434
435 mp = session_evt_ctrl_data (wrk, elt);
436 arg = clib_mem_alloc (sizeof (session_unlisten_msg_t));
437 clib_memcpy_fast (arg, mp, sizeof (*arg));
438
439 if (PREDICT_FALSE (!thread_index))
440 {
441 session_mq_unlisten_rpc (arg);
442 return;
443 }
444
445 session_send_rpc_evt_to_thread_force (0, session_mq_unlisten_rpc, arg);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800446}
447
Florin Coras52207f12018-07-12 14:48:06 -0700448static void
449session_mq_accepted_reply_handler (void *data)
450{
451 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
452 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800453 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700454 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800455 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700456
Florin Coras2b81e3c2019-02-27 07:55:46 -0800457 /* Mail this back from the main thread. We're not polling in main
458 * thread so we're using other workers for notifications. */
Florin Corasc6eb7da2021-11-25 11:37:33 -0800459 if (session_thread_from_handle (mp->handle) == 0 && vlib_num_workers () &&
460 vlib_get_thread_index () != 0)
Florin Coras52207f12018-07-12 14:48:06 -0700461 {
Florin Coras458089b2019-08-21 16:20:44 -0700462 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
463 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800464 return;
465 }
466
467 s = session_get_from_handle_if_valid (mp->handle);
468 if (!s)
469 return;
470
471 app_wrk = app_worker_get (s->app_wrk_index);
472 if (app_wrk->app_index != mp->context)
473 {
474 clib_warning ("app doesn't own session");
475 return;
476 }
477
Florin Corasc6eb7da2021-11-25 11:37:33 -0800478 /* Server isn't interested, disconnect the session */
479 if (mp->retval)
480 {
481 a->app_index = mp->context;
482 a->handle = mp->handle;
483 vnet_disconnect_session (a);
484 return;
485 }
486
487 /* Special handling for cut-through sessions */
Florin Coras2b81e3c2019-02-27 07:55:46 -0800488 if (!session_has_transport (s))
489 {
Florin Coras653e43f2019-03-04 10:56:23 -0800490 s->session_state = SESSION_STATE_READY;
Florin Corasc6eb7da2021-11-25 11:37:33 -0800491 ct_session_connect_notify (s, SESSION_E_NONE);
492 return;
Florin Coras52207f12018-07-12 14:48:06 -0700493 }
Florin Corasc6eb7da2021-11-25 11:37:33 -0800494
495 old_state = s->session_state;
496 s->session_state = SESSION_STATE_READY;
497
498 if (!svm_fifo_is_empty_prod (s->rx_fifo))
499 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
500
501 /* Closed while waiting for app to reply. Resend disconnect */
502 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras52207f12018-07-12 14:48:06 -0700503 {
Florin Corasc6eb7da2021-11-25 11:37:33 -0800504 app_worker_close_notify (app_wrk, s);
505 s->session_state = old_state;
506 return;
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
Filip Tehlar22efac32021-10-06 12:54:51 +0000798#define foreach_session_queue_error \
799 _ (TX, tx, INFO, "Packets transmitted") \
800 _ (TIMER, timer, INFO, "Timer events") \
801 _ (NO_BUFFER, no_buffer, ERROR, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500802
803typedef enum
804{
Filip Tehlar22efac32021-10-06 12:54:51 +0000805#define _(f, n, s, d) SESSION_QUEUE_ERROR_##f,
Dave Barach68b0fb02017-02-28 15:15:56 -0500806 foreach_session_queue_error
807#undef _
808 SESSION_QUEUE_N_ERROR,
809} session_queue_error_t;
810
Filip Tehlar22efac32021-10-06 12:54:51 +0000811static vlib_error_desc_t session_error_counters[] = {
812#define _(f, n, s, d) { #n, d, VL_COUNTER_SEVERITY_##s },
Dave Barach68b0fb02017-02-28 15:15:56 -0500813 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 Coras9bd71be2022-01-09 18:18:10 -08001191 {
1192 if (svm_fifo_set_event (s->tx_fifo))
1193 session_evt_add_head_old (wrk, elt);
1194 }
1195 else
1196 {
1197 transport_connection_deschedule (ctx->tc);
1198 }
Florin Corasaaf64a22020-02-23 01:37:34 +00001199}
1200
Florin Coras8e43d042018-05-04 15:46:57 -07001201always_inline int
Florin Coras60183db2019-07-20 15:53:16 -07001202session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
1203 vlib_node_runtime_t * node,
1204 session_evt_elt_t * elt,
1205 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -07001206{
Simon Zhangae16a982020-03-31 20:56:22 +08001207 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001208 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -07001209 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -07001210 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -07001211 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -07001212 transport_proto_t tp;
1213 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001214 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -07001215
Florin Coras1bcad5c2019-01-09 20:04:38 -08001216 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -07001217 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001218 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -07001219 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001220 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001221 }
1222
Florin Coras1bcad5c2019-01-09 20:04:38 -08001223 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -08001224 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -07001225
Florin Coras1bcad5c2019-01-09 20:04:38 -08001226 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -07001227 ctx->transport_vft = transport_protocol_get_vft (tp);
1228 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -08001229
1230 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
1231 {
1232 if (ctx->transport_vft->flush_data)
1233 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001234 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -08001235 }
1236
Florin Coras26dd6de2019-07-23 23:54:47 -07001237 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
1238 {
1239 u32 n_custom_tx;
1240 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +00001241 ctx->sp.max_burst_size = max_burst;
1242 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -07001243 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -07001244 if (PREDICT_FALSE
1245 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
1246 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -07001247 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +00001248 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -07001249 {
1250 session_evt_add_old (wrk, elt);
1251 return SESSION_TX_OK;
1252 }
1253 }
1254
Florin Coras9bd71be2022-01-09 18:18:10 -08001255 /* Connection previously descheduled because it had no data to send.
1256 * Clear descheduled flag and reset pacer if in use */
1257 if (transport_connection_is_descheduled (ctx->tc))
1258 transport_connection_clear_descheduled (ctx->tc);
1259
Florin Coras70f879d2020-03-13 17:54:42 +00001260 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -07001261
Florin Coras70f879d2020-03-13 17:54:42 +00001262 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -07001263 {
Florin Coras6080e0d2020-03-13 20:39:43 +00001264 /* If the deschedule flag was set, remove session from scheduler.
1265 * Transport is responsible for rescheduling this session. */
1266 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
1267 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001268 /* Request to postpone the session, e.g., zero-wnd and transport
1269 * is not currently probing */
1270 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
1271 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001272 /* This flow queue is "empty" so it should be re-evaluated before
1273 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001274 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001275 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001276
Florin Coras0d60a0f2018-06-29 02:02:08 -07001277 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001278 }
1279
Florin Coras11e9e352019-11-13 19:09:47 -08001280 if (transport_connection_is_tx_paced (ctx->tc))
1281 {
1282 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1283 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1284 {
1285 session_evt_add_head_old (wrk, elt);
1286 return SESSION_TX_NO_DATA;
1287 }
Florin Coras70f879d2020-03-13 17:54:42 +00001288 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1289 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1290 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001291 }
1292
Florin Coras8e43d042018-05-04 15:46:57 -07001293 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001294 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001295
Florin Coras8e43d042018-05-04 15:46:57 -07001296 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001297 {
Florin Coras11e9e352019-11-13 19:09:47 -08001298 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001299 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001300 return SESSION_TX_NO_DATA;
1301 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001302
Florin Coras1d7a6632021-05-17 23:44:53 -07001303 vec_validate_aligned (ctx->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001304 CLIB_CACHE_LINE_BYTES);
Florin Coras1d7a6632021-05-17 23:44:53 -07001305 n_bufs = vlib_buffer_alloc (vm, ctx->tx_buffers, ctx->n_bufs_needed);
Simon Zhangae16a982020-03-31 20:56:22 +08001306 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001307 {
Florin Coras2068fd42019-01-31 14:35:50 -08001308 if (n_bufs)
Florin Coras1d7a6632021-05-17 23:44:53 -07001309 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001310 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001311 vlib_node_increment_counter (wrk->vm, node->node_index,
1312 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001313 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001314 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001315
Florin Coras7808df22020-11-02 18:00:32 -08001316 if (transport_connection_is_tx_paced (ctx->tc))
1317 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001318
Florin Corasf08f26d2018-05-10 13:20:47 -07001319 ctx->left_to_snd = ctx->max_len_to_snd;
1320 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001321
Florin Corasf66cc802021-04-08 19:10:07 -07001322 vec_validate (ctx->transport_pending_bufs, n_left);
1323
Florin Coras66cf5e02018-06-08 09:17:39 -07001324 while (n_left >= 4)
1325 {
1326 vlib_buffer_t *b0, *b1;
1327 u32 bi0, bi1;
1328
Florin Coras1d7a6632021-05-17 23:44:53 -07001329 pbi = ctx->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001330 pb = vlib_get_buffer (vm, pbi);
1331 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras1d7a6632021-05-17 23:44:53 -07001332 pbi = ctx->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001333 pb = vlib_get_buffer (vm, pbi);
1334 vlib_prefetch_buffer_header (pb, STORE);
1335
Florin Coras1d7a6632021-05-17 23:44:53 -07001336 bi0 = ctx->tx_buffers[--n_bufs];
1337 bi1 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001338
1339 b0 = vlib_get_buffer (vm, bi0);
1340 b1 = vlib_get_buffer (vm, bi1);
1341
1342 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1343 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1344
Florin Corasf66cc802021-04-08 19:10:07 -07001345 ctx->transport_pending_bufs[ctx->n_segs_per_evt - n_left] = b0;
1346 ctx->transport_pending_bufs[ctx->n_segs_per_evt - n_left + 1] = b1;
Florin Coras66cf5e02018-06-08 09:17:39 -07001347 n_left -= 2;
1348
Florin Coras8a754f12019-10-16 22:35:18 -07001349 vec_add1 (wrk->pending_tx_buffers, bi0);
1350 vec_add1 (wrk->pending_tx_buffers, bi1);
1351 vec_add1 (wrk->pending_tx_nexts, next_index);
1352 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001353 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001354 while (n_left)
1355 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001356 vlib_buffer_t *b0;
1357 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001358
Florin Coras91ca4622018-06-30 11:27:59 -07001359 if (n_left > 1)
1360 {
Florin Coras1d7a6632021-05-17 23:44:53 -07001361 pbi = ctx->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001362 pb = vlib_get_buffer (vm, pbi);
1363 vlib_prefetch_buffer_header (pb, STORE);
1364 }
1365
Florin Coras1d7a6632021-05-17 23:44:53 -07001366 bi0 = ctx->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001367 b0 = vlib_get_buffer (vm, bi0);
1368 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001369
Florin Corasf66cc802021-04-08 19:10:07 -07001370 ctx->transport_pending_bufs[ctx->n_segs_per_evt - n_left] = b0;
Florin Coras66cf5e02018-06-08 09:17:39 -07001371 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001372
Florin Coras8a754f12019-10-16 22:35:18 -07001373 vec_add1 (wrk->pending_tx_buffers, bi0);
1374 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001375 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001376
Florin Corasf66cc802021-04-08 19:10:07 -07001377 /* Ask transport to push headers */
1378 ctx->transport_vft->push_header (ctx->tc, ctx->transport_pending_bufs,
1379 ctx->n_segs_per_evt);
1380
Florin Coras60183db2019-07-20 15:53:16 -07001381 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001382 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001383 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001384
Florin Coras2068fd42019-01-31 14:35:50 -08001385 if (PREDICT_FALSE (n_bufs))
Florin Coras1d7a6632021-05-17 23:44:53 -07001386 vlib_buffer_free (vm, ctx->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -07001387
Florin Corasf08f26d2018-05-10 13:20:47 -07001388 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001389
Florin Corascca96182019-07-19 07:34:13 -07001390 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1391 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1392
Florin Corasf08f26d2018-05-10 13:20:47 -07001393 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001394
1395 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1396 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001397 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001398 session_evt_add_old (wrk, elt);
1399 else
Florin Coras70f879d2020-03-13 17:54:42 +00001400 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001401
Florin Corasab57edb2020-04-07 03:46:07 +00001402 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001403 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001404 u32 n_dequeued = ctx->max_len_to_snd;
1405 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1406 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1407 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001408 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001409 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001410 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001411}
1412
1413int
Florin Coras60183db2019-07-20 15:53:16 -07001414session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1415 vlib_node_runtime_t * node,
1416 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001417{
Florin Coras60183db2019-07-20 15:53:16 -07001418 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001419}
1420
1421int
Florin Coras60183db2019-07-20 15:53:16 -07001422session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1423 vlib_node_runtime_t * node,
1424 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001425{
Florin Coras60183db2019-07-20 15:53:16 -07001426 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001427}
1428
Florin Coras371ca502018-02-21 12:07:41 -08001429int
Florin Coras60183db2019-07-20 15:53:16 -07001430session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001431 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001432 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001433{
Florin Coras9f86d222020-03-23 15:34:22 +00001434 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001435 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001436 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001437
Florin Corasc0737e92019-03-04 14:19:39 -08001438 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001439 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001440
1441 /* Clear custom-tx flag used to request reschedule for tx */
1442 s->flags &= ~SESSION_F_CUSTOM_TX;
1443
Florin Coras89235c72020-11-02 19:00:10 -08001444 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001445 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001446
Florin Coras9f86d222020-03-23 15:34:22 +00001447 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1448 *n_tx_packets += n_packets;
1449
1450 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001451 {
1452 session_evt_add_old (wrk, elt);
1453 }
Florin Coras9f86d222020-03-23 15:34:22 +00001454 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001455 {
1456 svm_fifo_unset_event (s->tx_fifo);
1457 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1458 if (svm_fifo_set_event (s->tx_fifo))
1459 session_evt_add_head_old (wrk, elt);
1460 }
1461
Florin Coras1e6a0f62021-03-09 08:36:25 -08001462 if (sp->max_burst_size &&
1463 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1464 session_dequeue_notify (s);
1465
Florin Corased8db522020-02-27 04:32:51 +00001466 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001467}
1468
Florin Coras288eaab2019-02-03 15:26:14 -08001469always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001470session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001471{
Florin Corasdb999df2020-09-21 10:45:56 -07001472 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1473 return 0;
1474
1475 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1476 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001477}
1478
Florin Coras60183db2019-07-20 15:53:16 -07001479always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001480session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1481{
1482 clib_llist_index_t ei;
1483 void (*fp) (void *);
1484 session_event_t *e;
1485 session_t *s;
1486
1487 ei = clib_llist_entry_index (wrk->event_elts, elt);
1488 e = &elt->evt;
1489
1490 switch (e->event_type)
1491 {
1492 case SESSION_CTRL_EVT_RPC:
1493 fp = e->rpc_args.fp;
1494 (*fp) (e->rpc_args.arg);
1495 break;
liuyacan534468e2021-05-09 03:50:40 +00001496 case SESSION_CTRL_EVT_HALF_CLOSE:
1497 s = session_get_from_handle_if_valid (e->session_handle);
1498 if (PREDICT_FALSE (!s))
1499 break;
1500 session_transport_half_close (s);
1501 break;
Florin Coras458089b2019-08-21 16:20:44 -07001502 case SESSION_CTRL_EVT_CLOSE:
1503 s = session_get_from_handle_if_valid (e->session_handle);
1504 if (PREDICT_FALSE (!s))
1505 break;
1506 session_transport_close (s);
1507 break;
1508 case SESSION_CTRL_EVT_RESET:
1509 s = session_get_from_handle_if_valid (e->session_handle);
1510 if (PREDICT_FALSE (!s))
1511 break;
1512 session_transport_reset (s);
1513 break;
1514 case SESSION_CTRL_EVT_LISTEN:
1515 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1516 break;
1517 case SESSION_CTRL_EVT_LISTEN_URI:
1518 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1519 break;
1520 case SESSION_CTRL_EVT_UNLISTEN:
Florin Corasc53eb722021-06-22 14:20:39 -07001521 session_mq_unlisten_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001522 break;
1523 case SESSION_CTRL_EVT_CONNECT:
Florin Corasaf972212021-05-05 09:54:00 -07001524 session_mq_connect_handler (wrk, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001525 break;
1526 case SESSION_CTRL_EVT_CONNECT_URI:
1527 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1528 break;
liuyacan534468e2021-05-09 03:50:40 +00001529 case SESSION_CTRL_EVT_SHUTDOWN:
1530 session_mq_shutdown_handler (session_evt_ctrl_data (wrk, elt));
1531 break;
Florin Coras458089b2019-08-21 16:20:44 -07001532 case SESSION_CTRL_EVT_DISCONNECT:
1533 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1534 break;
1535 case SESSION_CTRL_EVT_DISCONNECTED:
1536 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1537 break;
1538 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1539 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1540 break;
1541 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1542 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1543 elt));
1544 break;
1545 case SESSION_CTRL_EVT_RESET_REPLY:
1546 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1547 break;
1548 case SESSION_CTRL_EVT_WORKER_UPDATE:
1549 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1550 break;
1551 case SESSION_CTRL_EVT_APP_DETACH:
1552 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1553 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001554 case SESSION_CTRL_EVT_APP_WRK_RPC:
1555 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1556 break;
Florin Coras04ae8272021-04-12 19:55:37 -07001557 case SESSION_CTRL_EVT_TRANSPORT_ATTR:
1558 session_mq_transport_attr_handler (session_evt_ctrl_data (wrk, elt));
1559 break;
Florin Coras458089b2019-08-21 16:20:44 -07001560 default:
1561 clib_warning ("unhandled event type %d", e->event_type);
1562 }
1563
1564 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001565 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras458089b2019-08-21 16:20:44 -07001566 if (!clib_llist_elt_is_linked (elt, evt_list))
1567 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001568 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001569 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1570 session_evt_ctrl_data_free (wrk, elt);
Florin Coras46b8b1a2021-05-17 19:09:33 -07001571 clib_llist_put (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001572 }
Srikanth Akula73570432020-04-06 19:19:49 -07001573 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001574}
1575
1576always_inline void
1577session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001578 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001579{
Florin Coras60183db2019-07-20 15:53:16 -07001580 session_main_t *smm = &session_main;
1581 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001582 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001583 session_event_t *e;
1584 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001585
Florin Corasb0ffbee2019-07-21 19:23:46 -07001586 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001587 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001588
Florin Coras60183db2019-07-20 15:53:16 -07001589 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001590 {
Florin Coras60183db2019-07-20 15:53:16 -07001591 case SESSION_IO_EVT_TX_FLUSH:
1592 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001593 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001594 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001595 break;
Tianyu Li40ba6922021-08-26 10:03:43 +08001596 CLIB_PREFETCH (s->tx_fifo, sizeof (*(s->tx_fifo)), LOAD);
Florin Coras60183db2019-07-20 15:53:16 -07001597 wrk->ctx.s = s;
1598 /* Spray packets in per session type frames, since they go to
1599 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001600 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001601 break;
1602 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001603 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001604 if (!s)
1605 break;
1606 transport_app_rx_evt (session_get_transport_proto (s),
1607 s->connection_index, s->thread_index);
1608 break;
Florin Coras60183db2019-07-20 15:53:16 -07001609 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001610 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001611 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1612 break;
1613 svm_fifo_unset_event (s->rx_fifo);
1614 app_wrk = app_worker_get (s->app_wrk_index);
1615 app_worker_builtin_rx (app_wrk, s);
1616 break;
1617 case SESSION_IO_EVT_BUILTIN_TX:
1618 s = session_get_from_handle_if_valid (e->session_handle);
1619 wrk->ctx.s = s;
1620 if (PREDICT_TRUE (s != 0))
1621 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1622 break;
Florin Coras60183db2019-07-20 15:53:16 -07001623 default:
1624 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001625 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001626
Srikanth Akula73570432020-04-06 19:19:49 -07001627 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1628
Florin Corasb0ffbee2019-07-21 19:23:46 -07001629 /* Regrab elements in case pool moved */
Florin Coras46b8b1a2021-05-17 19:09:33 -07001630 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001631 if (!clib_llist_elt_is_linked (elt, evt_list))
Florin Coras46b8b1a2021-05-17 19:09:33 -07001632 clib_llist_put (wrk->event_elts, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001633}
1634
Florin Coras458089b2019-08-21 16:20:44 -07001635/* *INDENT-OFF* */
1636static const u32 session_evt_msg_sizes[] = {
1637#define _(symc, sym) \
1638 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1639 foreach_session_ctrl_evt
1640#undef _
1641};
1642/* *INDENT-ON* */
1643
1644always_inline void
1645session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1646{
1647 session_evt_elt_t *elt;
1648
1649 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1650 {
1651 elt = session_evt_alloc_ctrl (wrk);
1652 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1653 {
1654 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1655 elt->evt.event_type = evt->event_type;
1656 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1657 session_evt_msg_sizes[evt->event_type]);
1658 }
1659 else
1660 {
1661 /* Internal control events fit into io events footprint */
1662 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1663 }
1664 }
1665 else
1666 {
1667 elt = session_evt_alloc_new (wrk);
1668 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1669 }
1670}
1671
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001672static void
1673session_flush_pending_tx_buffers (session_worker_t * wrk,
1674 vlib_node_runtime_t * node)
1675{
Benoît Ganne10bb21f2021-09-08 16:26:52 +02001676 vlib_buffer_enqueue_to_next_vec (wrk->vm, node, &wrk->pending_tx_buffers,
1677 &wrk->pending_tx_nexts,
1678 vec_len (wrk->pending_tx_nexts));
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001679 vec_reset_length (wrk->pending_tx_buffers);
1680 vec_reset_length (wrk->pending_tx_nexts);
1681}
1682
Florin Coras41d5f542021-01-15 13:49:33 -08001683int
1684session_wrk_handle_mq (session_worker_t *wrk, svm_msg_q_t *mq)
1685{
1686 svm_msg_q_msg_t _msg, *msg = &_msg;
1687 u32 i, n_to_dequeue = 0;
1688 session_event_t *evt;
1689
1690 n_to_dequeue = svm_msg_q_size (mq);
1691 for (i = 0; i < n_to_dequeue; i++)
1692 {
1693 svm_msg_q_sub_raw (mq, msg);
1694 evt = svm_msg_q_msg_data (mq, msg);
1695 session_evt_add_to_list (wrk, evt);
1696 svm_msg_q_free_msg (mq, msg);
1697 }
1698
1699 return n_to_dequeue;
1700}
1701
Florin Coras7da88292021-03-18 15:04:34 -07001702static void
Florin Coras7da88292021-03-18 15:04:34 -07001703session_wrk_update_state (session_worker_t *wrk)
1704{
1705 vlib_main_t *vm = wrk->vm;
1706
1707 if (wrk->state == SESSION_WRK_POLLING)
1708 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001709 if (clib_llist_elts (wrk->event_elts) == 4 &&
Florin Coras7da88292021-03-18 15:04:34 -07001710 vlib_last_vectors_per_main_loop (vm) < 1)
1711 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001712 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001713 vlib_node_set_state (vm, session_queue_node.index,
1714 VLIB_NODE_STATE_INTERRUPT);
1715 }
1716 }
1717 else if (wrk->state == SESSION_WRK_INTERRUPT)
1718 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001719 if (clib_llist_elts (wrk->event_elts) > 4 ||
Florin Coras7da88292021-03-18 15:04:34 -07001720 vlib_last_vectors_per_main_loop (vm) > 1)
1721 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001722 session_wrk_set_state (wrk, SESSION_WRK_POLLING);
Florin Coras7da88292021-03-18 15:04:34 -07001723 vlib_node_set_state (vm, session_queue_node.index,
1724 VLIB_NODE_STATE_POLLING);
1725 }
1726 else if (PREDICT_FALSE (!pool_elts (wrk->sessions)))
1727 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001728 session_wrk_set_state (wrk, SESSION_WRK_IDLE);
Florin Coras7da88292021-03-18 15:04:34 -07001729 }
1730 }
1731 else
1732 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001733 if (clib_llist_elts (wrk->event_elts))
Florin Coras7da88292021-03-18 15:04:34 -07001734 {
Florin Coras1c19aef2021-04-06 15:54:14 -07001735 session_wrk_set_state (wrk, SESSION_WRK_INTERRUPT);
Florin Coras7da88292021-03-18 15:04:34 -07001736 }
1737 }
1738}
1739
Florin Coras0d60a0f2018-06-29 02:02:08 -07001740static uword
1741session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1742 vlib_frame_t * frame)
1743{
Florin Coras41d5f542021-01-15 13:49:33 -08001744 u32 thread_index = vm->thread_index, __clib_unused n_evts;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001745 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras41d5f542021-01-15 13:49:33 -08001746 session_main_t *smm = vnet_get_session_main ();
1747 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Coras16d974e2020-02-09 20:03:12 +00001748 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras41d5f542021-01-15 13:49:33 -08001749 int n_tx_packets;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001750
Florin Corascca96182019-07-19 07:34:13 -07001751 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001752
Florin Coras8f10b902021-04-02 18:32:00 -07001753 session_wrk_update_time (wrk, vlib_time_now (vm));
Florin Coras60183db2019-07-20 15:53:16 -07001754
Florin Coras0d60a0f2018-06-29 02:02:08 -07001755 /*
1756 * Update transport time
1757 */
Florin Coras60183db2019-07-20 15:53:16 -07001758 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001759 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001760 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001761
Florin Corasb0ffbee2019-07-21 19:23:46 -07001762 /*
Florin Coras41d5f542021-01-15 13:49:33 -08001763 * Dequeue new internal mq events
Florin Corasb0ffbee2019-07-21 19:23:46 -07001764 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001765
Florin Coras41d5f542021-01-15 13:49:33 -08001766 n_evts = session_wrk_handle_mq (wrk, wrk->vpp_event_queue);
1767 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_evts);
Florin Coras11166672020-04-13 01:20:25 +00001768
Florin Corasb0ffbee2019-07-21 19:23:46 -07001769 /*
1770 * Handle control events
1771 */
1772
Florin Coras09843952021-05-17 16:05:41 -07001773 ei = wrk->ctrl_head;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001774 ctrl_he = clib_llist_elt (wrk->event_elts, ei);
Florin Coras09843952021-05-17 16:05:41 -07001775 next_ei = clib_llist_next_index (ctrl_he, evt_list);
1776 old_ti = clib_llist_prev_index (ctrl_he, evt_list);
1777 while (ei != old_ti)
1778 {
1779 ei = next_ei;
Florin Coras46b8b1a2021-05-17 19:09:33 -07001780 elt = clib_llist_elt (wrk->event_elts, next_ei);
Florin Coras09843952021-05-17 16:05:41 -07001781 next_ei = clib_llist_next_index (elt, evt_list);
1782 clib_llist_remove (wrk->event_elts, evt_list, elt);
1783 session_event_dispatch_ctrl (wrk, elt);
1784 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001785
Srikanth Akula73570432020-04-06 19:19:49 -07001786 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1787
Florin Corasb0ffbee2019-07-21 19:23:46 -07001788 /*
1789 * Handle the new io events.
1790 */
1791
Florin Coras46b8b1a2021-05-17 19:09:33 -07001792 new_he = clib_llist_elt (wrk->event_elts, wrk->new_head);
1793 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Coras45b79732019-10-30 19:22:51 -07001794 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001795
Florin Coras16d974e2020-02-09 20:03:12 +00001796 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001797 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001798 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001799 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Coras16d974e2020-02-09 20:03:12 +00001800 ei = clib_llist_next_index (elt, evt_list);
1801 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001802 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001803 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001804
Srikanth Akula73570432020-04-06 19:19:49 -07001805 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1806
Florin Corasb0ffbee2019-07-21 19:23:46 -07001807 /*
Florin Coras45b79732019-10-30 19:22:51 -07001808 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001809 */
1810
Florin Coras45b79732019-10-30 19:22:51 -07001811 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001812 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001813 old_he = clib_llist_elt (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001814 ei = clib_llist_next_index (old_he, evt_list);
1815
Florin Coras89235c72020-11-02 19:00:10 -08001816 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001817 {
Florin Coras46b8b1a2021-05-17 19:09:33 -07001818 elt = clib_llist_elt (wrk->event_elts, ei);
Florin Corasdd97a482019-11-02 14:32:52 -07001819 next_ei = clib_llist_next_index (elt, evt_list);
1820 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001821
Florin Corasdb999df2020-09-21 10:45:56 -07001822 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001823
Florin Coras45b79732019-10-30 19:22:51 -07001824 if (ei == old_ti)
1825 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001826
1827 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001828 };
1829 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001830
Srikanth Akula73570432020-04-06 19:19:49 -07001831 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1832
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001833 if (vec_len (wrk->pending_tx_buffers))
1834 session_flush_pending_tx_buffers (wrk, node);
1835
Florin Coras0d60a0f2018-06-29 02:02:08 -07001836 vlib_node_increment_counter (vm, session_queue_node.index,
1837 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1838
Florin Corascca96182019-07-19 07:34:13 -07001839 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001840
Florin Coras7da88292021-03-18 15:04:34 -07001841 if (wrk->flags & SESSION_WRK_F_ADAPTIVE)
1842 session_wrk_update_state (wrk);
1843
Florin Coras0d60a0f2018-06-29 02:02:08 -07001844 return n_tx_packets;
1845}
1846
1847/* *INDENT-OFF* */
Filip Tehlar22efac32021-10-06 12:54:51 +00001848VLIB_REGISTER_NODE (session_queue_node) = {
Florin Coras0d60a0f2018-06-29 02:02:08 -07001849 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001850 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001851 .name = "session-queue",
1852 .format_trace = format_session_queue_trace,
1853 .type = VLIB_NODE_TYPE_INPUT,
Filip Tehlar22efac32021-10-06 12:54:51 +00001854 .n_errors = SESSION_QUEUE_N_ERROR,
1855 .error_counters = session_error_counters,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001856 .state = VLIB_NODE_STATE_DISABLED,
1857};
1858/* *INDENT-ON* */
1859
Dave Barach2a863912017-11-28 10:11:42 -05001860static clib_error_t *
Florin Coras7da88292021-03-18 15:04:34 -07001861session_wrk_tfd_read_ready (clib_file_t *cf)
1862{
1863 session_worker_t *wrk = session_main_get_worker (cf->private_data);
1864 u64 buf;
1865 int rv;
1866
1867 vlib_node_set_interrupt_pending (wrk->vm, session_queue_node.index);
1868 rv = read (wrk->timerfd, &buf, sizeof (buf));
1869 if (rv < 0 && errno != EAGAIN)
1870 clib_unix_warning ("failed");
1871 return 0;
1872}
1873
1874static clib_error_t *
1875session_wrk_tfd_write_ready (clib_file_t *cf)
1876{
1877 return 0;
1878}
1879
1880void
1881session_wrk_enable_adaptive_mode (session_worker_t *wrk)
1882{
1883 u32 thread_index = wrk->vm->thread_index;
1884 clib_file_t template = { 0 };
1885
1886 if ((wrk->timerfd = timerfd_create (CLOCK_MONOTONIC, TFD_NONBLOCK)) < 0)
1887 clib_warning ("timerfd_create");
1888
1889 template.read_function = session_wrk_tfd_read_ready;
1890 template.write_function = session_wrk_tfd_write_ready;
1891 template.file_descriptor = wrk->timerfd;
1892 template.private_data = thread_index;
1893 template.polling_thread_index = thread_index;
1894 template.description = format (0, "session-wrk-tfd-%u", thread_index);
1895
1896 wrk->timerfd_file = clib_file_add (&file_main, &template);
1897 wrk->flags |= SESSION_WRK_F_ADAPTIVE;
1898}
1899
1900static clib_error_t *
Dave Barach2a863912017-11-28 10:11:42 -05001901session_queue_exit (vlib_main_t * vm)
1902{
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001903 if (vlib_get_n_threads () < 2)
Dave Barach2a863912017-11-28 10:11:42 -05001904 return 0;
1905
1906 /*
1907 * Shut off (especially) worker-thread session nodes.
1908 * Otherwise, vpp can crash as the main thread unmaps the
1909 * API segment.
1910 */
1911 vlib_worker_thread_barrier_sync (vm);
1912 session_node_enable_disable (0 /* is_enable */ );
1913 vlib_worker_thread_barrier_release (vm);
1914 return 0;
1915}
1916
1917VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1918
Florin Corasfd542f12018-05-16 19:28:24 -07001919static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001920session_queue_run_on_main (vlib_main_t * vm)
1921{
1922 vlib_node_runtime_t *node;
1923
1924 node = vlib_node_get_runtime (vm, session_queue_node.index);
1925 return session_queue_node_fn (vm, node, 0);
1926}
1927
1928static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001929session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1930 vlib_frame_t * f)
1931{
Florin Corasfd542f12018-05-16 19:28:24 -07001932 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001933 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001934 uword event_type;
1935
1936 while (1)
1937 {
1938 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001939 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1940
1941 switch (event_type)
1942 {
Florin Coras5484daa2020-03-27 23:55:06 +00001943 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1944 /* Run session queue node on main thread */
1945 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001946 break;
1947 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001948 vlib_node_set_state (vm, session_queue_process_node.index,
1949 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001950 timeout = 100000.0;
1951 break;
1952 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001953 /* Timed out. Run on main to ensure all events are handled */
1954 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001955 break;
1956 }
1957 vec_reset_length (event_data);
1958 }
1959 return 0;
1960}
1961
1962/* *INDENT-OFF* */
1963VLIB_REGISTER_NODE (session_queue_process_node) =
1964{
1965 .function = session_queue_process,
1966 .type = VLIB_NODE_TYPE_PROCESS,
1967 .name = "session-queue-process",
1968 .state = VLIB_NODE_STATE_DISABLED,
1969};
1970/* *INDENT-ON* */
1971
Florin Coras653e43f2019-03-04 10:56:23 -08001972static_always_inline uword
1973session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1974 vlib_frame_t * frame)
1975{
1976 session_main_t *sm = &session_main;
1977 if (!sm->wrk[0].vpp_event_queue)
1978 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001979 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001980 return session_queue_node_fn (vm, node, frame);
1981}
1982
1983/* *INDENT-OFF* */
1984VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1985{
1986 .function = session_queue_pre_input_inline,
1987 .type = VLIB_NODE_TYPE_PRE_INPUT,
1988 .name = "session-queue-main",
1989 .state = VLIB_NODE_STATE_DISABLED,
1990};
1991/* *INDENT-ON* */
1992
Dave Barach68b0fb02017-02-28 15:15:56 -05001993/*
1994 * fd.io coding-style-patch-verification: ON
1995 *
1996 * Local Variables:
1997 * eval: (c-set-style "gnu")
1998 * End:
1999 */