blob: 573fbe91b0996872e225adc5b9de7a5a00325083 [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;
63
64 if ((rv = vnet_listen (a)))
65 clib_warning ("listen returned: %d", rv);
66
67 app_wrk = application_get_worker (app, mp->wrk_index);
68 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
69 return;
70}
71
72static void
73session_mq_listen_uri_handler (void *data)
74{
75 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
76 vnet_listen_args_t _a, *a = &_a;
77 app_worker_t *app_wrk;
78 application_t *app;
79 int rv;
80
81 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
82
83 app = application_lookup (mp->client_index);
84 if (!app)
85 return;
86
87 clib_memset (a, 0, sizeof (*a));
88 a->uri = (char *) mp->uri;
89 a->app_index = app->app_index;
90 rv = vnet_bind_uri (a);
91
92 app_wrk = application_get_worker (app, 0);
93 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
94}
95
96static void
97session_mq_connect_handler (void *data)
98{
99 session_connect_msg_t *mp = (session_connect_msg_t *) data;
100 vnet_connect_args_t _a, *a = &_a;
101 app_worker_t *app_wrk;
102 application_t *app;
103 int rv;
104
105 app_check_thread_and_barrier (session_mq_connect_handler, mp);
106
107 app = application_lookup (mp->client_index);
108 if (!app)
109 return;
110
111 clib_memset (a, 0, sizeof (*a));
112 a->sep.is_ip4 = mp->is_ip4;
113 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
114 a->sep.port = mp->port;
115 a->sep.transport_proto = mp->proto;
116 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700117 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras57a5a2d2020-04-01 23:16:11 +0000118 if (mp->is_ip4)
119 {
120 ip46_address_mask_ip4 (&a->sep.ip);
121 ip46_address_mask_ip4 (&a->sep.peer.ip);
122 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000123 a->sep.peer.port = mp->lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700124 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
125 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200126 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +0100127 a->sep_ext.crypto_engine = mp->crypto_engine;
Florin Corasd85666f2020-04-03 00:58:48 +0000128 a->sep_ext.transport_flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700129 if (mp->hostname_len)
130 {
131 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
132 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
133 }
134 a->api_context = mp->context;
135 a->app_index = app->app_index;
136 a->wrk_map_index = mp->wrk_index;
137
138 if ((rv = vnet_connect (a)))
139 {
Florin Coras57660d92020-04-04 22:45:34 +0000140 clib_warning ("connect returned: %U", format_session_error, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700141 app_wrk = application_get_worker (app, mp->wrk_index);
Florin Coras00e01d32019-10-21 16:07:46 -0700142 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700143 }
144
145 vec_free (a->sep_ext.hostname);
146}
147
148static void
149session_mq_connect_uri_handler (void *data)
150{
151 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
152 vnet_connect_args_t _a, *a = &_a;
153 app_worker_t *app_wrk;
154 application_t *app;
155 int rv;
156
157 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
158
159 app = application_lookup (mp->client_index);
160 if (!app)
161 return;
162
163 clib_memset (a, 0, sizeof (*a));
164 a->uri = (char *) mp->uri;
165 a->api_context = mp->context;
166 a->app_index = app->app_index;
167 if ((rv = vnet_connect_uri (a)))
168 {
169 clib_warning ("connect_uri returned: %d", rv);
170 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
Florin Coras00e01d32019-10-21 16:07:46 -0700171 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, rv);
Florin Coras458089b2019-08-21 16:20:44 -0700172 }
173}
174
175static void
176session_mq_disconnect_handler (void *data)
177{
178 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
179 vnet_disconnect_args_t _a, *a = &_a;
180 application_t *app;
181
182 app = application_lookup (mp->client_index);
183 if (!app)
184 return;
185
186 a->app_index = app->app_index;
187 a->handle = mp->handle;
188 vnet_disconnect_session (a);
189}
190
191static void
192app_mq_detach_handler (void *data)
193{
194 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
195 vnet_app_detach_args_t _a, *a = &_a;
196 application_t *app;
197
198 app_check_thread_and_barrier (app_mq_detach_handler, mp);
199
200 app = application_lookup (mp->client_index);
201 if (!app)
202 return;
203
204 a->app_index = app->app_index;
205 a->api_client_index = mp->client_index;
206 vnet_application_detach (a);
207}
208
209static void
210session_mq_unlisten_handler (void *data)
211{
212 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
213 vnet_unlisten_args_t _a, *a = &_a;
214 app_worker_t *app_wrk;
215 application_t *app;
216 int rv;
217
218 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
219
220 app = application_lookup (mp->client_index);
221 if (!app)
222 return;
223
224 clib_memset (a, 0, sizeof (*a));
225 a->app_index = app->app_index;
226 a->handle = mp->handle;
227 a->wrk_map_index = mp->wrk_index;
228 if ((rv = vnet_unlisten (a)))
229 clib_warning ("unlisten returned: %d", rv);
230
231 app_wrk = application_get_worker (app, a->wrk_map_index);
232 if (!app_wrk)
233 return;
234
235 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800236}
237
Florin Coras52207f12018-07-12 14:48:06 -0700238static void
239session_mq_accepted_reply_handler (void *data)
240{
241 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
242 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800243 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700244 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800245 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700246
247 /* Server isn't interested, kill the session */
248 if (mp->retval)
249 {
250 a->app_index = mp->context;
251 a->handle = mp->handle;
252 vnet_disconnect_session (a);
253 return;
254 }
255
Florin Coras2b81e3c2019-02-27 07:55:46 -0800256 /* Mail this back from the main thread. We're not polling in main
257 * thread so we're using other workers for notifications. */
258 if (vlib_num_workers () && vlib_get_thread_index () != 0
259 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700260 {
Florin Coras458089b2019-08-21 16:20:44 -0700261 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
262 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800263 return;
264 }
265
266 s = session_get_from_handle_if_valid (mp->handle);
267 if (!s)
268 return;
269
270 app_wrk = app_worker_get (s->app_wrk_index);
271 if (app_wrk->app_index != mp->context)
272 {
273 clib_warning ("app doesn't own session");
274 return;
275 }
276
277 if (!session_has_transport (s))
278 {
Florin Coras653e43f2019-03-04 10:56:23 -0800279 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800280 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700281 return;
Florin Coras52207f12018-07-12 14:48:06 -0700282 }
283 else
284 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800285 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700286 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600287
288 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800289 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800290
291 /* Closed while waiting for app to reply. Resend disconnect */
292 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
293 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700294 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800295 s->session_state = old_state;
296 return;
297 }
Florin Coras52207f12018-07-12 14:48:06 -0700298 }
299}
300
301static void
302session_mq_reset_reply_handler (void *data)
303{
Florin Coras4af830c2018-12-04 09:21:36 -0800304 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700305 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700306 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800307 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700308 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700309 u32 index, thread_index;
310
311 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800312 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700313 if (!app)
314 return;
315
316 session_parse_handle (mp->handle, &index, &thread_index);
317 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800318
Florin Corasf1910322019-12-05 12:05:57 -0800319 /* No session or not the right session */
320 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800321 return;
322
Florin Coras15531972018-08-12 23:50:53 -0700323 app_wrk = app_worker_get (s->app_wrk_index);
324 if (!app_wrk || app_wrk->app_index != app->app_index)
325 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200326 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700327 mp->handle);
328 return;
329 }
Florin Coras52207f12018-07-12 14:48:06 -0700330
331 /* Client objected to resetting the session, log and continue */
332 if (mp->retval)
333 {
334 clib_warning ("client retval %d", mp->retval);
335 return;
336 }
337
338 /* This comes as a response to a reset, transport only waiting for
339 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800340 a->handle = mp->handle;
341 a->app_index = app->app_index;
342 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700343}
344
345static void
346session_mq_disconnected_handler (void *data)
347{
348 session_disconnected_reply_msg_t *rmp;
349 vnet_disconnect_args_t _a, *a = &_a;
350 svm_msg_q_msg_t _msg, *msg = &_msg;
351 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700352 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700353 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800354 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700355 application_t *app;
356 int rv = 0;
357
358 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700359 if (!(s = session_get_from_handle_if_valid (mp->handle)))
360 {
361 clib_warning ("could not disconnect handle %llu", mp->handle);
362 return;
363 }
Florin Coras15531972018-08-12 23:50:53 -0700364 app_wrk = app_worker_get (s->app_wrk_index);
365 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700366 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700367 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700368 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700369 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700370 return;
Florin Coras52207f12018-07-12 14:48:06 -0700371 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700372
373 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700374 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700375 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700376
Florin Coras15531972018-08-12 23:50:53 -0700377 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700378 SESSION_MQ_CTRL_EVT_RING,
379 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700380 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400381 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800382 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700383 rmp = (session_disconnected_reply_msg_t *) evt->data;
384 rmp->handle = mp->handle;
385 rmp->context = mp->context;
386 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700387 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700388}
389
390static void
391session_mq_disconnected_reply_handler (void *data)
392{
393 session_disconnected_reply_msg_t *mp;
394 vnet_disconnect_args_t _a, *a = &_a;
395 application_t *app;
396
397 mp = (session_disconnected_reply_msg_t *) data;
398
399 /* Client objected to disconnecting the session, log and continue */
400 if (mp->retval)
401 {
402 clib_warning ("client retval %d", mp->retval);
403 return;
404 }
405
406 /* Disconnect has been confirmed. Confirm close to transport */
407 app = application_lookup (mp->context);
408 if (app)
409 {
410 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700411 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700412 vnet_disconnect_session (a);
413 }
414}
415
Florin Coras30e79c22019-01-02 19:31:22 -0800416static void
417session_mq_worker_update_handler (void *data)
418{
419 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
420 session_worker_update_reply_msg_t *rmp;
421 svm_msg_q_msg_t _msg, *msg = &_msg;
422 app_worker_t *app_wrk;
423 u32 owner_app_wrk_map;
424 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800425 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800426 application_t *app;
427
428 app = application_lookup (mp->client_index);
429 if (!app)
430 return;
431 if (!(s = session_get_from_handle_if_valid (mp->handle)))
432 {
433 clib_warning ("invalid handle %llu", mp->handle);
434 return;
435 }
436 app_wrk = app_worker_get (s->app_wrk_index);
437 if (app_wrk->app_index != app->app_index)
438 {
439 clib_warning ("app %u does not own session %llu", app->app_index,
440 mp->handle);
441 return;
442 }
443 owner_app_wrk_map = app_wrk->wrk_map_index;
444 app_wrk = application_get_worker (app, mp->wrk_index);
445
446 /* This needs to come from the new owner */
447 if (mp->req_wrk_index == owner_app_wrk_map)
448 {
449 session_req_worker_update_msg_t *wump;
450
451 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
452 SESSION_MQ_CTRL_EVT_RING,
453 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800454 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
455 clib_memset (evt, 0, sizeof (*evt));
456 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
457 wump = (session_req_worker_update_msg_t *) evt->data;
458 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700459 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800460 return;
461 }
462
463 app_worker_own_session (app_wrk, s);
464
465 /*
466 * Send reply
467 */
468 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
469 SESSION_MQ_CTRL_EVT_RING,
470 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800471 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
472 clib_memset (evt, 0, sizeof (*evt));
473 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
474 rmp = (session_worker_update_reply_msg_t *) evt->data;
475 rmp->handle = mp->handle;
Florin Coras288eaab2019-02-03 15:26:14 -0800476 rmp->rx_fifo = pointer_to_uword (s->rx_fifo);
477 rmp->tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800478 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700479 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800480
481 /*
482 * Retransmit messages that may have been lost
483 */
Florin Coras288eaab2019-02-03 15:26:14 -0800484 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800485 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800486
Florin Coras288eaab2019-02-03 15:26:14 -0800487 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800488 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800489
490 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700491 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800492}
493
Dave Barach68b0fb02017-02-28 15:15:56 -0500494vlib_node_registration_t session_queue_node;
495
496typedef struct
497{
498 u32 session_index;
499 u32 server_thread_index;
500} session_queue_trace_t;
501
502/* packet trace format function */
503static u8 *
504format_session_queue_trace (u8 * s, va_list * args)
505{
506 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
507 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
508 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
509
Florin Coras30928f82020-01-27 19:21:28 -0800510 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500511 t->session_index, t->server_thread_index);
512 return s;
513}
514
Florin Coras6792ec02017-03-13 03:49:51 -0700515#define foreach_session_queue_error \
516_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700517_(TIMER, "Timer events") \
518_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500519
520typedef enum
521{
522#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
523 foreach_session_queue_error
524#undef _
525 SESSION_QUEUE_N_ERROR,
526} session_queue_error_t;
527
528static char *session_queue_error_strings[] = {
529#define _(sym,string) string,
530 foreach_session_queue_error
531#undef _
532};
533
Florin Coras0d60a0f2018-06-29 02:02:08 -0700534enum
535{
536 SESSION_TX_NO_BUFFERS = -2,
537 SESSION_TX_NO_DATA,
538 SESSION_TX_OK
539};
540
Florin Coras66cf5e02018-06-08 09:17:39 -0700541static void
542session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
543 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800544 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700545{
Florin Coras8e43d042018-05-04 15:46:57 -0700546 session_queue_trace_t *t;
Florin Coras66cf5e02018-06-08 09:17:39 -0700547 vlib_buffer_t *b;
548 int i;
549
550 for (i = 0; i < clib_min (n_trace, n_segs); i++)
551 {
Florin Coras30928f82020-01-27 19:21:28 -0800552 b = vlib_get_buffer (vm, to_next[i]);
Florin Coras66cf5e02018-06-08 09:17:39 -0700553 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
Florin Coras66cf5e02018-06-08 09:17:39 -0700554 t = vlib_add_trace (vm, node, b, sizeof (*t));
555 t->session_index = s->session_index;
556 t->server_thread_index = s->thread_index;
557 }
Florin Coras4df38712018-06-20 12:44:16 -0700558 vlib_set_trace_count (vm, node, n_trace - i);
Florin Coras8e43d042018-05-04 15:46:57 -0700559}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700560
Florin Coras8e43d042018-05-04 15:46:57 -0700561always_inline void
562session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
563 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
564{
Florin Coras8e43d042018-05-04 15:46:57 -0700565 vlib_buffer_t *chain_b, *prev_b;
566 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800567 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700568 u16 len_to_deq, n_bytes_read;
569 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700570
Florin Coras31c99552019-03-01 13:00:58 -0800571 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700572 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
573 b->total_length_not_including_first_buffer = 0;
574
575 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000576 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700577 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700578 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700579 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700580 {
Florin Coras8e43d042018-05-04 15:46:57 -0700581 prev_b = chain_b;
582 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700583
584 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700585 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700586 chain_b = vlib_get_buffer (vm, chain_bi0);
587 chain_b->current_data = 0;
588 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700589 if (peek_data)
590 {
Florin Coras288eaab2019-02-03 15:26:14 -0800591 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000592 ctx->sp.tx_offset, len_to_deq, data);
593 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700594 }
595 else
596 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200597 if (ctx->transport_vft->transport_options.tx_type ==
598 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700599 {
Florin Coras288eaab2019-02-03 15:26:14 -0800600 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700601 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700602 u16 deq_now;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700603 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700604 len_to_deq);
605 n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
606 data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700607 ASSERT (n_bytes_read > 0);
608
609 hdr->data_offset += n_bytes_read;
610 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800611 {
612 u32 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
613 svm_fifo_dequeue_drop (f, offset);
614 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700615 }
616 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700617 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
618 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700619 }
Florin Coras8e43d042018-05-04 15:46:57 -0700620 ASSERT (n_bytes_read == len_to_deq);
621 chain_b->current_length = n_bytes_read;
622 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700623
624 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700625 prev_b->next_buffer = chain_bi0;
626 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700627
628 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700629 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700630
Florin Corasb2215d62017-08-01 16:56:58 -0700631 to_deq -= n_bytes_read;
632 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700633 break;
634 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700635 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700636 && b->total_length_not_including_first_buffer == left_from_seg);
637 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700638}
639
Florin Coras8e43d042018-05-04 15:46:57 -0700640always_inline void
641session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
642 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
643{
644 u32 len_to_deq;
645 u8 *data0;
646 int n_bytes_read;
647
648 /*
649 * Start with the first buffer in chain
650 */
651 b->error = 0;
652 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
653 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700654
Florin Coras1ee78302019-02-05 15:51:15 -0800655 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700656 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
657
Florin Coras7fb0fe12018-04-09 09:24:52 -0700658 if (peek_data)
659 {
Florin Coras70f879d2020-03-13 17:54:42 +0000660 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700661 len_to_deq, data0);
662 ASSERT (n_bytes_read > 0);
663 /* Keep track of progress locally, transport is also supposed to
664 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000665 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700666 }
667 else
668 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200669 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700670 {
671 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800672 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700673 u16 deq_now;
674 u32 offset;
675
676 ASSERT (hdr->data_length > hdr->data_offset);
677 deq_now = clib_min (hdr->data_length - hdr->data_offset,
678 len_to_deq);
679 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
680 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
681 ASSERT (n_bytes_read > 0);
682
683 if (ctx->s->session_state == SESSION_STATE_LISTENING)
684 {
685 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
686 ctx->tc->rmt_port = hdr->rmt_port;
687 }
688 hdr->data_offset += n_bytes_read;
689 if (hdr->data_offset == hdr->data_length)
690 {
691 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
692 svm_fifo_dequeue_drop (f, offset);
693 }
694 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700695 else
696 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700697 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
698 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700699 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700700 }
701 }
Florin Coras8e43d042018-05-04 15:46:57 -0700702 b->current_length = n_bytes_read;
703 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500704
Florin Coras8e43d042018-05-04 15:46:57 -0700705 /*
706 * Fill in the remaining buffers in the chain, if any
707 */
708 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
709 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700710}
711
712always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800713session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700714{
715 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800716 {
Florin Corasa6789742019-08-07 19:12:38 -0700717 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
718 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700719 /* Can retransmit for closed sessions but can't send new data if
720 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700721 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700722 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700723 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
724 {
725 /* Allow closed transports to still send custom packets.
726 * For instance, tcp may want to send acks in time-wait. */
727 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
728 && (s->flags & SESSION_F_CUSTOM_TX))
729 return 0;
730 return 2;
731 }
Florin Corase04c2992017-03-01 08:17:34 -0800732 }
Florin Coras8e43d042018-05-04 15:46:57 -0700733 return 0;
734}
Dave Barach68b0fb02017-02-28 15:15:56 -0500735
Florin Coras8e43d042018-05-04 15:46:57 -0700736always_inline transport_connection_t *
737session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
738{
739 if (peek_data)
740 {
741 return ctx->transport_vft->get_connection (ctx->s->connection_index,
742 ctx->s->thread_index);
743 }
744 else
745 {
746 if (ctx->s->session_state == SESSION_STATE_LISTENING)
747 return ctx->transport_vft->get_listener (ctx->s->connection_index);
748 else
749 {
750 return ctx->transport_vft->get_connection (ctx->s->connection_index,
751 ctx->s->thread_index);
752 }
753 }
754}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800755
Florin Coras8e43d042018-05-04 15:46:57 -0700756always_inline void
757session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700758 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700759{
760 u32 n_bytes_per_buf, n_bytes_per_seg;
Sirshak Das28aa5392019-02-05 01:33:33 -0600761 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500762 if (peek_data)
763 {
Florin Coras9d063042017-09-14 03:08:00 -0400764 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000765 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700766 {
767 ctx->max_len_to_snd = 0;
768 return;
769 }
Florin Coras70f879d2020-03-13 17:54:42 +0000770 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500771 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700772 else
773 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200774 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700775 {
Florin Coras8e43d042018-05-04 15:46:57 -0700776 if (ctx->max_dequeue <= sizeof (ctx->hdr))
777 {
778 ctx->max_len_to_snd = 0;
779 return;
780 }
Florin Coras288eaab2019-02-03 15:26:14 -0800781 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700782 (u8 *) & ctx->hdr);
783 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
784 ctx->max_dequeue = ctx->hdr.data_length - ctx->hdr.data_offset;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700785 }
786 }
Florin Coras8e43d042018-05-04 15:46:57 -0700787 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700788
789 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000790 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700791 {
792 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000793 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
794 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
795 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700796 /* TODO Nagle ? */
797 }
798 else
799 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700800 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000801 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700802 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500803
Florin Corasf08f26d2018-05-10 13:20:47 -0700804 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000805 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700806 if (ctx->n_segs_per_evt > max_segs)
807 {
808 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000809 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700810 }
811
Damjan Marion8934a042019-02-09 23:29:26 +0100812 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Florin Coras1ee78302019-02-05 15:51:15 -0800813 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Florin Coras70f879d2020-03-13 17:54:42 +0000814 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700815 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
Florin Coras70f879d2020-03-13 17:54:42 +0000816 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
817 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800818 n_bytes_per_buf -
819 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700820}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700821
Florin Corasaaf64a22020-02-23 01:37:34 +0000822always_inline void
823session_tx_maybe_reschedule (session_worker_t * wrk,
824 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +0000825 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +0000826{
827 session_t *s = ctx->s;
828
829 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +0000830 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +0000831 if (svm_fifo_set_event (s->tx_fifo))
832 session_evt_add_head_old (wrk, elt);
833}
834
Florin Coras8e43d042018-05-04 15:46:57 -0700835always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700836session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
837 vlib_node_runtime_t * node,
838 session_evt_elt_t * elt,
839 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700840{
Florin Coras8a754f12019-10-16 22:35:18 -0700841 u32 n_trace, n_bufs_needed = 0, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700842 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700843 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700844 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700845 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700846 transport_proto_t tp;
847 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700848 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700849
Florin Coras1bcad5c2019-01-09 20:04:38 -0800850 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700851 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700852 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700853 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700854 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700855 }
856
Florin Coras1bcad5c2019-01-09 20:04:38 -0800857 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras26dd6de2019-07-23 23:54:47 -0700858 max_burst = VLIB_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700859
Florin Coras1bcad5c2019-01-09 20:04:38 -0800860 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700861 ctx->transport_vft = transport_protocol_get_vft (tp);
862 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800863
864 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
865 {
866 if (ctx->transport_vft->flush_data)
867 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700868 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -0800869 }
870
Florin Coras26dd6de2019-07-23 23:54:47 -0700871 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
872 {
873 u32 n_custom_tx;
874 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
Florin Coras9f86d222020-03-23 15:34:22 +0000875 ctx->sp.max_burst_size = max_burst;
876 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, &ctx->sp);
Florin Coras26dd6de2019-07-23 23:54:47 -0700877 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700878 if (PREDICT_FALSE
879 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
880 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700881 max_burst -= n_custom_tx;
Florin Coras6080e0d2020-03-13 20:39:43 +0000882 if (!max_burst || (ctx->s->flags & SESSION_F_CUSTOM_TX))
Florin Coras26dd6de2019-07-23 23:54:47 -0700883 {
884 session_evt_add_old (wrk, elt);
885 return SESSION_TX_OK;
886 }
887 }
888
Florin Coras70f879d2020-03-13 17:54:42 +0000889 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -0700890
Florin Coras70f879d2020-03-13 17:54:42 +0000891 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -0700892 {
Florin Coras6080e0d2020-03-13 20:39:43 +0000893 /* If the deschedule flag was set, remove session from scheduler.
894 * Transport is responsible for rescheduling this session. */
895 if (ctx->sp.flags & TRANSPORT_SND_F_DESCHED)
896 transport_connection_deschedule (ctx->tc);
Florin Coras70f879d2020-03-13 17:54:42 +0000897 /* Request to postpone the session, e.g., zero-wnd and transport
898 * is not currently probing */
899 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
900 session_evt_add_old (wrk, elt);
Florin Coras6080e0d2020-03-13 20:39:43 +0000901 /* This flow queue is "empty" so it should be re-evaluated before
902 * the ones that have data to send. */
Florin Coras70f879d2020-03-13 17:54:42 +0000903 else
Florin Coras6080e0d2020-03-13 20:39:43 +0000904 session_evt_add_head_old (wrk, elt);
Florin Coras70f879d2020-03-13 17:54:42 +0000905
Florin Coras0d60a0f2018-06-29 02:02:08 -0700906 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700907 }
908
Florin Coras11e9e352019-11-13 19:09:47 -0800909 if (transport_connection_is_tx_paced (ctx->tc))
910 {
911 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
912 if (snd_space < TRANSPORT_PACER_MIN_BURST)
913 {
914 session_evt_add_head_old (wrk, elt);
915 return SESSION_TX_NO_DATA;
916 }
Florin Coras70f879d2020-03-13 17:54:42 +0000917 snd_space = clib_min (ctx->sp.snd_space, snd_space);
918 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
919 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -0800920 }
921
Florin Coras8e43d042018-05-04 15:46:57 -0700922 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -0700923 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -0700924
Florin Coras8e43d042018-05-04 15:46:57 -0700925 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -0700926 {
Florin Coras11e9e352019-11-13 19:09:47 -0800927 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +0000928 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -0700929 return SESSION_TX_NO_DATA;
930 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500931
Florin Corasf08f26d2018-05-10 13:20:47 -0700932 n_bufs_needed = ctx->n_segs_per_evt * ctx->n_bufs_per_seg;
Florin Coras2068fd42019-01-31 14:35:50 -0800933 vec_validate_aligned (wrk->tx_buffers, n_bufs_needed - 1,
934 CLIB_CACHE_LINE_BYTES);
935 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_needed);
936 if (PREDICT_FALSE (n_bufs < n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -0500937 {
Florin Coras2068fd42019-01-31 14:35:50 -0800938 if (n_bufs)
939 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +0000940 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -0700941 vlib_node_increment_counter (wrk->vm, node->node_index,
942 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -0800943 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -0700944 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500945
Florin Corasf08f26d2018-05-10 13:20:47 -0700946 ctx->left_to_snd = ctx->max_len_to_snd;
947 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -0700948
949 while (n_left >= 4)
950 {
951 vlib_buffer_t *b0, *b1;
952 u32 bi0, bi1;
953
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700954 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -0700955 pb = vlib_get_buffer (vm, pbi);
956 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700957 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -0700958 pb = vlib_get_buffer (vm, pbi);
959 vlib_prefetch_buffer_header (pb, STORE);
960
Florin Coras8a754f12019-10-16 22:35:18 -0700961 bi0 = wrk->tx_buffers[--n_bufs];
962 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700963
964 b0 = vlib_get_buffer (vm, bi0);
965 b1 = vlib_get_buffer (vm, bi1);
966
967 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
968 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
969
970 ctx->transport_vft->push_header (ctx->tc, b0);
971 ctx->transport_vft->push_header (ctx->tc, b1);
972
Florin Coras66cf5e02018-06-08 09:17:39 -0700973 n_left -= 2;
974
975 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
976 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
977
Florin Coras8a754f12019-10-16 22:35:18 -0700978 vec_add1 (wrk->pending_tx_buffers, bi0);
979 vec_add1 (wrk->pending_tx_buffers, bi1);
980 vec_add1 (wrk->pending_tx_nexts, next_index);
981 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -0700982 }
Florin Corasf08f26d2018-05-10 13:20:47 -0700983 while (n_left)
984 {
Florin Coras66cf5e02018-06-08 09:17:39 -0700985 vlib_buffer_t *b0;
986 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700987
Florin Coras91ca4622018-06-30 11:27:59 -0700988 if (n_left > 1)
989 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700990 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -0700991 pb = vlib_get_buffer (vm, pbi);
992 vlib_prefetch_buffer_header (pb, STORE);
993 }
994
Florin Coras8a754f12019-10-16 22:35:18 -0700995 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700996 b0 = vlib_get_buffer (vm, bi0);
997 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -0700998
Florin Coras66cf5e02018-06-08 09:17:39 -0700999 /* Ask transport to push header after current_length and
1000 * total_length_not_including_first_buffer are updated */
1001 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -04001002
Florin Coras66cf5e02018-06-08 09:17:39 -07001003 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001004
Florin Coras66cf5e02018-06-08 09:17:39 -07001005 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001006
Florin Coras8a754f12019-10-16 22:35:18 -07001007 vec_add1 (wrk->pending_tx_buffers, bi0);
1008 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001009 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001010
Florin Coras60183db2019-07-20 15:53:16 -07001011 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001012 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001013 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001014
Florin Coras2068fd42019-01-31 14:35:50 -08001015 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001016 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1017
Florin Corasf08f26d2018-05-10 13:20:47 -07001018 *n_tx_packets += ctx->n_segs_per_evt;
Florin Coras00482232019-08-02 12:52:00 -07001019 transport_connection_update_tx_bytes (ctx->tc, ctx->max_len_to_snd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001020
Florin Corascca96182019-07-19 07:34:13 -07001021 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1022 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1023
Florin Corasf08f26d2018-05-10 13:20:47 -07001024 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001025
1026 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1027 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001028 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001029 session_evt_add_old (wrk, elt);
1030 else
Florin Coras70f879d2020-03-13 17:54:42 +00001031 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001032
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001033 if (!peek_data
1034 && ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Dave Barach68b0fb02017-02-28 15:15:56 -05001035 {
Florin Coras7fb0fe12018-04-09 09:24:52 -07001036 /* Fix dgram pre header */
Florin Coras8e43d042018-05-04 15:46:57 -07001037 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Coras288eaab2019-02-03 15:26:14 -08001038 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001039 sizeof (session_dgram_pre_hdr_t));
1040 /* More data needs to be read */
Sirshak Das28aa5392019-02-05 01:33:33 -06001041 else if (svm_fifo_max_dequeue_cons (ctx->s->tx_fifo) > 0)
Florin Coras288eaab2019-02-03 15:26:14 -08001042 if (svm_fifo_set_event (ctx->s->tx_fifo))
Florin Coras60183db2019-07-20 15:53:16 -07001043 session_evt_add_old (wrk, elt);
Florin Coras0e573f52019-05-07 16:28:16 -07001044
Florin Coras2d379d82019-06-28 12:45:12 -07001045 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, ctx->max_len_to_snd))
Florin Coras0e573f52019-05-07 16:28:16 -07001046 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001047 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001048 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001049}
1050
1051int
Florin Coras60183db2019-07-20 15:53:16 -07001052session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1053 vlib_node_runtime_t * node,
1054 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001055{
Florin Coras60183db2019-07-20 15:53:16 -07001056 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001057}
1058
1059int
Florin Coras60183db2019-07-20 15:53:16 -07001060session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1061 vlib_node_runtime_t * node,
1062 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001063{
Florin Coras60183db2019-07-20 15:53:16 -07001064 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001065}
1066
Florin Coras371ca502018-02-21 12:07:41 -08001067int
Florin Coras60183db2019-07-20 15:53:16 -07001068session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001069 vlib_node_runtime_t * node,
Florin Corased8db522020-02-27 04:32:51 +00001070 session_evt_elt_t * elt, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001071{
Florin Coras9f86d222020-03-23 15:34:22 +00001072 transport_send_params_t *sp = &wrk->ctx.sp;
Florin Coras288eaab2019-02-03 15:26:14 -08001073 session_t *s = wrk->ctx.s;
Florin Coras9f86d222020-03-23 15:34:22 +00001074 u32 n_packets;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001075
Florin Corasc0737e92019-03-04 14:19:39 -08001076 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001077 return 0;
Florin Corased8db522020-02-27 04:32:51 +00001078
1079 /* Clear custom-tx flag used to request reschedule for tx */
1080 s->flags &= ~SESSION_F_CUSTOM_TX;
1081
Florin Coras9f86d222020-03-23 15:34:22 +00001082 sp->max_burst_size = clib_min (VLIB_FRAME_SIZE - *n_tx_packets,
1083 TRANSPORT_PACER_MAX_BURST_PKTS);
Florin Corased8db522020-02-27 04:32:51 +00001084
Florin Coras9f86d222020-03-23 15:34:22 +00001085 n_packets = transport_custom_tx (session_get_transport_proto (s), s, sp);
1086 *n_tx_packets += n_packets;
1087
1088 if (s->flags & SESSION_F_CUSTOM_TX)
Florin Corased8db522020-02-27 04:32:51 +00001089 {
1090 session_evt_add_old (wrk, elt);
1091 }
Florin Coras9f86d222020-03-23 15:34:22 +00001092 else if (!(sp->flags & TRANSPORT_SND_F_DESCHED))
Florin Corased8db522020-02-27 04:32:51 +00001093 {
1094 svm_fifo_unset_event (s->tx_fifo);
1095 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
1096 if (svm_fifo_set_event (s->tx_fifo))
1097 session_evt_add_head_old (wrk, elt);
1098 }
1099
1100 return n_packets;
Florin Coras371ca502018-02-21 12:07:41 -08001101}
1102
Florin Coras288eaab2019-02-03 15:26:14 -08001103always_inline session_t *
Florin Coras52207f12018-07-12 14:48:06 -07001104session_event_get_session (session_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -07001105{
Florin Corasc0737e92019-03-04 14:19:39 -08001106 return session_get_if_valid (e->session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -07001107}
1108
Florin Coras60183db2019-07-20 15:53:16 -07001109always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001110session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1111{
1112 clib_llist_index_t ei;
1113 void (*fp) (void *);
1114 session_event_t *e;
1115 session_t *s;
1116
1117 ei = clib_llist_entry_index (wrk->event_elts, elt);
1118 e = &elt->evt;
1119
1120 switch (e->event_type)
1121 {
1122 case SESSION_CTRL_EVT_RPC:
1123 fp = e->rpc_args.fp;
1124 (*fp) (e->rpc_args.arg);
1125 break;
1126 case SESSION_CTRL_EVT_CLOSE:
1127 s = session_get_from_handle_if_valid (e->session_handle);
1128 if (PREDICT_FALSE (!s))
1129 break;
1130 session_transport_close (s);
1131 break;
1132 case SESSION_CTRL_EVT_RESET:
1133 s = session_get_from_handle_if_valid (e->session_handle);
1134 if (PREDICT_FALSE (!s))
1135 break;
1136 session_transport_reset (s);
1137 break;
1138 case SESSION_CTRL_EVT_LISTEN:
1139 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1140 break;
1141 case SESSION_CTRL_EVT_LISTEN_URI:
1142 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1143 break;
1144 case SESSION_CTRL_EVT_UNLISTEN:
1145 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1146 break;
1147 case SESSION_CTRL_EVT_CONNECT:
1148 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1149 break;
1150 case SESSION_CTRL_EVT_CONNECT_URI:
1151 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1152 break;
1153 case SESSION_CTRL_EVT_DISCONNECT:
1154 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1155 break;
1156 case SESSION_CTRL_EVT_DISCONNECTED:
1157 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1158 break;
1159 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1160 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1161 break;
1162 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1163 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1164 elt));
1165 break;
1166 case SESSION_CTRL_EVT_RESET_REPLY:
1167 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1168 break;
1169 case SESSION_CTRL_EVT_WORKER_UPDATE:
1170 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1171 break;
1172 case SESSION_CTRL_EVT_APP_DETACH:
1173 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1174 break;
1175 default:
1176 clib_warning ("unhandled event type %d", e->event_type);
1177 }
1178
1179 /* Regrab elements in case pool moved */
1180 elt = pool_elt_at_index (wrk->event_elts, ei);
1181 if (!clib_llist_elt_is_linked (elt, evt_list))
1182 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001183 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001184 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1185 session_evt_ctrl_data_free (wrk, elt);
1186 session_evt_elt_free (wrk, elt);
1187 }
1188}
1189
1190always_inline void
1191session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
1192 session_evt_elt_t * elt, u32 thread_index,
1193 int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001194{
Florin Coras60183db2019-07-20 15:53:16 -07001195 session_main_t *smm = &session_main;
1196 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001197 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001198 session_event_t *e;
1199 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001200
Florin Corasb0ffbee2019-07-21 19:23:46 -07001201 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001202 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001203
Florin Coras60183db2019-07-20 15:53:16 -07001204 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001205 {
Florin Coras60183db2019-07-20 15:53:16 -07001206 case SESSION_IO_EVT_TX_FLUSH:
1207 case SESSION_IO_EVT_TX:
Florin Coras60183db2019-07-20 15:53:16 -07001208 s = session_event_get_session (e, thread_index);
1209 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001210 break;
Florin Coras60183db2019-07-20 15:53:16 -07001211 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1212 wrk->ctx.s = s;
1213 /* Spray packets in per session type frames, since they go to
1214 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001215 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001216 break;
1217 case SESSION_IO_EVT_RX:
1218 s = session_event_get_session (e, thread_index);
1219 if (!s)
1220 break;
1221 transport_app_rx_evt (session_get_transport_proto (s),
1222 s->connection_index, s->thread_index);
1223 break;
Florin Coras60183db2019-07-20 15:53:16 -07001224 case SESSION_IO_EVT_BUILTIN_RX:
1225 s = session_event_get_session (e, thread_index);
1226 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1227 break;
1228 svm_fifo_unset_event (s->rx_fifo);
1229 app_wrk = app_worker_get (s->app_wrk_index);
1230 app_worker_builtin_rx (app_wrk, s);
1231 break;
1232 case SESSION_IO_EVT_BUILTIN_TX:
1233 s = session_get_from_handle_if_valid (e->session_handle);
1234 wrk->ctx.s = s;
1235 if (PREDICT_TRUE (s != 0))
1236 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1237 break;
Florin Coras60183db2019-07-20 15:53:16 -07001238 default:
1239 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001240 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001241
1242 /* Regrab elements in case pool moved */
1243 elt = pool_elt_at_index (wrk->event_elts, ei);
1244 if (!clib_llist_elt_is_linked (elt, evt_list))
1245 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001246}
1247
Florin Coras458089b2019-08-21 16:20:44 -07001248/* *INDENT-OFF* */
1249static const u32 session_evt_msg_sizes[] = {
1250#define _(symc, sym) \
1251 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1252 foreach_session_ctrl_evt
1253#undef _
1254};
1255/* *INDENT-ON* */
1256
1257always_inline void
1258session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1259{
1260 session_evt_elt_t *elt;
1261
1262 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1263 {
1264 elt = session_evt_alloc_ctrl (wrk);
1265 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1266 {
1267 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1268 elt->evt.event_type = evt->event_type;
1269 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1270 session_evt_msg_sizes[evt->event_type]);
1271 }
1272 else
1273 {
1274 /* Internal control events fit into io events footprint */
1275 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1276 }
1277 }
1278 else
1279 {
1280 elt = session_evt_alloc_new (wrk);
1281 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1282 }
1283}
1284
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001285static void
1286session_flush_pending_tx_buffers (session_worker_t * wrk,
1287 vlib_node_runtime_t * node)
1288{
1289 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1290 wrk->pending_tx_nexts,
1291 vec_len (wrk->pending_tx_nexts));
1292 vec_reset_length (wrk->pending_tx_buffers);
1293 vec_reset_length (wrk->pending_tx_nexts);
1294}
1295
Florin Coras0d60a0f2018-06-29 02:02:08 -07001296static uword
1297session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1298 vlib_frame_t * frame)
1299{
Florin Coras31c99552019-03-01 13:00:58 -08001300 session_main_t *smm = vnet_get_session_main ();
Florin Coras2062ec02019-07-15 13:15:18 -07001301 u32 thread_index = vm->thread_index, n_to_dequeue;
Florin Coras31c99552019-03-01 13:00:58 -08001302 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001303 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras16d974e2020-02-09 20:03:12 +00001304 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras3c2fed52018-07-04 04:15:05 -07001305 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Corase9570d42020-02-23 19:00:18 +00001306 int i, n_tx_packets;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001307 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001308 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001309
Florin Corascca96182019-07-19 07:34:13 -07001310 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001311
Florin Coras60183db2019-07-20 15:53:16 -07001312 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001313 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Coras60183db2019-07-20 15:53:16 -07001314
Florin Coras0d60a0f2018-06-29 02:02:08 -07001315 /*
1316 * Update transport time
1317 */
Florin Coras60183db2019-07-20 15:53:16 -07001318 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001319 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001320
Florin Corasb0ffbee2019-07-21 19:23:46 -07001321 /*
1322 * Dequeue and handle new events
1323 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001324
Florin Coras5f56d732018-10-30 10:21:59 -07001325 /* Try to dequeue what is available. Don't wait for lock.
1326 * XXX: we may need priorities here */
1327 mq = wrk->vpp_event_queue;
1328 n_to_dequeue = svm_msg_q_size (mq);
1329 if (n_to_dequeue && svm_msg_q_try_lock (mq) == 0)
1330 {
1331 for (i = 0; i < n_to_dequeue; i++)
1332 {
Florin Coras5f56d732018-10-30 10:21:59 -07001333 svm_msg_q_sub_w_lock (mq, msg);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001334 evt = svm_msg_q_msg_data (mq, msg);
Florin Coras458089b2019-08-21 16:20:44 -07001335 session_evt_add_to_list (wrk, evt);
Florin Coras5f56d732018-10-30 10:21:59 -07001336 svm_msg_q_free_msg (mq, msg);
1337 }
1338 svm_msg_q_unlock (mq);
1339 }
1340
Florin Corasb0ffbee2019-07-21 19:23:46 -07001341 /*
1342 * Handle control events
1343 */
1344
1345 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1346
1347 /* *INDENT-OFF* */
1348 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1349 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001350 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001351 }));
1352 /* *INDENT-ON* */
1353
1354 /*
1355 * Handle the new io events.
1356 */
1357
1358 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001359 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1360 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001361
Florin Coras16d974e2020-02-09 20:03:12 +00001362 ei = clib_llist_next_index (new_he, evt_list);
1363 while (ei != wrk->new_head && n_tx_packets < VLIB_FRAME_SIZE)
1364 {
1365 elt = pool_elt_at_index (wrk->event_elts, ei);
1366 ei = clib_llist_next_index (elt, evt_list);
1367 clib_llist_remove (wrk->event_elts, evt_list, elt);
1368 session_event_dispatch_io (wrk, node, elt, thread_index, &n_tx_packets);
1369 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001370
1371 /*
Florin Coras45b79732019-10-30 19:22:51 -07001372 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001373 */
1374
Florin Coras45b79732019-10-30 19:22:51 -07001375 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001376 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001377 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001378 ei = clib_llist_next_index (old_he, evt_list);
1379
Florin Coras45b79732019-10-30 19:22:51 -07001380 while (n_tx_packets < VLIB_FRAME_SIZE)
1381 {
Florin Corasdd97a482019-11-02 14:32:52 -07001382 elt = pool_elt_at_index (wrk->event_elts, ei);
1383 next_ei = clib_llist_next_index (elt, evt_list);
1384 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001385
Florin Coras45b79732019-10-30 19:22:51 -07001386 session_event_dispatch_io (wrk, node, elt, thread_index,
1387 &n_tx_packets);
1388
Florin Coras45b79732019-10-30 19:22:51 -07001389 if (ei == old_ti)
1390 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001391
1392 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001393 };
1394 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001395
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001396 if (vec_len (wrk->pending_tx_buffers))
1397 session_flush_pending_tx_buffers (wrk, node);
1398
Florin Coras0d60a0f2018-06-29 02:02:08 -07001399 vlib_node_increment_counter (vm, session_queue_node.index,
1400 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1401
Florin Corascca96182019-07-19 07:34:13 -07001402 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001403
1404 return n_tx_packets;
1405}
1406
1407/* *INDENT-OFF* */
1408VLIB_REGISTER_NODE (session_queue_node) =
1409{
1410 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001411 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001412 .name = "session-queue",
1413 .format_trace = format_session_queue_trace,
1414 .type = VLIB_NODE_TYPE_INPUT,
1415 .n_errors = ARRAY_LEN (session_queue_error_strings),
1416 .error_strings = session_queue_error_strings,
1417 .state = VLIB_NODE_STATE_DISABLED,
1418};
1419/* *INDENT-ON* */
1420
Dave Barachacd2a6a2017-05-16 17:41:34 -04001421void
1422dump_thread_0_event_queue (void)
1423{
Florin Coras31c99552019-03-01 13:00:58 -08001424 session_main_t *smm = vnet_get_session_main ();
Dave Barachacd2a6a2017-05-16 17:41:34 -04001425 vlib_main_t *vm = &vlib_global_main;
1426 u32 my_thread_index = vm->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -07001427 session_event_t _e, *e = &_e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001428 svm_msg_q_ring_t *ring;
Florin Coras288eaab2019-02-03 15:26:14 -08001429 session_t *s0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001430 svm_msg_q_msg_t *msg;
1431 svm_msg_q_t *mq;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001432 int i, index;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001433
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001434 mq = smm->wrk[my_thread_index].vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001435 index = mq->q->head;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001436
Florin Coras3c2fed52018-07-04 04:15:05 -07001437 for (i = 0; i < mq->q->cursize; i++)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001438 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001439 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1440 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001441 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001442
1443 switch (e->event_type)
1444 {
Florin Corasf6c43132019-03-01 12:41:21 -08001445 case SESSION_IO_EVT_TX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001446 s0 = session_event_get_session (e, my_thread_index);
1447 fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index);
1448 break;
1449
Florin Corasf6c43132019-03-01 12:41:21 -08001450 case SESSION_CTRL_EVT_CLOSE:
Florin Corascea194d2017-10-02 00:18:51 -07001451 s0 = session_get_from_handle (e->session_handle);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001452 fformat (stdout, "[%04d] disconnect session %d\n", i,
1453 s0->session_index);
1454 break;
1455
Florin Corasf6c43132019-03-01 12:41:21 -08001456 case SESSION_IO_EVT_BUILTIN_RX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001457 s0 = session_event_get_session (e, my_thread_index);
1458 fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index);
1459 break;
1460
Florin Corasf6c43132019-03-01 12:41:21 -08001461 case SESSION_CTRL_EVT_RPC:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001462 fformat (stdout, "[%04d] RPC call %llx with %llx\n",
David Johnsond9818dd2018-12-14 14:53:41 -05001463 i, (u64) (uword) (e->rpc_args.fp),
1464 (u64) (uword) (e->rpc_args.arg));
Dave Barachacd2a6a2017-05-16 17:41:34 -04001465 break;
1466
1467 default:
1468 fformat (stdout, "[%04d] unhandled event type %d\n",
1469 i, e->event_type);
1470 break;
1471 }
1472
1473 index++;
1474
Florin Coras3c2fed52018-07-04 04:15:05 -07001475 if (index == mq->q->maxsize)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001476 index = 0;
1477 }
1478}
1479
Florin Coras6534b7a2017-07-18 05:38:03 -04001480static u8
Florin Coras52207f12018-07-12 14:48:06 -07001481session_node_cmp_event (session_event_t * e, svm_fifo_t * f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001482{
Florin Coras288eaab2019-02-03 15:26:14 -08001483 session_t *s;
Florin Coras6534b7a2017-07-18 05:38:03 -04001484 switch (e->event_type)
1485 {
Florin Corasf6c43132019-03-01 12:41:21 -08001486 case SESSION_IO_EVT_RX:
1487 case SESSION_IO_EVT_TX:
1488 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasbe237bf2019-09-27 08:16:40 -07001489 case SESSION_IO_EVT_BUILTIN_TX:
1490 case SESSION_IO_EVT_TX_FLUSH:
Florin Corasc0737e92019-03-04 14:19:39 -08001491 if (e->session_index == f->master_session_index)
Florin Coras6534b7a2017-07-18 05:38:03 -04001492 return 1;
1493 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001494 case SESSION_CTRL_EVT_CLOSE:
Florin Coras6534b7a2017-07-18 05:38:03 -04001495 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001496 case SESSION_CTRL_EVT_RPC:
Florin Corascea194d2017-10-02 00:18:51 -07001497 s = session_get_from_handle (e->session_handle);
Florin Coras6534b7a2017-07-18 05:38:03 -04001498 if (!s)
1499 {
1500 clib_warning ("session has event but doesn't exist!");
1501 break;
1502 }
Florin Coras288eaab2019-02-03 15:26:14 -08001503 if (s->rx_fifo == f || s->tx_fifo == f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001504 return 1;
1505 break;
1506 default:
1507 break;
1508 }
1509 return 0;
1510}
1511
1512u8
Florin Coras52207f12018-07-12 14:48:06 -07001513session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e)
Florin Coras6534b7a2017-07-18 05:38:03 -04001514{
Florin Coras2062ec02019-07-15 13:15:18 -07001515 session_evt_elt_t *elt;
Florin Coras31c99552019-03-01 13:00:58 -08001516 session_worker_t *wrk;
Florin Coras6534b7a2017-07-18 05:38:03 -04001517 int i, index, found = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001518 svm_msg_q_msg_t *msg;
1519 svm_msg_q_ring_t *ring;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001520 svm_msg_q_t *mq;
Florin Coras6534b7a2017-07-18 05:38:03 -04001521 u8 thread_index;
1522
1523 ASSERT (e);
1524 thread_index = f->master_thread_index;
Florin Coras31c99552019-03-01 13:00:58 -08001525 wrk = session_main_get_worker (thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001526
Florin Coras6534b7a2017-07-18 05:38:03 -04001527 /*
1528 * Search evt queue
1529 */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001530 mq = wrk->vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001531 index = mq->q->head;
1532 for (i = 0; i < mq->q->cursize; i++)
Florin Coras6534b7a2017-07-18 05:38:03 -04001533 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001534 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1535 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001536 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Florin Coras6534b7a2017-07-18 05:38:03 -04001537 found = session_node_cmp_event (e, f);
1538 if (found)
Florin Coras371ca502018-02-21 12:07:41 -08001539 return 1;
Florin Corasbe237bf2019-09-27 08:16:40 -07001540 index = (index + 1) % mq->q->maxsize;
Florin Coras6534b7a2017-07-18 05:38:03 -04001541 }
1542 /*
1543 * Search pending events vector
1544 */
Florin Coras2062ec02019-07-15 13:15:18 -07001545
1546 /* *INDENT-OFF* */
1547 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasbe237bf2019-09-27 08:16:40 -07001548 pool_elt_at_index (wrk->event_elts, wrk->new_head),
1549 elt, ({
1550 found = session_node_cmp_event (&elt->evt, f);
1551 if (found)
1552 {
1553 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
1554 goto done;
1555 }
1556 }));
1557 /* *INDENT-ON* */
1558
1559 /* *INDENT-OFF* */
1560 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasb0ffbee2019-07-21 19:23:46 -07001561 pool_elt_at_index (wrk->event_elts, wrk->old_head),
1562 elt, ({
Florin Coras2062ec02019-07-15 13:15:18 -07001563 found = session_node_cmp_event (&elt->evt, f);
Florin Coras6534b7a2017-07-18 05:38:03 -04001564 if (found)
1565 {
Florin Coras2062ec02019-07-15 13:15:18 -07001566 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
Florin Corasbe237bf2019-09-27 08:16:40 -07001567 goto done;
Florin Coras6534b7a2017-07-18 05:38:03 -04001568 }
Florin Coras2062ec02019-07-15 13:15:18 -07001569 }));
1570 /* *INDENT-ON* */
1571
Florin Corasbe237bf2019-09-27 08:16:40 -07001572done:
Florin Coras6534b7a2017-07-18 05:38:03 -04001573 return found;
1574}
1575
Dave Barach2a863912017-11-28 10:11:42 -05001576static clib_error_t *
1577session_queue_exit (vlib_main_t * vm)
1578{
1579 if (vec_len (vlib_mains) < 2)
1580 return 0;
1581
1582 /*
1583 * Shut off (especially) worker-thread session nodes.
1584 * Otherwise, vpp can crash as the main thread unmaps the
1585 * API segment.
1586 */
1587 vlib_worker_thread_barrier_sync (vm);
1588 session_node_enable_disable (0 /* is_enable */ );
1589 vlib_worker_thread_barrier_release (vm);
1590 return 0;
1591}
1592
1593VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1594
Florin Corasfd542f12018-05-16 19:28:24 -07001595static uword
Florin Coras5484daa2020-03-27 23:55:06 +00001596session_queue_run_on_main (vlib_main_t * vm)
1597{
1598 vlib_node_runtime_t *node;
1599
1600 node = vlib_node_get_runtime (vm, session_queue_node.index);
1601 return session_queue_node_fn (vm, node, 0);
1602}
1603
1604static uword
Florin Corasfd542f12018-05-16 19:28:24 -07001605session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1606 vlib_frame_t * f)
1607{
Florin Corasfd542f12018-05-16 19:28:24 -07001608 uword *event_data = 0;
Florin Coras5484daa2020-03-27 23:55:06 +00001609 f64 timeout = 1.0;
Florin Corasfd542f12018-05-16 19:28:24 -07001610 uword event_type;
1611
1612 while (1)
1613 {
1614 vlib_process_wait_for_event_or_clock (vm, timeout);
Florin Corasfd542f12018-05-16 19:28:24 -07001615 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1616
1617 switch (event_type)
1618 {
Florin Coras5484daa2020-03-27 23:55:06 +00001619 case SESSION_Q_PROCESS_RUN_ON_MAIN:
1620 /* Run session queue node on main thread */
1621 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001622 break;
1623 case SESSION_Q_PROCESS_STOP:
1624 timeout = 100000.0;
1625 break;
1626 case ~0:
Florin Coras5484daa2020-03-27 23:55:06 +00001627 /* Timed out. Run on main to ensure all events are handled */
1628 session_queue_run_on_main (vm);
Florin Corasfd542f12018-05-16 19:28:24 -07001629 break;
1630 }
1631 vec_reset_length (event_data);
1632 }
1633 return 0;
1634}
1635
1636/* *INDENT-OFF* */
1637VLIB_REGISTER_NODE (session_queue_process_node) =
1638{
1639 .function = session_queue_process,
1640 .type = VLIB_NODE_TYPE_PROCESS,
1641 .name = "session-queue-process",
1642 .state = VLIB_NODE_STATE_DISABLED,
1643};
1644/* *INDENT-ON* */
1645
Florin Coras653e43f2019-03-04 10:56:23 -08001646static_always_inline uword
1647session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1648 vlib_frame_t * frame)
1649{
1650 session_main_t *sm = &session_main;
1651 if (!sm->wrk[0].vpp_event_queue)
1652 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001653 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001654 return session_queue_node_fn (vm, node, frame);
1655}
1656
1657/* *INDENT-OFF* */
1658VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1659{
1660 .function = session_queue_pre_input_inline,
1661 .type = VLIB_NODE_TYPE_PRE_INPUT,
1662 .name = "session-queue-main",
1663 .state = VLIB_NODE_STATE_DISABLED,
1664};
1665/* *INDENT-ON* */
1666
Dave Barach68b0fb02017-02-28 15:15:56 -05001667/*
1668 * fd.io coding-style-patch-verification: ON
1669 *
1670 * Local Variables:
1671 * eval: (c-set-style "gnu")
1672 * End:
1673 */