blob: e5faf3c1663a4081b7dbd2eeb5adcbc6ee2c8080 [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;
Florin Coras458089b2019-08-21 16:20:44 -070058 a->app_index = app->app_index;
59 a->wrk_map_index = mp->wrk_index;
60
61 if ((rv = vnet_listen (a)))
62 clib_warning ("listen returned: %d", rv);
63
64 app_wrk = application_get_worker (app, mp->wrk_index);
65 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
66 return;
67}
68
69static void
70session_mq_listen_uri_handler (void *data)
71{
72 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
73 vnet_listen_args_t _a, *a = &_a;
74 app_worker_t *app_wrk;
75 application_t *app;
76 int rv;
77
78 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
79
80 app = application_lookup (mp->client_index);
81 if (!app)
82 return;
83
84 clib_memset (a, 0, sizeof (*a));
85 a->uri = (char *) mp->uri;
86 a->app_index = app->app_index;
87 rv = vnet_bind_uri (a);
88
89 app_wrk = application_get_worker (app, 0);
90 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
91}
92
93static void
94session_mq_connect_handler (void *data)
95{
96 session_connect_msg_t *mp = (session_connect_msg_t *) data;
97 vnet_connect_args_t _a, *a = &_a;
98 app_worker_t *app_wrk;
99 application_t *app;
100 int rv;
101
102 app_check_thread_and_barrier (session_mq_connect_handler, mp);
103
104 app = application_lookup (mp->client_index);
105 if (!app)
106 return;
107
108 clib_memset (a, 0, sizeof (*a));
109 a->sep.is_ip4 = mp->is_ip4;
110 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
111 a->sep.port = mp->port;
112 a->sep.transport_proto = mp->proto;
113 a->sep.peer.fib_index = mp->vrf;
Florin Corasef7cbf62019-10-17 09:56:27 -0700114 clib_memcpy_fast (&a->sep.peer.ip, &mp->lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700115 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
116 a->sep_ext.parent_handle = mp->parent_handle;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200117 a->sep_ext.ckpair_index = mp->ckpair_index;
Florin Coras458089b2019-08-21 16:20:44 -0700118 if (mp->hostname_len)
119 {
120 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
121 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
122 }
123 a->api_context = mp->context;
124 a->app_index = app->app_index;
125 a->wrk_map_index = mp->wrk_index;
126
127 if ((rv = vnet_connect (a)))
128 {
129 clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
130 app_wrk = application_get_worker (app, mp->wrk_index);
131 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0,
132 /* is_fail */ 1);
133 }
134
135 vec_free (a->sep_ext.hostname);
136}
137
138static void
139session_mq_connect_uri_handler (void *data)
140{
141 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
142 vnet_connect_args_t _a, *a = &_a;
143 app_worker_t *app_wrk;
144 application_t *app;
145 int rv;
146
147 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
148
149 app = application_lookup (mp->client_index);
150 if (!app)
151 return;
152
153 clib_memset (a, 0, sizeof (*a));
154 a->uri = (char *) mp->uri;
155 a->api_context = mp->context;
156 a->app_index = app->app_index;
157 if ((rv = vnet_connect_uri (a)))
158 {
159 clib_warning ("connect_uri returned: %d", rv);
160 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
161 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0,
162 /* is_fail */ 1);
163 }
164}
165
166static void
167session_mq_disconnect_handler (void *data)
168{
169 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
170 vnet_disconnect_args_t _a, *a = &_a;
171 application_t *app;
172
173 app = application_lookup (mp->client_index);
174 if (!app)
175 return;
176
177 a->app_index = app->app_index;
178 a->handle = mp->handle;
179 vnet_disconnect_session (a);
180}
181
182static void
183app_mq_detach_handler (void *data)
184{
185 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
186 vnet_app_detach_args_t _a, *a = &_a;
187 application_t *app;
188
189 app_check_thread_and_barrier (app_mq_detach_handler, mp);
190
191 app = application_lookup (mp->client_index);
192 if (!app)
193 return;
194
195 a->app_index = app->app_index;
196 a->api_client_index = mp->client_index;
197 vnet_application_detach (a);
198}
199
200static void
201session_mq_unlisten_handler (void *data)
202{
203 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
204 vnet_unlisten_args_t _a, *a = &_a;
205 app_worker_t *app_wrk;
206 application_t *app;
207 int rv;
208
209 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
210
211 app = application_lookup (mp->client_index);
212 if (!app)
213 return;
214
215 clib_memset (a, 0, sizeof (*a));
216 a->app_index = app->app_index;
217 a->handle = mp->handle;
218 a->wrk_map_index = mp->wrk_index;
219 if ((rv = vnet_unlisten (a)))
220 clib_warning ("unlisten returned: %d", rv);
221
222 app_wrk = application_get_worker (app, a->wrk_map_index);
223 if (!app_wrk)
224 return;
225
226 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800227}
228
Florin Coras52207f12018-07-12 14:48:06 -0700229static void
230session_mq_accepted_reply_handler (void *data)
231{
232 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
233 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800234 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700235 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800236 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700237
238 /* Server isn't interested, kill the session */
239 if (mp->retval)
240 {
241 a->app_index = mp->context;
242 a->handle = mp->handle;
243 vnet_disconnect_session (a);
244 return;
245 }
246
Florin Coras2b81e3c2019-02-27 07:55:46 -0800247 /* Mail this back from the main thread. We're not polling in main
248 * thread so we're using other workers for notifications. */
249 if (vlib_num_workers () && vlib_get_thread_index () != 0
250 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700251 {
Florin Coras458089b2019-08-21 16:20:44 -0700252 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
253 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800254 return;
255 }
256
257 s = session_get_from_handle_if_valid (mp->handle);
258 if (!s)
259 return;
260
261 app_wrk = app_worker_get (s->app_wrk_index);
262 if (app_wrk->app_index != mp->context)
263 {
264 clib_warning ("app doesn't own session");
265 return;
266 }
267
268 if (!session_has_transport (s))
269 {
Florin Coras653e43f2019-03-04 10:56:23 -0800270 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800271 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700272 return;
Florin Coras52207f12018-07-12 14:48:06 -0700273 }
274 else
275 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800276 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700277 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600278
279 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800280 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800281
282 /* Closed while waiting for app to reply. Resend disconnect */
283 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
284 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700285 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800286 s->session_state = old_state;
287 return;
288 }
Florin Coras52207f12018-07-12 14:48:06 -0700289 }
290}
291
292static void
293session_mq_reset_reply_handler (void *data)
294{
Florin Coras4af830c2018-12-04 09:21:36 -0800295 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700296 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700297 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800298 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700299 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700300 u32 index, thread_index;
301
302 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800303 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700304 if (!app)
305 return;
306
307 session_parse_handle (mp->handle, &index, &thread_index);
308 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800309
310 /* Session was already closed or already cleaned up */
311 if (!s || s->session_state != SESSION_STATE_TRANSPORT_CLOSING)
312 return;
313
Florin Coras15531972018-08-12 23:50:53 -0700314 app_wrk = app_worker_get (s->app_wrk_index);
315 if (!app_wrk || app_wrk->app_index != app->app_index)
316 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200317 clib_warning ("App %u does not own handle 0x%lx!", app->app_index,
Florin Coras15531972018-08-12 23:50:53 -0700318 mp->handle);
319 return;
320 }
Florin Coras52207f12018-07-12 14:48:06 -0700321
322 /* Client objected to resetting the session, log and continue */
323 if (mp->retval)
324 {
325 clib_warning ("client retval %d", mp->retval);
326 return;
327 }
328
329 /* This comes as a response to a reset, transport only waiting for
330 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800331 a->handle = mp->handle;
332 a->app_index = app->app_index;
333 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700334}
335
336static void
337session_mq_disconnected_handler (void *data)
338{
339 session_disconnected_reply_msg_t *rmp;
340 vnet_disconnect_args_t _a, *a = &_a;
341 svm_msg_q_msg_t _msg, *msg = &_msg;
342 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700343 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700344 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800345 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700346 application_t *app;
347 int rv = 0;
348
349 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700350 if (!(s = session_get_from_handle_if_valid (mp->handle)))
351 {
352 clib_warning ("could not disconnect handle %llu", mp->handle);
353 return;
354 }
Florin Coras15531972018-08-12 23:50:53 -0700355 app_wrk = app_worker_get (s->app_wrk_index);
356 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700357 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700358 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700359 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700360 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700361 return;
Florin Coras52207f12018-07-12 14:48:06 -0700362 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700363
364 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700365 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700366 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700367
Florin Coras15531972018-08-12 23:50:53 -0700368 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700369 SESSION_MQ_CTRL_EVT_RING,
370 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700371 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400372 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800373 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700374 rmp = (session_disconnected_reply_msg_t *) evt->data;
375 rmp->handle = mp->handle;
376 rmp->context = mp->context;
377 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700378 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700379}
380
381static void
382session_mq_disconnected_reply_handler (void *data)
383{
384 session_disconnected_reply_msg_t *mp;
385 vnet_disconnect_args_t _a, *a = &_a;
386 application_t *app;
387
388 mp = (session_disconnected_reply_msg_t *) data;
389
390 /* Client objected to disconnecting the session, log and continue */
391 if (mp->retval)
392 {
393 clib_warning ("client retval %d", mp->retval);
394 return;
395 }
396
397 /* Disconnect has been confirmed. Confirm close to transport */
398 app = application_lookup (mp->context);
399 if (app)
400 {
401 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700402 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700403 vnet_disconnect_session (a);
404 }
405}
406
Florin Coras30e79c22019-01-02 19:31:22 -0800407static void
408session_mq_worker_update_handler (void *data)
409{
410 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
411 session_worker_update_reply_msg_t *rmp;
412 svm_msg_q_msg_t _msg, *msg = &_msg;
413 app_worker_t *app_wrk;
414 u32 owner_app_wrk_map;
415 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800416 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800417 application_t *app;
418
419 app = application_lookup (mp->client_index);
420 if (!app)
421 return;
422 if (!(s = session_get_from_handle_if_valid (mp->handle)))
423 {
424 clib_warning ("invalid handle %llu", mp->handle);
425 return;
426 }
427 app_wrk = app_worker_get (s->app_wrk_index);
428 if (app_wrk->app_index != app->app_index)
429 {
430 clib_warning ("app %u does not own session %llu", app->app_index,
431 mp->handle);
432 return;
433 }
434 owner_app_wrk_map = app_wrk->wrk_map_index;
435 app_wrk = application_get_worker (app, mp->wrk_index);
436
437 /* This needs to come from the new owner */
438 if (mp->req_wrk_index == owner_app_wrk_map)
439 {
440 session_req_worker_update_msg_t *wump;
441
442 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
443 SESSION_MQ_CTRL_EVT_RING,
444 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800445 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
446 clib_memset (evt, 0, sizeof (*evt));
447 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
448 wump = (session_req_worker_update_msg_t *) evt->data;
449 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700450 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800451 return;
452 }
453
454 app_worker_own_session (app_wrk, s);
455
456 /*
457 * Send reply
458 */
459 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
460 SESSION_MQ_CTRL_EVT_RING,
461 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800462 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
463 clib_memset (evt, 0, sizeof (*evt));
464 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
465 rmp = (session_worker_update_reply_msg_t *) evt->data;
466 rmp->handle = mp->handle;
Florin Coras288eaab2019-02-03 15:26:14 -0800467 rmp->rx_fifo = pointer_to_uword (s->rx_fifo);
468 rmp->tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800469 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700470 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800471
472 /*
473 * Retransmit messages that may have been lost
474 */
Florin Coras288eaab2019-02-03 15:26:14 -0800475 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800476 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800477
Florin Coras288eaab2019-02-03 15:26:14 -0800478 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800479 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800480
481 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700482 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800483}
484
Dave Barach68b0fb02017-02-28 15:15:56 -0500485vlib_node_registration_t session_queue_node;
486
487typedef struct
488{
489 u32 session_index;
490 u32 server_thread_index;
491} session_queue_trace_t;
492
493/* packet trace format function */
494static u8 *
495format_session_queue_trace (u8 * s, va_list * args)
496{
497 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
498 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
499 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
500
501 s = format (s, "SESSION_QUEUE: session index %d, server thread index %d",
502 t->session_index, t->server_thread_index);
503 return s;
504}
505
Florin Coras6792ec02017-03-13 03:49:51 -0700506#define foreach_session_queue_error \
507_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700508_(TIMER, "Timer events") \
509_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500510
511typedef enum
512{
513#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
514 foreach_session_queue_error
515#undef _
516 SESSION_QUEUE_N_ERROR,
517} session_queue_error_t;
518
519static char *session_queue_error_strings[] = {
520#define _(sym,string) string,
521 foreach_session_queue_error
522#undef _
523};
524
Florin Coras0d60a0f2018-06-29 02:02:08 -0700525enum
526{
527 SESSION_TX_NO_BUFFERS = -2,
528 SESSION_TX_NO_DATA,
529 SESSION_TX_OK
530};
531
Florin Coras66cf5e02018-06-08 09:17:39 -0700532static void
533session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
534 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800535 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700536{
Florin Coras8e43d042018-05-04 15:46:57 -0700537 session_queue_trace_t *t;
Florin Coras66cf5e02018-06-08 09:17:39 -0700538 vlib_buffer_t *b;
539 int i;
540
541 for (i = 0; i < clib_min (n_trace, n_segs); i++)
542 {
543 b = vlib_get_buffer (vm, to_next[i - n_segs]);
544 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
Florin Coras66cf5e02018-06-08 09:17:39 -0700545 t = vlib_add_trace (vm, node, b, sizeof (*t));
546 t->session_index = s->session_index;
547 t->server_thread_index = s->thread_index;
548 }
Florin Coras4df38712018-06-20 12:44:16 -0700549 vlib_set_trace_count (vm, node, n_trace - i);
Florin Coras8e43d042018-05-04 15:46:57 -0700550}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700551
Florin Coras8e43d042018-05-04 15:46:57 -0700552always_inline void
553session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
554 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
555{
Florin Coras8e43d042018-05-04 15:46:57 -0700556 vlib_buffer_t *chain_b, *prev_b;
557 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800558 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700559 u16 len_to_deq, n_bytes_read;
560 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700561
Florin Coras31c99552019-03-01 13:00:58 -0800562 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700563 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
564 b->total_length_not_including_first_buffer = 0;
565
566 chain_b = b;
567 left_from_seg = clib_min (ctx->snd_mss - b->current_length,
568 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700569 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700570 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700571 {
Florin Coras8e43d042018-05-04 15:46:57 -0700572 prev_b = chain_b;
573 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700574
575 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700576 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700577 chain_b = vlib_get_buffer (vm, chain_bi0);
578 chain_b->current_data = 0;
579 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700580 if (peek_data)
581 {
Florin Coras288eaab2019-02-03 15:26:14 -0800582 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras8e43d042018-05-04 15:46:57 -0700583 ctx->tx_offset, len_to_deq, data);
584 ctx->tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700585 }
586 else
587 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200588 if (ctx->transport_vft->transport_options.tx_type ==
589 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700590 {
Florin Coras288eaab2019-02-03 15:26:14 -0800591 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700592 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700593 u16 deq_now;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700594 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700595 len_to_deq);
596 n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
597 data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700598 ASSERT (n_bytes_read > 0);
599
600 hdr->data_offset += n_bytes_read;
601 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800602 {
603 u32 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
604 svm_fifo_dequeue_drop (f, offset);
605 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700606 }
607 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700608 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
609 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700610 }
Florin Coras8e43d042018-05-04 15:46:57 -0700611 ASSERT (n_bytes_read == len_to_deq);
612 chain_b->current_length = n_bytes_read;
613 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700614
615 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700616 prev_b->next_buffer = chain_bi0;
617 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700618
619 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700620 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700621
Florin Corasb2215d62017-08-01 16:56:58 -0700622 to_deq -= n_bytes_read;
623 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700624 break;
625 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700626 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700627 && b->total_length_not_including_first_buffer == left_from_seg);
628 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700629}
630
Florin Coras8e43d042018-05-04 15:46:57 -0700631always_inline void
632session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
633 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
634{
635 u32 len_to_deq;
636 u8 *data0;
637 int n_bytes_read;
638
639 /*
640 * Start with the first buffer in chain
641 */
642 b->error = 0;
643 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
644 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700645
Florin Coras1ee78302019-02-05 15:51:15 -0800646 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700647 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
648
Florin Coras7fb0fe12018-04-09 09:24:52 -0700649 if (peek_data)
650 {
Florin Coras288eaab2019-02-03 15:26:14 -0800651 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700652 len_to_deq, data0);
653 ASSERT (n_bytes_read > 0);
654 /* Keep track of progress locally, transport is also supposed to
655 * increment it independently when pushing the header */
656 ctx->tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700657 }
658 else
659 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200660 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700661 {
662 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800663 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700664 u16 deq_now;
665 u32 offset;
666
667 ASSERT (hdr->data_length > hdr->data_offset);
668 deq_now = clib_min (hdr->data_length - hdr->data_offset,
669 len_to_deq);
670 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
671 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
672 ASSERT (n_bytes_read > 0);
673
674 if (ctx->s->session_state == SESSION_STATE_LISTENING)
675 {
676 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
677 ctx->tc->rmt_port = hdr->rmt_port;
678 }
679 hdr->data_offset += n_bytes_read;
680 if (hdr->data_offset == hdr->data_length)
681 {
682 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
683 svm_fifo_dequeue_drop (f, offset);
684 }
685 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700686 else
687 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700688 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
689 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700690 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700691 }
692 }
Florin Coras8e43d042018-05-04 15:46:57 -0700693 b->current_length = n_bytes_read;
694 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500695
Florin Coras8e43d042018-05-04 15:46:57 -0700696 /*
697 * Fill in the remaining buffers in the chain, if any
698 */
699 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
700 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700701}
702
703always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800704session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700705{
706 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800707 {
Florin Corasa6789742019-08-07 19:12:38 -0700708 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
709 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700710 /* Can retransmit for closed sessions but can't send new data if
711 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700712 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700713 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700714 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
715 {
716 /* Allow closed transports to still send custom packets.
717 * For instance, tcp may want to send acks in time-wait. */
718 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
719 && (s->flags & SESSION_F_CUSTOM_TX))
720 return 0;
721 return 2;
722 }
Florin Corase04c2992017-03-01 08:17:34 -0800723 }
Florin Coras8e43d042018-05-04 15:46:57 -0700724 return 0;
725}
Dave Barach68b0fb02017-02-28 15:15:56 -0500726
Florin Coras8e43d042018-05-04 15:46:57 -0700727always_inline transport_connection_t *
728session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
729{
730 if (peek_data)
731 {
732 return ctx->transport_vft->get_connection (ctx->s->connection_index,
733 ctx->s->thread_index);
734 }
735 else
736 {
737 if (ctx->s->session_state == SESSION_STATE_LISTENING)
738 return ctx->transport_vft->get_listener (ctx->s->connection_index);
739 else
740 {
741 return ctx->transport_vft->get_connection (ctx->s->connection_index,
742 ctx->s->thread_index);
743 }
744 }
745}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800746
Florin Coras8e43d042018-05-04 15:46:57 -0700747always_inline void
748session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700749 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700750{
751 u32 n_bytes_per_buf, n_bytes_per_seg;
Sirshak Das28aa5392019-02-05 01:33:33 -0600752 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500753 if (peek_data)
754 {
Florin Coras9d063042017-09-14 03:08:00 -0400755 /* Offset in rx fifo from where to peek data */
Florin Coras8e43d042018-05-04 15:46:57 -0700756 ctx->tx_offset = ctx->transport_vft->tx_fifo_offset (ctx->tc);
757 if (PREDICT_FALSE (ctx->tx_offset >= ctx->max_dequeue))
758 {
759 ctx->max_len_to_snd = 0;
760 return;
761 }
762 ctx->max_dequeue -= ctx->tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500763 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700764 else
765 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200766 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700767 {
Florin Coras8e43d042018-05-04 15:46:57 -0700768 if (ctx->max_dequeue <= sizeof (ctx->hdr))
769 {
770 ctx->max_len_to_snd = 0;
771 return;
772 }
Florin Coras288eaab2019-02-03 15:26:14 -0800773 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700774 (u8 *) & ctx->hdr);
775 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
776 ctx->max_dequeue = ctx->hdr.data_length - ctx->hdr.data_offset;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700777 }
778 }
Florin Coras8e43d042018-05-04 15:46:57 -0700779 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700780
781 /* Ensure we're not writing more than transport window allows */
Florin Coras8e43d042018-05-04 15:46:57 -0700782 if (ctx->max_dequeue < ctx->snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700783 {
784 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras8e43d042018-05-04 15:46:57 -0700785 ctx->max_len_to_snd =
786 (ctx->max_dequeue > ctx->snd_mss) ?
787 ctx->max_dequeue - ctx->max_dequeue % ctx->snd_mss : ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700788 /* TODO Nagle ? */
789 }
790 else
791 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700792 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras8e43d042018-05-04 15:46:57 -0700793 ctx->max_len_to_snd = ctx->snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700794 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500795
Florin Corasf08f26d2018-05-10 13:20:47 -0700796 /* Check if we're tx constrained by the node */
797 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->snd_mss);
798 if (ctx->n_segs_per_evt > max_segs)
799 {
800 ctx->n_segs_per_evt = max_segs;
801 ctx->max_len_to_snd = max_segs * ctx->snd_mss;
802 }
803
Damjan Marion8934a042019-02-09 23:29:26 +0100804 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Florin Coras1ee78302019-02-05 15:51:15 -0800805 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
806 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700807 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
Florin Coras8e43d042018-05-04 15:46:57 -0700808 ctx->deq_per_buf = clib_min (ctx->snd_mss, n_bytes_per_buf);
809 ctx->deq_per_first_buf = clib_min (ctx->snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800810 n_bytes_per_buf -
811 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700812}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700813
Florin Coras8e43d042018-05-04 15:46:57 -0700814always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700815session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
816 vlib_node_runtime_t * node,
817 session_evt_elt_t * elt,
818 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700819{
Florin Coras8a754f12019-10-16 22:35:18 -0700820 u32 n_trace, n_bufs_needed = 0, n_left, pbi, next_index, max_burst;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700821 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700822 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700823 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700824 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700825 transport_proto_t tp;
826 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700827 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700828
Florin Coras1bcad5c2019-01-09 20:04:38 -0800829 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700830 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700831 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700832 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700833 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700834 }
835
Florin Coras1bcad5c2019-01-09 20:04:38 -0800836 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras26dd6de2019-07-23 23:54:47 -0700837 max_burst = VLIB_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700838
Florin Coras1bcad5c2019-01-09 20:04:38 -0800839 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700840 ctx->transport_vft = transport_protocol_get_vft (tp);
841 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800842
843 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
844 {
845 if (ctx->transport_vft->flush_data)
846 ctx->transport_vft->flush_data (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700847 e->event_type = SESSION_IO_EVT_TX;
Florin Coras42ceddb2018-12-12 10:56:01 -0800848 }
849
Florin Coras26dd6de2019-07-23 23:54:47 -0700850 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
851 {
852 u32 n_custom_tx;
853 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
854 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, max_burst);
855 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700856 if (PREDICT_FALSE
857 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
858 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700859 max_burst -= n_custom_tx;
860 if (!max_burst)
861 {
862 session_evt_add_old (wrk, elt);
863 return SESSION_TX_OK;
864 }
865 }
866
Florin Corasa6789742019-08-07 19:12:38 -0700867 ctx->snd_mss = ctx->transport_vft->send_mss (ctx->tc);
Florin Corasdd97a482019-11-02 14:32:52 -0700868 if (PREDICT_FALSE (ctx->snd_mss == 0))
869 {
870 session_evt_add_old (wrk, elt);
871 return SESSION_TX_NO_DATA;
872 }
873
Florin Corasa8e71c82019-10-22 19:01:39 -0700874 ctx->snd_space = transport_connection_snd_space (ctx->tc, ctx->snd_mss);
Florin Coras60183db2019-07-20 15:53:16 -0700875
Florin Corasdd97a482019-11-02 14:32:52 -0700876 /* This flow queue is "empty" so it should be re-evaluated before
877 * the ones that have data to send. */
878 if (ctx->snd_space == 0)
Florin Coras8e43d042018-05-04 15:46:57 -0700879 {
Florin Corasdd97a482019-11-02 14:32:52 -0700880 session_evt_add_head_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700881 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700882 }
883
884 /* Allow enqueuing of a new event */
Florin Coras288eaab2019-02-03 15:26:14 -0800885 svm_fifo_unset_event (ctx->s->tx_fifo);
Florin Coras8e43d042018-05-04 15:46:57 -0700886
887 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -0700888 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -0700889
Florin Coras8e43d042018-05-04 15:46:57 -0700890 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Corasc31dc312019-10-06 14:06:14 -0700891 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700892 transport_connection_tx_pacer_reset_bucket (ctx->tc);
Florin Corasc31dc312019-10-06 14:06:14 -0700893 return SESSION_TX_NO_DATA;
894 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500895
Florin Corasf08f26d2018-05-10 13:20:47 -0700896 n_bufs_needed = ctx->n_segs_per_evt * ctx->n_bufs_per_seg;
Florin Coras2068fd42019-01-31 14:35:50 -0800897 vec_validate_aligned (wrk->tx_buffers, n_bufs_needed - 1,
898 CLIB_CACHE_LINE_BYTES);
899 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_needed);
900 if (PREDICT_FALSE (n_bufs < n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -0500901 {
Florin Coras2068fd42019-01-31 14:35:50 -0800902 if (n_bufs)
903 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasdd97a482019-11-02 14:32:52 -0700904 session_evt_add_head_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -0700905 vlib_node_increment_counter (wrk->vm, node->node_index,
906 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -0800907 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -0700908 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500909
Florin Corasf08f26d2018-05-10 13:20:47 -0700910 ctx->left_to_snd = ctx->max_len_to_snd;
911 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -0700912
913 while (n_left >= 4)
914 {
915 vlib_buffer_t *b0, *b1;
916 u32 bi0, bi1;
917
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700918 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -0700919 pb = vlib_get_buffer (vm, pbi);
920 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700921 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -0700922 pb = vlib_get_buffer (vm, pbi);
923 vlib_prefetch_buffer_header (pb, STORE);
924
Florin Coras8a754f12019-10-16 22:35:18 -0700925 bi0 = wrk->tx_buffers[--n_bufs];
926 bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700927
928 b0 = vlib_get_buffer (vm, bi0);
929 b1 = vlib_get_buffer (vm, bi1);
930
931 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
932 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
933
934 ctx->transport_vft->push_header (ctx->tc, b0);
935 ctx->transport_vft->push_header (ctx->tc, b1);
936
Florin Coras66cf5e02018-06-08 09:17:39 -0700937 n_left -= 2;
938
939 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
940 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
941
Florin Coras8a754f12019-10-16 22:35:18 -0700942 vec_add1 (wrk->pending_tx_buffers, bi0);
943 vec_add1 (wrk->pending_tx_buffers, bi1);
944 vec_add1 (wrk->pending_tx_nexts, next_index);
945 vec_add1 (wrk->pending_tx_nexts, next_index);
Florin Coras66cf5e02018-06-08 09:17:39 -0700946 }
Florin Corasf08f26d2018-05-10 13:20:47 -0700947 while (n_left)
948 {
Florin Coras66cf5e02018-06-08 09:17:39 -0700949 vlib_buffer_t *b0;
950 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700951
Florin Coras91ca4622018-06-30 11:27:59 -0700952 if (n_left > 1)
953 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700954 pbi = wrk->tx_buffers[n_bufs - 2];
Florin Coras91ca4622018-06-30 11:27:59 -0700955 pb = vlib_get_buffer (vm, pbi);
956 vlib_prefetch_buffer_header (pb, STORE);
957 }
958
Florin Coras8a754f12019-10-16 22:35:18 -0700959 bi0 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700960 b0 = vlib_get_buffer (vm, bi0);
961 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -0700962
Florin Coras66cf5e02018-06-08 09:17:39 -0700963 /* Ask transport to push header after current_length and
964 * total_length_not_including_first_buffer are updated */
965 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -0400966
Florin Coras66cf5e02018-06-08 09:17:39 -0700967 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500968
Florin Coras66cf5e02018-06-08 09:17:39 -0700969 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700970
Florin Coras8a754f12019-10-16 22:35:18 -0700971 vec_add1 (wrk->pending_tx_buffers, bi0);
972 vec_add1 (wrk->pending_tx_nexts, next_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500973 }
Florin Coras66cf5e02018-06-08 09:17:39 -0700974
Florin Coras60183db2019-07-20 15:53:16 -0700975 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras8a754f12019-10-16 22:35:18 -0700976 session_tx_trace_frame (vm, node, next_index, wrk->pending_tx_buffers,
Florin Coras1bcad5c2019-01-09 20:04:38 -0800977 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -0700978
Florin Coras2068fd42019-01-31 14:35:50 -0800979 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -0700980 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
981
Florin Corasf08f26d2018-05-10 13:20:47 -0700982 *n_tx_packets += ctx->n_segs_per_evt;
Florin Coras00482232019-08-02 12:52:00 -0700983 transport_connection_update_tx_bytes (ctx->tc, ctx->max_len_to_snd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500984
Florin Corascca96182019-07-19 07:34:13 -0700985 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
986 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
987
Florin Coras6792ec02017-03-13 03:49:51 -0700988 /* If we couldn't dequeue all bytes mark as partially read */
Florin Corasf08f26d2018-05-10 13:20:47 -0700989 ASSERT (ctx->left_to_snd == 0);
Florin Coras8e43d042018-05-04 15:46:57 -0700990 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Coras288eaab2019-02-03 15:26:14 -0800991 if (svm_fifo_set_event (ctx->s->tx_fifo))
Florin Coras60183db2019-07-20 15:53:16 -0700992 session_evt_add_old (wrk, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700993
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200994 if (!peek_data
995 && ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Dave Barach68b0fb02017-02-28 15:15:56 -0500996 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700997 /* Fix dgram pre header */
Florin Coras8e43d042018-05-04 15:46:57 -0700998 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Coras288eaab2019-02-03 15:26:14 -0800999 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001000 sizeof (session_dgram_pre_hdr_t));
1001 /* More data needs to be read */
Sirshak Das28aa5392019-02-05 01:33:33 -06001002 else if (svm_fifo_max_dequeue_cons (ctx->s->tx_fifo) > 0)
Florin Coras288eaab2019-02-03 15:26:14 -08001003 if (svm_fifo_set_event (ctx->s->tx_fifo))
Florin Coras60183db2019-07-20 15:53:16 -07001004 session_evt_add_old (wrk, elt);
Florin Coras0e573f52019-05-07 16:28:16 -07001005
Florin Coras2d379d82019-06-28 12:45:12 -07001006 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, ctx->max_len_to_snd))
Florin Coras0e573f52019-05-07 16:28:16 -07001007 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001008 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001009 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001010}
1011
1012int
Florin Coras60183db2019-07-20 15:53:16 -07001013session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1014 vlib_node_runtime_t * node,
1015 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001016{
Florin Coras60183db2019-07-20 15:53:16 -07001017 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001018}
1019
1020int
Florin Coras60183db2019-07-20 15:53:16 -07001021session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1022 vlib_node_runtime_t * node,
1023 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001024{
Florin Coras60183db2019-07-20 15:53:16 -07001025 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001026}
1027
Florin Coras371ca502018-02-21 12:07:41 -08001028int
Florin Coras60183db2019-07-20 15:53:16 -07001029session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001030 vlib_node_runtime_t * node,
Florin Coras60183db2019-07-20 15:53:16 -07001031 session_evt_elt_t * e, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001032{
Florin Coras288eaab2019-02-03 15:26:14 -08001033 session_t *s = wrk->ctx.s;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001034
Florin Corasc0737e92019-03-04 14:19:39 -08001035 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001036 return 0;
Florin Coras288eaab2019-02-03 15:26:14 -08001037 svm_fifo_unset_event (s->tx_fifo);
Florin Coras26dd6de2019-07-23 23:54:47 -07001038 return transport_custom_tx (session_get_transport_proto (s), s,
1039 VLIB_FRAME_SIZE - *n_tx_packets);
Florin Coras371ca502018-02-21 12:07:41 -08001040}
1041
Florin Coras288eaab2019-02-03 15:26:14 -08001042always_inline session_t *
Florin Coras52207f12018-07-12 14:48:06 -07001043session_event_get_session (session_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -07001044{
Florin Corasc0737e92019-03-04 14:19:39 -08001045 return session_get_if_valid (e->session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -07001046}
1047
Florin Coras60183db2019-07-20 15:53:16 -07001048always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001049session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1050{
1051 clib_llist_index_t ei;
1052 void (*fp) (void *);
1053 session_event_t *e;
1054 session_t *s;
1055
1056 ei = clib_llist_entry_index (wrk->event_elts, elt);
1057 e = &elt->evt;
1058
1059 switch (e->event_type)
1060 {
1061 case SESSION_CTRL_EVT_RPC:
1062 fp = e->rpc_args.fp;
1063 (*fp) (e->rpc_args.arg);
1064 break;
1065 case SESSION_CTRL_EVT_CLOSE:
1066 s = session_get_from_handle_if_valid (e->session_handle);
1067 if (PREDICT_FALSE (!s))
1068 break;
1069 session_transport_close (s);
1070 break;
1071 case SESSION_CTRL_EVT_RESET:
1072 s = session_get_from_handle_if_valid (e->session_handle);
1073 if (PREDICT_FALSE (!s))
1074 break;
1075 session_transport_reset (s);
1076 break;
1077 case SESSION_CTRL_EVT_LISTEN:
1078 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1079 break;
1080 case SESSION_CTRL_EVT_LISTEN_URI:
1081 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1082 break;
1083 case SESSION_CTRL_EVT_UNLISTEN:
1084 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1085 break;
1086 case SESSION_CTRL_EVT_CONNECT:
1087 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1088 break;
1089 case SESSION_CTRL_EVT_CONNECT_URI:
1090 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1091 break;
1092 case SESSION_CTRL_EVT_DISCONNECT:
1093 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1094 break;
1095 case SESSION_CTRL_EVT_DISCONNECTED:
1096 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1097 break;
1098 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1099 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1100 break;
1101 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1102 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1103 elt));
1104 break;
1105 case SESSION_CTRL_EVT_RESET_REPLY:
1106 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1107 break;
1108 case SESSION_CTRL_EVT_WORKER_UPDATE:
1109 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1110 break;
1111 case SESSION_CTRL_EVT_APP_DETACH:
1112 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1113 break;
1114 default:
1115 clib_warning ("unhandled event type %d", e->event_type);
1116 }
1117
1118 /* Regrab elements in case pool moved */
1119 elt = pool_elt_at_index (wrk->event_elts, ei);
1120 if (!clib_llist_elt_is_linked (elt, evt_list))
1121 {
Nathan Skrzypczak19e52c92019-09-30 14:49:13 +02001122 e = &elt->evt;
Florin Coras458089b2019-08-21 16:20:44 -07001123 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1124 session_evt_ctrl_data_free (wrk, elt);
1125 session_evt_elt_free (wrk, elt);
1126 }
1127}
1128
1129always_inline void
1130session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
1131 session_evt_elt_t * elt, u32 thread_index,
1132 int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001133{
Florin Coras60183db2019-07-20 15:53:16 -07001134 session_main_t *smm = &session_main;
1135 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001136 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001137 session_event_t *e;
1138 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001139
Florin Corasb0ffbee2019-07-21 19:23:46 -07001140 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001141 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001142
Florin Coras60183db2019-07-20 15:53:16 -07001143 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001144 {
Florin Coras60183db2019-07-20 15:53:16 -07001145 case SESSION_IO_EVT_TX_FLUSH:
1146 case SESSION_IO_EVT_TX:
Florin Coras60183db2019-07-20 15:53:16 -07001147 s = session_event_get_session (e, thread_index);
1148 if (PREDICT_FALSE (!s))
1149 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001150 clib_warning ("session %u was freed!", e->session_index);
Florin Coras60183db2019-07-20 15:53:16 -07001151 break;
1152 }
1153 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1154 wrk->ctx.s = s;
1155 /* Spray packets in per session type frames, since they go to
1156 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001157 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001158 break;
1159 case SESSION_IO_EVT_RX:
1160 s = session_event_get_session (e, thread_index);
1161 if (!s)
1162 break;
1163 transport_app_rx_evt (session_get_transport_proto (s),
1164 s->connection_index, s->thread_index);
1165 break;
Florin Coras60183db2019-07-20 15:53:16 -07001166 case SESSION_IO_EVT_BUILTIN_RX:
1167 s = session_event_get_session (e, thread_index);
1168 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1169 break;
1170 svm_fifo_unset_event (s->rx_fifo);
1171 app_wrk = app_worker_get (s->app_wrk_index);
1172 app_worker_builtin_rx (app_wrk, s);
1173 break;
1174 case SESSION_IO_EVT_BUILTIN_TX:
1175 s = session_get_from_handle_if_valid (e->session_handle);
1176 wrk->ctx.s = s;
1177 if (PREDICT_TRUE (s != 0))
1178 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1179 break;
Florin Coras60183db2019-07-20 15:53:16 -07001180 default:
1181 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001182 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001183
1184 /* Regrab elements in case pool moved */
1185 elt = pool_elt_at_index (wrk->event_elts, ei);
1186 if (!clib_llist_elt_is_linked (elt, evt_list))
1187 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001188}
1189
Florin Coras458089b2019-08-21 16:20:44 -07001190/* *INDENT-OFF* */
1191static const u32 session_evt_msg_sizes[] = {
1192#define _(symc, sym) \
1193 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1194 foreach_session_ctrl_evt
1195#undef _
1196};
1197/* *INDENT-ON* */
1198
1199always_inline void
1200session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1201{
1202 session_evt_elt_t *elt;
1203
1204 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1205 {
1206 elt = session_evt_alloc_ctrl (wrk);
1207 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1208 {
1209 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1210 elt->evt.event_type = evt->event_type;
1211 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1212 session_evt_msg_sizes[evt->event_type]);
1213 }
1214 else
1215 {
1216 /* Internal control events fit into io events footprint */
1217 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1218 }
1219 }
1220 else
1221 {
1222 elt = session_evt_alloc_new (wrk);
1223 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1224 }
1225}
1226
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001227static void
1228session_flush_pending_tx_buffers (session_worker_t * wrk,
1229 vlib_node_runtime_t * node)
1230{
1231 vlib_buffer_enqueue_to_next (wrk->vm, node, wrk->pending_tx_buffers,
1232 wrk->pending_tx_nexts,
1233 vec_len (wrk->pending_tx_nexts));
1234 vec_reset_length (wrk->pending_tx_buffers);
1235 vec_reset_length (wrk->pending_tx_nexts);
1236}
1237
Florin Coras0d60a0f2018-06-29 02:02:08 -07001238static uword
1239session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1240 vlib_frame_t * frame)
1241{
Florin Coras31c99552019-03-01 13:00:58 -08001242 session_main_t *smm = vnet_get_session_main ();
Florin Coras2062ec02019-07-15 13:15:18 -07001243 u32 thread_index = vm->thread_index, n_to_dequeue;
Florin Coras31c99552019-03-01 13:00:58 -08001244 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001245 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras3c2fed52018-07-04 04:15:05 -07001246 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001247 clib_llist_index_t old_ti;
Florin Coras60183db2019-07-20 15:53:16 -07001248 int i, n_tx_packets = 0;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001249 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001250 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001251
Florin Corascca96182019-07-19 07:34:13 -07001252 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001253
Florin Coras60183db2019-07-20 15:53:16 -07001254 wrk->last_vlib_time = vlib_time_now (vm);
Florin Corasa8e71c82019-10-22 19:01:39 -07001255 wrk->last_vlib_us_time = wrk->last_vlib_time * CLIB_US_TIME_FREQ;
Florin Coras60183db2019-07-20 15:53:16 -07001256
Florin Coras0d60a0f2018-06-29 02:02:08 -07001257 /*
1258 * Update transport time
1259 */
Florin Coras60183db2019-07-20 15:53:16 -07001260 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001261
Florin Corasb0ffbee2019-07-21 19:23:46 -07001262 /*
1263 * Dequeue and handle new events
1264 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001265
Florin Coras5f56d732018-10-30 10:21:59 -07001266 /* Try to dequeue what is available. Don't wait for lock.
1267 * XXX: we may need priorities here */
1268 mq = wrk->vpp_event_queue;
1269 n_to_dequeue = svm_msg_q_size (mq);
1270 if (n_to_dequeue && svm_msg_q_try_lock (mq) == 0)
1271 {
1272 for (i = 0; i < n_to_dequeue; i++)
1273 {
Florin Coras5f56d732018-10-30 10:21:59 -07001274 svm_msg_q_sub_w_lock (mq, msg);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001275 evt = svm_msg_q_msg_data (mq, msg);
Florin Coras458089b2019-08-21 16:20:44 -07001276 session_evt_add_to_list (wrk, evt);
Florin Coras5f56d732018-10-30 10:21:59 -07001277 svm_msg_q_free_msg (mq, msg);
1278 }
1279 svm_msg_q_unlock (mq);
1280 }
1281
Florin Corasb0ffbee2019-07-21 19:23:46 -07001282 /*
1283 * Handle control events
1284 */
1285
1286 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1287
1288 /* *INDENT-OFF* */
1289 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1290 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001291 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001292 }));
1293 /* *INDENT-ON* */
1294
1295 /*
1296 * Handle the new io events.
1297 */
1298
1299 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
Florin Coras45b79732019-10-30 19:22:51 -07001300 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1301 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001302
1303 /* *INDENT-OFF* */
1304 clib_llist_foreach_safe (wrk->event_elts, evt_list, new_he, elt, ({
1305 session_evt_type_t et;
1306
1307 et = elt->evt.event_type;
1308 clib_llist_remove (wrk->event_elts, evt_list, elt);
1309
1310 /* Postpone tx events if we can't handle them this dispatch cycle */
1311 if (n_tx_packets >= VLIB_FRAME_SIZE
1312 && (et == SESSION_IO_EVT_TX || et == SESSION_IO_EVT_TX_FLUSH))
1313 {
1314 clib_llist_add (wrk->event_elts, evt_list, elt, new_he);
1315 continue;
1316 }
1317
Florin Coras458089b2019-08-21 16:20:44 -07001318 session_event_dispatch_io (wrk, node, elt, thread_index, &n_tx_packets);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001319 }));
1320 /* *INDENT-ON* */
1321
1322 /*
Florin Coras45b79732019-10-30 19:22:51 -07001323 * Handle the old io events, if we had any prior to processing the new ones
Florin Corasb0ffbee2019-07-21 19:23:46 -07001324 */
1325
Florin Coras45b79732019-10-30 19:22:51 -07001326 if (old_ti != wrk->old_head)
Florin Coras0d60a0f2018-06-29 02:02:08 -07001327 {
Florin Corasdd97a482019-11-02 14:32:52 -07001328 clib_llist_index_t ei, next_ei;
1329
Florin Corasb0ffbee2019-07-21 19:23:46 -07001330 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasdd97a482019-11-02 14:32:52 -07001331 ei = clib_llist_next_index (old_he, evt_list);
1332
Florin Coras45b79732019-10-30 19:22:51 -07001333 while (n_tx_packets < VLIB_FRAME_SIZE)
1334 {
Florin Corasdd97a482019-11-02 14:32:52 -07001335 elt = pool_elt_at_index (wrk->event_elts, ei);
1336 next_ei = clib_llist_next_index (elt, evt_list);
1337 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras45b79732019-10-30 19:22:51 -07001338
Florin Coras45b79732019-10-30 19:22:51 -07001339 session_event_dispatch_io (wrk, node, elt, thread_index,
1340 &n_tx_packets);
1341
Florin Coras45b79732019-10-30 19:22:51 -07001342 if (ei == old_ti)
1343 break;
Florin Corasdd97a482019-11-02 14:32:52 -07001344
1345 ei = next_ei;
Florin Coras45b79732019-10-30 19:22:51 -07001346 };
1347 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001348
Florin Coras2a7ea2e2019-10-16 22:06:08 -07001349 if (vec_len (wrk->pending_tx_buffers))
1350 session_flush_pending_tx_buffers (wrk, node);
1351
Florin Coras0d60a0f2018-06-29 02:02:08 -07001352 vlib_node_increment_counter (vm, session_queue_node.index,
1353 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1354
Florin Corascca96182019-07-19 07:34:13 -07001355 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001356
1357 return n_tx_packets;
1358}
1359
1360/* *INDENT-OFF* */
1361VLIB_REGISTER_NODE (session_queue_node) =
1362{
1363 .function = session_queue_node_fn,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +02001364 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Florin Coras0d60a0f2018-06-29 02:02:08 -07001365 .name = "session-queue",
1366 .format_trace = format_session_queue_trace,
1367 .type = VLIB_NODE_TYPE_INPUT,
1368 .n_errors = ARRAY_LEN (session_queue_error_strings),
1369 .error_strings = session_queue_error_strings,
1370 .state = VLIB_NODE_STATE_DISABLED,
1371};
1372/* *INDENT-ON* */
1373
Dave Barachacd2a6a2017-05-16 17:41:34 -04001374void
1375dump_thread_0_event_queue (void)
1376{
Florin Coras31c99552019-03-01 13:00:58 -08001377 session_main_t *smm = vnet_get_session_main ();
Dave Barachacd2a6a2017-05-16 17:41:34 -04001378 vlib_main_t *vm = &vlib_global_main;
1379 u32 my_thread_index = vm->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -07001380 session_event_t _e, *e = &_e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001381 svm_msg_q_ring_t *ring;
Florin Coras288eaab2019-02-03 15:26:14 -08001382 session_t *s0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001383 svm_msg_q_msg_t *msg;
1384 svm_msg_q_t *mq;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001385 int i, index;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001386
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001387 mq = smm->wrk[my_thread_index].vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001388 index = mq->q->head;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001389
Florin Coras3c2fed52018-07-04 04:15:05 -07001390 for (i = 0; i < mq->q->cursize; i++)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001391 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001392 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1393 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001394 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001395
1396 switch (e->event_type)
1397 {
Florin Corasf6c43132019-03-01 12:41:21 -08001398 case SESSION_IO_EVT_TX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001399 s0 = session_event_get_session (e, my_thread_index);
1400 fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index);
1401 break;
1402
Florin Corasf6c43132019-03-01 12:41:21 -08001403 case SESSION_CTRL_EVT_CLOSE:
Florin Corascea194d2017-10-02 00:18:51 -07001404 s0 = session_get_from_handle (e->session_handle);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001405 fformat (stdout, "[%04d] disconnect session %d\n", i,
1406 s0->session_index);
1407 break;
1408
Florin Corasf6c43132019-03-01 12:41:21 -08001409 case SESSION_IO_EVT_BUILTIN_RX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001410 s0 = session_event_get_session (e, my_thread_index);
1411 fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index);
1412 break;
1413
Florin Corasf6c43132019-03-01 12:41:21 -08001414 case SESSION_CTRL_EVT_RPC:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001415 fformat (stdout, "[%04d] RPC call %llx with %llx\n",
David Johnsond9818dd2018-12-14 14:53:41 -05001416 i, (u64) (uword) (e->rpc_args.fp),
1417 (u64) (uword) (e->rpc_args.arg));
Dave Barachacd2a6a2017-05-16 17:41:34 -04001418 break;
1419
1420 default:
1421 fformat (stdout, "[%04d] unhandled event type %d\n",
1422 i, e->event_type);
1423 break;
1424 }
1425
1426 index++;
1427
Florin Coras3c2fed52018-07-04 04:15:05 -07001428 if (index == mq->q->maxsize)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001429 index = 0;
1430 }
1431}
1432
Florin Coras6534b7a2017-07-18 05:38:03 -04001433static u8
Florin Coras52207f12018-07-12 14:48:06 -07001434session_node_cmp_event (session_event_t * e, svm_fifo_t * f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001435{
Florin Coras288eaab2019-02-03 15:26:14 -08001436 session_t *s;
Florin Coras6534b7a2017-07-18 05:38:03 -04001437 switch (e->event_type)
1438 {
Florin Corasf6c43132019-03-01 12:41:21 -08001439 case SESSION_IO_EVT_RX:
1440 case SESSION_IO_EVT_TX:
1441 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasbe237bf2019-09-27 08:16:40 -07001442 case SESSION_IO_EVT_BUILTIN_TX:
1443 case SESSION_IO_EVT_TX_FLUSH:
Florin Corasc0737e92019-03-04 14:19:39 -08001444 if (e->session_index == f->master_session_index)
Florin Coras6534b7a2017-07-18 05:38:03 -04001445 return 1;
1446 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001447 case SESSION_CTRL_EVT_CLOSE:
Florin Coras6534b7a2017-07-18 05:38:03 -04001448 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001449 case SESSION_CTRL_EVT_RPC:
Florin Corascea194d2017-10-02 00:18:51 -07001450 s = session_get_from_handle (e->session_handle);
Florin Coras6534b7a2017-07-18 05:38:03 -04001451 if (!s)
1452 {
1453 clib_warning ("session has event but doesn't exist!");
1454 break;
1455 }
Florin Coras288eaab2019-02-03 15:26:14 -08001456 if (s->rx_fifo == f || s->tx_fifo == f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001457 return 1;
1458 break;
1459 default:
1460 break;
1461 }
1462 return 0;
1463}
1464
1465u8
Florin Coras52207f12018-07-12 14:48:06 -07001466session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e)
Florin Coras6534b7a2017-07-18 05:38:03 -04001467{
Florin Coras2062ec02019-07-15 13:15:18 -07001468 session_evt_elt_t *elt;
Florin Coras31c99552019-03-01 13:00:58 -08001469 session_worker_t *wrk;
Florin Coras6534b7a2017-07-18 05:38:03 -04001470 int i, index, found = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001471 svm_msg_q_msg_t *msg;
1472 svm_msg_q_ring_t *ring;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001473 svm_msg_q_t *mq;
Florin Coras6534b7a2017-07-18 05:38:03 -04001474 u8 thread_index;
1475
1476 ASSERT (e);
1477 thread_index = f->master_thread_index;
Florin Coras31c99552019-03-01 13:00:58 -08001478 wrk = session_main_get_worker (thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001479
Florin Coras6534b7a2017-07-18 05:38:03 -04001480 /*
1481 * Search evt queue
1482 */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001483 mq = wrk->vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001484 index = mq->q->head;
1485 for (i = 0; i < mq->q->cursize; i++)
Florin Coras6534b7a2017-07-18 05:38:03 -04001486 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001487 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1488 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001489 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Florin Coras6534b7a2017-07-18 05:38:03 -04001490 found = session_node_cmp_event (e, f);
1491 if (found)
Florin Coras371ca502018-02-21 12:07:41 -08001492 return 1;
Florin Corasbe237bf2019-09-27 08:16:40 -07001493 index = (index + 1) % mq->q->maxsize;
Florin Coras6534b7a2017-07-18 05:38:03 -04001494 }
1495 /*
1496 * Search pending events vector
1497 */
Florin Coras2062ec02019-07-15 13:15:18 -07001498
1499 /* *INDENT-OFF* */
1500 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasbe237bf2019-09-27 08:16:40 -07001501 pool_elt_at_index (wrk->event_elts, wrk->new_head),
1502 elt, ({
1503 found = session_node_cmp_event (&elt->evt, f);
1504 if (found)
1505 {
1506 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
1507 goto done;
1508 }
1509 }));
1510 /* *INDENT-ON* */
1511
1512 /* *INDENT-OFF* */
1513 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasb0ffbee2019-07-21 19:23:46 -07001514 pool_elt_at_index (wrk->event_elts, wrk->old_head),
1515 elt, ({
Florin Coras2062ec02019-07-15 13:15:18 -07001516 found = session_node_cmp_event (&elt->evt, f);
Florin Coras6534b7a2017-07-18 05:38:03 -04001517 if (found)
1518 {
Florin Coras2062ec02019-07-15 13:15:18 -07001519 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
Florin Corasbe237bf2019-09-27 08:16:40 -07001520 goto done;
Florin Coras6534b7a2017-07-18 05:38:03 -04001521 }
Florin Coras2062ec02019-07-15 13:15:18 -07001522 }));
1523 /* *INDENT-ON* */
1524
Florin Corasbe237bf2019-09-27 08:16:40 -07001525done:
Florin Coras6534b7a2017-07-18 05:38:03 -04001526 return found;
1527}
1528
Dave Barach2a863912017-11-28 10:11:42 -05001529static clib_error_t *
1530session_queue_exit (vlib_main_t * vm)
1531{
1532 if (vec_len (vlib_mains) < 2)
1533 return 0;
1534
1535 /*
1536 * Shut off (especially) worker-thread session nodes.
1537 * Otherwise, vpp can crash as the main thread unmaps the
1538 * API segment.
1539 */
1540 vlib_worker_thread_barrier_sync (vm);
1541 session_node_enable_disable (0 /* is_enable */ );
1542 vlib_worker_thread_barrier_release (vm);
1543 return 0;
1544}
1545
1546VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1547
Florin Corasfd542f12018-05-16 19:28:24 -07001548static uword
1549session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1550 vlib_frame_t * f)
1551{
1552 f64 now, timeout = 1.0;
1553 uword *event_data = 0;
1554 uword event_type;
1555
1556 while (1)
1557 {
1558 vlib_process_wait_for_event_or_clock (vm, timeout);
1559 now = vlib_time_now (vm);
1560 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1561
1562 switch (event_type)
1563 {
1564 case SESSION_Q_PROCESS_FLUSH_FRAMES:
1565 /* Flush the frames by updating all transports times */
1566 transport_update_time (now, 0);
1567 break;
1568 case SESSION_Q_PROCESS_STOP:
1569 timeout = 100000.0;
1570 break;
1571 case ~0:
1572 /* Timed out. Update time for all transports to trigger all
1573 * outstanding retransmits. */
1574 transport_update_time (now, 0);
1575 break;
1576 }
1577 vec_reset_length (event_data);
1578 }
1579 return 0;
1580}
1581
1582/* *INDENT-OFF* */
1583VLIB_REGISTER_NODE (session_queue_process_node) =
1584{
1585 .function = session_queue_process,
1586 .type = VLIB_NODE_TYPE_PROCESS,
1587 .name = "session-queue-process",
1588 .state = VLIB_NODE_STATE_DISABLED,
1589};
1590/* *INDENT-ON* */
1591
Florin Coras653e43f2019-03-04 10:56:23 -08001592static_always_inline uword
1593session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1594 vlib_frame_t * frame)
1595{
1596 session_main_t *sm = &session_main;
1597 if (!sm->wrk[0].vpp_event_queue)
1598 return 0;
1599 return session_queue_node_fn (vm, node, frame);
1600}
1601
1602/* *INDENT-OFF* */
1603VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1604{
1605 .function = session_queue_pre_input_inline,
1606 .type = VLIB_NODE_TYPE_PRE_INPUT,
1607 .name = "session-queue-main",
1608 .state = VLIB_NODE_STATE_DISABLED,
1609};
1610/* *INDENT-ON* */
1611
Dave Barach68b0fb02017-02-28 15:15:56 -05001612/*
1613 * fd.io coding-style-patch-verification: ON
1614 *
1615 * Local Variables:
1616 * eval: (c-set-style "gnu")
1617 * End:
1618 */