blob: d49fa1e1ba62314998baace8fe135c88debec8c0 [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>
Dave Barach68b0fb02017-02-28 15:15:56 -050027
Florin Coras458089b2019-08-21 16:20:44 -070028#define app_check_thread_and_barrier(_fn, _arg) \
29 if (!vlib_thread_is_main_w_barrier ()) \
30 { \
31 vlib_rpc_call_main_thread (_fn, (u8 *) _arg, sizeof(*_arg)); \
32 return; \
33 }
Florin Coras2b81e3c2019-02-27 07:55:46 -080034
35static void
Florin Coras458089b2019-08-21 16:20:44 -070036session_mq_listen_handler (void *data)
Florin Coras2b81e3c2019-02-27 07:55:46 -080037{
Florin Coras458089b2019-08-21 16:20:44 -070038 session_listen_msg_t *mp = (session_listen_msg_t *) data;
39 vnet_listen_args_t _a, *a = &_a;
40 app_worker_t *app_wrk;
41 application_t *app;
42 int rv;
43
44 app_check_thread_and_barrier (session_mq_listen_handler, mp);
45
46 app = application_lookup (mp->client_index);
47 if (!app)
48 return;
49
50 clib_memset (a, 0, sizeof (*a));
51 a->sep.is_ip4 = mp->is_ip4;
52 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +000053 if (mp->is_ip4)
54 ip46_address_mask_ip4 (&a->sep.ip);
Florin Coras458089b2019-08-21 16:20:44 -070055 a->sep.port = mp->port;
56 a->sep.fib_index = mp->vrf;
57 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
58 a->sep.transport_proto = mp->proto;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020059 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +010060 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Coras458089b2019-08-21 16:20:44 -070061 a->app_index = app->app_index;
62 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +000063 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -070064
65 if ((rv = vnet_listen (a)))
66 clib_warning ("listen returned: %d", rv);
67
68 app_wrk = application_get_worker (app, mp->wrk_index);
69 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
70 return;
71}
72
73static void
74session_mq_listen_uri_handler (void *data)
75{
76 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
77 vnet_listen_args_t _a, *a = &_a;
78 app_worker_t *app_wrk;
79 application_t *app;
80 int rv;
81
82 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
83
84 app = application_lookup (mp->client_index);
85 if (!app)
86 return;
87
88 clib_memset (a, 0, sizeof (*a));
89 a->uri = (char *) mp->uri;
90 a->app_index = app->app_index;
91 rv = vnet_bind_uri (a);
92
93 app_wrk = application_get_worker (app, 0);
94 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
95}
96
97static void
98session_mq_connect_handler (void *data)
99{
100 session_connect_msg_t *mp = (session_connect_msg_t *) data;
101 vnet_connect_args_t _a, *a = &_a;
102 app_worker_t *app_wrk;
103 application_t *app;
104 int rv;
105
106 app_check_thread_and_barrier (session_mq_connect_handler, mp);
107
108 app = application_lookup (mp->client_index);
109 if (!app)
110 return;
111
112 clib_memset (a, 0, sizeof (*a));
113 a->sep.is_ip4 = mp->is_ip4;
114 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
115 a->sep.port = mp->port;
116 a->sep.transport_proto = mp->proto;
117 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700118 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000119 if (mp->is_ip4)
120 {
121 ip46_address_mask_ip4 (&a->sep.ip);
122 ip46_address_mask_ip4 (&a->sep.peer.ip);
123 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000124 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700125 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
126 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200127 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +0100128 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Corasd85666f2020-04-03 00:58:48 +0000129 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700130 if (mp->hostname_len)
131 {
132 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
133 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
134 }
135 a->api_context = mp->context;
136 a->app_index = app->app_index;
137 a->wrk_map_index = mp->wrk_index;
138
139 if ((rv = vnet_connect (a)))
140 {
Florin Coras57660d92020-04-04 22:45:34 +0000141 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700142 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700143 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700144 }
145
146 vec_free (a->sep_ext.hostname);
147}
148
149static void
150session_mq_connect_uri_handler (void *data)
151{
152 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
153 vnet_connect_args_t _a, *a = &_a;
154 app_worker_t *app_wrk;
155 application_t *app;
156 int rv;
157
158 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
159
160 app = application_lookup (mp->client_index);
161 if (!app)
162 return;
163
164 clib_memset (a, 0, sizeof (*a));
165 a->uri = (char *) mp->uri;
166 a->api_context = mp->context;
167 a->app_index = app->app_index;
168 if ((rv = vnet_connect_uri (a)))
169 {
170 clib_warning ("connect_uri returned: %d", rv);
171 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700172 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700173 }
174}
175
176static void
177session_mq_disconnect_handler (void *data)
178{
179 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
180 vnet_disconnect_args_t _a, *a = &_a;
181 application_t *app;
182
183 app = application_lookup (mp->client_index);
184 if (!app)
185 return;
186
187 a->app_index = app->app_index;
188 a->handle = mp->handle;
189 vnet_disconnect_session (a);
190}
191
192static void
193app_mq_detach_handler (void *data)
194{
195 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
196 vnet_app_detach_args_t _a, *a = &_a;
197 application_t *app;
198
199 app_check_thread_and_barrier (app_mq_detach_handler, mp);
200
201 app = application_lookup (mp->client_index);
202 if (!app)
203 return;
204
205 a->app_index = app->app_index;
206 a->api_client_index = mp->client_index;
207 vnet_application_detach (a);
208}
209
210static void
211session_mq_unlisten_handler (void *data)
212{
213 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
214 vnet_unlisten_args_t _a, *a = &_a;
215 app_worker_t *app_wrk;
216 application_t *app;
217 int rv;
218
219 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
220
221 app = application_lookup (mp->client_index);
222 if (!app)
223 return;
224
225 clib_memset (a, 0, sizeof (*a));
226 a->app_index = app->app_index;
227 a->handle = mp->handle;
228 a->wrk_map_index = mp->wrk_index;
229 if ((rv = vnet_unlisten (a)))
230 clib_warning ("unlisten returned: %d", rv);
231
232 app_wrk = application_get_worker (app, a->wrk_map_index);
233 if (!app_wrk)
234 return;
235
236 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800237}
238
Florin Coras52207f12018-07-12 14:48:06 -0700239static void
240session_mq_accepted_reply_handler (void *data)
241{
242 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
243 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800244 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700245 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800246 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700247
248 /* Server isn't interested, kill the session */
249 if (mp->retval)
250 {
251 a->app_index = mp->context;
252 a->handle = mp->handle;
253 vnet_disconnect_session (a);
254 return;
255 }
256
Florin Coras2b81e3c2019-02-27 07:55:46 -0800257 /* Mail this back from the main thread. We're not polling in main
258 * thread so we're using other workers for notifications. */
259 if (vlib_num_workers () && vlib_get_thread_index () != 0
260 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700261 {
Florin Coras458089b2019-08-21 16:20:44 -0700262 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
263 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800264 return;
265 }
266
267 s = session_get_from_handle_if_valid (mp->handle);
268 if (!s)
269 return;
270
271 app_wrk = app_worker_get (s->app_wrk_index);
272 if (app_wrk->app_index != mp->context)
273 {
274 clib_warning ("app doesn't own session");
275 return;
276 }
277
278 if (!session_has_transport (s))
279 {
Florin Coras653e43f2019-03-04 10:56:23 -0800280 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800281 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700282 return;
Florin Coras52207f12018-07-12 14:48:06 -0700283 }
284 else
285 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800286 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700287 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600288
289 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800290 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800291
292 /* Closed while waiting for app to reply. Resend disconnect */
293 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
294 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700295 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800296 s->session_state = old_state;
297 return;
298 }
Florin Coras52207f12018-07-12 14:48:06 -0700299 }
300}
301
302static void
303session_mq_reset_reply_handler (void *data)
304{
Florin Coras4af830c2018-12-04 09:21:36 -0800305 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700306 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700307 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800308 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700309 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700310 u32 index, thread_index;
311
312 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800313 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700314 if (!app)
315 return;
316
317 session_parse_handle (mp->handle, &index, &thread_index);
318 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800319
Florin Corasf1910322019-12-05 12:05:57 -0800320 /* No session or not the right session */
321 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800322 return;
323
Florin Coras15531972018-08-12 23:50:53 -0700324 app_wrk = app_worker_get (s->app_wrk_index);
325 if (!app_wrk || app_wrk->app_index != app->app_index)
326 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200327 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700328 mp->handle);
329 return;
330 }
Florin Coras52207f12018-07-12 14:48:06 -0700331
332 /* Client objected to resetting the session, log and continue */
333 if (mp->retval)
334 {
335 clib_warning ("client retval %d", mp->retval);
336 return;
337 }
338
339 /* This comes as a response to a reset, transport only waiting for
340 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800341 a->handle = mp->handle;
342 a->app_index = app->app_index;
343 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700344}
345
346static void
347session_mq_disconnected_handler (void *data)
348{
349 session_disconnected_reply_msg_t *rmp;
350 vnet_disconnect_args_t _a, *a = &_a;
351 svm_msg_q_msg_t _msg, *msg = &_msg;
352 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700353 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700354 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800355 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700356 application_t *app;
357 int rv = 0;
358
359 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700360 if (!(s = session_get_from_handle_if_valid (mp->handle)))
361 {
362 clib_warning ("could not disconnect handle %llu", mp->handle);
363 return;
364 }
Florin Coras15531972018-08-12 23:50:53 -0700365 app_wrk = app_worker_get (s->app_wrk_index);
366 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700367 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700368 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700369 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700370 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700371 return;
Florin Coras52207f12018-07-12 14:48:06 -0700372 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700373
374 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700375 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700376 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700377
Florin Coras15531972018-08-12 23:50:53 -0700378 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700379 SESSION_MQ_CTRL_EVT_RING,
380 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700381 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400382 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800383 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700384 rmp = (session_disconnected_reply_msg_t *) evt->data;
385 rmp->handle = mp->handle;
386 rmp->context = mp->context;
387 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700388 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700389}
390
391static void
392session_mq_disconnected_reply_handler (void *data)
393{
394 session_disconnected_reply_msg_t *mp;
395 vnet_disconnect_args_t _a, *a = &_a;
396 application_t *app;
397
398 mp = (session_disconnected_reply_msg_t *) data;
399
400 /* Client objected to disconnecting the session, log and continue */
401 if (mp->retval)
402 {
403 clib_warning ("client retval %d", mp->retval);
404 return;
405 }
406
407 /* Disconnect has been confirmed. Confirm close to transport */
408 app = application_lookup (mp->context);
409 if (app)
410 {
411 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700412 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700413 vnet_disconnect_session (a);
414 }
415}
416
Florin Coras30e79c22019-01-02 19:31:22 -0800417static void
418session_mq_worker_update_handler (void *data)
419{
420 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
421 session_worker_update_reply_msg_t *rmp;
422 svm_msg_q_msg_t _msg, *msg = &_msg;
423 app_worker_t *app_wrk;
424 u32 owner_app_wrk_map;
425 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800426 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800427 application_t *app;
428
429 app = application_lookup (mp->client_index);
430 if (!app)
431 return;
432 if (!(s = session_get_from_handle_if_valid (mp->handle)))
433 {
434 clib_warning ("invalid handle %llu", mp->handle);
435 return;
436 }
437 app_wrk = app_worker_get (s->app_wrk_index);
438 if (app_wrk->app_index != app->app_index)
439 {
440 clib_warning ("app %u does not own session %llu", app->app_index,
441 mp->handle);
442 return;
443 }
444 owner_app_wrk_map = app_wrk->wrk_map_index;
445 app_wrk = application_get_worker (app, mp->wrk_index);
446
447 /* This needs to come from the new owner */
448 if (mp->req_wrk_index == owner_app_wrk_map)
449 {
450 session_req_worker_update_msg_t *wump;
451
452 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
453 SESSION_MQ_CTRL_EVT_RING,
454 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800455 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
456 clib_memset (evt, 0, sizeof (*evt));
457 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
458 wump = (session_req_worker_update_msg_t *) evt->data;
459 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700460 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800461 return;
462 }
463
464 app_worker_own_session (app_wrk, s);
465
466 /*
467 * Send reply
468 */
469 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
470 SESSION_MQ_CTRL_EVT_RING,
471 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800472 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
473 clib_memset (evt, 0, sizeof (*evt));
474 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
475 rmp = (session_worker_update_reply_msg_t *) evt->data;
476 rmp->handle = mp->handle;
Florin Coras288eaab2019-02-03 15:26:14 -0800477 rmp->rx_fifo = pointer_to_uword (s->rx_fifo);
478 rmp->tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800479 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700480 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800481
482 /*
483 * Retransmit messages that may have been lost
484 */
Florin Coras288eaab2019-02-03 15:26:14 -0800485 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800486 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800487
Florin Coras288eaab2019-02-03 15:26:14 -0800488 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800489 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800490
491 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700492 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800493}
494
Dave Barach68b0fb02017-02-28 15:15:56 -0500495vlib_node_registration_t session_queue_node;
496
497typedef struct
498{
499 u32 session_index;
500 u32 server_thread_index;
501} session_queue_trace_t;
502
503/* packet trace format function */
504static u8 *
505format_session_queue_trace (u8 * s, va_list * args)
506{
507 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
508 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
509 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
510
Florin Coras30928f82020-01-27 19:21:28 -0800511 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500512 t->session_index, t->server_thread_index);
513 return s;
514}
515
Florin Coras6792ec02017-03-13 03:49:51 -0700516#define foreach_session_queue_error \
517_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700518_(TIMER, "Timer events") \
519_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500520
521typedef enum
522{
523#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
524 foreach_session_queue_error
525#undef _
526 SESSION_QUEUE_N_ERROR,
527} session_queue_error_t;
528
529static char *session_queue_error_strings[] = {
530#define _(sym,string) string,
531 foreach_session_queue_error
532#undef _
533};
534
Florin Coras0d60a0f2018-06-29 02:02:08 -0700535enum
536{
537 SESSION_TX_NO_BUFFERS = -2,
538 SESSION_TX_NO_DATA,
539 SESSION_TX_OK
540};
541
Florin Coras66cf5e02018-06-08 09:17:39 -0700542static void
543session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
544 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800545 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700546{
Florin Coras8e43d042018-05-04 15:46:57 -0700547 session_queue_trace_t *t;
Florin Coras66cf5e02018-06-08 09:17:39 -0700548 vlib_buffer_t *b;
549 int i;
550
551 for (i = 0; i < clib_min (n_trace, n_segs); i++)
552 {
Florin Coras30928f82020-01-27 19:21:28 -0800553 b = vlib_get_buffer (vm, to_next[i]);
Florin Coras66cf5e02018-06-08 09:17:39 -0700554 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
Florin Coras66cf5e02018-06-08 09:17:39 -0700555 t = vlib_add_trace (vm, node, b, sizeof (*t));
556 t->session_index = s->session_index;
557 t->server_thread_index = s->thread_index;
558 }
Florin Coras4df38712018-06-20 12:44:16 -0700559 vlib_set_trace_count (vm, node, n_trace - i);
Florin Coras8e43d042018-05-04 15:46:57 -0700560}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700561
Florin Coras8e43d042018-05-04 15:46:57 -0700562always_inline void
563session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
564 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
565{
Florin Coras8e43d042018-05-04 15:46:57 -0700566 vlib_buffer_t *chain_b, *prev_b;
567 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800568 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700569 u16 len_to_deq, n_bytes_read;
570 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700571
Florin Coras31c99552019-03-01 13:00:58 -0800572 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700573 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
574 b->total_length_not_including_first_buffer = 0;
575
576 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000577 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700578 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700579 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700580 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700581 {
Florin Coras8e43d042018-05-04 15:46:57 -0700582 prev_b = chain_b;
583 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700584
585 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700586 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700587 chain_b = vlib_get_buffer (vm, chain_bi0);
588 chain_b->current_data = 0;
589 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700590 if (peek_data)
591 {
Florin Coras288eaab2019-02-03 15:26:14 -0800592 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000593 ctx->sp.tx_offset, len_to_deq, data);
594 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700595 }
596 else
597 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200598 if (ctx->transport_vft->transport_options.tx_type ==
599 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700600 {
Florin Coras288eaab2019-02-03 15:26:14 -0800601 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700602 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700603 u16 deq_now;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700604 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700605 len_to_deq);
606 n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
607 data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700608 ASSERT (n_bytes_read > 0);
609
610 hdr->data_offset += n_bytes_read;
611 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800612 {
613 u32 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
614 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000615 if (ctx->left_to_snd > n_bytes_read)
616 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
617 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800618 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000619 else if (ctx->left_to_snd == n_bytes_read)
620 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
621 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700622 }
623 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700624 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
625 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700626 }
Florin Coras8e43d042018-05-04 15:46:57 -0700627 ASSERT (n_bytes_read == len_to_deq);
628 chain_b->current_length = n_bytes_read;
629 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700630
631 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700632 prev_b->next_buffer = chain_bi0;
633 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700634
635 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700636 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700637
Florin Corasb2215d62017-08-01 16:56:58 -0700638 to_deq -= n_bytes_read;
639 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700640 break;
641 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700642 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700643 && b->total_length_not_including_first_buffer == left_from_seg);
644 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700645}
646
Florin Coras8e43d042018-05-04 15:46:57 -0700647always_inline void
648session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
649 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
650{
651 u32 len_to_deq;
652 u8 *data0;
653 int n_bytes_read;
654
655 /*
656 * Start with the first buffer in chain
657 */
658 b->error = 0;
659 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
660 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700661
Florin Coras1ee78302019-02-05 15:51:15 -0800662 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700663 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
664
Florin Coras7fb0fe12018-04-09 09:24:52 -0700665 if (peek_data)
666 {
Florin Coras70f879d2020-03-13 17:54:42 +0000667 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700668 len_to_deq, data0);
669 ASSERT (n_bytes_read > 0);
670 /* Keep track of progress locally, transport is also supposed to
671 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000672 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700673 }
674 else
675 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200676 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700677 {
678 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800679 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700680 u16 deq_now;
681 u32 offset;
682
683 ASSERT (hdr->data_length > hdr->data_offset);
684 deq_now = clib_min (hdr->data_length - hdr->data_offset,
685 len_to_deq);
686 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
687 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
688 ASSERT (n_bytes_read > 0);
689
690 if (ctx->s->session_state == SESSION_STATE_LISTENING)
691 {
692 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
693 ctx->tc->rmt_port = hdr->rmt_port;
694 }
695 hdr->data_offset += n_bytes_read;
696 if (hdr->data_offset == hdr->data_length)
697 {
698 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
699 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000700 if (ctx->left_to_snd > n_bytes_read)
701 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
702 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700703 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000704 else if (ctx->left_to_snd == n_bytes_read)
705 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
706 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700707 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700708 else
709 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700710 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
711 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700712 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700713 }
714 }
Florin Coras8e43d042018-05-04 15:46:57 -0700715 b->current_length = n_bytes_read;
716 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500717
Florin Coras8e43d042018-05-04 15:46:57 -0700718 /*
719 * Fill in the remaining buffers in the chain, if any
720 */
721 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
722 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700723}
724
725always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800726session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700727{
728 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800729 {
Florin Corasa6789742019-08-07 19:12:38 -0700730 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
731 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700732 /* Can retransmit for closed sessions but can't send new data if
733 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700734 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700735 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700736 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
737 {
738 /* Allow closed transports to still send custom packets.
739 * For instance, tcp may want to send acks in time-wait. */
740 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
741 && (s->flags & SESSION_F_CUSTOM_TX))
742 return 0;
743 return 2;
744 }
Florin Corase04c2992017-03-01 08:17:34 -0800745 }
Florin Coras8e43d042018-05-04 15:46:57 -0700746 return 0;
747}
Dave Barach68b0fb02017-02-28 15:15:56 -0500748
Florin Coras8e43d042018-05-04 15:46:57 -0700749always_inline transport_connection_t *
750session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
751{
752 if (peek_data)
753 {
754 return ctx->transport_vft->get_connection (ctx->s->connection_index,
755 ctx->s->thread_index);
756 }
757 else
758 {
759 if (ctx->s->session_state == SESSION_STATE_LISTENING)
760 return ctx->transport_vft->get_listener (ctx->s->connection_index);
761 else
762 {
763 return ctx->transport_vft->get_connection (ctx->s->connection_index,
764 ctx->s->thread_index);
765 }
766 }
767}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800768
Florin Coras8e43d042018-05-04 15:46:57 -0700769always_inline void
770session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700771 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700772{
773 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +0000774
775 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -0600776 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +0000777
Dave Barach68b0fb02017-02-28 15:15:56 -0500778 if (peek_data)
779 {
Florin Coras9d063042017-09-14 03:08:00 -0400780 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000781 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700782 {
783 ctx->max_len_to_snd = 0;
784 return;
785 }
Florin Coras70f879d2020-03-13 17:54:42 +0000786 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500787 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700788 else
789 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200790 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700791 {
Florin Coras6e0ee952020-04-20 21:07:06 +0000792 u32 len, chain_limit;
793
Florin Coras8e43d042018-05-04 15:46:57 -0700794 if (ctx->max_dequeue <= sizeof (ctx->hdr))
795 {
796 ctx->max_len_to_snd = 0;
797 return;
798 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000799
Florin Coras288eaab2019-02-03 15:26:14 -0800800 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700801 (u8 *) & ctx->hdr);
802 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000803 len = ctx->hdr.data_length - ctx->hdr.data_offset;
804
805 /* Process multiple dgrams if smaller than min (buf_space, mss).
806 * This avoids handling multiple dgrams if they require buffer
807 * chains */
808 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
809 ctx->sp.snd_mss);
810 if (ctx->hdr.data_length <= chain_limit)
811 {
812 u32 first_dgram_len, dgram_len, offset, max_offset;
813 session_dgram_hdr_t hdr;
814
815 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
816 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
817 first_dgram_len = len;
818 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
819
820 while (offset < max_offset)
821 {
822 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
823 (u8 *) & hdr);
824 ASSERT (hdr.data_length > hdr.data_offset);
825 dgram_len = hdr.data_length - hdr.data_offset;
826 if (len + dgram_len > ctx->max_dequeue
827 || first_dgram_len != dgram_len)
828 break;
829 len += dgram_len;
830 offset += sizeof (hdr) + hdr.data_length;
831 }
832 }
833
834 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700835 }
836 }
Florin Coras8e43d042018-05-04 15:46:57 -0700837 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700838
839 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000840 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700841 {
842 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000843 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
844 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
845 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700846 /* TODO Nagle ? */
847 }
848 else
849 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700850 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000851 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700852 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500853
Florin Corasf08f26d2018-05-10 13:20:47 -0700854 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000855 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700856 if (ctx->n_segs_per_evt > max_segs)
857 {
858 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000859 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700860 }
861
Florin Coras1ee78302019-02-05 15:51:15 -0800862 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +0800863 if (ctx->n_segs_per_evt > 1)
864 {
865 u32 n_bytes_last_seg, n_bufs_last_seg;
866
867 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
868 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
869 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
870 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
871 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
872 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
873 + n_bufs_last_seg;
874 }
875 else
876 {
877 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
878 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
879 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
880 }
881
Florin Coras70f879d2020-03-13 17:54:42 +0000882 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
883 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800884 n_bytes_per_buf -
885 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700886}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700887
Florin Corasaaf64a22020-02-23 01:37:34 +0000888always_inline void
889session_tx_maybe_reschedule (session_worker_t * wrk,
890 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +0000891 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +0000892{
893 session_t *s = ctx->s;
894
895 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +0000896 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +0000897 if (svm_fifo_set_event (s->tx_fifo))
898 session_evt_add_head_old (wrk, elt);
899}
900
Florin Coras8e43d042018-05-04 15:46:57 -0700901always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700902session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
903 vlib_node_runtime_t * node,
904 session_evt_elt_t * elt,
905 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700906{
Simon Zhangae16a982020-03-31 20:56:22 +0800907 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700908 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700909 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700910 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700911 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700912 transport_proto_t tp;
913 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700914 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700915
Florin Coras1bcad5c2019-01-09 20:04:38 -0800916 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700917 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700918 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700919 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700920 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700921 }
922
Florin Coras1bcad5c2019-01-09 20:04:38 -0800923 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras26dd6de2019-07-23 23:54:47 -0700924 max_burst = VLIB_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700925
Florin Coras1bcad5c2019-01-09 20:04:38 -0800926 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700927 ctx->transport_vft = transport_protocol_get_vft (tp);
928 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800929
930 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
931 {
932 if (ctx->transport_vft->flush_data)
933 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700934 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -0800935 }
936
Florin Coras26dd6de2019-07-23 23:54:47 -0700937 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
938 {
939 u32 n_custom_tx;
940 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +0000941 ctx->sp.max_burst_size = max_burst;
942 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -0700943 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700944 if (PREDICT_FALSE
945 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
946 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700947 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +0000948 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -0700949 {
950 session_evt_add_old (wrk, elt);
951 return SESSION_TX_OK;
952 }
953 }
954
Florin Coras70f879d2020-03-13 17:54:42 +0000955 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -0700956
Florin Coras70f879d2020-03-13 17:54:42 +0000957 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -0700958 {
Florin Coras6080e0d2020-03-13 20:39:43 +0000959 /* If the deschedule flag was set, remove session from scheduler.
960 * Transport is responsible for rescheduling this session. */
961 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
962 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +0000963 /* Request to postpone the session, e.g., zero-wnd and transport
964 * is not currently probing */
965 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
966 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +0000967 /* This flow queue is "empty" so it should be re-evaluated before
968 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +0000969 else
Florin Coras6080e0d2020-03-13 20:39:43 +0000970 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +0000971
Florin Coras0d60a0f2018-06-29 02:02:08 -0700972 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700973 }
974
Florin Coras11e9e352019-11-13 19:09:47 -0800975 if (transport_connection_is_tx_paced (ctx->tc))
976 {
977 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
978 if (snd_space < TRANSPORT_PACER_MIN_BURST)
979 {
980 session_evt_add_head_old (wrk, elt);
981 return SESSION_TX_NO_DATA;
982 }
Florin Coras70f879d2020-03-13 17:54:42 +0000983 snd_space = clib_min (ctx->sp.snd_space, snd_space);
984 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
985 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -0800986 }
987
Florin Coras8e43d042018-05-04 15:46:57 -0700988 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -0700989 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -0700990
Florin Coras8e43d042018-05-04 15:46:57 -0700991 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -0700992 {
Florin Coras11e9e352019-11-13 19:09:47 -0800993 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +0000994 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -0700995 return SESSION_TX_NO_DATA;
996 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500997
Simon Zhangae16a982020-03-31 20:56:22 +0800998 vec_validate_aligned (wrk->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -0800999 CLIB_CACHE_LINE_BYTES);
Simon Zhangae16a982020-03-31 20:56:22 +08001000 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, ctx->n_bufs_needed);
1001 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001002 {
Florin Coras2068fd42019-01-31 14:35:50 -08001003 if (n_bufs)
1004 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001005 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001006 vlib_node_increment_counter (wrk->vm, node->node_index,
1007 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001008 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001009 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001010
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001011 transport_connection_update_tx_bytes (ctx->tc, ctx->max_len_to_snd);
1012
Florin Corasf08f26d2018-05-10 13:20:47 -07001013 ctx->left_to_snd = ctx->max_len_to_snd;
1014 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001015
1016 while (n_left >= 4)
1017 {
1018 vlib_buffer_t *b0, *b1;
1019 u32 bi0, bi1;
1020
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001021 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001022 pb = vlib_get_buffer (vm, pbi);
1023 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001024 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001025 pb = vlib_get_buffer (vm, pbi);
1026 vlib_prefetch_buffer_header (pb, STORE);
1027
Florin Coras8a754f12019-10-16 22:35:18 -07001028 bi0 = wrk->tx_buffers[--n_bufs];
1029 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001030
1031 b0 = vlib_get_buffer (vm, bi0);
1032 b1 = vlib_get_buffer (vm, bi1);
1033
1034 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1035 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1036
1037 ctx->transport_vft->push_header (ctx->tc, b0);
1038 ctx->transport_vft->push_header (ctx->tc, b1);
1039
Florin Coras66cf5e02018-06-08 09:17:39 -07001040 n_left -= 2;
1041
1042 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
1043 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
1044
Florin Coras8a754f12019-10-16 22:35:18 -07001045 vec_add1 (wrk->pending_tx_buffers, bi0);
1046 vec_add1 (wrk->pending_tx_buffers, bi1);
1047 vec_add1 (wrk->pending_tx_nexts, next_index);
1048 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001049 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001050 while (n_left)
1051 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001052 vlib_buffer_t *b0;
1053 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001054
Florin Coras91ca4622018-06-30 11:27:59 -07001055 if (n_left > 1)
1056 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001057 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001058 pb = vlib_get_buffer (vm, pbi);
1059 vlib_prefetch_buffer_header (pb, STORE);
1060 }
1061
Florin Coras8a754f12019-10-16 22:35:18 -07001062 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001063 b0 = vlib_get_buffer (vm, bi0);
1064 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001065
Florin Coras66cf5e02018-06-08 09:17:39 -07001066 /* Ask transport to push header after current_length and
1067 * total_length_not_including_first_buffer are updated */
1068 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001069
Florin Coras66cf5e02018-06-08 09:17:39 -07001070 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001071
Florin Coras66cf5e02018-06-08 09:17:39 -07001072 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001073
Florin Coras8a754f12019-10-16 22:35:18 -07001074 vec_add1 (wrk->pending_tx_buffers, bi0);
1075 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001076 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001077
Florin Coras60183db2019-07-20 15:53:16 -07001078 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001079 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001080 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001081
Florin Coras2068fd42019-01-31 14:35:50 -08001082 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001083 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1084
Florin Corasf08f26d2018-05-10 13:20:47 -07001085 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001086
Florin Corascca96182019-07-19 07:34:13 -07001087 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1088 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1089
Florin Corasf08f26d2018-05-10 13:20:47 -07001090 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001091
1092 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1093 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001094 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001095 session_evt_add_old (wrk, elt);
1096 else
Florin Coras70f879d2020-03-13 17:54:42 +00001097 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001098
Florin Corasab57edb2020-04-07 03:46:07 +00001099 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001100 {
Florin Coras2d379d82019-06-28 12:45:12 -07001101 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, ctx->max_len_to_snd))
Florin Coras0e573f52019-05-07 16:28:16 -07001102 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001103 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001104 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001105}
1106
1107int
Florin Coras60183db2019-07-20 15:53:16 -07001108session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1109 vlib_node_runtime_t * node,
1110 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001111{
Florin Coras60183db2019-07-20 15:53:16 -07001112 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001113}
1114
1115int
Florin Coras60183db2019-07-20 15:53:16 -07001116session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1117 vlib_node_runtime_t * node,
1118 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001119{
Florin Coras60183db2019-07-20 15:53:16 -07001120 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001121}
1122
Florin Coras371ca502018-02-21 12:07:41 -08001123int
Florin Coras60183db2019-07-20 15:53:16 -07001124session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001125 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001126 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001127{
Florin Coras9f86d222020-03-23 15:34:22 +00001128 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001129 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001130 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001131
Florin Corasc0737e92019-03-04 14:19:39 -08001132 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001133 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001134
1135 /* Clear custom-tx flag used to request reschedule for tx */
1136 s->flags &= ~SESSION_F_CUSTOM_TX;
1137
Florin Coras9f86d222020-03-23 15:34:22 +00001138 sp->max_burst_size = clib_min (VLIB_FRAME_SIZE - *n_tx_packets,
1139 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001140
Florin Coras9f86d222020-03-23 15:34:22 +00001141 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1142 *n_tx_packets += n_packets;
1143
1144 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001145 {
1146 session_evt_add_old (wrk, elt);
1147 }
Florin Coras9f86d222020-03-23 15:34:22 +00001148 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001149 {
1150 svm_fifo_unset_event (s->tx_fifo);
1151 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1152 if (svm_fifo_set_event (s->tx_fifo))
1153 session_evt_add_head_old (wrk, elt);
1154 }
1155
1156 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001157}
1158
Florin Coras288eaab2019-02-03 15:26:14 -08001159always_inline session_t *
Florin Coras52207f12018-07-12 14:48:06 -07001160session_event_get_session (session_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -07001161{
Florin Corasc0737e92019-03-04 14:19:39 -08001162 return session_get_if_valid (e->session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -07001163}
1164
Florin Coras60183db2019-07-20 15:53:16 -07001165always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001166session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1167{
1168 clib_llist_index_t ei;
1169 void (*fp) (void *);
1170 session_event_t *e;
1171 session_t *s;
1172
1173 ei = clib_llist_entry_index (wrk->event_elts, elt);
1174 e = &elt->evt;
1175
1176 switch (e->event_type)
1177 {
1178 case SESSION_CTRL_EVT_RPC:
1179 fp = e->rpc_args.fp;
1180 (*fp) (e->rpc_args.arg);
1181 break;
1182 case SESSION_CTRL_EVT_CLOSE:
1183 s = session_get_from_handle_if_valid (e->session_handle);
1184 if (PREDICT_FALSE (!s))
1185 break;
1186 session_transport_close (s);
1187 break;
1188 case SESSION_CTRL_EVT_RESET:
1189 s = session_get_from_handle_if_valid (e->session_handle);
1190 if (PREDICT_FALSE (!s))
1191 break;
1192 session_transport_reset (s);
1193 break;
1194 case SESSION_CTRL_EVT_LISTEN:
1195 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1196 break;
1197 case SESSION_CTRL_EVT_LISTEN_URI:
1198 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1199 break;
1200 case SESSION_CTRL_EVT_UNLISTEN:
1201 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1202 break;
1203 case SESSION_CTRL_EVT_CONNECT:
1204 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1205 break;
1206 case SESSION_CTRL_EVT_CONNECT_URI:
1207 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1208 break;
1209 case SESSION_CTRL_EVT_DISCONNECT:
1210 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1211 break;
1212 case SESSION_CTRL_EVT_DISCONNECTED:
1213 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1214 break;
1215 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1216 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1217 break;
1218 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1219 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1220 elt));
1221 break;
1222 case SESSION_CTRL_EVT_RESET_REPLY:
1223 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1224 break;
1225 case SESSION_CTRL_EVT_WORKER_UPDATE:
1226 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1227 break;
1228 case SESSION_CTRL_EVT_APP_DETACH:
1229 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1230 break;
1231 default:
1232 clib_warning ("unhandled event type %d", e->event_type);
1233 }
1234
1235 /* Regrab elements in case pool moved */
1236 elt = pool_elt_at_index (wrk->event_elts, ei);
1237 if (!clib_llist_elt_is_linked (elt, evt_list))
1238 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001239 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001240 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1241 session_evt_ctrl_data_free (wrk, elt);
1242 session_evt_elt_free (wrk, elt);
1243 }
Srikanth Akula73570432020-04-06 19:19:49 -07001244 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001245}
1246
1247always_inline void
1248session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
1249 session_evt_elt_t * elt, u32 thread_index,
1250 int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001251{
Florin Coras60183db2019-07-20 15:53:16 -07001252 session_main_t *smm = &session_main;
1253 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001254 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001255 session_event_t *e;
1256 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001257
Florin Corasb0ffbee2019-07-21 19:23:46 -07001258 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001259 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001260
Florin Coras60183db2019-07-20 15:53:16 -07001261 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001262 {
Florin Coras60183db2019-07-20 15:53:16 -07001263 case SESSION_IO_EVT_TX_FLUSH:
1264 case SESSION_IO_EVT_TX:
Florin Coras60183db2019-07-20 15:53:16 -07001265 s = session_event_get_session (e, thread_index);
1266 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001267 break;
Florin Coras60183db2019-07-20 15:53:16 -07001268 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1269 wrk->ctx.s = s;
1270 /* Spray packets in per session type frames, since they go to
1271 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001272 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001273 break;
1274 case SESSION_IO_EVT_RX:
1275 s = session_event_get_session (e, thread_index);
1276 if (!s)
1277 break;
1278 transport_app_rx_evt (session_get_transport_proto (s),
1279 s->connection_index, s->thread_index);
1280 break;
Florin Coras60183db2019-07-20 15:53:16 -07001281 case SESSION_IO_EVT_BUILTIN_RX:
1282 s = session_event_get_session (e, thread_index);
1283 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1284 break;
1285 svm_fifo_unset_event (s->rx_fifo);
1286 app_wrk = app_worker_get (s->app_wrk_index);
1287 app_worker_builtin_rx (app_wrk, s);
1288 break;
1289 case SESSION_IO_EVT_BUILTIN_TX:
1290 s = session_get_from_handle_if_valid (e->session_handle);
1291 wrk->ctx.s = s;
1292 if (PREDICT_TRUE (s != 0))
1293 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1294 break;
Florin Coras60183db2019-07-20 15:53:16 -07001295 default:
1296 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001297 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001298
Srikanth Akula73570432020-04-06 19:19:49 -07001299 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1300
Florin Corasb0ffbee2019-07-21 19:23:46 -07001301 /* Regrab elements in case pool moved */
1302 elt = pool_elt_at_index (wrk->event_elts, ei);
1303 if (!clib_llist_elt_is_linked (elt, evt_list))
1304 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001305}
1306
Florin Coras458089b2019-08-21 16:20:44 -07001307/* *INDENT-OFF* */
1308static const u32 session_evt_msg_sizes[] = {
1309#define _(symc, sym) \
1310 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1311 foreach_session_ctrl_evt
1312#undef _
1313};
1314/* *INDENT-ON* */
1315
1316always_inline void
1317session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1318{
1319 session_evt_elt_t *elt;
1320
1321 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1322 {
1323 elt = session_evt_alloc_ctrl (wrk);
1324 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1325 {
1326 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1327 elt->evt.event_type = evt->event_type;
1328 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1329 session_evt_msg_sizes[evt->event_type]);
1330 }
1331 else
1332 {
1333 /* Internal control events fit into io events footprint */
1334 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1335 }
1336 }
1337 else
1338 {
1339 elt = session_evt_alloc_new (wrk);
1340 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1341 }
1342}
1343
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001344static void
1345session_flush_pending_tx_buffers (session_worker_t * wrk,
1346 vlib_node_runtime_t * node)
1347{
1348 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1349 wrk->pending_tx_nexts,
1350 vec_len (wrk->pending_tx_nexts));
1351 vec_reset_length (wrk->pending_tx_buffers);
1352 vec_reset_length (wrk->pending_tx_nexts);
1353}
1354
Florin Coras0d60a0f2018-06-29 02:02:08 -07001355static uword
1356session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1357 vlib_frame_t * frame)
1358{
Florin Coras31c99552019-03-01 13:00:58 -08001359 session_main_t *smm = vnet_get_session_main ();
Florin Coras2062ec02019-07-15 13:15:18 -07001360 u32 thread_index = vm->thread_index, n_to_dequeue;
Florin Coras31c99552019-03-01 13:00:58 -08001361 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001362 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras16d974e2020-02-09 20:03:12 +00001363 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras3c2fed52018-07-04 04:15:05 -07001364 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras11166672020-04-13 01:20:25 +00001365 int i = 0, n_tx_packets;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001366 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001367 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001368
Florin Corascca96182019-07-19 07:34:13 -07001369 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001370
Florin Coras60183db2019-07-20 15:53:16 -07001371 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001372 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Coras60183db2019-07-20 15:53:16 -07001373
Florin Coras0d60a0f2018-06-29 02:02:08 -07001374 /*
1375 * Update transport time
1376 */
Florin Coras60183db2019-07-20 15:53:16 -07001377 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001378 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001379 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001380
Florin Corasb0ffbee2019-07-21 19:23:46 -07001381 /*
1382 * Dequeue and handle new events
1383 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001384
Florin Coras5f56d732018-10-30 10:21:59 -07001385 /* Try to dequeue what is available. Don't wait for lock.
1386 * XXX: we may need priorities here */
1387 mq = wrk->vpp_event_queue;
1388 n_to_dequeue = svm_msg_q_size (mq);
1389 if (n_to_dequeue && svm_msg_q_try_lock (mq) == 0)
1390 {
1391 for (i = 0; i < n_to_dequeue; i++)
1392 {
Florin Coras5f56d732018-10-30 10:21:59 -07001393 svm_msg_q_sub_w_lock (mq, msg);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001394 evt = svm_msg_q_msg_data (mq, msg);
Florin Coras458089b2019-08-21 16:20:44 -07001395 session_evt_add_to_list (wrk, evt);
Florin Coras5f56d732018-10-30 10:21:59 -07001396 svm_msg_q_free_msg (mq, msg);
1397 }
1398 svm_msg_q_unlock (mq);
1399 }
1400
Florin Coras11166672020-04-13 01:20:25 +00001401 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_to_dequeue, !i);
1402
Florin Corasb0ffbee2019-07-21 19:23:46 -07001403 /*
1404 * Handle control events
1405 */
1406
1407 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1408
1409 /* *INDENT-OFF* */
1410 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1411 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001412 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001413 }));
1414 /* *INDENT-ON* */
1415
Srikanth Akula73570432020-04-06 19:19:49 -07001416 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1417
Florin Corasb0ffbee2019-07-21 19:23:46 -07001418 /*
1419 * Handle the new io events.
1420 */
1421
1422 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001423 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1424 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001425
Florin Coras16d974e2020-02-09 20:03:12 +00001426 ei = clib_llist_next_index (new_he, evt_list);
1427 while (ei != wrk->new_head && n_tx_packets < VLIB_FRAME_SIZE)
1428 {
1429 elt = pool_elt_at_index (wrk->event_elts, ei);
1430 ei = clib_llist_next_index (elt, evt_list);
1431 clib_llist_remove (wrk->event_elts, evt_list, elt);
1432 session_event_dispatch_io (wrk, node, elt, thread_index, &n_tx_packets);
1433 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001434
Srikanth Akula73570432020-04-06 19:19:49 -07001435 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1436
Florin Corasb0ffbee2019-07-21 19:23:46 -07001437 /*
Florin Coras45b79732019-10-30 19:22:51 -07001438 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001439 */
1440
Florin Coras45b79732019-10-30 19:22:51 -07001441 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001442 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001443 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001444 ei = clib_llist_next_index (old_he, evt_list);
1445
Florin Coras45b79732019-10-30 19:22:51 -07001446 while (n_tx_packets < VLIB_FRAME_SIZE)
1447 {
Florin Corasdd97a482019-11-02 14:32:52 -07001448 elt = pool_elt_at_index (wrk->event_elts, ei);
1449 next_ei = clib_llist_next_index (elt, evt_list);
1450 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001451
Florin Coras45b79732019-10-30 19:22:51 -07001452 session_event_dispatch_io (wrk, node, elt, thread_index,
1453 &n_tx_packets);
1454
Florin Coras45b79732019-10-30 19:22:51 -07001455 if (ei == old_ti)
1456 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001457
1458 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001459 };
1460 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001461
Srikanth Akula73570432020-04-06 19:19:49 -07001462 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1463
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001464 if (vec_len (wrk->pending_tx_buffers))
1465 session_flush_pending_tx_buffers (wrk, node);
1466
Florin Coras0d60a0f2018-06-29 02:02:08 -07001467 vlib_node_increment_counter (vm, session_queue_node.index,
1468 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1469
Florin Corascca96182019-07-19 07:34:13 -07001470 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001471
1472 return n_tx_packets;
1473}
1474
1475/* *INDENT-OFF* */
1476VLIB_REGISTER_NODE (session_queue_node) =
1477{
1478 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001479 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001480 .name = "session-queue",
1481 .format_trace = format_session_queue_trace,
1482 .type = VLIB_NODE_TYPE_INPUT,
1483 .n_errors = ARRAY_LEN (session_queue_error_strings),
1484 .error_strings = session_queue_error_strings,
1485 .state = VLIB_NODE_STATE_DISABLED,
1486};
1487/* *INDENT-ON* */
1488
Dave Barach2a863912017-11-28 10:11:42 -05001489static clib_error_t *
1490session_queue_exit (vlib_main_t * vm)
1491{
1492 if (vec_len (vlib_mains) < 2)
1493 return 0;
1494
1495 /*
1496 * Shut off (especially) worker-thread session nodes.
1497 * Otherwise, vpp can crash as the main thread unmaps the
1498 * API segment.
1499 */
1500 vlib_worker_thread_barrier_sync (vm);
1501 session_node_enable_disable (0 /* is_enable */ );
1502 vlib_worker_thread_barrier_release (vm);
1503 return 0;
1504}
1505
1506VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1507
Florin Corasfd542f12018-05-16 19:28:24 -07001508static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001509session_queue_run_on_main (vlib_main_t * vm)
1510{
1511 vlib_node_runtime_t *node;
1512
1513 node = vlib_node_get_runtime (vm, session_queue_node.index);
1514 return session_queue_node_fn (vm, node, 0);
1515}
1516
1517static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001518session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1519 vlib_frame_t * f)
1520{
Florin Corasfd542f12018-05-16 19:28:24 -07001521 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001522 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001523 uword event_type;
1524
1525 while (1)
1526 {
1527 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001528 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1529
1530 switch (event_type)
1531 {
Florin Coras5484daa2020-03-27 23:55:06 +00001532 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1533 /* Run session queue node on main thread */
1534 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001535 break;
1536 case SESSION_Q_PROCESS_STOP:
1537 timeout = 100000.0;
1538 break;
1539 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001540 /* Timed out. Run on main to ensure all events are handled */
1541 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001542 break;
1543 }
1544 vec_reset_length (event_data);
1545 }
1546 return 0;
1547}
1548
1549/* *INDENT-OFF* */
1550VLIB_REGISTER_NODE (session_queue_process_node) =
1551{
1552 .function = session_queue_process,
1553 .type = VLIB_NODE_TYPE_PROCESS,
1554 .name = "session-queue-process",
1555 .state = VLIB_NODE_STATE_DISABLED,
1556};
1557/* *INDENT-ON* */
1558
Florin Coras653e43f2019-03-04 10:56:23 -08001559static_always_inline uword
1560session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1561 vlib_frame_t * frame)
1562{
1563 session_main_t *sm = &session_main;
1564 if (!sm->wrk[0].vpp_event_queue)
1565 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001566 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001567 return session_queue_node_fn (vm, node, frame);
1568}
1569
1570/* *INDENT-OFF* */
1571VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1572{
1573 .function = session_queue_pre_input_inline,
1574 .type = VLIB_NODE_TYPE_PRE_INPUT,
1575 .name = "session-queue-main",
1576 .state = VLIB_NODE_STATE_DISABLED,
1577};
1578/* *INDENT-ON* */
1579
Dave Barach68b0fb02017-02-28 15:15:56 -05001580/*
1581 * fd.io coding-style-patch-verification: ON
1582 *
1583 * Local Variables:
1584 * eval: (c-set-style "gnu")
1585 * End:
1586 */