blob: b1c2428874e06eaf76b9791a25b8c8d1b601a285 [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));
53 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;
61
62 if ((rv = vnet_listen (a)))
63 clib_warning ("listen returned: %d", rv);
64
65 app_wrk = application_get_worker (app, mp->wrk_index);
66 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
67 return;
68}
69
70static void
71session_mq_listen_uri_handler (void *data)
72{
73 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
74 vnet_listen_args_t _a, *a = &_a;
75 app_worker_t *app_wrk;
76 application_t *app;
77 int rv;
78
79 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
80
81 app = application_lookup (mp->client_index);
82 if (!app)
83 return;
84
85 clib_memset (a, 0, sizeof (*a));
86 a->uri = (char *) mp->uri;
87 a->app_index = app->app_index;
88 rv = vnet_bind_uri (a);
89
90 app_wrk = application_get_worker (app, 0);
91 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
92}
93
94static void
95session_mq_connect_handler (void *data)
96{
97 session_connect_msg_t *mp = (session_connect_msg_t *) data;
98 vnet_connect_args_t _a, *a = &_a;
99 app_worker_t *app_wrk;
100 application_t *app;
101 int rv;
102
103 app_check_thread_and_barrier (session_mq_connect_handler, mp);
104
105 app = application_lookup (mp->client_index);
106 if (!app)
107 return;
108
109 clib_memset (a, 0, sizeof (*a));
110 a->sep.is_ip4 = mp->is_ip4;
111 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
112 a->sep.port = mp->port;
113 a->sep.transport_proto = mp->proto;
114 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700115 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700116 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
117 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200118 a->sep_ext.ckpair_index = mp->ckpair_index;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +0100119 a->sep_ext.crypto_engine = mp->crypto_engine;
Nathan Skrzypczakc00f4802019-12-03 16:25:11 +0100120 a->sep_ext.flags = mp->flags;
Florin Coras458089b2019-08-21 16:20:44 -0700121 if (mp->hostname_len)
122 {
123 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
124 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
125 }
126 a->api_context = mp->context;
127 a->app_index = app->app_index;
128 a->wrk_map_index = mp->wrk_index;
129
130 if ((rv = vnet_connect (a)))
131 {
132 clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
133 app_wrk = application_get_worker (app, mp->wrk_index);
134 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0,
135 /* is_fail */ 1);
136 }
137
138 vec_free (a->sep_ext.hostname);
139}
140
141static void
142session_mq_connect_uri_handler (void *data)
143{
144 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
145 vnet_connect_args_t _a, *a = &_a;
146 app_worker_t *app_wrk;
147 application_t *app;
148 int rv;
149
150 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
151
152 app = application_lookup (mp->client_index);
153 if (!app)
154 return;
155
156 clib_memset (a, 0, sizeof (*a));
157 a->uri = (char *) mp->uri;
158 a->api_context = mp->context;
159 a->app_index = app->app_index;
160 if ((rv = vnet_connect_uri (a)))
161 {
162 clib_warning ("connect_uri returned: %d", rv);
163 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
164 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0,
165 /* is_fail */ 1);
166 }
167}
168
169static void
170session_mq_disconnect_handler (void *data)
171{
172 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
173 vnet_disconnect_args_t _a, *a = &_a;
174 application_t *app;
175
176 app = application_lookup (mp->client_index);
177 if (!app)
178 return;
179
180 a->app_index = app->app_index;
181 a->handle = mp->handle;
182 vnet_disconnect_session (a);
183}
184
185static void
186app_mq_detach_handler (void *data)
187{
188 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
189 vnet_app_detach_args_t _a, *a = &_a;
190 application_t *app;
191
192 app_check_thread_and_barrier (app_mq_detach_handler, mp);
193
194 app = application_lookup (mp->client_index);
195 if (!app)
196 return;
197
198 a->app_index = app->app_index;
199 a->api_client_index = mp->client_index;
200 vnet_application_detach (a);
201}
202
203static void
204session_mq_unlisten_handler (void *data)
205{
206 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
207 vnet_unlisten_args_t _a, *a = &_a;
208 app_worker_t *app_wrk;
209 application_t *app;
210 int rv;
211
212 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
213
214 app = application_lookup (mp->client_index);
215 if (!app)
216 return;
217
218 clib_memset (a, 0, sizeof (*a));
219 a->app_index = app->app_index;
220 a->handle = mp->handle;
221 a->wrk_map_index = mp->wrk_index;
222 if ((rv = vnet_unlisten (a)))
223 clib_warning ("unlisten returned: %d", rv);
224
225 app_wrk = application_get_worker (app, a->wrk_map_index);
226 if (!app_wrk)
227 return;
228
229 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800230}
231
Florin Coras52207f12018-07-12 14:48:06 -0700232static void
233session_mq_accepted_reply_handler (void *data)
234{
235 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
236 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800237 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700238 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800239 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700240
241 /* Server isn't interested, kill the session */
242 if (mp->retval)
243 {
244 a->app_index = mp->context;
245 a->handle = mp->handle;
246 vnet_disconnect_session (a);
247 return;
248 }
249
Florin Coras2b81e3c2019-02-27 07:55:46 -0800250 /* Mail this back from the main thread. We're not polling in main
251 * thread so we're using other workers for notifications. */
252 if (vlib_num_workers () && vlib_get_thread_index () != 0
253 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700254 {
Florin Coras458089b2019-08-21 16:20:44 -0700255 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
256 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800257 return;
258 }
259
260 s = session_get_from_handle_if_valid (mp->handle);
261 if (!s)
262 return;
263
264 app_wrk = app_worker_get (s->app_wrk_index);
265 if (app_wrk->app_index != mp->context)
266 {
267 clib_warning ("app doesn't own session");
268 return;
269 }
270
271 if (!session_has_transport (s))
272 {
Florin Coras653e43f2019-03-04 10:56:23 -0800273 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800274 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700275 return;
Florin Coras52207f12018-07-12 14:48:06 -0700276 }
277 else
278 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800279 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700280 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600281
282 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800283 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800284
285 /* Closed while waiting for app to reply. Resend disconnect */
286 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
287 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700288 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800289 s->session_state = old_state;
290 return;
291 }
Florin Coras52207f12018-07-12 14:48:06 -0700292 }
293}
294
295static void
296session_mq_reset_reply_handler (void *data)
297{
Florin Coras4af830c2018-12-04 09:21:36 -0800298 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700299 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700300 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800301 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700302 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700303 u32 index, thread_index;
304
305 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800306 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700307 if (!app)
308 return;
309
310 session_parse_handle (mp->handle, &index, &thread_index);
311 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800312
Florin Corasf1910322019-12-05 12:05:57 -0800313 /* No session or not the right session */
314 if (!s || s->session_state < SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800315 return;
316
Florin Coras15531972018-08-12 23:50:53 -0700317 app_wrk = app_worker_get (s->app_wrk_index);
318 if (!app_wrk || app_wrk->app_index != app->app_index)
319 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200320 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700321 mp->handle);
322 return;
323 }
Florin Coras52207f12018-07-12 14:48:06 -0700324
325 /* Client objected to resetting the session, log and continue */
326 if (mp->retval)
327 {
328 clib_warning ("client retval %d", mp->retval);
329 return;
330 }
331
332 /* This comes as a response to a reset, transport only waiting for
333 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800334 a->handle = mp->handle;
335 a->app_index = app->app_index;
336 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700337}
338
339static void
340session_mq_disconnected_handler (void *data)
341{
342 session_disconnected_reply_msg_t *rmp;
343 vnet_disconnect_args_t _a, *a = &_a;
344 svm_msg_q_msg_t _msg, *msg = &_msg;
345 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700346 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700347 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800348 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700349 application_t *app;
350 int rv = 0;
351
352 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700353 if (!(s = session_get_from_handle_if_valid (mp->handle)))
354 {
355 clib_warning ("could not disconnect handle %llu", mp->handle);
356 return;
357 }
Florin Coras15531972018-08-12 23:50:53 -0700358 app_wrk = app_worker_get (s->app_wrk_index);
359 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700360 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700361 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700362 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700363 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700364 return;
Florin Coras52207f12018-07-12 14:48:06 -0700365 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700366
367 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700368 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700369 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700370
Florin Coras15531972018-08-12 23:50:53 -0700371 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700372 SESSION_MQ_CTRL_EVT_RING,
373 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700374 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400375 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800376 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700377 rmp = (session_disconnected_reply_msg_t *) evt->data;
378 rmp->handle = mp->handle;
379 rmp->context = mp->context;
380 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700381 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700382}
383
384static void
385session_mq_disconnected_reply_handler (void *data)
386{
387 session_disconnected_reply_msg_t *mp;
388 vnet_disconnect_args_t _a, *a = &_a;
389 application_t *app;
390
391 mp = (session_disconnected_reply_msg_t *) data;
392
393 /* Client objected to disconnecting the session, log and continue */
394 if (mp->retval)
395 {
396 clib_warning ("client retval %d", mp->retval);
397 return;
398 }
399
400 /* Disconnect has been confirmed. Confirm close to transport */
401 app = application_lookup (mp->context);
402 if (app)
403 {
404 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700405 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700406 vnet_disconnect_session (a);
407 }
408}
409
Florin Coras30e79c22019-01-02 19:31:22 -0800410static void
411session_mq_worker_update_handler (void *data)
412{
413 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
414 session_worker_update_reply_msg_t *rmp;
415 svm_msg_q_msg_t _msg, *msg = &_msg;
416 app_worker_t *app_wrk;
417 u32 owner_app_wrk_map;
418 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800419 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800420 application_t *app;
421
422 app = application_lookup (mp->client_index);
423 if (!app)
424 return;
425 if (!(s = session_get_from_handle_if_valid (mp->handle)))
426 {
427 clib_warning ("invalid handle %llu", mp->handle);
428 return;
429 }
430 app_wrk = app_worker_get (s->app_wrk_index);
431 if (app_wrk->app_index != app->app_index)
432 {
433 clib_warning ("app %u does not own session %llu", app->app_index,
434 mp->handle);
435 return;
436 }
437 owner_app_wrk_map = app_wrk->wrk_map_index;
438 app_wrk = application_get_worker (app, mp->wrk_index);
439
440 /* This needs to come from the new owner */
441 if (mp->req_wrk_index == owner_app_wrk_map)
442 {
443 session_req_worker_update_msg_t *wump;
444
445 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
446 SESSION_MQ_CTRL_EVT_RING,
447 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800448 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
449 clib_memset (evt, 0, sizeof (*evt));
450 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
451 wump = (session_req_worker_update_msg_t *) evt->data;
452 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700453 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800454 return;
455 }
456
457 app_worker_own_session (app_wrk, s);
458
459 /*
460 * Send reply
461 */
462 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
463 SESSION_MQ_CTRL_EVT_RING,
464 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800465 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
466 clib_memset (evt, 0, sizeof (*evt));
467 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
468 rmp = (session_worker_update_reply_msg_t *) evt->data;
469 rmp->handle = mp->handle;
Florin Coras288eaab2019-02-03 15:26:14 -0800470 rmp->rx_fifo = pointer_to_uword (s->rx_fifo);
471 rmp->tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800472 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700473 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800474
475 /*
476 * Retransmit messages that may have been lost
477 */
Florin Coras288eaab2019-02-03 15:26:14 -0800478 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800479 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800480
Florin Coras288eaab2019-02-03 15:26:14 -0800481 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800482 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800483
484 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700485 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800486}
487
Dave Barach68b0fb02017-02-28 15:15:56 -0500488vlib_node_registration_t session_queue_node;
489
490typedef struct
491{
492 u32 session_index;
493 u32 server_thread_index;
494} session_queue_trace_t;
495
496/* packet trace format function */
497static u8 *
498format_session_queue_trace (u8 * s, va_list * args)
499{
500 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
501 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
502 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
503
Florin Coras30928f82020-01-27 19:21:28 -0800504 s = format (s, "session index %d thread index %d",
Dave Barach68b0fb02017-02-28 15:15:56 -0500505 t->session_index, t->server_thread_index);
506 return s;
507}
508
Florin Coras6792ec02017-03-13 03:49:51 -0700509#define foreach_session_queue_error \
510_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700511_(TIMER, "Timer events") \
512_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500513
514typedef enum
515{
516#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
517 foreach_session_queue_error
518#undef _
519 SESSION_QUEUE_N_ERROR,
520} session_queue_error_t;
521
522static char *session_queue_error_strings[] = {
523#define _(sym,string) string,
524 foreach_session_queue_error
525#undef _
526};
527
Florin Coras0d60a0f2018-06-29 02:02:08 -0700528enum
529{
530 SESSION_TX_NO_BUFFERS = -2,
531 SESSION_TX_NO_DATA,
532 SESSION_TX_OK
533};
534
Florin Coras66cf5e02018-06-08 09:17:39 -0700535static void
536session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
537 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800538 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700539{
Florin Coras8e43d042018-05-04 15:46:57 -0700540 session_queue_trace_t *t;
Florin Coras66cf5e02018-06-08 09:17:39 -0700541 vlib_buffer_t *b;
542 int i;
543
544 for (i = 0; i < clib_min (n_trace, n_segs); i++)
545 {
Florin Coras30928f82020-01-27 19:21:28 -0800546 b = vlib_get_buffer (vm, to_next[i]);
Florin Coras66cf5e02018-06-08 09:17:39 -0700547 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
Florin Coras66cf5e02018-06-08 09:17:39 -0700548 t = vlib_add_trace (vm, node, b, sizeof (*t));
549 t->session_index = s->session_index;
550 t->server_thread_index = s->thread_index;
551 }
Florin Coras4df38712018-06-20 12:44:16 -0700552 vlib_set_trace_count (vm, node, n_trace - i);
Florin Coras8e43d042018-05-04 15:46:57 -0700553}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700554
Florin Coras8e43d042018-05-04 15:46:57 -0700555always_inline void
556session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
557 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
558{
Florin Coras8e43d042018-05-04 15:46:57 -0700559 vlib_buffer_t *chain_b, *prev_b;
560 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800561 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700562 u16 len_to_deq, n_bytes_read;
563 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700564
Florin Coras31c99552019-03-01 13:00:58 -0800565 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700566 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
567 b->total_length_not_including_first_buffer = 0;
568
569 chain_b = b;
Florin Coras70f879d2020-03-13 17:54:42 +0000570 left_from_seg = clib_min (ctx->sp.snd_mss - b->current_length,
Florin Coras8e43d042018-05-04 15:46:57 -0700571 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700572 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700573 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700574 {
Florin Coras8e43d042018-05-04 15:46:57 -0700575 prev_b = chain_b;
576 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700577
578 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700579 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700580 chain_b = vlib_get_buffer (vm, chain_bi0);
581 chain_b->current_data = 0;
582 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700583 if (peek_data)
584 {
Florin Coras288eaab2019-02-03 15:26:14 -0800585 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras70f879d2020-03-13 17:54:42 +0000586 ctx->sp.tx_offset, len_to_deq, data);
587 ctx->sp.tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700588 }
589 else
590 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200591 if (ctx->transport_vft->transport_options.tx_type ==
592 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700593 {
Florin Coras288eaab2019-02-03 15:26:14 -0800594 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700595 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700596 u16 deq_now;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700597 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700598 len_to_deq);
599 n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
600 data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700601 ASSERT (n_bytes_read > 0);
602
603 hdr->data_offset += n_bytes_read;
604 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800605 {
606 u32 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
607 svm_fifo_dequeue_drop (f, offset);
608 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700609 }
610 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700611 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
612 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700613 }
Florin Coras8e43d042018-05-04 15:46:57 -0700614 ASSERT (n_bytes_read == len_to_deq);
615 chain_b->current_length = n_bytes_read;
616 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700617
618 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700619 prev_b->next_buffer = chain_bi0;
620 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700621
622 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700623 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700624
Florin Corasb2215d62017-08-01 16:56:58 -0700625 to_deq -= n_bytes_read;
626 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700627 break;
628 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700629 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700630 && b->total_length_not_including_first_buffer == left_from_seg);
631 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700632}
633
Florin Coras8e43d042018-05-04 15:46:57 -0700634always_inline void
635session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
636 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
637{
638 u32 len_to_deq;
639 u8 *data0;
640 int n_bytes_read;
641
642 /*
643 * Start with the first buffer in chain
644 */
645 b->error = 0;
646 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
647 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700648
Florin Coras1ee78302019-02-05 15:51:15 -0800649 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700650 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
651
Florin Coras7fb0fe12018-04-09 09:24:52 -0700652 if (peek_data)
653 {
Florin Coras70f879d2020-03-13 17:54:42 +0000654 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->sp.tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700655 len_to_deq, data0);
656 ASSERT (n_bytes_read > 0);
657 /* Keep track of progress locally, transport is also supposed to
658 * increment it independently when pushing the header */
Florin Coras70f879d2020-03-13 17:54:42 +0000659 ctx->sp.tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700660 }
661 else
662 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200663 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700664 {
665 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800666 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700667 u16 deq_now;
668 u32 offset;
669
670 ASSERT (hdr->data_length > hdr->data_offset);
671 deq_now = clib_min (hdr->data_length - hdr->data_offset,
672 len_to_deq);
673 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
674 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
675 ASSERT (n_bytes_read > 0);
676
677 if (ctx->s->session_state == SESSION_STATE_LISTENING)
678 {
679 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
680 ctx->tc->rmt_port = hdr->rmt_port;
681 }
682 hdr->data_offset += n_bytes_read;
683 if (hdr->data_offset == hdr->data_length)
684 {
685 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
686 svm_fifo_dequeue_drop (f, offset);
687 }
688 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700689 else
690 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700691 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
692 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700693 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700694 }
695 }
Florin Coras8e43d042018-05-04 15:46:57 -0700696 b->current_length = n_bytes_read;
697 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500698
Florin Coras8e43d042018-05-04 15:46:57 -0700699 /*
700 * Fill in the remaining buffers in the chain, if any
701 */
702 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
703 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700704}
705
706always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800707session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700708{
709 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800710 {
Florin Corasa6789742019-08-07 19:12:38 -0700711 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
712 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700713 /* Can retransmit for closed sessions but can't send new data if
714 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700715 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700716 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700717 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
718 {
719 /* Allow closed transports to still send custom packets.
720 * For instance, tcp may want to send acks in time-wait. */
721 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
722 && (s->flags & SESSION_F_CUSTOM_TX))
723 return 0;
724 return 2;
725 }
Florin Corase04c2992017-03-01 08:17:34 -0800726 }
Florin Coras8e43d042018-05-04 15:46:57 -0700727 return 0;
728}
Dave Barach68b0fb02017-02-28 15:15:56 -0500729
Florin Coras8e43d042018-05-04 15:46:57 -0700730always_inline transport_connection_t *
731session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
732{
733 if (peek_data)
734 {
735 return ctx->transport_vft->get_connection (ctx->s->connection_index,
736 ctx->s->thread_index);
737 }
738 else
739 {
740 if (ctx->s->session_state == SESSION_STATE_LISTENING)
741 return ctx->transport_vft->get_listener (ctx->s->connection_index);
742 else
743 {
744 return ctx->transport_vft->get_connection (ctx->s->connection_index,
745 ctx->s->thread_index);
746 }
747 }
748}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800749
Florin Coras8e43d042018-05-04 15:46:57 -0700750always_inline void
751session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700752 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700753{
754 u32 n_bytes_per_buf, n_bytes_per_seg;
Sirshak Das28aa5392019-02-05 01:33:33 -0600755 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500756 if (peek_data)
757 {
Florin Coras9d063042017-09-14 03:08:00 -0400758 /* Offset in rx fifo from where to peek data */
Florin Coras70f879d2020-03-13 17:54:42 +0000759 if (PREDICT_FALSE (ctx->sp.tx_offset >= ctx->max_dequeue))
Florin Coras8e43d042018-05-04 15:46:57 -0700760 {
761 ctx->max_len_to_snd = 0;
762 return;
763 }
Florin Coras70f879d2020-03-13 17:54:42 +0000764 ctx->max_dequeue -= ctx->sp.tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500765 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700766 else
767 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200768 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700769 {
Florin Coras8e43d042018-05-04 15:46:57 -0700770 if (ctx->max_dequeue <= sizeof (ctx->hdr))
771 {
772 ctx->max_len_to_snd = 0;
773 return;
774 }
Florin Coras288eaab2019-02-03 15:26:14 -0800775 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700776 (u8 *) & ctx->hdr);
777 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
778 ctx->max_dequeue = ctx->hdr.data_length - ctx->hdr.data_offset;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700779 }
780 }
Florin Coras8e43d042018-05-04 15:46:57 -0700781 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700782
783 /* Ensure we're not writing more than transport window allows */
Florin Coras70f879d2020-03-13 17:54:42 +0000784 if (ctx->max_dequeue < ctx->sp.snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700785 {
786 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras70f879d2020-03-13 17:54:42 +0000787 ctx->max_len_to_snd = (ctx->max_dequeue > ctx->sp.snd_mss) ?
788 (ctx->max_dequeue - (ctx->max_dequeue % ctx->sp.snd_mss)) :
789 ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700790 /* TODO Nagle ? */
791 }
792 else
793 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700794 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras70f879d2020-03-13 17:54:42 +0000795 ctx->max_len_to_snd = ctx->sp.snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700796 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500797
Florin Corasf08f26d2018-05-10 13:20:47 -0700798 /* Check if we're tx constrained by the node */
Florin Coras70f879d2020-03-13 17:54:42 +0000799 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->sp.snd_mss);
Florin Corasf08f26d2018-05-10 13:20:47 -0700800 if (ctx->n_segs_per_evt > max_segs)
801 {
802 ctx->n_segs_per_evt = max_segs;
Florin Coras70f879d2020-03-13 17:54:42 +0000803 ctx->max_len_to_snd = max_segs * ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700804 }
805
Damjan Marion8934a042019-02-09 23:29:26 +0100806 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Florin Coras1ee78302019-02-05 15:51:15 -0800807 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
Florin Coras70f879d2020-03-13 17:54:42 +0000808 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->sp.snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700809 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
Florin Coras70f879d2020-03-13 17:54:42 +0000810 ctx->deq_per_buf = clib_min (ctx->sp.snd_mss, n_bytes_per_buf);
811 ctx->deq_per_first_buf = clib_min (ctx->sp.snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800812 n_bytes_per_buf -
813 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700814}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700815
Florin Corasaaf64a22020-02-23 01:37:34 +0000816always_inline void
817session_tx_maybe_reschedule (session_worker_t * wrk,
818 session_tx_context_t * ctx,
Florin Coras70f879d2020-03-13 17:54:42 +0000819 session_evt_elt_t * elt)
Florin Corasaaf64a22020-02-23 01:37:34 +0000820{
821 session_t *s = ctx->s;
822
823 svm_fifo_unset_event (s->tx_fifo);
Florin Coras70f879d2020-03-13 17:54:42 +0000824 if (svm_fifo_max_dequeue_cons (s->tx_fifo) > ctx->sp.tx_offset)
Florin Corasaaf64a22020-02-23 01:37:34 +0000825 if (svm_fifo_set_event (s->tx_fifo))
826 session_evt_add_head_old (wrk, elt);
827}
828
Florin Coras8e43d042018-05-04 15:46:57 -0700829always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700830session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
831 vlib_node_runtime_t * node,
832 session_evt_elt_t * elt,
833 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700834{
Florin Coras8a754f12019-10-16 22:35:18 -0700835 u32 n_trace, n_bufs_needed = 0, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700836 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700837 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700838 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700839 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700840 transport_proto_t tp;
841 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700842 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700843
Florin Coras1bcad5c2019-01-09 20:04:38 -0800844 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700845 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700846 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700847 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700848 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700849 }
850
Florin Coras1bcad5c2019-01-09 20:04:38 -0800851 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras26dd6de2019-07-23 23:54:47 -0700852 max_burst = VLIB_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700853
Florin Coras1bcad5c2019-01-09 20:04:38 -0800854 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700855 ctx->transport_vft = transport_protocol_get_vft (tp);
856 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800857
858 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
859 {
860 if (ctx->transport_vft->flush_data)
861 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700862 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -0800863 }
864
Florin Coras26dd6de2019-07-23 23:54:47 -0700865 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
866 {
867 u32 n_custom_tx;
868 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
869 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, max_burst);
870 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700871 if (PREDICT_FALSE
872 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
873 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700874 max_burst -= n_custom_tx;
875 if (!max_burst)
876 {
877 session_evt_add_old (wrk, elt);
878 return SESSION_TX_OK;
879 }
880 }
881
Florin Coras70f879d2020-03-13 17:54:42 +0000882 transport_connection_snd_params (ctx->tc, &ctx->sp);
Florin Corasdd97a482019-11-02 14:32:52 -0700883
Florin Coras70f879d2020-03-13 17:54:42 +0000884 if (!ctx->sp.snd_space)
Florin Coras8e43d042018-05-04 15:46:57 -0700885 {
Florin Coras70f879d2020-03-13 17:54:42 +0000886 /* This flow queue is "empty" so it should be re-evaluated before
887 * the ones that have data to send. */
888 if (PREDICT_TRUE (!ctx->sp.flags))
889 session_evt_add_head_old (wrk, elt);
890 /* Request to postpone the session, e.g., zero-wnd and transport
891 * is not currently probing */
892 else if (ctx->sp.flags & TRANSPORT_SND_F_POSTPONE)
893 session_evt_add_old (wrk, elt);
894 /* If the deschedule flag was set, remove session from scheduler.
895 * Transport is responsible for rescheduling this session. */
896 else
897 transport_connection_deschedule (ctx->tc);
898
Florin Coras0d60a0f2018-06-29 02:02:08 -0700899 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700900 }
901
Florin Coras11e9e352019-11-13 19:09:47 -0800902 if (transport_connection_is_tx_paced (ctx->tc))
903 {
904 u32 snd_space = transport_connection_tx_pacer_burst (ctx->tc);
905 if (snd_space < TRANSPORT_PACER_MIN_BURST)
906 {
907 session_evt_add_head_old (wrk, elt);
908 return SESSION_TX_NO_DATA;
909 }
Florin Coras70f879d2020-03-13 17:54:42 +0000910 snd_space = clib_min (ctx->sp.snd_space, snd_space);
911 ctx->sp.snd_space = snd_space >= ctx->sp.snd_mss ?
912 snd_space - snd_space % ctx->sp.snd_mss : snd_space;
Florin Coras11e9e352019-11-13 19:09:47 -0800913 }
914
Florin Coras8e43d042018-05-04 15:46:57 -0700915 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -0700916 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -0700917
Florin Coras8e43d042018-05-04 15:46:57 -0700918 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -0700919 {
Florin Coras11e9e352019-11-13 19:09:47 -0800920 transport_connection_tx_pacer_reset_bucket (ctx->tc, 0);
Florin Coras70f879d2020-03-13 17:54:42 +0000921 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Corasc31dc312019-10-06 14:06:14 -0700922 return SESSION_TX_NO_DATA;
923 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500924
Florin Corasf08f26d2018-05-10 13:20:47 -0700925 n_bufs_needed = ctx->n_segs_per_evt * ctx->n_bufs_per_seg;
Florin Coras2068fd42019-01-31 14:35:50 -0800926 vec_validate_aligned (wrk->tx_buffers, n_bufs_needed - 1,
927 CLIB_CACHE_LINE_BYTES);
928 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_needed);
929 if (PREDICT_FALSE (n_bufs < n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -0500930 {
Florin Coras2068fd42019-01-31 14:35:50 -0800931 if (n_bufs)
932 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasaaf64a22020-02-23 01:37:34 +0000933 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -0700934 vlib_node_increment_counter (wrk->vm, node->node_index,
935 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -0800936 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -0700937 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500938
Florin Corasf08f26d2018-05-10 13:20:47 -0700939 ctx->left_to_snd = ctx->max_len_to_snd;
940 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -0700941
942 while (n_left >= 4)
943 {
944 vlib_buffer_t *b0, *b1;
945 u32 bi0, bi1;
946
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700947 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -0700948 pb = vlib_get_buffer (vm, pbi);
949 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700950 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -0700951 pb = vlib_get_buffer (vm, pbi);
952 vlib_prefetch_buffer_header (pb, STORE);
953
Florin Coras8a754f12019-10-16 22:35:18 -0700954 bi0 = wrk->tx_buffers[--n_bufs];
955 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700956
957 b0 = vlib_get_buffer (vm, bi0);
958 b1 = vlib_get_buffer (vm, bi1);
959
960 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
961 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
962
963 ctx->transport_vft->push_header (ctx->tc, b0);
964 ctx->transport_vft->push_header (ctx->tc, b1);
965
Florin Coras66cf5e02018-06-08 09:17:39 -0700966 n_left -= 2;
967
968 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
969 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
970
Florin Coras8a754f12019-10-16 22:35:18 -0700971 vec_add1 (wrk->pending_tx_buffers, bi0);
972 vec_add1 (wrk->pending_tx_buffers, bi1);
973 vec_add1 (wrk->pending_tx_nexts, next_index);
974 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -0700975 }
Florin Corasf08f26d2018-05-10 13:20:47 -0700976 while (n_left)
977 {
Florin Coras66cf5e02018-06-08 09:17:39 -0700978 vlib_buffer_t *b0;
979 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700980
Florin Coras91ca4622018-06-30 11:27:59 -0700981 if (n_left > 1)
982 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700983 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -0700984 pb = vlib_get_buffer (vm, pbi);
985 vlib_prefetch_buffer_header (pb, STORE);
986 }
987
Florin Coras8a754f12019-10-16 22:35:18 -0700988 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700989 b0 = vlib_get_buffer (vm, bi0);
990 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -0700991
Florin Coras66cf5e02018-06-08 09:17:39 -0700992 /* Ask transport to push header after current_length and
993 * total_length_not_including_first_buffer are updated */
994 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -0400995
Florin Coras66cf5e02018-06-08 09:17:39 -0700996 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500997
Florin Coras66cf5e02018-06-08 09:17:39 -0700998 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700999
Florin Coras8a754f12019-10-16 22:35:18 -07001000 vec_add1 (wrk->pending_tx_buffers, bi0);
1001 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001002 }
Florin Coras66cf5e02018-06-08 09:17:39 -07001003
Florin Coras60183db2019-07-20 15:53:16 -07001004 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -07001005 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -08001006 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -07001007
Florin Coras2068fd42019-01-31 14:35:50 -08001008 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -07001009 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1010
Florin Corasf08f26d2018-05-10 13:20:47 -07001011 *n_tx_packets += ctx->n_segs_per_evt;
Florin Coras00482232019-08-02 12:52:00 -07001012 transport_connection_update_tx_bytes (ctx->tc, ctx->max_len_to_snd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001013
Florin Corascca96182019-07-19 07:34:13 -07001014 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
1015 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
1016
Florin Corasf08f26d2018-05-10 13:20:47 -07001017 ASSERT (ctx->left_to_snd == 0);
Florin Corasaaf64a22020-02-23 01:37:34 +00001018
1019 /* If we couldn't dequeue all bytes reschedule as old flow. Otherwise,
1020 * check if application enqueued more data and reschedule accordingly */
Florin Coras8e43d042018-05-04 15:46:57 -07001021 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Corasaaf64a22020-02-23 01:37:34 +00001022 session_evt_add_old (wrk, elt);
1023 else
Florin Coras70f879d2020-03-13 17:54:42 +00001024 session_tx_maybe_reschedule (wrk, ctx, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -07001025
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001026 if (!peek_data
1027 && ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Dave Barach68b0fb02017-02-28 15:15:56 -05001028 {
Florin Coras7fb0fe12018-04-09 09:24:52 -07001029 /* Fix dgram pre header */
Florin Coras8e43d042018-05-04 15:46:57 -07001030 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Coras288eaab2019-02-03 15:26:14 -08001031 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001032 sizeof (session_dgram_pre_hdr_t));
1033 /* More data needs to be read */
Sirshak Das28aa5392019-02-05 01:33:33 -06001034 else if (svm_fifo_max_dequeue_cons (ctx->s->tx_fifo) > 0)
Florin Coras288eaab2019-02-03 15:26:14 -08001035 if (svm_fifo_set_event (ctx->s->tx_fifo))
Florin Coras60183db2019-07-20 15:53:16 -07001036 session_evt_add_old (wrk, elt);
Florin Coras0e573f52019-05-07 16:28:16 -07001037
Florin Coras2d379d82019-06-28 12:45:12 -07001038 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, ctx->max_len_to_snd))
Florin Coras0e573f52019-05-07 16:28:16 -07001039 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001040 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001041 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001042}
1043
1044int
Florin Coras60183db2019-07-20 15:53:16 -07001045session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1046 vlib_node_runtime_t * node,
1047 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001048{
Florin Coras60183db2019-07-20 15:53:16 -07001049 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001050}
1051
1052int
Florin Coras60183db2019-07-20 15:53:16 -07001053session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1054 vlib_node_runtime_t * node,
1055 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001056{
Florin Coras60183db2019-07-20 15:53:16 -07001057 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001058}
1059
Florin Coras371ca502018-02-21 12:07:41 -08001060int
Florin Coras60183db2019-07-20 15:53:16 -07001061session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001062 vlib_node_runtime_t * node,
Florin Coras60183db2019-07-20 15:53:16 -07001063 session_evt_elt_t * e, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001064{
Florin Coras288eaab2019-02-03 15:26:14 -08001065 session_t *s = wrk->ctx.s;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001066
Florin Corasc0737e92019-03-04 14:19:39 -08001067 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001068 return 0;
Florin Coras288eaab2019-02-03 15:26:14 -08001069 svm_fifo_unset_event (s->tx_fifo);
Florin Coras26dd6de2019-07-23 23:54:47 -07001070 return transport_custom_tx (session_get_transport_proto (s), s,
1071 VLIB_FRAME_SIZE - *n_tx_packets);
Florin Coras371ca502018-02-21 12:07:41 -08001072}
1073
Florin Coras288eaab2019-02-03 15:26:14 -08001074always_inline session_t *
Florin Coras52207f12018-07-12 14:48:06 -07001075session_event_get_session (session_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -07001076{
Florin Corasc0737e92019-03-04 14:19:39 -08001077 return session_get_if_valid (e->session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -07001078}
1079
Florin Coras60183db2019-07-20 15:53:16 -07001080always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001081session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1082{
1083 clib_llist_index_t ei;
1084 void (*fp) (void *);
1085 session_event_t *e;
1086 session_t *s;
1087
1088 ei = clib_llist_entry_index (wrk->event_elts, elt);
1089 e = &elt->evt;
1090
1091 switch (e->event_type)
1092 {
1093 case SESSION_CTRL_EVT_RPC:
1094 fp = e->rpc_args.fp;
1095 (*fp) (e->rpc_args.arg);
1096 break;
1097 case SESSION_CTRL_EVT_CLOSE:
1098 s = session_get_from_handle_if_valid (e->session_handle);
1099 if (PREDICT_FALSE (!s))
1100 break;
1101 session_transport_close (s);
1102 break;
1103 case SESSION_CTRL_EVT_RESET:
1104 s = session_get_from_handle_if_valid (e->session_handle);
1105 if (PREDICT_FALSE (!s))
1106 break;
1107 session_transport_reset (s);
1108 break;
1109 case SESSION_CTRL_EVT_LISTEN:
1110 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1111 break;
1112 case SESSION_CTRL_EVT_LISTEN_URI:
1113 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1114 break;
1115 case SESSION_CTRL_EVT_UNLISTEN:
1116 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1117 break;
1118 case SESSION_CTRL_EVT_CONNECT:
1119 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1120 break;
1121 case SESSION_CTRL_EVT_CONNECT_URI:
1122 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1123 break;
1124 case SESSION_CTRL_EVT_DISCONNECT:
1125 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1126 break;
1127 case SESSION_CTRL_EVT_DISCONNECTED:
1128 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1129 break;
1130 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1131 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1132 break;
1133 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1134 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1135 elt));
1136 break;
1137 case SESSION_CTRL_EVT_RESET_REPLY:
1138 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1139 break;
1140 case SESSION_CTRL_EVT_WORKER_UPDATE:
1141 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1142 break;
1143 case SESSION_CTRL_EVT_APP_DETACH:
1144 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1145 break;
1146 default:
1147 clib_warning ("unhandled event type %d", e->event_type);
1148 }
1149
1150 /* Regrab elements in case pool moved */
1151 elt = pool_elt_at_index (wrk->event_elts, ei);
1152 if (!clib_llist_elt_is_linked (elt, evt_list))
1153 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001154 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001155 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1156 session_evt_ctrl_data_free (wrk, elt);
1157 session_evt_elt_free (wrk, elt);
1158 }
1159}
1160
1161always_inline void
1162session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
1163 session_evt_elt_t * elt, u32 thread_index,
1164 int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001165{
Florin Coras60183db2019-07-20 15:53:16 -07001166 session_main_t *smm = &session_main;
1167 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001168 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001169 session_event_t *e;
1170 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001171
Florin Corasb0ffbee2019-07-21 19:23:46 -07001172 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001173 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001174
Florin Coras60183db2019-07-20 15:53:16 -07001175 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001176 {
Florin Coras60183db2019-07-20 15:53:16 -07001177 case SESSION_IO_EVT_TX_FLUSH:
1178 case SESSION_IO_EVT_TX:
Florin Coras60183db2019-07-20 15:53:16 -07001179 s = session_event_get_session (e, thread_index);
1180 if (PREDICT_FALSE (!s))
Florin Coras87b0c892020-01-09 16:41:31 +00001181 break;
Florin Coras60183db2019-07-20 15:53:16 -07001182 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1183 wrk->ctx.s = s;
1184 /* Spray packets in per session type frames, since they go to
1185 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001186 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001187 break;
1188 case SESSION_IO_EVT_RX:
1189 s = session_event_get_session (e, thread_index);
1190 if (!s)
1191 break;
1192 transport_app_rx_evt (session_get_transport_proto (s),
1193 s->connection_index, s->thread_index);
1194 break;
Florin Coras60183db2019-07-20 15:53:16 -07001195 case SESSION_IO_EVT_BUILTIN_RX:
1196 s = session_event_get_session (e, thread_index);
1197 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1198 break;
1199 svm_fifo_unset_event (s->rx_fifo);
1200 app_wrk = app_worker_get (s->app_wrk_index);
1201 app_worker_builtin_rx (app_wrk, s);
1202 break;
1203 case SESSION_IO_EVT_BUILTIN_TX:
1204 s = session_get_from_handle_if_valid (e->session_handle);
1205 wrk->ctx.s = s;
1206 if (PREDICT_TRUE (s != 0))
1207 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1208 break;
Florin Coras60183db2019-07-20 15:53:16 -07001209 default:
1210 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001211 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001212
1213 /* Regrab elements in case pool moved */
1214 elt = pool_elt_at_index (wrk->event_elts, ei);
1215 if (!clib_llist_elt_is_linked (elt, evt_list))
1216 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001217}
1218
Florin Coras458089b2019-08-21 16:20:44 -07001219/* *INDENT-OFF* */
1220static const u32 session_evt_msg_sizes[] = {
1221#define _(symc, sym) \
1222 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1223 foreach_session_ctrl_evt
1224#undef _
1225};
1226/* *INDENT-ON* */
1227
1228always_inline void
1229session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1230{
1231 session_evt_elt_t *elt;
1232
1233 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1234 {
1235 elt = session_evt_alloc_ctrl (wrk);
1236 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1237 {
1238 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1239 elt->evt.event_type = evt->event_type;
1240 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1241 session_evt_msg_sizes[evt->event_type]);
1242 }
1243 else
1244 {
1245 /* Internal control events fit into io events footprint */
1246 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1247 }
1248 }
1249 else
1250 {
1251 elt = session_evt_alloc_new (wrk);
1252 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1253 }
1254}
1255
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001256static void
1257session_flush_pending_tx_buffers (session_worker_t * wrk,
1258 vlib_node_runtime_t * node)
1259{
1260 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1261 wrk->pending_tx_nexts,
1262 vec_len (wrk->pending_tx_nexts));
1263 vec_reset_length (wrk->pending_tx_buffers);
1264 vec_reset_length (wrk->pending_tx_nexts);
1265}
1266
Florin Coras0d60a0f2018-06-29 02:02:08 -07001267static uword
1268session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1269 vlib_frame_t * frame)
1270{
Florin Coras31c99552019-03-01 13:00:58 -08001271 session_main_t *smm = vnet_get_session_main ();
Florin Coras2062ec02019-07-15 13:15:18 -07001272 u32 thread_index = vm->thread_index, n_to_dequeue;
Florin Coras31c99552019-03-01 13:00:58 -08001273 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001274 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras16d974e2020-02-09 20:03:12 +00001275 clib_llist_index_t ei, next_ei, old_ti;
Florin Coras3c2fed52018-07-04 04:15:05 -07001276 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Corase9570d42020-02-23 19:00:18 +00001277 int i, n_tx_packets;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001278 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001279 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001280
Florin Corascca96182019-07-19 07:34:13 -07001281 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001282
Florin Coras60183db2019-07-20 15:53:16 -07001283 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001284 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Coras60183db2019-07-20 15:53:16 -07001285
Florin Coras0d60a0f2018-06-29 02:02:08 -07001286 /*
1287 * Update transport time
1288 */
Florin Coras60183db2019-07-20 15:53:16 -07001289 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Corase9570d42020-02-23 19:00:18 +00001290 n_tx_packets = vec_len (wrk->pending_tx_buffers);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001291
Florin Corasb0ffbee2019-07-21 19:23:46 -07001292 /*
1293 * Dequeue and handle new events
1294 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001295
Florin Coras5f56d732018-10-30 10:21:59 -07001296 /* Try to dequeue what is available. Don't wait for lock.
1297 * XXX: we may need priorities here */
1298 mq = wrk->vpp_event_queue;
1299 n_to_dequeue = svm_msg_q_size (mq);
1300 if (n_to_dequeue && svm_msg_q_try_lock (mq) == 0)
1301 {
1302 for (i = 0; i < n_to_dequeue; i++)
1303 {
Florin Coras5f56d732018-10-30 10:21:59 -07001304 svm_msg_q_sub_w_lock (mq, msg);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001305 evt = svm_msg_q_msg_data (mq, msg);
Florin Coras458089b2019-08-21 16:20:44 -07001306 session_evt_add_to_list (wrk, evt);
Florin Coras5f56d732018-10-30 10:21:59 -07001307 svm_msg_q_free_msg (mq, msg);
1308 }
1309 svm_msg_q_unlock (mq);
1310 }
1311
Florin Corasb0ffbee2019-07-21 19:23:46 -07001312 /*
1313 * Handle control events
1314 */
1315
1316 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1317
1318 /* *INDENT-OFF* */
1319 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1320 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001321 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001322 }));
1323 /* *INDENT-ON* */
1324
1325 /*
1326 * Handle the new io events.
1327 */
1328
1329 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001330 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1331 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001332
Florin Coras16d974e2020-02-09 20:03:12 +00001333 ei = clib_llist_next_index (new_he, evt_list);
1334 while (ei != wrk->new_head && n_tx_packets < VLIB_FRAME_SIZE)
1335 {
1336 elt = pool_elt_at_index (wrk->event_elts, ei);
1337 ei = clib_llist_next_index (elt, evt_list);
1338 clib_llist_remove (wrk->event_elts, evt_list, elt);
1339 session_event_dispatch_io (wrk, node, elt, thread_index, &n_tx_packets);
1340 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001341
1342 /*
Florin Coras45b79732019-10-30 19:22:51 -07001343 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001344 */
1345
Florin Coras45b79732019-10-30 19:22:51 -07001346 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001347 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001348 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001349 ei = clib_llist_next_index (old_he, evt_list);
1350
Florin Coras45b79732019-10-30 19:22:51 -07001351 while (n_tx_packets < VLIB_FRAME_SIZE)
1352 {
Florin Corasdd97a482019-11-02 14:32:52 -07001353 elt = pool_elt_at_index (wrk->event_elts, ei);
1354 next_ei = clib_llist_next_index (elt, evt_list);
1355 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001356
Florin Coras45b79732019-10-30 19:22:51 -07001357 session_event_dispatch_io (wrk, node, elt, thread_index,
1358 &n_tx_packets);
1359
Florin Coras45b79732019-10-30 19:22:51 -07001360 if (ei == old_ti)
1361 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001362
1363 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001364 };
1365 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001366
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001367 if (vec_len (wrk->pending_tx_buffers))
1368 session_flush_pending_tx_buffers (wrk, node);
1369
Florin Coras0d60a0f2018-06-29 02:02:08 -07001370 vlib_node_increment_counter (vm, session_queue_node.index,
1371 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1372
Florin Corascca96182019-07-19 07:34:13 -07001373 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001374
1375 return n_tx_packets;
1376}
1377
1378/* *INDENT-OFF* */
1379VLIB_REGISTER_NODE (session_queue_node) =
1380{
1381 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001382 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001383 .name = "session-queue",
1384 .format_trace = format_session_queue_trace,
1385 .type = VLIB_NODE_TYPE_INPUT,
1386 .n_errors = ARRAY_LEN (session_queue_error_strings),
1387 .error_strings = session_queue_error_strings,
1388 .state = VLIB_NODE_STATE_DISABLED,
1389};
1390/* *INDENT-ON* */
1391
Dave Barachacd2a6a2017-05-16 17:41:34 -04001392void
1393dump_thread_0_event_queue (void)
1394{
Florin Coras31c99552019-03-01 13:00:58 -08001395 session_main_t *smm = vnet_get_session_main ();
Dave Barachacd2a6a2017-05-16 17:41:34 -04001396 vlib_main_t *vm = &vlib_global_main;
1397 u32 my_thread_index = vm->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -07001398 session_event_t _e, *e = &_e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001399 svm_msg_q_ring_t *ring;
Florin Coras288eaab2019-02-03 15:26:14 -08001400 session_t *s0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001401 svm_msg_q_msg_t *msg;
1402 svm_msg_q_t *mq;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001403 int i, index;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001404
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001405 mq = smm->wrk[my_thread_index].vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001406 index = mq->q->head;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001407
Florin Coras3c2fed52018-07-04 04:15:05 -07001408 for (i = 0; i < mq->q->cursize; i++)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001409 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001410 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1411 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001412 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001413
1414 switch (e->event_type)
1415 {
Florin Corasf6c43132019-03-01 12:41:21 -08001416 case SESSION_IO_EVT_TX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001417 s0 = session_event_get_session (e, my_thread_index);
1418 fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index);
1419 break;
1420
Florin Corasf6c43132019-03-01 12:41:21 -08001421 case SESSION_CTRL_EVT_CLOSE:
Florin Corascea194d2017-10-02 00:18:51 -07001422 s0 = session_get_from_handle (e->session_handle);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001423 fformat (stdout, "[%04d] disconnect session %d\n", i,
1424 s0->session_index);
1425 break;
1426
Florin Corasf6c43132019-03-01 12:41:21 -08001427 case SESSION_IO_EVT_BUILTIN_RX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001428 s0 = session_event_get_session (e, my_thread_index);
1429 fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index);
1430 break;
1431
Florin Corasf6c43132019-03-01 12:41:21 -08001432 case SESSION_CTRL_EVT_RPC:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001433 fformat (stdout, "[%04d] RPC call %llx with %llx\n",
David Johnsond9818dd2018-12-14 14:53:41 -05001434 i, (u64) (uword) (e->rpc_args.fp),
1435 (u64) (uword) (e->rpc_args.arg));
Dave Barachacd2a6a2017-05-16 17:41:34 -04001436 break;
1437
1438 default:
1439 fformat (stdout, "[%04d] unhandled event type %d\n",
1440 i, e->event_type);
1441 break;
1442 }
1443
1444 index++;
1445
Florin Coras3c2fed52018-07-04 04:15:05 -07001446 if (index == mq->q->maxsize)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001447 index = 0;
1448 }
1449}
1450
Florin Coras6534b7a2017-07-18 05:38:03 -04001451static u8
Florin Coras52207f12018-07-12 14:48:06 -07001452session_node_cmp_event (session_event_t * e, svm_fifo_t * f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001453{
Florin Coras288eaab2019-02-03 15:26:14 -08001454 session_t *s;
Florin Coras6534b7a2017-07-18 05:38:03 -04001455 switch (e->event_type)
1456 {
Florin Corasf6c43132019-03-01 12:41:21 -08001457 case SESSION_IO_EVT_RX:
1458 case SESSION_IO_EVT_TX:
1459 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasbe237bf2019-09-27 08:16:40 -07001460 case SESSION_IO_EVT_BUILTIN_TX:
1461 case SESSION_IO_EVT_TX_FLUSH:
Florin Corasc0737e92019-03-04 14:19:39 -08001462 if (e->session_index == f->master_session_index)
Florin Coras6534b7a2017-07-18 05:38:03 -04001463 return 1;
1464 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001465 case SESSION_CTRL_EVT_CLOSE:
Florin Coras6534b7a2017-07-18 05:38:03 -04001466 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001467 case SESSION_CTRL_EVT_RPC:
Florin Corascea194d2017-10-02 00:18:51 -07001468 s = session_get_from_handle (e->session_handle);
Florin Coras6534b7a2017-07-18 05:38:03 -04001469 if (!s)
1470 {
1471 clib_warning ("session has event but doesn't exist!");
1472 break;
1473 }
Florin Coras288eaab2019-02-03 15:26:14 -08001474 if (s->rx_fifo == f || s->tx_fifo == f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001475 return 1;
1476 break;
1477 default:
1478 break;
1479 }
1480 return 0;
1481}
1482
1483u8
Florin Coras52207f12018-07-12 14:48:06 -07001484session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e)
Florin Coras6534b7a2017-07-18 05:38:03 -04001485{
Florin Coras2062ec02019-07-15 13:15:18 -07001486 session_evt_elt_t *elt;
Florin Coras31c99552019-03-01 13:00:58 -08001487 session_worker_t *wrk;
Florin Coras6534b7a2017-07-18 05:38:03 -04001488 int i, index, found = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001489 svm_msg_q_msg_t *msg;
1490 svm_msg_q_ring_t *ring;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001491 svm_msg_q_t *mq;
Florin Coras6534b7a2017-07-18 05:38:03 -04001492 u8 thread_index;
1493
1494 ASSERT (e);
1495 thread_index = f->master_thread_index;
Florin Coras31c99552019-03-01 13:00:58 -08001496 wrk = session_main_get_worker (thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001497
Florin Coras6534b7a2017-07-18 05:38:03 -04001498 /*
1499 * Search evt queue
1500 */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001501 mq = wrk->vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001502 index = mq->q->head;
1503 for (i = 0; i < mq->q->cursize; i++)
Florin Coras6534b7a2017-07-18 05:38:03 -04001504 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001505 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1506 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001507 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Florin Coras6534b7a2017-07-18 05:38:03 -04001508 found = session_node_cmp_event (e, f);
1509 if (found)
Florin Coras371ca502018-02-21 12:07:41 -08001510 return 1;
Florin Corasbe237bf2019-09-27 08:16:40 -07001511 index = (index + 1) % mq->q->maxsize;
Florin Coras6534b7a2017-07-18 05:38:03 -04001512 }
1513 /*
1514 * Search pending events vector
1515 */
Florin Coras2062ec02019-07-15 13:15:18 -07001516
1517 /* *INDENT-OFF* */
1518 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasbe237bf2019-09-27 08:16:40 -07001519 pool_elt_at_index (wrk->event_elts, wrk->new_head),
1520 elt, ({
1521 found = session_node_cmp_event (&elt->evt, f);
1522 if (found)
1523 {
1524 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
1525 goto done;
1526 }
1527 }));
1528 /* *INDENT-ON* */
1529
1530 /* *INDENT-OFF* */
1531 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasb0ffbee2019-07-21 19:23:46 -07001532 pool_elt_at_index (wrk->event_elts, wrk->old_head),
1533 elt, ({
Florin Coras2062ec02019-07-15 13:15:18 -07001534 found = session_node_cmp_event (&elt->evt, f);
Florin Coras6534b7a2017-07-18 05:38:03 -04001535 if (found)
1536 {
Florin Coras2062ec02019-07-15 13:15:18 -07001537 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
Florin Corasbe237bf2019-09-27 08:16:40 -07001538 goto done;
Florin Coras6534b7a2017-07-18 05:38:03 -04001539 }
Florin Coras2062ec02019-07-15 13:15:18 -07001540 }));
1541 /* *INDENT-ON* */
1542
Florin Corasbe237bf2019-09-27 08:16:40 -07001543done:
Florin Coras6534b7a2017-07-18 05:38:03 -04001544 return found;
1545}
1546
Dave Barach2a863912017-11-28 10:11:42 -05001547static clib_error_t *
1548session_queue_exit (vlib_main_t * vm)
1549{
1550 if (vec_len (vlib_mains) < 2)
1551 return 0;
1552
1553 /*
1554 * Shut off (especially) worker-thread session nodes.
1555 * Otherwise, vpp can crash as the main thread unmaps the
1556 * API segment.
1557 */
1558 vlib_worker_thread_barrier_sync (vm);
1559 session_node_enable_disable (0 /* is_enable */ );
1560 vlib_worker_thread_barrier_release (vm);
1561 return 0;
1562}
1563
1564VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1565
Florin Corasfd542f12018-05-16 19:28:24 -07001566static uword
1567session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1568 vlib_frame_t * f)
1569{
1570 f64 now, timeout = 1.0;
1571 uword *event_data = 0;
1572 uword event_type;
1573
1574 while (1)
1575 {
1576 vlib_process_wait_for_event_or_clock (vm, timeout);
1577 now = vlib_time_now (vm);
1578 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1579
1580 switch (event_type)
1581 {
1582 case SESSION_Q_PROCESS_FLUSH_FRAMES:
1583 /* Flush the frames by updating all transports times */
1584 transport_update_time (now, 0);
1585 break;
1586 case SESSION_Q_PROCESS_STOP:
1587 timeout = 100000.0;
1588 break;
1589 case ~0:
1590 /* Timed out. Update time for all transports to trigger all
1591 * outstanding retransmits. */
1592 transport_update_time (now, 0);
1593 break;
1594 }
1595 vec_reset_length (event_data);
1596 }
1597 return 0;
1598}
1599
1600/* *INDENT-OFF* */
1601VLIB_REGISTER_NODE (session_queue_process_node) =
1602{
1603 .function = session_queue_process,
1604 .type = VLIB_NODE_TYPE_PROCESS,
1605 .name = "session-queue-process",
1606 .state = VLIB_NODE_STATE_DISABLED,
1607};
1608/* *INDENT-ON* */
1609
Florin Coras653e43f2019-03-04 10:56:23 -08001610static_always_inline uword
1611session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1612 vlib_frame_t * frame)
1613{
1614 session_main_t *sm = &session_main;
1615 if (!sm->wrk[0].vpp_event_queue)
1616 return 0;
Florin Coras2d8829c2019-12-18 09:38:40 -08001617 node = vlib_node_get_runtime (vm, session_queue_node.index);
Florin Coras653e43f2019-03-04 10:56:23 -08001618 return session_queue_node_fn (vm, node, frame);
1619}
1620
1621/* *INDENT-OFF* */
1622VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1623{
1624 .function = session_queue_pre_input_inline,
1625 .type = VLIB_NODE_TYPE_PRE_INPUT,
1626 .name = "session-queue-main",
1627 .state = VLIB_NODE_STATE_DISABLED,
1628};
1629/* *INDENT-ON* */
1630
Dave Barach68b0fb02017-02-28 15:15:56 -05001631/*
1632 * fd.io coding-style-patch-verification: ON
1633 *
1634 * Local Variables:
1635 * eval: (c-set-style "gnu")
1636 * End:
1637 */