blob: 7ceb9ea1f10e42095f057aa0d42d2f482042b40d [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;
Florin Corasea7e7082020-07-07 17:57:28 -070052 ip_copy (&a->sep.ip, &mp->ip, mp->is_ip4);
Florin Coras458089b2019-08-21 16:20:44 -070053 a->sep.port = mp->port;
54 a->sep.fib_index = mp->vrf;
55 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
56 a->sep.transport_proto = mp->proto;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020057 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +010058 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Coras458089b2019-08-21 16:20:44 -070059 a->app_index = app->app_index;
60 a->wrk_map_index = mp->wrk_index;
Florin Coras1e966172020-05-16 18:18:14 +000061 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -070062
63 if ((rv = vnet_listen (a)))
Florin Coras585c86a2020-10-16 17:57:36 -070064 clib_warning ("listen returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -070065
66 app_wrk = application_get_worker (app, mp->wrk_index);
67 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
68 return;
69}
70
71static void
72session_mq_listen_uri_handler (void *data)
73{
74 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
75 vnet_listen_args_t _a, *a = &_a;
76 app_worker_t *app_wrk;
77 application_t *app;
78 int rv;
79
80 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
81
82 app = application_lookup (mp->client_index);
83 if (!app)
84 return;
85
86 clib_memset (a, 0, sizeof (*a));
87 a->uri = (char *) mp->uri;
88 a->app_index = app->app_index;
89 rv = vnet_bind_uri (a);
90
91 app_wrk = application_get_worker (app, 0);
92 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
93}
94
95static void
96session_mq_connect_handler (void *data)
97{
98 session_connect_msg_t *mp = (session_connect_msg_t *) data;
99 vnet_connect_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_connect_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;
112 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
113 a->sep.port = mp->port;
114 a->sep.transport_proto = mp->proto;
115 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700116 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000117 if (mp->is_ip4)
118 {
119 ip46_address_mask_ip4 (&a->sep.ip);
120 ip46_address_mask_ip4 (&a->sep.peer.ip);
121 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000122 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700123 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
124 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200125 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +0100126 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Corasd85666f2020-04-03 00:58:48 +0000127 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700128 if (mp->hostname_len)
129 {
130 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
131 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
132 }
133 a->api_context = mp->context;
134 a->app_index = app->app_index;
135 a->wrk_map_index = mp->wrk_index;
136
137 if ((rv = vnet_connect (a)))
138 {
Florin Coras57660d92020-04-04 22:45:34 +0000139 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700140 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700141 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700142 }
143
144 vec_free (a->sep_ext.hostname);
145}
146
147static void
148session_mq_connect_uri_handler (void *data)
149{
150 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
151 vnet_connect_args_t _a, *a = &_a;
152 app_worker_t *app_wrk;
153 application_t *app;
154 int rv;
155
156 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
157
158 app = application_lookup (mp->client_index);
159 if (!app)
160 return;
161
162 clib_memset (a, 0, sizeof (*a));
163 a->uri = (char *) mp->uri;
164 a->api_context = mp->context;
165 a->app_index = app->app_index;
166 if ((rv = vnet_connect_uri (a)))
167 {
168 clib_warning ("connect_uri returned: %d", rv);
169 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700170 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700171 }
172}
173
174static void
175session_mq_disconnect_handler (void *data)
176{
177 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
178 vnet_disconnect_args_t _a, *a = &_a;
179 application_t *app;
180
181 app = application_lookup (mp->client_index);
182 if (!app)
183 return;
184
185 a->app_index = app->app_index;
186 a->handle = mp->handle;
187 vnet_disconnect_session (a);
188}
189
190static void
191app_mq_detach_handler (void *data)
192{
193 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
194 vnet_app_detach_args_t _a, *a = &_a;
195 application_t *app;
196
197 app_check_thread_and_barrier (app_mq_detach_handler, mp);
198
199 app = application_lookup (mp->client_index);
200 if (!app)
201 return;
202
203 a->app_index = app->app_index;
204 a->api_client_index = mp->client_index;
205 vnet_application_detach (a);
206}
207
208static void
209session_mq_unlisten_handler (void *data)
210{
211 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
212 vnet_unlisten_args_t _a, *a = &_a;
213 app_worker_t *app_wrk;
214 application_t *app;
215 int rv;
216
217 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
218
219 app = application_lookup (mp->client_index);
220 if (!app)
221 return;
222
223 clib_memset (a, 0, sizeof (*a));
224 a->app_index = app->app_index;
225 a->handle = mp->handle;
226 a->wrk_map_index = mp->wrk_index;
227 if ((rv = vnet_unlisten (a)))
228 clib_warning ("unlisten returned: %d", rv);
229
230 app_wrk = application_get_worker (app, a->wrk_map_index);
231 if (!app_wrk)
232 return;
233
234 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800235}
236
Florin Coras52207f12018-07-12 14:48:06 -0700237static void
238session_mq_accepted_reply_handler (void *data)
239{
240 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
241 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800242 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700243 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800244 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700245
246 /* Server isn't interested, kill the session */
247 if (mp->retval)
248 {
249 a->app_index = mp->context;
250 a->handle = mp->handle;
251 vnet_disconnect_session (a);
252 return;
253 }
254
Florin Coras2b81e3c2019-02-27 07:55:46 -0800255 /* Mail this back from the main thread. We're not polling in main
256 * thread so we're using other workers for notifications. */
257 if (vlib_num_workers () && vlib_get_thread_index () != 0
258 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700259 {
Florin Coras458089b2019-08-21 16:20:44 -0700260 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
261 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800262 return;
263 }
264
265 s = session_get_from_handle_if_valid (mp->handle);
266 if (!s)
267 return;
268
269 app_wrk = app_worker_get (s->app_wrk_index);
270 if (app_wrk->app_index != mp->context)
271 {
272 clib_warning ("app doesn't own session");
273 return;
274 }
275
276 if (!session_has_transport (s))
277 {
Florin Coras653e43f2019-03-04 10:56:23 -0800278 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800279 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700280 return;
Florin Coras52207f12018-07-12 14:48:06 -0700281 }
282 else
283 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800284 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700285 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600286
287 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800288 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800289
290 /* Closed while waiting for app to reply. Resend disconnect */
291 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
292 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700293 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800294 s->session_state = old_state;
295 return;
296 }
Florin Coras52207f12018-07-12 14:48:06 -0700297 }
298}
299
300static void
301session_mq_reset_reply_handler (void *data)
302{
Florin Coras4af830c2018-12-04 09:21:36 -0800303 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700304 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700305 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800306 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700307 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700308 u32 index, thread_index;
309
310 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800311 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700312 if (!app)
313 return;
314
315 session_parse_handle (mp->handle, &index, &thread_index);
316 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800317
Florin Corasf1910322019-12-05 12:05:57 -0800318 /* No session or not the right session */
319 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800320 return;
321
Florin Coras15531972018-08-12 23:50:53 -0700322 app_wrk = app_worker_get (s->app_wrk_index);
323 if (!app_wrk || app_wrk->app_index != app->app_index)
324 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200325 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700326 mp->handle);
327 return;
328 }
Florin Coras52207f12018-07-12 14:48:06 -0700329
330 /* Client objected to resetting the session, log and continue */
331 if (mp->retval)
332 {
333 clib_warning ("client retval %d", mp->retval);
334 return;
335 }
336
337 /* This comes as a response to a reset, transport only waiting for
338 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800339 a->handle = mp->handle;
340 a->app_index = app->app_index;
341 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700342}
343
344static void
345session_mq_disconnected_handler (void *data)
346{
347 session_disconnected_reply_msg_t *rmp;
348 vnet_disconnect_args_t _a, *a = &_a;
349 svm_msg_q_msg_t _msg, *msg = &_msg;
350 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700351 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700352 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800353 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700354 application_t *app;
355 int rv = 0;
356
357 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700358 if (!(s = session_get_from_handle_if_valid (mp->handle)))
359 {
360 clib_warning ("could not disconnect handle %llu", mp->handle);
361 return;
362 }
Florin Coras15531972018-08-12 23:50:53 -0700363 app_wrk = app_worker_get (s->app_wrk_index);
364 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700365 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700366 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700367 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700368 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700369 return;
Florin Coras52207f12018-07-12 14:48:06 -0700370 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700371
372 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700373 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700374 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700375
Florin Coras15531972018-08-12 23:50:53 -0700376 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700377 SESSION_MQ_CTRL_EVT_RING,
378 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700379 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400380 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800381 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700382 rmp = (session_disconnected_reply_msg_t *) evt->data;
383 rmp->handle = mp->handle;
384 rmp->context = mp->context;
385 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700386 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700387}
388
389static void
390session_mq_disconnected_reply_handler (void *data)
391{
392 session_disconnected_reply_msg_t *mp;
393 vnet_disconnect_args_t _a, *a = &_a;
394 application_t *app;
395
396 mp = (session_disconnected_reply_msg_t *) data;
397
398 /* Client objected to disconnecting the session, log and continue */
399 if (mp->retval)
400 {
401 clib_warning ("client retval %d", mp->retval);
402 return;
403 }
404
405 /* Disconnect has been confirmed. Confirm close to transport */
406 app = application_lookup (mp->context);
407 if (app)
408 {
409 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700410 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700411 vnet_disconnect_session (a);
412 }
413}
414
Florin Coras30e79c22019-01-02 19:31:22 -0800415static void
416session_mq_worker_update_handler (void *data)
417{
418 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
419 session_worker_update_reply_msg_t *rmp;
420 svm_msg_q_msg_t _msg, *msg = &_msg;
421 app_worker_t *app_wrk;
422 u32 owner_app_wrk_map;
423 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800424 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800425 application_t *app;
426
427 app = application_lookup (mp->client_index);
428 if (!app)
429 return;
430 if (!(s = session_get_from_handle_if_valid (mp->handle)))
431 {
432 clib_warning ("invalid handle %llu", mp->handle);
433 return;
434 }
435 app_wrk = app_worker_get (s->app_wrk_index);
436 if (app_wrk->app_index != app->app_index)
437 {
438 clib_warning ("app %u does not own session %llu", app->app_index,
439 mp->handle);
440 return;
441 }
442 owner_app_wrk_map = app_wrk->wrk_map_index;
443 app_wrk = application_get_worker (app, mp->wrk_index);
444
445 /* This needs to come from the new owner */
446 if (mp->req_wrk_index == owner_app_wrk_map)
447 {
448 session_req_worker_update_msg_t *wump;
449
450 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
451 SESSION_MQ_CTRL_EVT_RING,
452 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800453 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
454 clib_memset (evt, 0, sizeof (*evt));
455 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
456 wump = (session_req_worker_update_msg_t *) evt->data;
457 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700458 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800459 return;
460 }
461
462 app_worker_own_session (app_wrk, s);
463
464 /*
465 * Send reply
466 */
467 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
468 SESSION_MQ_CTRL_EVT_RING,
469 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800470 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
471 clib_memset (evt, 0, sizeof (*evt));
472 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
473 rmp = (session_worker_update_reply_msg_t *) evt->data;
474 rmp->handle = mp->handle;
Florin Corasda2305f2021-02-09 09:46:22 -0800475 if (s->rx_fifo)
476 rmp->rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
477 if (s->tx_fifo)
478 rmp->tx_fifo = fifo_segment_fifo_offset (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
Florin Coras40c07ce2020-07-16 20:46:17 -0700495static void
496session_mq_app_wrk_rpc_handler (void *data)
497{
498 session_app_wrk_rpc_msg_t *mp = (session_app_wrk_rpc_msg_t *) data;
499 svm_msg_q_msg_t _msg, *msg = &_msg;
500 session_app_wrk_rpc_msg_t *rmp;
501 app_worker_t *app_wrk;
502 session_event_t *evt;
503 application_t *app;
504
505 app = application_lookup (mp->client_index);
506 if (!app)
507 return;
508
509 app_wrk = application_get_worker (app, mp->wrk_index);
510
511 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
512 SESSION_MQ_CTRL_EVT_RING, SVM_Q_WAIT,
513 msg);
514 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
515 clib_memset (evt, 0, sizeof (*evt));
516 evt->event_type = SESSION_CTRL_EVT_APP_WRK_RPC;
517 rmp = (session_app_wrk_rpc_msg_t *) evt->data;
518 clib_memcpy (rmp->data, mp->data, sizeof (mp->data));
519 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
520}
521
Dave Barach68b0fb02017-02-28 15:15:56 -0500522vlib_node_registration_t session_queue_node;
523
524typedef struct
525{
526 u32 session_index;
527 u32 server_thread_index;
528} session_queue_trace_t;
529
530/* packet trace format function */
531static u8 *
532format_session_queue_trace (u8 * s, va_list * args)
533{
534 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
535 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
536 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
537
Florin Coras30928f82020-01-27 19:21:28 -0800538 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500539 t->session_index, t->server_thread_index);
540 return s;
541}
542
Florin Coras6792ec02017-03-13 03:49:51 -0700543#define foreach_session_queue_error \
544_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700545_(TIMER, "Timer events") \
546_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500547
548typedef enum
549{
550#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
551 foreach_session_queue_error
552#undef _
553 SESSION_QUEUE_N_ERROR,
554} session_queue_error_t;
555
556static char *session_queue_error_strings[] = {
557#define _(sym,string) string,
558 foreach_session_queue_error
559#undef _
560};
561
Florin Coras0d60a0f2018-06-29 02:02:08 -0700562enum
563{
564 SESSION_TX_NO_BUFFERS = -2,
565 SESSION_TX_NO_DATA,
566 SESSION_TX_OK
567};
568
Florin Coras66cf5e02018-06-08 09:17:39 -0700569static void
570session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
571 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800572 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700573{
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200574 while (n_trace && n_segs)
Florin Coras66cf5e02018-06-08 09:17:39 -0700575 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200576 vlib_buffer_t *b = vlib_get_buffer (vm, to_next[0]);
577 if (PREDICT_TRUE
578 (vlib_trace_buffer
579 (vm, node, next_index, b, 1 /* follow_chain */ )))
580 {
581 session_queue_trace_t *t =
582 vlib_add_trace (vm, node, b, sizeof (*t));
583 t->session_index = s->session_index;
584 t->server_thread_index = s->thread_index;
585 n_trace--;
586 }
587 to_next++;
588 n_segs--;
Florin Coras66cf5e02018-06-08 09:17:39 -0700589 }
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200590 vlib_set_trace_count (vm, node, n_trace);
Florin Coras8e43d042018-05-04 15:46:57 -0700591}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700592
Florin Coras8e43d042018-05-04 15:46:57 -0700593always_inline void
594session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
595 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
596{
Florin Coras8e43d042018-05-04 15:46:57 -0700597 vlib_buffer_t *chain_b, *prev_b;
598 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800599 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700600 u16 len_to_deq, n_bytes_read;
601 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700602
Florin Coras31c99552019-03-01 13:00:58 -0800603 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700604 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
605 b->total_length_not_including_first_buffer = 0;
606
607 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000608 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700609 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700610 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700611 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700612 {
Florin Coras8e43d042018-05-04 15:46:57 -0700613 prev_b = chain_b;
614 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700615
616 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700617 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700618 chain_b = vlib_get_buffer (vm, chain_bi0);
619 chain_b->current_data = 0;
620 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700621 if (peek_data)
622 {
Florin Coras288eaab2019-02-03 15:26:14 -0800623 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000624 ctx->sp.tx_offset, len_to_deq, data);
625 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700626 }
627 else
628 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200629 if (ctx->transport_vft->transport_options.tx_type ==
630 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700631 {
Florin Coras288eaab2019-02-03 15:26:14 -0800632 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700633 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700634 u16 deq_now;
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300635 u32 offset;
636
Florin Coras7fb0fe12018-04-09 09:24:52 -0700637 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700638 len_to_deq);
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300639 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
640 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700641 ASSERT (n_bytes_read > 0);
642
643 hdr->data_offset += n_bytes_read;
644 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800645 {
Ivan Shvedunovf3b5d702021-03-15 19:05:14 +0300646 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
shubing guoaea5f392018-08-30 13:29:49 +0800647 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000648 if (ctx->left_to_snd > n_bytes_read)
649 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
650 (u8 *) & ctx->hdr);
shubing guoaea5f392018-08-30 13:29:49 +0800651 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000652 else if (ctx->left_to_snd == n_bytes_read)
653 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
654 sizeof (session_dgram_pre_hdr_t));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700655 }
656 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700657 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
658 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700659 }
Florin Coras8e43d042018-05-04 15:46:57 -0700660 ASSERT (n_bytes_read == len_to_deq);
661 chain_b->current_length = n_bytes_read;
662 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700663
664 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700665 prev_b->next_buffer = chain_bi0;
666 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700667
668 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700669 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700670
Florin Corasb2215d62017-08-01 16:56:58 -0700671 to_deq -= n_bytes_read;
672 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700673 break;
674 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700675 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700676 && b->total_length_not_including_first_buffer == left_from_seg);
677 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700678}
679
Florin Coras8e43d042018-05-04 15:46:57 -0700680always_inline void
681session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
682 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
683{
684 u32 len_to_deq;
685 u8 *data0;
686 int n_bytes_read;
687
688 /*
689 * Start with the first buffer in chain
690 */
691 b->error = 0;
692 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
693 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700694
Florin Coras1ee78302019-02-05 15:51:15 -0800695 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700696 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
697
Florin Coras7fb0fe12018-04-09 09:24:52 -0700698 if (peek_data)
699 {
Florin Coras70f879d2020-03-13 17:54:42 +0000700 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700701 len_to_deq, data0);
702 ASSERT (n_bytes_read > 0);
703 /* Keep track of progress locally, transport is also supposed to
704 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000705 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700706 }
707 else
708 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200709 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700710 {
711 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800712 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700713 u16 deq_now;
714 u32 offset;
715
716 ASSERT (hdr->data_length > hdr->data_offset);
717 deq_now = clib_min (hdr->data_length - hdr->data_offset,
718 len_to_deq);
719 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
720 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
721 ASSERT (n_bytes_read > 0);
722
723 if (ctx->s->session_state == SESSION_STATE_LISTENING)
724 {
725 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
726 ctx->tc->rmt_port = hdr->rmt_port;
727 }
728 hdr->data_offset += n_bytes_read;
729 if (hdr->data_offset == hdr->data_length)
730 {
731 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
732 svm_fifo_dequeue_drop (f, offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000733 if (ctx->left_to_snd > n_bytes_read)
734 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
735 (u8 *) & ctx->hdr);
Florin Coras8e43d042018-05-04 15:46:57 -0700736 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000737 else if (ctx->left_to_snd == n_bytes_read)
738 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
739 sizeof (session_dgram_pre_hdr_t));
Florin Coras8e43d042018-05-04 15:46:57 -0700740 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700741 else
742 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700743 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
744 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700745 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700746 }
747 }
Florin Coras8e43d042018-05-04 15:46:57 -0700748 b->current_length = n_bytes_read;
749 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500750
Florin Coras8e43d042018-05-04 15:46:57 -0700751 /*
752 * Fill in the remaining buffers in the chain, if any
753 */
754 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
755 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700756}
757
758always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800759session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700760{
761 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800762 {
Florin Corasa6789742019-08-07 19:12:38 -0700763 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
764 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700765 /* Can retransmit for closed sessions but can't send new data if
766 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700767 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700768 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700769 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
770 {
771 /* Allow closed transports to still send custom packets.
772 * For instance, tcp may want to send acks in time-wait. */
773 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
774 && (s->flags & SESSION_F_CUSTOM_TX))
775 return 0;
776 return 2;
777 }
Florin Corase04c2992017-03-01 08:17:34 -0800778 }
Florin Coras8e43d042018-05-04 15:46:57 -0700779 return 0;
780}
Dave Barach68b0fb02017-02-28 15:15:56 -0500781
Florin Coras8e43d042018-05-04 15:46:57 -0700782always_inline transport_connection_t *
783session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
784{
785 if (peek_data)
786 {
787 return ctx->transport_vft->get_connection (ctx->s->connection_index,
788 ctx->s->thread_index);
789 }
790 else
791 {
792 if (ctx->s->session_state == SESSION_STATE_LISTENING)
793 return ctx->transport_vft->get_listener (ctx->s->connection_index);
794 else
795 {
796 return ctx->transport_vft->get_connection (ctx->s->connection_index,
797 ctx->s->thread_index);
798 }
799 }
800}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800801
Florin Coras8e43d042018-05-04 15:46:57 -0700802always_inline void
803session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700804 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700805{
806 u32 n_bytes_per_buf, n_bytes_per_seg;
Florin Coras6e0ee952020-04-20 21:07:06 +0000807
808 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Sirshak Das28aa5392019-02-05 01:33:33 -0600809 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Florin Coras6e0ee952020-04-20 21:07:06 +0000810
Dave Barach68b0fb02017-02-28 15:15:56 -0500811 if (peek_data)
812 {
Florin Coras9d063042017-09-14 03:08:00 -0400813 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000814 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700815 {
816 ctx->max_len_to_snd = 0;
817 return;
818 }
Florin Coras70f879d2020-03-13 17:54:42 +0000819 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500820 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700821 else
822 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200823 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700824 {
Florin Coras6e0ee952020-04-20 21:07:06 +0000825 u32 len, chain_limit;
826
Florin Coras8e43d042018-05-04 15:46:57 -0700827 if (ctx->max_dequeue <= sizeof (ctx->hdr))
828 {
829 ctx->max_len_to_snd = 0;
830 return;
831 }
Florin Coras6e0ee952020-04-20 21:07:06 +0000832
Florin Coras288eaab2019-02-03 15:26:14 -0800833 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700834 (u8 *) & ctx->hdr);
835 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
Florin Coras6e0ee952020-04-20 21:07:06 +0000836 len = ctx->hdr.data_length - ctx->hdr.data_offset;
837
838 /* Process multiple dgrams if smaller than min (buf_space, mss).
839 * This avoids handling multiple dgrams if they require buffer
840 * chains */
841 chain_limit = clib_min (n_bytes_per_buf - TRANSPORT_MAX_HDRS_LEN,
842 ctx->sp.snd_mss);
843 if (ctx->hdr.data_length <= chain_limit)
844 {
845 u32 first_dgram_len, dgram_len, offset, max_offset;
846 session_dgram_hdr_t hdr;
847
848 ctx->sp.snd_mss = clib_min (ctx->sp.snd_mss, len);
849 offset = ctx->hdr.data_length + sizeof (session_dgram_hdr_t);
850 first_dgram_len = len;
851 max_offset = clib_min (ctx->max_dequeue, 16 << 10);
852
853 while (offset < max_offset)
854 {
855 svm_fifo_peek (ctx->s->tx_fifo, offset, sizeof (ctx->hdr),
856 (u8 *) & hdr);
857 ASSERT (hdr.data_length > hdr.data_offset);
858 dgram_len = hdr.data_length - hdr.data_offset;
859 if (len + dgram_len > ctx->max_dequeue
860 || first_dgram_len != dgram_len)
861 break;
862 len += dgram_len;
863 offset += sizeof (hdr) + hdr.data_length;
864 }
865 }
866
867 ctx->max_dequeue = len;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700868 }
869 }
Florin Coras8e43d042018-05-04 15:46:57 -0700870 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700871
872 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000873 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700874 {
875 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000876 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
877 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
878 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700879 /* TODO Nagle ? */
880 }
881 else
882 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700883 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000884 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700885 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500886
Florin Corasf08f26d2018-05-10 13:20:47 -0700887 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000888 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700889 if (ctx->n_segs_per_evt > max_segs)
890 {
891 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000892 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700893 }
894
Florin Coras1ee78302019-02-05 15:51:15 -0800895 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Simon Zhangae16a982020-03-31 20:56:22 +0800896 if (ctx->n_segs_per_evt > 1)
897 {
898 u32 n_bytes_last_seg, n_bufs_last_seg;
899
900 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
901 n_bytes_last_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd
902 - ((ctx->n_segs_per_evt - 1) * ctx->sp.snd_mss);
903 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
904 n_bufs_last_seg = ceil ((f64) n_bytes_last_seg / n_bytes_per_buf);
905 ctx->n_bufs_needed = ((ctx->n_segs_per_evt - 1) * ctx->n_bufs_per_seg)
906 + n_bufs_last_seg;
907 }
908 else
909 {
910 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->max_len_to_snd;
911 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
912 ctx->n_bufs_needed = ctx->n_bufs_per_seg;
913 }
914
Florin Coras70f879d2020-03-13 17:54:42 +0000915 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
916 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800917 n_bytes_per_buf -
918 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700919}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700920
Florin Corasaaf64a22020-02-23 01:37:34 +0000921always_inline void
922session_tx_maybe_reschedule (session_worker_t * wrk,
923 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +0000924 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +0000925{
926 session_t *s = ctx->s;
927
928 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +0000929 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +0000930 if (svm_fifo_set_event (s->tx_fifo))
931 session_evt_add_head_old (wrk, elt);
932}
933
Florin Coras8e43d042018-05-04 15:46:57 -0700934always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700935session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
936 vlib_node_runtime_t * node,
937 session_evt_elt_t * elt,
938 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700939{
Simon Zhangae16a982020-03-31 20:56:22 +0800940 u32 n_trace, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700941 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700942 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700943 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700944 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700945 transport_proto_t tp;
946 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700947 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700948
Florin Coras1bcad5c2019-01-09 20:04:38 -0800949 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700950 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700951 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700952 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700953 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700954 }
955
Florin Coras1bcad5c2019-01-09 20:04:38 -0800956 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras89235c72020-11-02 19:00:10 -0800957 max_burst = SESSION_NODE_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700958
Florin Coras1bcad5c2019-01-09 20:04:38 -0800959 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700960 ctx->transport_vft = transport_protocol_get_vft (tp);
961 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800962
963 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
964 {
965 if (ctx->transport_vft->flush_data)
966 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700967 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -0800968 }
969
Florin Coras26dd6de2019-07-23 23:54:47 -0700970 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
971 {
972 u32 n_custom_tx;
973 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +0000974 ctx->sp.max_burst_size = max_burst;
975 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -0700976 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700977 if (PREDICT_FALSE
978 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
979 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700980 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +0000981 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -0700982 {
983 session_evt_add_old (wrk, elt);
984 return SESSION_TX_OK;
985 }
986 }
987
Florin Coras70f879d2020-03-13 17:54:42 +0000988 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -0700989
Florin Coras70f879d2020-03-13 17:54:42 +0000990 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -0700991 {
Florin Coras6080e0d2020-03-13 20:39:43 +0000992 /* If the deschedule flag was set, remove session from scheduler.
993 * Transport is responsible for rescheduling this session. */
994 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
995 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +0000996 /* Request to postpone the session, e.g., zero-wnd and transport
997 * is not currently probing */
998 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
999 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +00001000 /* This flow queue is "empty" so it should be re-evaluated before
1001 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +00001002 else
Florin Coras6080e0d2020-03-13 20:39:43 +00001003 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +00001004
Florin Coras0d60a0f2018-06-29 02:02:08 -07001005 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -07001006 }
1007
Florin Coras11e9e352019-11-13 19:09:47 -08001008 if (transport_connection_is_tx_paced (ctx->tc))
1009 {
1010 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
1011 if (snd_space < TRANSPORT_PACER_MIN_BURST)
1012 {
1013 session_evt_add_head_old (wrk, elt);
1014 return SESSION_TX_NO_DATA;
1015 }
Florin Coras70f879d2020-03-13 17:54:42 +00001016 snd_space = clib_min (ctx->sp.snd_space, snd_space);
1017 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
1018 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -08001019 }
1020
Florin Coras8e43d042018-05-04 15:46:57 -07001021 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -07001022 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -07001023
Florin Coras8e43d042018-05-04 15:46:57 -07001024 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -07001025 {
Florin Coras11e9e352019-11-13 19:09:47 -08001026 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +00001027 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -07001028 return SESSION_TX_NO_DATA;
1029 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001030
Simon Zhangae16a982020-03-31 20:56:22 +08001031 vec_validate_aligned (wrk->tx_buffers, ctx->n_bufs_needed - 1,
Florin Coras2068fd42019-01-31 14:35:50 -08001032 CLIB_CACHE_LINE_BYTES);
Simon Zhangae16a982020-03-31 20:56:22 +08001033 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, ctx->n_bufs_needed);
1034 if (PREDICT_FALSE (n_bufs < ctx->n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -05001035 {
Florin Coras2068fd42019-01-31 14:35:50 -08001036 if (n_bufs)
1037 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +00001038 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001039 vlib_node_increment_counter (wrk->vm, node->node_index,
1040 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -08001041 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -07001042 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001043
Florin Coras7808df22020-11-02 18:00:32 -08001044 if (transport_connection_is_tx_paced (ctx->tc))
1045 transport_connection_tx_pacer_update_bytes (ctx->tc, ctx->max_len_to_snd);
Benoît Ganne7ce23f22020-04-17 12:09:37 +02001046
Florin Corasf08f26d2018-05-10 13:20:47 -07001047 ctx->left_to_snd = ctx->max_len_to_snd;
1048 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -07001049
1050 while (n_left >= 4)
1051 {
1052 vlib_buffer_t *b0, *b1;
1053 u32 bi0, bi1;
1054
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001055 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -07001056 pb = vlib_get_buffer (vm, pbi);
1057 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001058 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -07001059 pb = vlib_get_buffer (vm, pbi);
1060 vlib_prefetch_buffer_header (pb, STORE);
1061
Florin Coras8a754f12019-10-16 22:35:18 -07001062 bi0 = wrk->tx_buffers[--n_bufs];
1063 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001064
1065 b0 = vlib_get_buffer (vm, bi0);
1066 b1 = vlib_get_buffer (vm, bi1);
1067
1068 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
1069 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
1070
1071 ctx->transport_vft->push_header (ctx->tc, b0);
1072 ctx->transport_vft->push_header (ctx->tc, b1);
1073
Florin Coras66cf5e02018-06-08 09:17:39 -07001074 n_left -= 2;
1075
1076 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
1077 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
1078
Florin Coras8a754f12019-10-16 22:35:18 -07001079 vec_add1 (wrk->pending_tx_buffers, bi0);
1080 vec_add1 (wrk->pending_tx_buffers, bi1);
1081 vec_add1 (wrk->pending_tx_nexts, next_index);
1082 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -07001083 }
Florin Corasf08f26d2018-05-10 13:20:47 -07001084 while (n_left)
1085 {
Florin Coras66cf5e02018-06-08 09:17:39 -07001086 vlib_buffer_t *b0;
1087 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -07001088
Florin Coras91ca4622018-06-30 11:27:59 -07001089 if (n_left > 1)
1090 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001091 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -07001092 pb = vlib_get_buffer (vm, pbi);
1093 vlib_prefetch_buffer_header (pb, STORE);
1094 }
1095
Florin Coras8a754f12019-10-16 22:35:18 -07001096 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -07001097 b0 = vlib_get_buffer (vm, bi0);
1098 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -07001099
Florin Coras66cf5e02018-06-08 09:17:39 -07001100 /* Ask transport to push header after current_length and
1101 * total_length_not_including_first_buffer are updated */
1102 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001103
Florin Coras66cf5e02018-06-08 09:17:39 -07001104 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001105
Florin Coras66cf5e02018-06-08 09:17:39 -07001106 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001107
Florin Coras8a754f12019-10-16 22:35:18 -07001108 vec_add1 (wrk->pending_tx_buffers, bi0);
1109 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001110 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001111
Florin Coras60183db2019-07-20 15:53:16 -07001112 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001113 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001114 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001115
Florin Coras2068fd42019-01-31 14:35:50 -08001116 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001117 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1118
Florin Corasf08f26d2018-05-10 13:20:47 -07001119 *n_tx_packets += ctx->n_segs_per_evt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001120
Florin Corascca96182019-07-19 07:34:13 -07001121 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1122 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1123
Florin Corasf08f26d2018-05-10 13:20:47 -07001124 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001125
1126 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1127 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001128 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001129 session_evt_add_old (wrk, elt);
1130 else
Florin Coras70f879d2020-03-13 17:54:42 +00001131 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001132
Florin Corasab57edb2020-04-07 03:46:07 +00001133 if (!peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -05001134 {
Florin Coras7a105fd2020-12-03 18:19:39 -08001135 u32 n_dequeued = ctx->max_len_to_snd;
1136 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
1137 n_dequeued += ctx->n_segs_per_evt * SESSION_CONN_HDR_LEN;
1138 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, n_dequeued))
Florin Coras0e573f52019-05-07 16:28:16 -07001139 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001140 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001141 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001142}
1143
1144int
Florin Coras60183db2019-07-20 15:53:16 -07001145session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1146 vlib_node_runtime_t * node,
1147 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001148{
Florin Coras60183db2019-07-20 15:53:16 -07001149 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001150}
1151
1152int
Florin Coras60183db2019-07-20 15:53:16 -07001153session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1154 vlib_node_runtime_t * node,
1155 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001156{
Florin Coras60183db2019-07-20 15:53:16 -07001157 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001158}
1159
Florin Coras371ca502018-02-21 12:07:41 -08001160int
Florin Coras60183db2019-07-20 15:53:16 -07001161session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001162 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001163 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001164{
Florin Coras9f86d222020-03-23 15:34:22 +00001165 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001166 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001167 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001168
Florin Corasc0737e92019-03-04 14:19:39 -08001169 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001170 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001171
1172 /* Clear custom-tx flag used to request reschedule for tx */
1173 s->flags &= ~SESSION_F_CUSTOM_TX;
1174
Florin Coras89235c72020-11-02 19:00:10 -08001175 sp->max_burst_size = clib_min (SESSION_NODE_FRAME_SIZE - *n_tx_packets,
Florin Coras9f86d222020-03-23 15:34:22 +00001176 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001177
Florin Coras9f86d222020-03-23 15:34:22 +00001178 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1179 *n_tx_packets += n_packets;
1180
1181 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001182 {
1183 session_evt_add_old (wrk, elt);
1184 }
Florin Coras9f86d222020-03-23 15:34:22 +00001185 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001186 {
1187 svm_fifo_unset_event (s->tx_fifo);
1188 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1189 if (svm_fifo_set_event (s->tx_fifo))
1190 session_evt_add_head_old (wrk, elt);
1191 }
1192
Florin Coras1e6a0f62021-03-09 08:36:25 -08001193 if (sp->max_burst_size &&
1194 svm_fifo_needs_deq_ntf (s->tx_fifo, sp->max_burst_size))
1195 session_dequeue_notify (s);
1196
Florin Corased8db522020-02-27 04:32:51 +00001197 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001198}
1199
Florin Coras288eaab2019-02-03 15:26:14 -08001200always_inline session_t *
Florin Corasdb999df2020-09-21 10:45:56 -07001201session_event_get_session (session_worker_t * wrk, session_event_t * e)
Florin Corasa5464812017-04-19 13:00:05 -07001202{
Florin Corasdb999df2020-09-21 10:45:56 -07001203 if (PREDICT_FALSE (pool_is_free_index (wrk->sessions, e->session_index)))
1204 return 0;
1205
1206 ASSERT (session_is_valid (e->session_index, wrk->vm->thread_index));
1207 return pool_elt_at_index (wrk->sessions, e->session_index);
Florin Corasa5464812017-04-19 13:00:05 -07001208}
1209
Florin Coras60183db2019-07-20 15:53:16 -07001210always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001211session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1212{
1213 clib_llist_index_t ei;
1214 void (*fp) (void *);
1215 session_event_t *e;
1216 session_t *s;
1217
1218 ei = clib_llist_entry_index (wrk->event_elts, elt);
1219 e = &elt->evt;
1220
1221 switch (e->event_type)
1222 {
1223 case SESSION_CTRL_EVT_RPC:
1224 fp = e->rpc_args.fp;
1225 (*fp) (e->rpc_args.arg);
1226 break;
1227 case SESSION_CTRL_EVT_CLOSE:
1228 s = session_get_from_handle_if_valid (e->session_handle);
1229 if (PREDICT_FALSE (!s))
1230 break;
1231 session_transport_close (s);
1232 break;
1233 case SESSION_CTRL_EVT_RESET:
1234 s = session_get_from_handle_if_valid (e->session_handle);
1235 if (PREDICT_FALSE (!s))
1236 break;
1237 session_transport_reset (s);
1238 break;
1239 case SESSION_CTRL_EVT_LISTEN:
1240 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1241 break;
1242 case SESSION_CTRL_EVT_LISTEN_URI:
1243 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1244 break;
1245 case SESSION_CTRL_EVT_UNLISTEN:
1246 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1247 break;
1248 case SESSION_CTRL_EVT_CONNECT:
1249 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1250 break;
1251 case SESSION_CTRL_EVT_CONNECT_URI:
1252 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1253 break;
1254 case SESSION_CTRL_EVT_DISCONNECT:
1255 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1256 break;
1257 case SESSION_CTRL_EVT_DISCONNECTED:
1258 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1259 break;
1260 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1261 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1262 break;
1263 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1264 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1265 elt));
1266 break;
1267 case SESSION_CTRL_EVT_RESET_REPLY:
1268 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1269 break;
1270 case SESSION_CTRL_EVT_WORKER_UPDATE:
1271 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1272 break;
1273 case SESSION_CTRL_EVT_APP_DETACH:
1274 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1275 break;
Florin Coras40c07ce2020-07-16 20:46:17 -07001276 case SESSION_CTRL_EVT_APP_WRK_RPC:
1277 session_mq_app_wrk_rpc_handler (session_evt_ctrl_data (wrk, elt));
1278 break;
Florin Coras458089b2019-08-21 16:20:44 -07001279 default:
1280 clib_warning ("unhandled event type %d", e->event_type);
1281 }
1282
1283 /* Regrab elements in case pool moved */
1284 elt = pool_elt_at_index (wrk->event_elts, ei);
1285 if (!clib_llist_elt_is_linked (elt, evt_list))
1286 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001287 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001288 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1289 session_evt_ctrl_data_free (wrk, elt);
1290 session_evt_elt_free (wrk, elt);
1291 }
Srikanth Akula73570432020-04-06 19:19:49 -07001292 SESSION_EVT (SESSION_EVT_COUNTS, CNT_CTRL_EVTS, 1, wrk);
Florin Coras458089b2019-08-21 16:20:44 -07001293}
1294
1295always_inline void
1296session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
Florin Corasdb999df2020-09-21 10:45:56 -07001297 session_evt_elt_t * elt, int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001298{
Florin Coras60183db2019-07-20 15:53:16 -07001299 session_main_t *smm = &session_main;
1300 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001301 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001302 session_event_t *e;
1303 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001304
Florin Corasb0ffbee2019-07-21 19:23:46 -07001305 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001306 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001307
Florin Coras60183db2019-07-20 15:53:16 -07001308 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001309 {
Florin Coras60183db2019-07-20 15:53:16 -07001310 case SESSION_IO_EVT_TX_FLUSH:
1311 case SESSION_IO_EVT_TX:
Florin Corasdb999df2020-09-21 10:45:56 -07001312 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001313 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001314 break;
Florin Coras60183db2019-07-20 15:53:16 -07001315 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1316 wrk->ctx.s = s;
1317 /* Spray packets in per session type frames, since they go to
1318 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001319 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001320 break;
1321 case SESSION_IO_EVT_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001322 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001323 if (!s)
1324 break;
1325 transport_app_rx_evt (session_get_transport_proto (s),
1326 s->connection_index, s->thread_index);
1327 break;
Florin Coras60183db2019-07-20 15:53:16 -07001328 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasdb999df2020-09-21 10:45:56 -07001329 s = session_event_get_session (wrk, e);
Florin Coras60183db2019-07-20 15:53:16 -07001330 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1331 break;
1332 svm_fifo_unset_event (s->rx_fifo);
1333 app_wrk = app_worker_get (s->app_wrk_index);
1334 app_worker_builtin_rx (app_wrk, s);
1335 break;
1336 case SESSION_IO_EVT_BUILTIN_TX:
1337 s = session_get_from_handle_if_valid (e->session_handle);
1338 wrk->ctx.s = s;
1339 if (PREDICT_TRUE (s != 0))
1340 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1341 break;
Florin Coras60183db2019-07-20 15:53:16 -07001342 default:
1343 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001344 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001345
Srikanth Akula73570432020-04-06 19:19:49 -07001346 SESSION_EVT (SESSION_IO_EVT_COUNTS, e->event_type, 1, wrk);
1347
Florin Corasb0ffbee2019-07-21 19:23:46 -07001348 /* Regrab elements in case pool moved */
1349 elt = pool_elt_at_index (wrk->event_elts, ei);
1350 if (!clib_llist_elt_is_linked (elt, evt_list))
1351 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001352}
1353
Florin Coras458089b2019-08-21 16:20:44 -07001354/* *INDENT-OFF* */
1355static const u32 session_evt_msg_sizes[] = {
1356#define _(symc, sym) \
1357 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1358 foreach_session_ctrl_evt
1359#undef _
1360};
1361/* *INDENT-ON* */
1362
1363always_inline void
1364session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1365{
1366 session_evt_elt_t *elt;
1367
1368 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1369 {
1370 elt = session_evt_alloc_ctrl (wrk);
1371 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1372 {
1373 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1374 elt->evt.event_type = evt->event_type;
1375 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1376 session_evt_msg_sizes[evt->event_type]);
1377 }
1378 else
1379 {
1380 /* Internal control events fit into io events footprint */
1381 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1382 }
1383 }
1384 else
1385 {
1386 elt = session_evt_alloc_new (wrk);
1387 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1388 }
1389}
1390
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001391static void
1392session_flush_pending_tx_buffers (session_worker_t * wrk,
1393 vlib_node_runtime_t * node)
1394{
1395 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1396 wrk->pending_tx_nexts,
1397 vec_len (wrk->pending_tx_nexts));
1398 vec_reset_length (wrk->pending_tx_buffers);
1399 vec_reset_length (wrk->pending_tx_nexts);
1400}
1401
Florin Coras0d60a0f2018-06-29 02:02:08 -07001402static uword
1403session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1404 vlib_frame_t * frame)
1405{
Florin Coras31c99552019-03-01 13:00:58 -08001406 session_main_t *smm = vnet_get_session_main ();
Florin Coras2062ec02019-07-15 13:15:18 -07001407 u32 thread_index = vm->thread_index, n_to_dequeue;
Florin Coras31c99552019-03-01 13:00:58 -08001408 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001409 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras16d974e2020-02-09 20:03:12 +00001410 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras3c2fed52018-07-04 04:15:05 -07001411 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras11166672020-04-13 01:20:25 +00001412 int i = 0, n_tx_packets;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001413 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001414 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001415
Florin Corascca96182019-07-19 07:34:13 -07001416 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001417
Florin Coras60183db2019-07-20 15:53:16 -07001418 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001419 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Coras60183db2019-07-20 15:53:16 -07001420
Florin Coras0d60a0f2018-06-29 02:02:08 -07001421 /*
1422 * Update transport time
1423 */
Florin Coras60183db2019-07-20 15:53:16 -07001424 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001425 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Srikanth Akula73570432020-04-06 19:19:49 -07001426 SESSION_EVT (SESSION_EVT_DSP_CNTRS, UPDATE_TIME, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001427
Florin Corasb0ffbee2019-07-21 19:23:46 -07001428 /*
1429 * Dequeue and handle new events
1430 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001431
Florin Coras5f56d732018-10-30 10:21:59 -07001432 /* Try to dequeue what is available. Don't wait for lock.
1433 * XXX: we may need priorities here */
1434 mq = wrk->vpp_event_queue;
1435 n_to_dequeue = svm_msg_q_size (mq);
Florin Coras5398dfb2021-01-25 20:31:27 -08001436 if (n_to_dequeue)
Florin Coras5f56d732018-10-30 10:21:59 -07001437 {
1438 for (i = 0; i < n_to_dequeue; i++)
1439 {
Florin Coras5398dfb2021-01-25 20:31:27 -08001440 svm_msg_q_sub_raw (mq, msg);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001441 evt = svm_msg_q_msg_data (mq, msg);
Florin Coras458089b2019-08-21 16:20:44 -07001442 session_evt_add_to_list (wrk, evt);
Florin Coras5f56d732018-10-30 10:21:59 -07001443 svm_msg_q_free_msg (mq, msg);
1444 }
Florin Coras5f56d732018-10-30 10:21:59 -07001445 }
1446
Florin Coras11166672020-04-13 01:20:25 +00001447 SESSION_EVT (SESSION_EVT_DSP_CNTRS, MQ_DEQ, wrk, n_to_dequeue, !i);
1448
Florin Corasb0ffbee2019-07-21 19:23:46 -07001449 /*
1450 * Handle control events
1451 */
1452
1453 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1454
1455 /* *INDENT-OFF* */
1456 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1457 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001458 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001459 }));
1460 /* *INDENT-ON* */
1461
Srikanth Akula73570432020-04-06 19:19:49 -07001462 SESSION_EVT (SESSION_EVT_DSP_CNTRS, CTRL_EVTS, wrk);
1463
Florin Corasb0ffbee2019-07-21 19:23:46 -07001464 /*
1465 * Handle the new io events.
1466 */
1467
1468 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001469 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1470 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001471
Florin Coras16d974e2020-02-09 20:03:12 +00001472 ei = clib_llist_next_index (new_he, evt_list);
Florin Coras89235c72020-11-02 19:00:10 -08001473 while (ei != wrk->new_head && n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras16d974e2020-02-09 20:03:12 +00001474 {
1475 elt = pool_elt_at_index (wrk->event_elts, ei);
1476 ei = clib_llist_next_index (elt, evt_list);
1477 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Corasdb999df2020-09-21 10:45:56 -07001478 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras16d974e2020-02-09 20:03:12 +00001479 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001480
Srikanth Akula73570432020-04-06 19:19:49 -07001481 SESSION_EVT (SESSION_EVT_DSP_CNTRS, NEW_IO_EVTS, wrk);
1482
Florin Corasb0ffbee2019-07-21 19:23:46 -07001483 /*
Florin Coras45b79732019-10-30 19:22:51 -07001484 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001485 */
1486
Florin Coras45b79732019-10-30 19:22:51 -07001487 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001488 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001489 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001490 ei = clib_llist_next_index (old_he, evt_list);
1491
Florin Coras89235c72020-11-02 19:00:10 -08001492 while (n_tx_packets < SESSION_NODE_FRAME_SIZE)
Florin Coras45b79732019-10-30 19:22:51 -07001493 {
Florin Corasdd97a482019-11-02 14:32:52 -07001494 elt = pool_elt_at_index (wrk->event_elts, ei);
1495 next_ei = clib_llist_next_index (elt, evt_list);
1496 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001497
Florin Corasdb999df2020-09-21 10:45:56 -07001498 session_event_dispatch_io (wrk, node, elt, &n_tx_packets);
Florin Coras45b79732019-10-30 19:22:51 -07001499
Florin Coras45b79732019-10-30 19:22:51 -07001500 if (ei == old_ti)
1501 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001502
1503 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001504 };
1505 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001506
Srikanth Akula73570432020-04-06 19:19:49 -07001507 SESSION_EVT (SESSION_EVT_DSP_CNTRS, OLD_IO_EVTS, wrk);
1508
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001509 if (vec_len (wrk->pending_tx_buffers))
1510 session_flush_pending_tx_buffers (wrk, node);
1511
Florin Coras0d60a0f2018-06-29 02:02:08 -07001512 vlib_node_increment_counter (vm, session_queue_node.index,
1513 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1514
Florin Corascca96182019-07-19 07:34:13 -07001515 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001516
1517 return n_tx_packets;
1518}
1519
1520/* *INDENT-OFF* */
1521VLIB_REGISTER_NODE (session_queue_node) =
1522{
1523 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001524 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001525 .name = "session-queue",
1526 .format_trace = format_session_queue_trace,
1527 .type = VLIB_NODE_TYPE_INPUT,
1528 .n_errors = ARRAY_LEN (session_queue_error_strings),
1529 .error_strings = session_queue_error_strings,
1530 .state = VLIB_NODE_STATE_DISABLED,
1531};
1532/* *INDENT-ON* */
1533
Dave Barach2a863912017-11-28 10:11:42 -05001534static clib_error_t *
1535session_queue_exit (vlib_main_t * vm)
1536{
1537 if (vec_len (vlib_mains) < 2)
1538 return 0;
1539
1540 /*
1541 * Shut off (especially) worker-thread session nodes.
1542 * Otherwise, vpp can crash as the main thread unmaps the
1543 * API segment.
1544 */
1545 vlib_worker_thread_barrier_sync (vm);
1546 session_node_enable_disable (0 /* is_enable */ );
1547 vlib_worker_thread_barrier_release (vm);
1548 return 0;
1549}
1550
1551VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1552
Florin Corasfd542f12018-05-16 19:28:24 -07001553static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001554session_queue_run_on_main (vlib_main_t * vm)
1555{
1556 vlib_node_runtime_t *node;
1557
1558 node = vlib_node_get_runtime (vm, session_queue_node.index);
1559 return session_queue_node_fn (vm, node, 0);
1560}
1561
1562static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001563session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1564 vlib_frame_t * f)
1565{
Florin Corasfd542f12018-05-16 19:28:24 -07001566 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001567 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001568 uword event_type;
1569
1570 while (1)
1571 {
1572 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001573 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1574
1575 switch (event_type)
1576 {
Florin Coras5484daa2020-03-27 23:55:06 +00001577 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1578 /* Run session queue node on main thread */
1579 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001580 break;
1581 case SESSION_Q_PROCESS_STOP:
Florin Corase10da622020-10-25 14:00:29 -07001582 vlib_node_set_state (vm, session_queue_process_node.index,
1583 VLIB_NODE_STATE_DISABLED);
Florin Corasfd542f12018-05-16 19:28:24 -07001584 timeout = 100000.0;
1585 break;
1586 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001587 /* Timed out. Run on main to ensure all events are handled */
1588 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001589 break;
1590 }
1591 vec_reset_length (event_data);
1592 }
1593 return 0;
1594}
1595
1596/* *INDENT-OFF* */
1597VLIB_REGISTER_NODE (session_queue_process_node) =
1598{
1599 .function = session_queue_process,
1600 .type = VLIB_NODE_TYPE_PROCESS,
1601 .name = "session-queue-process",
1602 .state = VLIB_NODE_STATE_DISABLED,
1603};
1604/* *INDENT-ON* */
1605
Florin Coras653e43f2019-03-04 10:56:23 -08001606static_always_inline uword
1607session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1608 vlib_frame_t * frame)
1609{
1610 session_main_t *sm = &session_main;
1611 if (!sm->wrk[0].vpp_event_queue)
1612 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001613 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001614 return session_queue_node_fn (vm, node, frame);
1615}
1616
1617/* *INDENT-OFF* */
1618VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1619{
1620 .function = session_queue_pre_input_inline,
1621 .type = VLIB_NODE_TYPE_PRE_INPUT,
1622 .name = "session-queue-main",
1623 .state = VLIB_NODE_STATE_DISABLED,
1624};
1625/* *INDENT-ON* */
1626
Dave Barach68b0fb02017-02-28 15:15:56 -05001627/*
1628 * fd.io coding-style-patch-verification: ON
1629 *
1630 * Local Variables:
1631 * eval: (c-set-style "gnu")
1632 * End:
1633 */