blob: ad18637a95241e0c9d2d800d351b6e354123ab3b [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;
57 a->app_index = app->app_index;
58 a->wrk_map_index = mp->wrk_index;
59
60 if ((rv = vnet_listen (a)))
61 clib_warning ("listen returned: %d", rv);
62
63 app_wrk = application_get_worker (app, mp->wrk_index);
64 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
65 return;
66}
67
68static void
69session_mq_listen_uri_handler (void *data)
70{
71 session_listen_uri_msg_t *mp = (session_listen_uri_msg_t *) data;
72 vnet_listen_args_t _a, *a = &_a;
73 app_worker_t *app_wrk;
74 application_t *app;
75 int rv;
76
77 app_check_thread_and_barrier (session_mq_listen_uri_handler, mp);
78
79 app = application_lookup (mp->client_index);
80 if (!app)
81 return;
82
83 clib_memset (a, 0, sizeof (*a));
84 a->uri = (char *) mp->uri;
85 a->app_index = app->app_index;
86 rv = vnet_bind_uri (a);
87
88 app_wrk = application_get_worker (app, 0);
89 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle, rv);
90}
91
92static void
93session_mq_connect_handler (void *data)
94{
95 session_connect_msg_t *mp = (session_connect_msg_t *) data;
96 vnet_connect_args_t _a, *a = &_a;
97 app_worker_t *app_wrk;
98 application_t *app;
99 int rv;
100
101 app_check_thread_and_barrier (session_mq_connect_handler, mp);
102
103 app = application_lookup (mp->client_index);
104 if (!app)
105 return;
106
107 clib_memset (a, 0, sizeof (*a));
108 a->sep.is_ip4 = mp->is_ip4;
109 clib_memcpy_fast (&a->sep.ip, &mp->ip, sizeof (mp->ip));
110 a->sep.port = mp->port;
111 a->sep.transport_proto = mp->proto;
112 a->sep.peer.fib_index = mp->vrf;
113 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
114 a->sep_ext.parent_handle = mp->parent_handle;
115 if (mp->hostname_len)
116 {
117 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
118 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname, mp->hostname_len);
119 }
120 a->api_context = mp->context;
121 a->app_index = app->app_index;
122 a->wrk_map_index = mp->wrk_index;
123
124 if ((rv = vnet_connect (a)))
125 {
126 clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
127 app_wrk = application_get_worker (app, mp->wrk_index);
128 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0,
129 /* is_fail */ 1);
130 }
131
132 vec_free (a->sep_ext.hostname);
133}
134
135static void
136session_mq_connect_uri_handler (void *data)
137{
138 session_connect_uri_msg_t *mp = (session_connect_uri_msg_t *) data;
139 vnet_connect_args_t _a, *a = &_a;
140 app_worker_t *app_wrk;
141 application_t *app;
142 int rv;
143
144 app_check_thread_and_barrier (session_mq_connect_uri_handler, mp);
145
146 app = application_lookup (mp->client_index);
147 if (!app)
148 return;
149
150 clib_memset (a, 0, sizeof (*a));
151 a->uri = (char *) mp->uri;
152 a->api_context = mp->context;
153 a->app_index = app->app_index;
154 if ((rv = vnet_connect_uri (a)))
155 {
156 clib_warning ("connect_uri returned: %d", rv);
157 app_wrk = application_get_worker (app, 0 /* default wrk only */ );
158 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0,
159 /* is_fail */ 1);
160 }
161}
162
163static void
164session_mq_disconnect_handler (void *data)
165{
166 session_disconnect_msg_t *mp = (session_disconnect_msg_t *) data;
167 vnet_disconnect_args_t _a, *a = &_a;
168 application_t *app;
169
170 app = application_lookup (mp->client_index);
171 if (!app)
172 return;
173
174 a->app_index = app->app_index;
175 a->handle = mp->handle;
176 vnet_disconnect_session (a);
177}
178
179static void
180app_mq_detach_handler (void *data)
181{
182 session_app_detach_msg_t *mp = (session_app_detach_msg_t *) data;
183 vnet_app_detach_args_t _a, *a = &_a;
184 application_t *app;
185
186 app_check_thread_and_barrier (app_mq_detach_handler, mp);
187
188 app = application_lookup (mp->client_index);
189 if (!app)
190 return;
191
192 a->app_index = app->app_index;
193 a->api_client_index = mp->client_index;
194 vnet_application_detach (a);
195}
196
197static void
198session_mq_unlisten_handler (void *data)
199{
200 session_unlisten_msg_t *mp = (session_unlisten_msg_t *) data;
201 vnet_unlisten_args_t _a, *a = &_a;
202 app_worker_t *app_wrk;
203 application_t *app;
204 int rv;
205
206 app_check_thread_and_barrier (session_mq_unlisten_handler, mp);
207
208 app = application_lookup (mp->client_index);
209 if (!app)
210 return;
211
212 clib_memset (a, 0, sizeof (*a));
213 a->app_index = app->app_index;
214 a->handle = mp->handle;
215 a->wrk_map_index = mp->wrk_index;
216 if ((rv = vnet_unlisten (a)))
217 clib_warning ("unlisten returned: %d", rv);
218
219 app_wrk = application_get_worker (app, a->wrk_map_index);
220 if (!app_wrk)
221 return;
222
223 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800224}
225
Florin Coras52207f12018-07-12 14:48:06 -0700226static void
227session_mq_accepted_reply_handler (void *data)
228{
229 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
230 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras288eaab2019-02-03 15:26:14 -0800231 session_state_t old_state;
Florin Coras21795132018-09-09 09:40:51 -0700232 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800233 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700234
235 /* Server isn't interested, kill the session */
236 if (mp->retval)
237 {
238 a->app_index = mp->context;
239 a->handle = mp->handle;
240 vnet_disconnect_session (a);
241 return;
242 }
243
Florin Coras2b81e3c2019-02-27 07:55:46 -0800244 /* Mail this back from the main thread. We're not polling in main
245 * thread so we're using other workers for notifications. */
246 if (vlib_num_workers () && vlib_get_thread_index () != 0
247 && session_thread_from_handle (mp->handle) == 0)
Florin Coras52207f12018-07-12 14:48:06 -0700248 {
Florin Coras458089b2019-08-21 16:20:44 -0700249 vlib_rpc_call_main_thread (session_mq_accepted_reply_handler,
250 (u8 *) mp, sizeof (*mp));
Florin Coras2b81e3c2019-02-27 07:55:46 -0800251 return;
252 }
253
254 s = session_get_from_handle_if_valid (mp->handle);
255 if (!s)
256 return;
257
258 app_wrk = app_worker_get (s->app_wrk_index);
259 if (app_wrk->app_index != mp->context)
260 {
261 clib_warning ("app doesn't own session");
262 return;
263 }
264
265 if (!session_has_transport (s))
266 {
Florin Coras653e43f2019-03-04 10:56:23 -0800267 s->session_state = SESSION_STATE_READY;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800268 if (ct_session_connect_notify (s))
Florin Coras52207f12018-07-12 14:48:06 -0700269 return;
Florin Coras52207f12018-07-12 14:48:06 -0700270 }
271 else
272 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800273 old_state = s->session_state;
Florin Coras52207f12018-07-12 14:48:06 -0700274 s->session_state = SESSION_STATE_READY;
Sirshak Das28aa5392019-02-05 01:33:33 -0600275
276 if (!svm_fifo_is_empty_prod (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800277 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Corasb0f662f2018-12-27 14:51:46 -0800278
279 /* Closed while waiting for app to reply. Resend disconnect */
280 if (old_state >= SESSION_STATE_TRANSPORT_CLOSING)
281 {
Florin Coras69b68ef2019-04-02 11:38:51 -0700282 app_worker_close_notify (app_wrk, s);
Florin Corasb0f662f2018-12-27 14:51:46 -0800283 s->session_state = old_state;
284 return;
285 }
Florin Coras52207f12018-07-12 14:48:06 -0700286 }
287}
288
289static void
290session_mq_reset_reply_handler (void *data)
291{
Florin Coras4af830c2018-12-04 09:21:36 -0800292 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras52207f12018-07-12 14:48:06 -0700293 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700294 app_worker_t *app_wrk;
Florin Coras288eaab2019-02-03 15:26:14 -0800295 session_t *s;
Florin Coras15531972018-08-12 23:50:53 -0700296 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700297 u32 index, thread_index;
298
299 mp = (session_reset_reply_msg_t *) data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800300 app = application_lookup (mp->context);
Florin Coras52207f12018-07-12 14:48:06 -0700301 if (!app)
302 return;
303
304 session_parse_handle (mp->handle, &index, &thread_index);
305 s = session_get_if_valid (index, thread_index);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800306
307 /* Session was already closed or already cleaned up */
308 if (!s || s->session_state != SESSION_STATE_TRANSPORT_CLOSING)
309 return;
310
Florin Coras15531972018-08-12 23:50:53 -0700311 app_wrk = app_worker_get (s->app_wrk_index);
312 if (!app_wrk || app_wrk->app_index != app->app_index)
313 {
314 clib_warning ("App % does not own handle 0x%lx!", app->app_index,
315 mp->handle);
316 return;
317 }
Florin Coras52207f12018-07-12 14:48:06 -0700318
319 /* Client objected to resetting the session, log and continue */
320 if (mp->retval)
321 {
322 clib_warning ("client retval %d", mp->retval);
323 return;
324 }
325
326 /* This comes as a response to a reset, transport only waiting for
327 * confirmation to remove connection state, no need to disconnect */
Florin Coras4af830c2018-12-04 09:21:36 -0800328 a->handle = mp->handle;
329 a->app_index = app->app_index;
330 vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700331}
332
333static void
334session_mq_disconnected_handler (void *data)
335{
336 session_disconnected_reply_msg_t *rmp;
337 vnet_disconnect_args_t _a, *a = &_a;
338 svm_msg_q_msg_t _msg, *msg = &_msg;
339 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700340 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700341 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800342 session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700343 application_t *app;
344 int rv = 0;
345
346 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700347 if (!(s = session_get_from_handle_if_valid (mp->handle)))
348 {
349 clib_warning ("could not disconnect handle %llu", mp->handle);
350 return;
351 }
Florin Coras15531972018-08-12 23:50:53 -0700352 app_wrk = app_worker_get (s->app_wrk_index);
353 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700354 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700355 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700356 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700357 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700358 return;
Florin Coras52207f12018-07-12 14:48:06 -0700359 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700360
361 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700362 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700363 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700364
Florin Coras15531972018-08-12 23:50:53 -0700365 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700366 SESSION_MQ_CTRL_EVT_RING,
367 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700368 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400369 clib_memset (evt, 0, sizeof (*evt));
Florin Coras30e79c22019-01-02 19:31:22 -0800370 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED_REPLY;
Florin Coras52207f12018-07-12 14:48:06 -0700371 rmp = (session_disconnected_reply_msg_t *) evt->data;
372 rmp->handle = mp->handle;
373 rmp->context = mp->context;
374 rmp->retval = rv;
Florin Coras2b5fed82019-07-25 14:51:09 -0700375 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700376}
377
378static void
379session_mq_disconnected_reply_handler (void *data)
380{
381 session_disconnected_reply_msg_t *mp;
382 vnet_disconnect_args_t _a, *a = &_a;
383 application_t *app;
384
385 mp = (session_disconnected_reply_msg_t *) data;
386
387 /* Client objected to disconnecting the session, log and continue */
388 if (mp->retval)
389 {
390 clib_warning ("client retval %d", mp->retval);
391 return;
392 }
393
394 /* Disconnect has been confirmed. Confirm close to transport */
395 app = application_lookup (mp->context);
396 if (app)
397 {
398 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700399 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700400 vnet_disconnect_session (a);
401 }
402}
403
Florin Coras30e79c22019-01-02 19:31:22 -0800404static void
405session_mq_worker_update_handler (void *data)
406{
407 session_worker_update_msg_t *mp = (session_worker_update_msg_t *) data;
408 session_worker_update_reply_msg_t *rmp;
409 svm_msg_q_msg_t _msg, *msg = &_msg;
410 app_worker_t *app_wrk;
411 u32 owner_app_wrk_map;
412 session_event_t *evt;
Florin Coras288eaab2019-02-03 15:26:14 -0800413 session_t *s;
Florin Coras30e79c22019-01-02 19:31:22 -0800414 application_t *app;
415
416 app = application_lookup (mp->client_index);
417 if (!app)
418 return;
419 if (!(s = session_get_from_handle_if_valid (mp->handle)))
420 {
421 clib_warning ("invalid handle %llu", mp->handle);
422 return;
423 }
424 app_wrk = app_worker_get (s->app_wrk_index);
425 if (app_wrk->app_index != app->app_index)
426 {
427 clib_warning ("app %u does not own session %llu", app->app_index,
428 mp->handle);
429 return;
430 }
431 owner_app_wrk_map = app_wrk->wrk_map_index;
432 app_wrk = application_get_worker (app, mp->wrk_index);
433
434 /* This needs to come from the new owner */
435 if (mp->req_wrk_index == owner_app_wrk_map)
436 {
437 session_req_worker_update_msg_t *wump;
438
439 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
440 SESSION_MQ_CTRL_EVT_RING,
441 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800442 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
443 clib_memset (evt, 0, sizeof (*evt));
444 evt->event_type = SESSION_CTRL_EVT_REQ_WORKER_UPDATE;
445 wump = (session_req_worker_update_msg_t *) evt->data;
446 wump->session_handle = mp->handle;
Florin Coras2b5fed82019-07-25 14:51:09 -0700447 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800448 return;
449 }
450
451 app_worker_own_session (app_wrk, s);
452
453 /*
454 * Send reply
455 */
456 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
457 SESSION_MQ_CTRL_EVT_RING,
458 SVM_Q_WAIT, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800459 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
460 clib_memset (evt, 0, sizeof (*evt));
461 evt->event_type = SESSION_CTRL_EVT_WORKER_UPDATE_REPLY;
462 rmp = (session_worker_update_reply_msg_t *) evt->data;
463 rmp->handle = mp->handle;
Florin Coras288eaab2019-02-03 15:26:14 -0800464 rmp->rx_fifo = pointer_to_uword (s->rx_fifo);
465 rmp->tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras30e79c22019-01-02 19:31:22 -0800466 rmp->segment_handle = session_segment_handle (s);
Florin Coras2b5fed82019-07-25 14:51:09 -0700467 svm_msg_q_add_and_unlock (app_wrk->event_queue, msg);
Florin Coras30e79c22019-01-02 19:31:22 -0800468
469 /*
470 * Retransmit messages that may have been lost
471 */
Florin Coras288eaab2019-02-03 15:26:14 -0800472 if (s->tx_fifo && !svm_fifo_is_empty (s->tx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800473 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras30e79c22019-01-02 19:31:22 -0800474
Florin Coras288eaab2019-02-03 15:26:14 -0800475 if (s->rx_fifo && !svm_fifo_is_empty (s->rx_fifo))
Florin Corasf6c43132019-03-01 12:41:21 -0800476 app_worker_lock_and_send_event (app_wrk, s, SESSION_IO_EVT_RX);
Florin Coras30e79c22019-01-02 19:31:22 -0800477
478 if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSING)
Florin Coras69b68ef2019-04-02 11:38:51 -0700479 app_worker_close_notify (app_wrk, s);
Florin Coras30e79c22019-01-02 19:31:22 -0800480}
481
Dave Barach68b0fb02017-02-28 15:15:56 -0500482vlib_node_registration_t session_queue_node;
483
484typedef struct
485{
486 u32 session_index;
487 u32 server_thread_index;
488} session_queue_trace_t;
489
490/* packet trace format function */
491static u8 *
492format_session_queue_trace (u8 * s, va_list * args)
493{
494 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
495 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
496 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
497
498 s = format (s, "SESSION_QUEUE: session index %d, server thread index %d",
499 t->session_index, t->server_thread_index);
500 return s;
501}
502
Florin Coras6792ec02017-03-13 03:49:51 -0700503#define foreach_session_queue_error \
504_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700505_(TIMER, "Timer events") \
506_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500507
508typedef enum
509{
510#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
511 foreach_session_queue_error
512#undef _
513 SESSION_QUEUE_N_ERROR,
514} session_queue_error_t;
515
516static char *session_queue_error_strings[] = {
517#define _(sym,string) string,
518 foreach_session_queue_error
519#undef _
520};
521
Florin Coras0d60a0f2018-06-29 02:02:08 -0700522enum
523{
524 SESSION_TX_NO_BUFFERS = -2,
525 SESSION_TX_NO_DATA,
526 SESSION_TX_OK
527};
528
Florin Coras66cf5e02018-06-08 09:17:39 -0700529static void
530session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
531 u32 next_index, u32 * to_next, u16 n_segs,
Florin Coras288eaab2019-02-03 15:26:14 -0800532 session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700533{
Florin Coras8e43d042018-05-04 15:46:57 -0700534 session_queue_trace_t *t;
Florin Coras66cf5e02018-06-08 09:17:39 -0700535 vlib_buffer_t *b;
536 int i;
537
538 for (i = 0; i < clib_min (n_trace, n_segs); i++)
539 {
540 b = vlib_get_buffer (vm, to_next[i - n_segs]);
541 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
Florin Coras66cf5e02018-06-08 09:17:39 -0700542 t = vlib_add_trace (vm, node, b, sizeof (*t));
543 t->session_index = s->session_index;
544 t->server_thread_index = s->thread_index;
545 }
Florin Coras4df38712018-06-20 12:44:16 -0700546 vlib_set_trace_count (vm, node, n_trace - i);
Florin Coras8e43d042018-05-04 15:46:57 -0700547}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700548
Florin Coras8e43d042018-05-04 15:46:57 -0700549always_inline void
550session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
551 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
552{
Florin Coras8e43d042018-05-04 15:46:57 -0700553 vlib_buffer_t *chain_b, *prev_b;
554 u32 chain_bi0, to_deq, left_from_seg;
Florin Coras31c99552019-03-01 13:00:58 -0800555 session_worker_t *wrk;
Florin Coras8e43d042018-05-04 15:46:57 -0700556 u16 len_to_deq, n_bytes_read;
557 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700558
Florin Coras31c99552019-03-01 13:00:58 -0800559 wrk = session_main_get_worker (ctx->s->thread_index);
Florin Coras8e43d042018-05-04 15:46:57 -0700560 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
561 b->total_length_not_including_first_buffer = 0;
562
563 chain_b = b;
564 left_from_seg = clib_min (ctx->snd_mss - b->current_length,
565 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700566 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700567 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700568 {
Florin Coras8e43d042018-05-04 15:46:57 -0700569 prev_b = chain_b;
570 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700571
572 *n_bufs -= 1;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700573 chain_bi0 = wrk->tx_buffers[*n_bufs];
Florin Coras8e43d042018-05-04 15:46:57 -0700574 chain_b = vlib_get_buffer (vm, chain_bi0);
575 chain_b->current_data = 0;
576 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700577 if (peek_data)
578 {
Florin Coras288eaab2019-02-03 15:26:14 -0800579 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo,
Florin Coras8e43d042018-05-04 15:46:57 -0700580 ctx->tx_offset, len_to_deq, data);
581 ctx->tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700582 }
583 else
584 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200585 if (ctx->transport_vft->transport_options.tx_type ==
586 TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700587 {
Florin Coras288eaab2019-02-03 15:26:14 -0800588 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700589 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700590 u16 deq_now;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700591 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700592 len_to_deq);
593 n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
594 data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700595 ASSERT (n_bytes_read > 0);
596
597 hdr->data_offset += n_bytes_read;
598 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800599 {
600 u32 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
601 svm_fifo_dequeue_drop (f, offset);
602 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700603 }
604 else
Florin Coras87b15ce2019-04-28 21:16:30 -0700605 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
606 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700607 }
Florin Coras8e43d042018-05-04 15:46:57 -0700608 ASSERT (n_bytes_read == len_to_deq);
609 chain_b->current_length = n_bytes_read;
610 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700611
612 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700613 prev_b->next_buffer = chain_bi0;
614 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700615
616 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700617 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700618
Florin Corasb2215d62017-08-01 16:56:58 -0700619 to_deq -= n_bytes_read;
620 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700621 break;
622 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700623 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700624 && b->total_length_not_including_first_buffer == left_from_seg);
625 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700626}
627
Florin Coras8e43d042018-05-04 15:46:57 -0700628always_inline void
629session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
630 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
631{
632 u32 len_to_deq;
633 u8 *data0;
634 int n_bytes_read;
635
636 /*
637 * Start with the first buffer in chain
638 */
639 b->error = 0;
640 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
641 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700642
Florin Coras1ee78302019-02-05 15:51:15 -0800643 data0 = vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700644 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
645
Florin Coras7fb0fe12018-04-09 09:24:52 -0700646 if (peek_data)
647 {
Florin Coras288eaab2019-02-03 15:26:14 -0800648 n_bytes_read = svm_fifo_peek (ctx->s->tx_fifo, ctx->tx_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700649 len_to_deq, data0);
650 ASSERT (n_bytes_read > 0);
651 /* Keep track of progress locally, transport is also supposed to
652 * increment it independently when pushing the header */
653 ctx->tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700654 }
655 else
656 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200657 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras8e43d042018-05-04 15:46:57 -0700658 {
659 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras288eaab2019-02-03 15:26:14 -0800660 svm_fifo_t *f = ctx->s->tx_fifo;
Florin Coras8e43d042018-05-04 15:46:57 -0700661 u16 deq_now;
662 u32 offset;
663
664 ASSERT (hdr->data_length > hdr->data_offset);
665 deq_now = clib_min (hdr->data_length - hdr->data_offset,
666 len_to_deq);
667 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
668 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
669 ASSERT (n_bytes_read > 0);
670
671 if (ctx->s->session_state == SESSION_STATE_LISTENING)
672 {
673 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
674 ctx->tc->rmt_port = hdr->rmt_port;
675 }
676 hdr->data_offset += n_bytes_read;
677 if (hdr->data_offset == hdr->data_length)
678 {
679 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
680 svm_fifo_dequeue_drop (f, offset);
681 }
682 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700683 else
684 {
Florin Coras87b15ce2019-04-28 21:16:30 -0700685 n_bytes_read = svm_fifo_dequeue (ctx->s->tx_fifo,
686 len_to_deq, data0);
Florin Coras8e43d042018-05-04 15:46:57 -0700687 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700688 }
689 }
Florin Coras8e43d042018-05-04 15:46:57 -0700690 b->current_length = n_bytes_read;
691 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500692
Florin Coras8e43d042018-05-04 15:46:57 -0700693 /*
694 * Fill in the remaining buffers in the chain, if any
695 */
696 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
697 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Florin Coras8e43d042018-05-04 15:46:57 -0700698}
699
700always_inline u8
Florin Coras288eaab2019-02-03 15:26:14 -0800701session_tx_not_ready (session_t * s, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700702{
703 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800704 {
Florin Corasa6789742019-08-07 19:12:38 -0700705 if (PREDICT_TRUE (s->session_state == SESSION_STATE_READY))
706 return 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700707 /* Can retransmit for closed sessions but can't send new data if
708 * session is not ready or closed */
Florin Corasa6789742019-08-07 19:12:38 -0700709 else if (s->session_state < SESSION_STATE_READY)
Florin Coras8e43d042018-05-04 15:46:57 -0700710 return 1;
Florin Corasa6789742019-08-07 19:12:38 -0700711 else if (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED)
712 {
713 /* Allow closed transports to still send custom packets.
714 * For instance, tcp may want to send acks in time-wait. */
715 if (s->session_state != SESSION_STATE_TRANSPORT_DELETED
716 && (s->flags & SESSION_F_CUSTOM_TX))
717 return 0;
718 return 2;
719 }
Florin Corase04c2992017-03-01 08:17:34 -0800720 }
Florin Coras8e43d042018-05-04 15:46:57 -0700721 return 0;
722}
Dave Barach68b0fb02017-02-28 15:15:56 -0500723
Florin Coras8e43d042018-05-04 15:46:57 -0700724always_inline transport_connection_t *
725session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
726{
727 if (peek_data)
728 {
729 return ctx->transport_vft->get_connection (ctx->s->connection_index,
730 ctx->s->thread_index);
731 }
732 else
733 {
734 if (ctx->s->session_state == SESSION_STATE_LISTENING)
735 return ctx->transport_vft->get_listener (ctx->s->connection_index);
736 else
737 {
738 return ctx->transport_vft->get_connection (ctx->s->connection_index,
739 ctx->s->thread_index);
740 }
741 }
742}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800743
Florin Coras8e43d042018-05-04 15:46:57 -0700744always_inline void
745session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700746 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700747{
748 u32 n_bytes_per_buf, n_bytes_per_seg;
Sirshak Das28aa5392019-02-05 01:33:33 -0600749 ctx->max_dequeue = svm_fifo_max_dequeue_cons (ctx->s->tx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500750 if (peek_data)
751 {
Florin Coras9d063042017-09-14 03:08:00 -0400752 /* Offset in rx fifo from where to peek data */
Florin Coras8e43d042018-05-04 15:46:57 -0700753 ctx->tx_offset = ctx->transport_vft->tx_fifo_offset (ctx->tc);
754 if (PREDICT_FALSE (ctx->tx_offset >= ctx->max_dequeue))
755 {
756 ctx->max_len_to_snd = 0;
757 return;
758 }
759 ctx->max_dequeue -= ctx->tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500760 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700761 else
762 {
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200763 if (ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700764 {
Florin Coras8e43d042018-05-04 15:46:57 -0700765 if (ctx->max_dequeue <= sizeof (ctx->hdr))
766 {
767 ctx->max_len_to_snd = 0;
768 return;
769 }
Florin Coras288eaab2019-02-03 15:26:14 -0800770 svm_fifo_peek (ctx->s->tx_fifo, 0, sizeof (ctx->hdr),
Florin Coras8e43d042018-05-04 15:46:57 -0700771 (u8 *) & ctx->hdr);
772 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
773 ctx->max_dequeue = ctx->hdr.data_length - ctx->hdr.data_offset;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700774 }
775 }
Florin Coras8e43d042018-05-04 15:46:57 -0700776 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700777
778 /* Ensure we're not writing more than transport window allows */
Florin Coras8e43d042018-05-04 15:46:57 -0700779 if (ctx->max_dequeue < ctx->snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700780 {
781 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras8e43d042018-05-04 15:46:57 -0700782 ctx->max_len_to_snd =
783 (ctx->max_dequeue > ctx->snd_mss) ?
784 ctx->max_dequeue - ctx->max_dequeue % ctx->snd_mss : ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700785 /* TODO Nagle ? */
786 }
787 else
788 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700789 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras8e43d042018-05-04 15:46:57 -0700790 ctx->max_len_to_snd = ctx->snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700791 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500792
Florin Corasf08f26d2018-05-10 13:20:47 -0700793 /* Check if we're tx constrained by the node */
794 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->snd_mss);
795 if (ctx->n_segs_per_evt > max_segs)
796 {
797 ctx->n_segs_per_evt = max_segs;
798 ctx->max_len_to_snd = max_segs * ctx->snd_mss;
799 }
800
Damjan Marion8934a042019-02-09 23:29:26 +0100801 n_bytes_per_buf = vlib_buffer_get_default_data_size (vm);
Florin Coras1ee78302019-02-05 15:51:15 -0800802 ASSERT (n_bytes_per_buf > TRANSPORT_MAX_HDRS_LEN);
803 n_bytes_per_seg = TRANSPORT_MAX_HDRS_LEN + ctx->snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700804 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
Florin Coras8e43d042018-05-04 15:46:57 -0700805 ctx->deq_per_buf = clib_min (ctx->snd_mss, n_bytes_per_buf);
806 ctx->deq_per_first_buf = clib_min (ctx->snd_mss,
Florin Coras1ee78302019-02-05 15:51:15 -0800807 n_bytes_per_buf -
808 TRANSPORT_MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700809}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700810
Florin Coras8e43d042018-05-04 15:46:57 -0700811always_inline int
Florin Coras60183db2019-07-20 15:53:16 -0700812session_tx_fifo_read_and_snd_i (session_worker_t * wrk,
813 vlib_node_runtime_t * node,
814 session_evt_elt_t * elt,
815 int *n_tx_packets, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700816{
Florin Coras26dd6de2019-07-23 23:54:47 -0700817 u32 next_index, next0, next1, *to_next, n_left_to_next, max_burst;
Florin Coras60183db2019-07-20 15:53:16 -0700818 u32 n_trace, n_bufs_needed = 0, n_left, pbi;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700819 session_tx_context_t *ctx = &wrk->ctx;
Florin Coras60183db2019-07-20 15:53:16 -0700820 session_main_t *smm = &session_main;
Florin Coras2062ec02019-07-15 13:15:18 -0700821 session_event_t *e = &elt->evt;
Florin Coras60183db2019-07-20 15:53:16 -0700822 vlib_main_t *vm = wrk->vm;
Florin Coras8e43d042018-05-04 15:46:57 -0700823 transport_proto_t tp;
824 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700825 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700826
Florin Coras1bcad5c2019-01-09 20:04:38 -0800827 if (PREDICT_FALSE ((rv = session_tx_not_ready (ctx->s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700828 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700829 if (rv < 2)
Florin Coras60183db2019-07-20 15:53:16 -0700830 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700831 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700832 }
833
Florin Coras1bcad5c2019-01-09 20:04:38 -0800834 next_index = smm->session_type_to_next[ctx->s->session_type];
Florin Coras66cf5e02018-06-08 09:17:39 -0700835 next0 = next1 = next_index;
Florin Coras26dd6de2019-07-23 23:54:47 -0700836 max_burst = VLIB_FRAME_SIZE - *n_tx_packets;
Florin Coras8e43d042018-05-04 15:46:57 -0700837
Florin Coras1bcad5c2019-01-09 20:04:38 -0800838 tp = session_get_transport_proto (ctx->s);
Florin Coras8e43d042018-05-04 15:46:57 -0700839 ctx->transport_vft = transport_protocol_get_vft (tp);
840 ctx->tc = session_tx_get_transport (ctx, peek_data);
Florin Coras42ceddb2018-12-12 10:56:01 -0800841
842 if (PREDICT_FALSE (e->event_type == SESSION_IO_EVT_TX_FLUSH))
843 {
844 if (ctx->transport_vft->flush_data)
845 ctx->transport_vft->flush_data (ctx->tc);
846 }
847
Florin Coras26dd6de2019-07-23 23:54:47 -0700848 if (ctx->s->flags & SESSION_F_CUSTOM_TX)
849 {
850 u32 n_custom_tx;
851 ctx->s->flags &= ~SESSION_F_CUSTOM_TX;
852 n_custom_tx = ctx->transport_vft->custom_tx (ctx->tc, max_burst);
853 *n_tx_packets += n_custom_tx;
Florin Corasa6789742019-08-07 19:12:38 -0700854 if (PREDICT_FALSE
855 (ctx->s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
856 return SESSION_TX_OK;
Florin Coras26dd6de2019-07-23 23:54:47 -0700857 max_burst -= n_custom_tx;
858 if (!max_burst)
859 {
860 session_evt_add_old (wrk, elt);
861 return SESSION_TX_OK;
862 }
863 }
864
Florin Corasa6789742019-08-07 19:12:38 -0700865 ctx->snd_mss = ctx->transport_vft->send_mss (ctx->tc);
Florin Coras42ceddb2018-12-12 10:56:01 -0800866 ctx->snd_space = transport_connection_snd_space (ctx->tc,
Florin Corasb0ffbee2019-07-21 19:23:46 -0700867 vm->clib_time.
David Johnsond9818dd2018-12-14 14:53:41 -0500868 last_cpu_time,
Florin Coras42ceddb2018-12-12 10:56:01 -0800869 ctx->snd_mss);
Florin Coras60183db2019-07-20 15:53:16 -0700870
Florin Coras8e43d042018-05-04 15:46:57 -0700871 if (ctx->snd_space == 0 || ctx->snd_mss == 0)
872 {
Florin Coras60183db2019-07-20 15:53:16 -0700873 session_evt_add_old (wrk, elt);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700874 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700875 }
876
877 /* Allow enqueuing of a new event */
Florin Coras288eaab2019-02-03 15:26:14 -0800878 svm_fifo_unset_event (ctx->s->tx_fifo);
Florin Coras8e43d042018-05-04 15:46:57 -0700879
880 /* Check how much we can pull. */
Florin Coras26dd6de2019-07-23 23:54:47 -0700881 session_tx_set_dequeue_params (vm, ctx, max_burst, peek_data);
Florin Corasf08f26d2018-05-10 13:20:47 -0700882
Florin Coras8e43d042018-05-04 15:46:57 -0700883 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Coras0d60a0f2018-06-29 02:02:08 -0700884 return SESSION_TX_NO_DATA;
Dave Barach68b0fb02017-02-28 15:15:56 -0500885
Florin Corasf08f26d2018-05-10 13:20:47 -0700886 n_bufs_needed = ctx->n_segs_per_evt * ctx->n_bufs_per_seg;
Florin Coras2068fd42019-01-31 14:35:50 -0800887 vec_validate_aligned (wrk->tx_buffers, n_bufs_needed - 1,
888 CLIB_CACHE_LINE_BYTES);
889 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_needed);
890 if (PREDICT_FALSE (n_bufs < n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -0500891 {
Florin Coras2068fd42019-01-31 14:35:50 -0800892 if (n_bufs)
893 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Coras60183db2019-07-20 15:53:16 -0700894 session_evt_add_old (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -0700895 vlib_node_increment_counter (wrk->vm, node->node_index,
896 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Florin Coras2068fd42019-01-31 14:35:50 -0800897 return SESSION_TX_NO_BUFFERS;
Florin Coras8e43d042018-05-04 15:46:57 -0700898 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500899
Florin Coras8e43d042018-05-04 15:46:57 -0700900 /*
901 * Write until we fill up a frame
902 */
903 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Florin Corasf08f26d2018-05-10 13:20:47 -0700904 if (PREDICT_FALSE (ctx->n_segs_per_evt > n_left_to_next))
Florin Coras8e43d042018-05-04 15:46:57 -0700905 {
Florin Corasf08f26d2018-05-10 13:20:47 -0700906 ctx->n_segs_per_evt = n_left_to_next;
907 ctx->max_len_to_snd = ctx->snd_mss * n_left_to_next;
908 }
909 ctx->left_to_snd = ctx->max_len_to_snd;
910 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -0700911
912 while (n_left >= 4)
913 {
914 vlib_buffer_t *b0, *b1;
915 u32 bi0, bi1;
916
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700917 pbi = wrk->tx_buffers[n_bufs - 3];
Florin Coras66cf5e02018-06-08 09:17:39 -0700918 pb = vlib_get_buffer (vm, pbi);
919 vlib_prefetch_buffer_header (pb, STORE);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700920 pbi = wrk->tx_buffers[n_bufs - 4];
Florin Coras66cf5e02018-06-08 09:17:39 -0700921 pb = vlib_get_buffer (vm, pbi);
922 vlib_prefetch_buffer_header (pb, STORE);
923
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700924 to_next[0] = bi0 = wrk->tx_buffers[--n_bufs];
925 to_next[1] = bi1 = wrk->tx_buffers[--n_bufs];
Florin Coras66cf5e02018-06-08 09:17:39 -0700926
927 b0 = vlib_get_buffer (vm, bi0);
928 b1 = vlib_get_buffer (vm, bi1);
929
930 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
931 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
932
933 ctx->transport_vft->push_header (ctx->tc, b0);
934 ctx->transport_vft->push_header (ctx->tc, b1);
935
936 to_next += 2;
937 n_left_to_next -= 2;
938 n_left -= 2;
939
940 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
941 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
942
943 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
944 n_left_to_next, bi0, bi1, next0,
945 next1);
946 }
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 Coras5a7ca7b2018-10-30 12:01:48 -0700959 to_next[0] = 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 to_next += 1;
968 n_left_to_next -= 1;
969 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500970
Florin Coras66cf5e02018-06-08 09:17:39 -0700971 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700972
Florin Coras66cf5e02018-06-08 09:17:39 -0700973 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
974 n_left_to_next, bi0, next0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500975 }
Florin Coras66cf5e02018-06-08 09:17:39 -0700976
Florin Coras60183db2019-07-20 15:53:16 -0700977 if (PREDICT_FALSE ((n_trace = vlib_get_trace_count (vm, node)) > 0))
Florin Coras66cf5e02018-06-08 09:17:39 -0700978 session_tx_trace_frame (vm, node, next_index, to_next,
Florin Coras1bcad5c2019-01-09 20:04:38 -0800979 ctx->n_segs_per_evt, ctx->s, n_trace);
Florin Coras60183db2019-07-20 15:53:16 -0700980
Florin Coras2068fd42019-01-31 14:35:50 -0800981 if (PREDICT_FALSE (n_bufs))
Florin Coras60183db2019-07-20 15:53:16 -0700982 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
983
Florin Corasf08f26d2018-05-10 13:20:47 -0700984 *n_tx_packets += ctx->n_segs_per_evt;
Florin Coras00482232019-08-02 12:52:00 -0700985 transport_connection_update_tx_bytes (ctx->tc, ctx->max_len_to_snd);
Florin Coras8e43d042018-05-04 15:46:57 -0700986 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -0500987
Florin Corascca96182019-07-19 07:34:13 -0700988 SESSION_EVT (SESSION_EVT_DEQ, ctx->s, ctx->max_len_to_snd, ctx->max_dequeue,
989 ctx->s->tx_fifo->has_event, wrk->last_vlib_time);
990
Florin Coras6792ec02017-03-13 03:49:51 -0700991 /* If we couldn't dequeue all bytes mark as partially read */
Florin Corasf08f26d2018-05-10 13:20:47 -0700992 ASSERT (ctx->left_to_snd == 0);
Florin Coras8e43d042018-05-04 15:46:57 -0700993 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Coras288eaab2019-02-03 15:26:14 -0800994 if (svm_fifo_set_event (ctx->s->tx_fifo))
Florin Coras60183db2019-07-20 15:53:16 -0700995 session_evt_add_old (wrk, elt);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700996
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200997 if (!peek_data
998 && ctx->transport_vft->transport_options.tx_type == TRANSPORT_TX_DGRAM)
Dave Barach68b0fb02017-02-28 15:15:56 -0500999 {
Florin Coras7fb0fe12018-04-09 09:24:52 -07001000 /* Fix dgram pre header */
Florin Coras8e43d042018-05-04 15:46:57 -07001001 if (ctx->max_len_to_snd < ctx->max_dequeue)
Florin Coras288eaab2019-02-03 15:26:14 -08001002 svm_fifo_overwrite_head (ctx->s->tx_fifo, (u8 *) & ctx->hdr,
Florin Coras7fb0fe12018-04-09 09:24:52 -07001003 sizeof (session_dgram_pre_hdr_t));
1004 /* More data needs to be read */
Sirshak Das28aa5392019-02-05 01:33:33 -06001005 else if (svm_fifo_max_dequeue_cons (ctx->s->tx_fifo) > 0)
Florin Coras288eaab2019-02-03 15:26:14 -08001006 if (svm_fifo_set_event (ctx->s->tx_fifo))
Florin Coras60183db2019-07-20 15:53:16 -07001007 session_evt_add_old (wrk, elt);
Florin Coras0e573f52019-05-07 16:28:16 -07001008
Florin Coras2d379d82019-06-28 12:45:12 -07001009 if (svm_fifo_needs_deq_ntf (ctx->s->tx_fifo, ctx->max_len_to_snd))
Florin Coras0e573f52019-05-07 16:28:16 -07001010 session_dequeue_notify (ctx->s);
Dave Barach68b0fb02017-02-28 15:15:56 -05001011 }
Florin Coras0d60a0f2018-06-29 02:02:08 -07001012 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001013}
1014
1015int
Florin Coras60183db2019-07-20 15:53:16 -07001016session_tx_fifo_peek_and_snd (session_worker_t * wrk,
1017 vlib_node_runtime_t * node,
1018 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001019{
Florin Coras60183db2019-07-20 15:53:16 -07001020 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001021}
1022
1023int
Florin Coras60183db2019-07-20 15:53:16 -07001024session_tx_fifo_dequeue_and_snd (session_worker_t * wrk,
1025 vlib_node_runtime_t * node,
1026 session_evt_elt_t * e, int *n_tx_packets)
Dave Barach68b0fb02017-02-28 15:15:56 -05001027{
Florin Coras60183db2019-07-20 15:53:16 -07001028 return session_tx_fifo_read_and_snd_i (wrk, node, e, n_tx_packets, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001029}
1030
Florin Coras371ca502018-02-21 12:07:41 -08001031int
Florin Coras60183db2019-07-20 15:53:16 -07001032session_tx_fifo_dequeue_internal (session_worker_t * wrk,
Florin Coras371ca502018-02-21 12:07:41 -08001033 vlib_node_runtime_t * node,
Florin Coras60183db2019-07-20 15:53:16 -07001034 session_evt_elt_t * e, int *n_tx_packets)
Florin Coras371ca502018-02-21 12:07:41 -08001035{
Florin Coras288eaab2019-02-03 15:26:14 -08001036 session_t *s = wrk->ctx.s;
Florin Coras1bcad5c2019-01-09 20:04:38 -08001037
Florin Corasc0737e92019-03-04 14:19:39 -08001038 if (PREDICT_FALSE (s->session_state >= SESSION_STATE_TRANSPORT_CLOSED))
Florin Corasef915342018-09-29 10:23:06 -07001039 return 0;
Florin Coras288eaab2019-02-03 15:26:14 -08001040 svm_fifo_unset_event (s->tx_fifo);
Florin Coras26dd6de2019-07-23 23:54:47 -07001041 return transport_custom_tx (session_get_transport_proto (s), s,
1042 VLIB_FRAME_SIZE - *n_tx_packets);
Florin Coras371ca502018-02-21 12:07:41 -08001043}
1044
Florin Coras288eaab2019-02-03 15:26:14 -08001045always_inline session_t *
Florin Coras52207f12018-07-12 14:48:06 -07001046session_event_get_session (session_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -07001047{
Florin Corasc0737e92019-03-04 14:19:39 -08001048 return session_get_if_valid (e->session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -07001049}
1050
Florin Coras60183db2019-07-20 15:53:16 -07001051always_inline void
Florin Coras458089b2019-08-21 16:20:44 -07001052session_event_dispatch_ctrl (session_worker_t * wrk, session_evt_elt_t * elt)
1053{
1054 clib_llist_index_t ei;
1055 void (*fp) (void *);
1056 session_event_t *e;
1057 session_t *s;
1058
1059 ei = clib_llist_entry_index (wrk->event_elts, elt);
1060 e = &elt->evt;
1061
1062 switch (e->event_type)
1063 {
1064 case SESSION_CTRL_EVT_RPC:
1065 fp = e->rpc_args.fp;
1066 (*fp) (e->rpc_args.arg);
1067 break;
1068 case SESSION_CTRL_EVT_CLOSE:
1069 s = session_get_from_handle_if_valid (e->session_handle);
1070 if (PREDICT_FALSE (!s))
1071 break;
1072 session_transport_close (s);
1073 break;
1074 case SESSION_CTRL_EVT_RESET:
1075 s = session_get_from_handle_if_valid (e->session_handle);
1076 if (PREDICT_FALSE (!s))
1077 break;
1078 session_transport_reset (s);
1079 break;
1080 case SESSION_CTRL_EVT_LISTEN:
1081 session_mq_listen_handler (session_evt_ctrl_data (wrk, elt));
1082 break;
1083 case SESSION_CTRL_EVT_LISTEN_URI:
1084 session_mq_listen_uri_handler (session_evt_ctrl_data (wrk, elt));
1085 break;
1086 case SESSION_CTRL_EVT_UNLISTEN:
1087 session_mq_unlisten_handler (session_evt_ctrl_data (wrk, elt));
1088 break;
1089 case SESSION_CTRL_EVT_CONNECT:
1090 session_mq_connect_handler (session_evt_ctrl_data (wrk, elt));
1091 break;
1092 case SESSION_CTRL_EVT_CONNECT_URI:
1093 session_mq_connect_uri_handler (session_evt_ctrl_data (wrk, elt));
1094 break;
1095 case SESSION_CTRL_EVT_DISCONNECT:
1096 session_mq_disconnect_handler (session_evt_ctrl_data (wrk, elt));
1097 break;
1098 case SESSION_CTRL_EVT_DISCONNECTED:
1099 session_mq_disconnected_handler (session_evt_ctrl_data (wrk, elt));
1100 break;
1101 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
1102 session_mq_accepted_reply_handler (session_evt_ctrl_data (wrk, elt));
1103 break;
1104 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
1105 session_mq_disconnected_reply_handler (session_evt_ctrl_data (wrk,
1106 elt));
1107 break;
1108 case SESSION_CTRL_EVT_RESET_REPLY:
1109 session_mq_reset_reply_handler (session_evt_ctrl_data (wrk, elt));
1110 break;
1111 case SESSION_CTRL_EVT_WORKER_UPDATE:
1112 session_mq_worker_update_handler (session_evt_ctrl_data (wrk, elt));
1113 break;
1114 case SESSION_CTRL_EVT_APP_DETACH:
1115 app_mq_detach_handler (session_evt_ctrl_data (wrk, elt));
1116 break;
1117 default:
1118 clib_warning ("unhandled event type %d", e->event_type);
1119 }
1120
1121 /* Regrab elements in case pool moved */
1122 elt = pool_elt_at_index (wrk->event_elts, ei);
1123 if (!clib_llist_elt_is_linked (elt, evt_list))
1124 {
1125 if (e->event_type >= SESSION_CTRL_EVT_BOUND)
1126 session_evt_ctrl_data_free (wrk, elt);
1127 session_evt_elt_free (wrk, elt);
1128 }
1129}
1130
1131always_inline void
1132session_event_dispatch_io (session_worker_t * wrk, vlib_node_runtime_t * node,
1133 session_evt_elt_t * elt, u32 thread_index,
1134 int *n_tx_packets)
Florin Corasd67f1122018-05-21 17:47:40 -07001135{
Florin Coras60183db2019-07-20 15:53:16 -07001136 session_main_t *smm = &session_main;
1137 app_worker_t *app_wrk;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001138 clib_llist_index_t ei;
Florin Coras60183db2019-07-20 15:53:16 -07001139 session_event_t *e;
1140 session_t *s;
Florin Coras60183db2019-07-20 15:53:16 -07001141
Florin Corasb0ffbee2019-07-21 19:23:46 -07001142 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras60183db2019-07-20 15:53:16 -07001143 e = &elt->evt;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001144
Florin Coras60183db2019-07-20 15:53:16 -07001145 switch (e->event_type)
Florin Corasc44a5582018-11-01 16:30:54 -07001146 {
Florin Coras60183db2019-07-20 15:53:16 -07001147 case SESSION_IO_EVT_TX_FLUSH:
1148 case SESSION_IO_EVT_TX:
Florin Coras60183db2019-07-20 15:53:16 -07001149 s = session_event_get_session (e, thread_index);
1150 if (PREDICT_FALSE (!s))
1151 {
Florin Corasb0ffbee2019-07-21 19:23:46 -07001152 clib_warning ("session %u was freed!", e->session_index);
Florin Coras60183db2019-07-20 15:53:16 -07001153 break;
1154 }
1155 CLIB_PREFETCH (s->tx_fifo, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1156 wrk->ctx.s = s;
1157 /* Spray packets in per session type frames, since they go to
1158 * different nodes */
Florin Corasb0ffbee2019-07-21 19:23:46 -07001159 (smm->session_tx_fns[s->session_type]) (wrk, node, elt, n_tx_packets);
Florin Coras60183db2019-07-20 15:53:16 -07001160 break;
1161 case SESSION_IO_EVT_RX:
1162 s = session_event_get_session (e, thread_index);
1163 if (!s)
1164 break;
1165 transport_app_rx_evt (session_get_transport_proto (s),
1166 s->connection_index, s->thread_index);
1167 break;
Florin Coras60183db2019-07-20 15:53:16 -07001168 case SESSION_IO_EVT_BUILTIN_RX:
1169 s = session_event_get_session (e, thread_index);
1170 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
1171 break;
1172 svm_fifo_unset_event (s->rx_fifo);
1173 app_wrk = app_worker_get (s->app_wrk_index);
1174 app_worker_builtin_rx (app_wrk, s);
1175 break;
1176 case SESSION_IO_EVT_BUILTIN_TX:
1177 s = session_get_from_handle_if_valid (e->session_handle);
1178 wrk->ctx.s = s;
1179 if (PREDICT_TRUE (s != 0))
1180 session_tx_fifo_dequeue_internal (wrk, node, elt, n_tx_packets);
1181 break;
Florin Coras60183db2019-07-20 15:53:16 -07001182 default:
1183 clib_warning ("unhandled event type %d", e->event_type);
Florin Corasc44a5582018-11-01 16:30:54 -07001184 }
Florin Corasb0ffbee2019-07-21 19:23:46 -07001185
1186 /* Regrab elements in case pool moved */
1187 elt = pool_elt_at_index (wrk->event_elts, ei);
1188 if (!clib_llist_elt_is_linked (elt, evt_list))
1189 session_evt_elt_free (wrk, elt);
Florin Corasd67f1122018-05-21 17:47:40 -07001190}
1191
Florin Coras458089b2019-08-21 16:20:44 -07001192/* *INDENT-OFF* */
1193static const u32 session_evt_msg_sizes[] = {
1194#define _(symc, sym) \
1195 [SESSION_CTRL_EVT_ ## symc] = sizeof (session_ ## sym ##_msg_t),
1196 foreach_session_ctrl_evt
1197#undef _
1198};
1199/* *INDENT-ON* */
1200
1201always_inline void
1202session_evt_add_to_list (session_worker_t * wrk, session_event_t * evt)
1203{
1204 session_evt_elt_t *elt;
1205
1206 if (evt->event_type >= SESSION_CTRL_EVT_RPC)
1207 {
1208 elt = session_evt_alloc_ctrl (wrk);
1209 if (evt->event_type >= SESSION_CTRL_EVT_BOUND)
1210 {
1211 elt->evt.ctrl_data_index = session_evt_ctrl_data_alloc (wrk);
1212 elt->evt.event_type = evt->event_type;
1213 clib_memcpy_fast (session_evt_ctrl_data (wrk, elt), evt->data,
1214 session_evt_msg_sizes[evt->event_type]);
1215 }
1216 else
1217 {
1218 /* Internal control events fit into io events footprint */
1219 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1220 }
1221 }
1222 else
1223 {
1224 elt = session_evt_alloc_new (wrk);
1225 clib_memcpy_fast (&elt->evt, evt, sizeof (elt->evt));
1226 }
1227}
1228
Florin Coras0d60a0f2018-06-29 02:02:08 -07001229static uword
1230session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
1231 vlib_frame_t * frame)
1232{
Florin Coras31c99552019-03-01 13:00:58 -08001233 session_main_t *smm = vnet_get_session_main ();
Florin Coras2062ec02019-07-15 13:15:18 -07001234 u32 thread_index = vm->thread_index, n_to_dequeue;
Florin Coras31c99552019-03-01 13:00:58 -08001235 session_worker_t *wrk = &smm->wrk[thread_index];
Florin Corasb0ffbee2019-07-21 19:23:46 -07001236 session_evt_elt_t *elt, *ctrl_he, *new_he, *old_he;
Florin Coras3c2fed52018-07-04 04:15:05 -07001237 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001238 clib_llist_index_t old_ti;
Florin Coras60183db2019-07-20 15:53:16 -07001239 int i, n_tx_packets = 0;
Florin Corasb0ffbee2019-07-21 19:23:46 -07001240 session_event_t *evt;
Florin Coras3c2fed52018-07-04 04:15:05 -07001241 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001242
Florin Corascca96182019-07-19 07:34:13 -07001243 SESSION_EVT (SESSION_EVT_DISPATCH_START, wrk);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001244
Florin Coras60183db2019-07-20 15:53:16 -07001245 wrk->last_vlib_time = vlib_time_now (vm);
1246
Florin Coras0d60a0f2018-06-29 02:02:08 -07001247 /*
1248 * Update transport time
1249 */
Florin Coras60183db2019-07-20 15:53:16 -07001250 transport_update_time (wrk->last_vlib_time, thread_index);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001251
Florin Corasb0ffbee2019-07-21 19:23:46 -07001252 /*
1253 * Dequeue and handle new events
1254 */
Florin Coras0d60a0f2018-06-29 02:02:08 -07001255
Florin Coras5f56d732018-10-30 10:21:59 -07001256 /* Try to dequeue what is available. Don't wait for lock.
1257 * XXX: we may need priorities here */
1258 mq = wrk->vpp_event_queue;
1259 n_to_dequeue = svm_msg_q_size (mq);
1260 if (n_to_dequeue && svm_msg_q_try_lock (mq) == 0)
1261 {
1262 for (i = 0; i < n_to_dequeue; i++)
1263 {
Florin Coras5f56d732018-10-30 10:21:59 -07001264 svm_msg_q_sub_w_lock (mq, msg);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001265 evt = svm_msg_q_msg_data (mq, msg);
Florin Coras458089b2019-08-21 16:20:44 -07001266 session_evt_add_to_list (wrk, evt);
Florin Coras5f56d732018-10-30 10:21:59 -07001267 svm_msg_q_free_msg (mq, msg);
1268 }
1269 svm_msg_q_unlock (mq);
1270 }
1271
Florin Corasb0ffbee2019-07-21 19:23:46 -07001272 /*
1273 * Handle control events
1274 */
1275
1276 ctrl_he = pool_elt_at_index (wrk->event_elts, wrk->ctrl_head);
1277
1278 /* *INDENT-OFF* */
1279 clib_llist_foreach_safe (wrk->event_elts, evt_list, ctrl_he, elt, ({
1280 clib_llist_remove (wrk->event_elts, evt_list, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001281 session_event_dispatch_ctrl (wrk, elt);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001282 }));
1283 /* *INDENT-ON* */
1284
1285 /*
1286 * Handle the new io events.
1287 */
1288
1289 new_he = pool_elt_at_index (wrk->event_elts, wrk->new_head);
1290
1291 /* *INDENT-OFF* */
1292 clib_llist_foreach_safe (wrk->event_elts, evt_list, new_he, elt, ({
1293 session_evt_type_t et;
1294
1295 et = elt->evt.event_type;
1296 clib_llist_remove (wrk->event_elts, evt_list, elt);
1297
1298 /* Postpone tx events if we can't handle them this dispatch cycle */
1299 if (n_tx_packets >= VLIB_FRAME_SIZE
1300 && (et == SESSION_IO_EVT_TX || et == SESSION_IO_EVT_TX_FLUSH))
1301 {
1302 clib_llist_add (wrk->event_elts, evt_list, elt, new_he);
1303 continue;
1304 }
1305
Florin Coras458089b2019-08-21 16:20:44 -07001306 session_event_dispatch_io (wrk, node, elt, thread_index, &n_tx_packets);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001307 }));
1308 /* *INDENT-ON* */
1309
1310 /*
1311 * Handle the old io events
1312 */
1313
Florin Coras60183db2019-07-20 15:53:16 -07001314 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
Florin Corasb0ffbee2019-07-21 19:23:46 -07001315 old_ti = clib_llist_prev_index (old_he, evt_list);
Florin Coras5f56d732018-10-30 10:21:59 -07001316
Florin Corasb0ffbee2019-07-21 19:23:46 -07001317 while (!clib_llist_is_empty (wrk->event_elts, evt_list, old_he))
Florin Coras0d60a0f2018-06-29 02:02:08 -07001318 {
Florin Coras2062ec02019-07-15 13:15:18 -07001319 clib_llist_index_t ei;
Florin Coras0d60a0f2018-06-29 02:02:08 -07001320
Florin Corasb0ffbee2019-07-21 19:23:46 -07001321 clib_llist_pop_first (wrk->event_elts, evt_list, elt, old_he);
Florin Coras2062ec02019-07-15 13:15:18 -07001322 ei = clib_llist_entry_index (wrk->event_elts, elt);
Florin Coras458089b2019-08-21 16:20:44 -07001323 session_event_dispatch_io (wrk, node, elt, thread_index, &n_tx_packets);
Florin Coras2062ec02019-07-15 13:15:18 -07001324
Florin Corasb0ffbee2019-07-21 19:23:46 -07001325 old_he = pool_elt_at_index (wrk->event_elts, wrk->old_head);
1326 if (n_tx_packets >= VLIB_FRAME_SIZE || ei == old_ti)
1327 break;
1328 };
Florin Coras0d60a0f2018-06-29 02:02:08 -07001329
Florin Coras0d60a0f2018-06-29 02:02:08 -07001330 vlib_node_increment_counter (vm, session_queue_node.index,
1331 SESSION_QUEUE_ERROR_TX, n_tx_packets);
1332
Florin Corascca96182019-07-19 07:34:13 -07001333 SESSION_EVT (SESSION_EVT_DISPATCH_END, wrk, n_tx_packets);
Florin Coras0d60a0f2018-06-29 02:02:08 -07001334
1335 return n_tx_packets;
1336}
1337
1338/* *INDENT-OFF* */
1339VLIB_REGISTER_NODE (session_queue_node) =
1340{
1341 .function = session_queue_node_fn,
1342 .name = "session-queue",
1343 .format_trace = format_session_queue_trace,
1344 .type = VLIB_NODE_TYPE_INPUT,
1345 .n_errors = ARRAY_LEN (session_queue_error_strings),
1346 .error_strings = session_queue_error_strings,
1347 .state = VLIB_NODE_STATE_DISABLED,
1348};
1349/* *INDENT-ON* */
1350
Dave Barachacd2a6a2017-05-16 17:41:34 -04001351void
1352dump_thread_0_event_queue (void)
1353{
Florin Coras31c99552019-03-01 13:00:58 -08001354 session_main_t *smm = vnet_get_session_main ();
Dave Barachacd2a6a2017-05-16 17:41:34 -04001355 vlib_main_t *vm = &vlib_global_main;
1356 u32 my_thread_index = vm->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -07001357 session_event_t _e, *e = &_e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001358 svm_msg_q_ring_t *ring;
Florin Coras288eaab2019-02-03 15:26:14 -08001359 session_t *s0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001360 svm_msg_q_msg_t *msg;
1361 svm_msg_q_t *mq;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001362 int i, index;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001363
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001364 mq = smm->wrk[my_thread_index].vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001365 index = mq->q->head;
Dave Barachacd2a6a2017-05-16 17:41:34 -04001366
Florin Coras3c2fed52018-07-04 04:15:05 -07001367 for (i = 0; i < mq->q->cursize; i++)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001368 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001369 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1370 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001371 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001372
1373 switch (e->event_type)
1374 {
Florin Corasf6c43132019-03-01 12:41:21 -08001375 case SESSION_IO_EVT_TX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001376 s0 = session_event_get_session (e, my_thread_index);
1377 fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index);
1378 break;
1379
Florin Corasf6c43132019-03-01 12:41:21 -08001380 case SESSION_CTRL_EVT_CLOSE:
Florin Corascea194d2017-10-02 00:18:51 -07001381 s0 = session_get_from_handle (e->session_handle);
Dave Barachacd2a6a2017-05-16 17:41:34 -04001382 fformat (stdout, "[%04d] disconnect session %d\n", i,
1383 s0->session_index);
1384 break;
1385
Florin Corasf6c43132019-03-01 12:41:21 -08001386 case SESSION_IO_EVT_BUILTIN_RX:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001387 s0 = session_event_get_session (e, my_thread_index);
1388 fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index);
1389 break;
1390
Florin Corasf6c43132019-03-01 12:41:21 -08001391 case SESSION_CTRL_EVT_RPC:
Dave Barachacd2a6a2017-05-16 17:41:34 -04001392 fformat (stdout, "[%04d] RPC call %llx with %llx\n",
David Johnsond9818dd2018-12-14 14:53:41 -05001393 i, (u64) (uword) (e->rpc_args.fp),
1394 (u64) (uword) (e->rpc_args.arg));
Dave Barachacd2a6a2017-05-16 17:41:34 -04001395 break;
1396
1397 default:
1398 fformat (stdout, "[%04d] unhandled event type %d\n",
1399 i, e->event_type);
1400 break;
1401 }
1402
1403 index++;
1404
Florin Coras3c2fed52018-07-04 04:15:05 -07001405 if (index == mq->q->maxsize)
Dave Barachacd2a6a2017-05-16 17:41:34 -04001406 index = 0;
1407 }
1408}
1409
Florin Coras6534b7a2017-07-18 05:38:03 -04001410static u8
Florin Coras52207f12018-07-12 14:48:06 -07001411session_node_cmp_event (session_event_t * e, svm_fifo_t * f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001412{
Florin Coras288eaab2019-02-03 15:26:14 -08001413 session_t *s;
Florin Coras6534b7a2017-07-18 05:38:03 -04001414 switch (e->event_type)
1415 {
Florin Corasf6c43132019-03-01 12:41:21 -08001416 case SESSION_IO_EVT_RX:
1417 case SESSION_IO_EVT_TX:
1418 case SESSION_IO_EVT_BUILTIN_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08001419 if (e->session_index == f->master_session_index)
Florin Coras6534b7a2017-07-18 05:38:03 -04001420 return 1;
1421 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001422 case SESSION_CTRL_EVT_CLOSE:
Florin Coras6534b7a2017-07-18 05:38:03 -04001423 break;
Florin Corasf6c43132019-03-01 12:41:21 -08001424 case SESSION_CTRL_EVT_RPC:
Florin Corascea194d2017-10-02 00:18:51 -07001425 s = session_get_from_handle (e->session_handle);
Florin Coras6534b7a2017-07-18 05:38:03 -04001426 if (!s)
1427 {
1428 clib_warning ("session has event but doesn't exist!");
1429 break;
1430 }
Florin Coras288eaab2019-02-03 15:26:14 -08001431 if (s->rx_fifo == f || s->tx_fifo == f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001432 return 1;
1433 break;
1434 default:
1435 break;
1436 }
1437 return 0;
1438}
1439
1440u8
Florin Coras52207f12018-07-12 14:48:06 -07001441session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e)
Florin Coras6534b7a2017-07-18 05:38:03 -04001442{
Florin Coras2062ec02019-07-15 13:15:18 -07001443 session_evt_elt_t *elt;
Florin Coras31c99552019-03-01 13:00:58 -08001444 session_worker_t *wrk;
Florin Coras6534b7a2017-07-18 05:38:03 -04001445 int i, index, found = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001446 svm_msg_q_msg_t *msg;
1447 svm_msg_q_ring_t *ring;
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001448 svm_msg_q_t *mq;
Florin Coras6534b7a2017-07-18 05:38:03 -04001449 u8 thread_index;
1450
1451 ASSERT (e);
1452 thread_index = f->master_thread_index;
Florin Coras31c99552019-03-01 13:00:58 -08001453 wrk = session_main_get_worker (thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001454
Florin Coras6534b7a2017-07-18 05:38:03 -04001455 /*
1456 * Search evt queue
1457 */
Florin Coras5a7ca7b2018-10-30 12:01:48 -07001458 mq = wrk->vpp_event_queue;
Florin Coras3c2fed52018-07-04 04:15:05 -07001459 index = mq->q->head;
1460 for (i = 0; i < mq->q->cursize; i++)
Florin Coras6534b7a2017-07-18 05:38:03 -04001461 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001462 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1463 ring = svm_msg_q_ring (mq, msg->ring_index);
Dave Barach178cf492018-11-13 16:34:13 -05001464 clib_memcpy_fast (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Florin Coras6534b7a2017-07-18 05:38:03 -04001465 found = session_node_cmp_event (e, f);
1466 if (found)
Florin Coras371ca502018-02-21 12:07:41 -08001467 return 1;
Florin Coras3c2fed52018-07-04 04:15:05 -07001468 if (++index == mq->q->maxsize)
Florin Coras6534b7a2017-07-18 05:38:03 -04001469 index = 0;
1470 }
1471 /*
1472 * Search pending events vector
1473 */
Florin Coras2062ec02019-07-15 13:15:18 -07001474
1475 /* *INDENT-OFF* */
1476 clib_llist_foreach (wrk->event_elts, evt_list,
Florin Corasb0ffbee2019-07-21 19:23:46 -07001477 pool_elt_at_index (wrk->event_elts, wrk->old_head),
1478 elt, ({
Florin Coras2062ec02019-07-15 13:15:18 -07001479 found = session_node_cmp_event (&elt->evt, f);
Florin Coras6534b7a2017-07-18 05:38:03 -04001480 if (found)
1481 {
Florin Coras2062ec02019-07-15 13:15:18 -07001482 clib_memcpy_fast (e, &elt->evt, sizeof (*e));
Florin Coras6534b7a2017-07-18 05:38:03 -04001483 break;
1484 }
Florin Coras2062ec02019-07-15 13:15:18 -07001485
1486 }));
1487 /* *INDENT-ON* */
1488
Florin Coras6534b7a2017-07-18 05:38:03 -04001489 return found;
1490}
1491
Dave Barach2a863912017-11-28 10:11:42 -05001492static clib_error_t *
1493session_queue_exit (vlib_main_t * vm)
1494{
1495 if (vec_len (vlib_mains) < 2)
1496 return 0;
1497
1498 /*
1499 * Shut off (especially) worker-thread session nodes.
1500 * Otherwise, vpp can crash as the main thread unmaps the
1501 * API segment.
1502 */
1503 vlib_worker_thread_barrier_sync (vm);
1504 session_node_enable_disable (0 /* is_enable */ );
1505 vlib_worker_thread_barrier_release (vm);
1506 return 0;
1507}
1508
1509VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1510
Florin Corasfd542f12018-05-16 19:28:24 -07001511static uword
1512session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1513 vlib_frame_t * f)
1514{
1515 f64 now, timeout = 1.0;
1516 uword *event_data = 0;
1517 uword event_type;
1518
1519 while (1)
1520 {
1521 vlib_process_wait_for_event_or_clock (vm, timeout);
1522 now = vlib_time_now (vm);
1523 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1524
1525 switch (event_type)
1526 {
1527 case SESSION_Q_PROCESS_FLUSH_FRAMES:
1528 /* Flush the frames by updating all transports times */
1529 transport_update_time (now, 0);
1530 break;
1531 case SESSION_Q_PROCESS_STOP:
1532 timeout = 100000.0;
1533 break;
1534 case ~0:
1535 /* Timed out. Update time for all transports to trigger all
1536 * outstanding retransmits. */
1537 transport_update_time (now, 0);
1538 break;
1539 }
1540 vec_reset_length (event_data);
1541 }
1542 return 0;
1543}
1544
1545/* *INDENT-OFF* */
1546VLIB_REGISTER_NODE (session_queue_process_node) =
1547{
1548 .function = session_queue_process,
1549 .type = VLIB_NODE_TYPE_PROCESS,
1550 .name = "session-queue-process",
1551 .state = VLIB_NODE_STATE_DISABLED,
1552};
1553/* *INDENT-ON* */
1554
Florin Coras653e43f2019-03-04 10:56:23 -08001555static_always_inline uword
1556session_queue_pre_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1557 vlib_frame_t * frame)
1558{
1559 session_main_t *sm = &session_main;
1560 if (!sm->wrk[0].vpp_event_queue)
1561 return 0;
1562 return session_queue_node_fn (vm, node, frame);
1563}
1564
1565/* *INDENT-OFF* */
1566VLIB_REGISTER_NODE (session_queue_pre_input_node) =
1567{
1568 .function = session_queue_pre_input_inline,
1569 .type = VLIB_NODE_TYPE_PRE_INPUT,
1570 .name = "session-queue-main",
1571 .state = VLIB_NODE_STATE_DISABLED,
1572};
1573/* *INDENT-ON* */
1574
Dave Barach68b0fb02017-02-28 15:15:56 -05001575/*
1576 * fd.io coding-style-patch-verification: ON
1577 *
1578 * Local Variables:
1579 * eval: (c-set-style "gnu")
1580 * End:
1581 */