blob: 9a954bb127bec5992b9088cf962040273ef7b622 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * 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 Corase69f4952017-03-07 10:06:24 -080024#include <vnet/session/session_debug.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080025#include <svm/queue.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
Florin Coras52207f12018-07-12 14:48:06 -070027static void
28session_mq_accepted_reply_handler (void *data)
29{
30 session_accepted_reply_msg_t *mp = (session_accepted_reply_msg_t *) data;
31 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
Florin Coras21795132018-09-09 09:40:51 -070032 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -070033 local_session_t *ls;
34 stream_session_t *s;
35
36 /* Server isn't interested, kill the session */
37 if (mp->retval)
38 {
39 a->app_index = mp->context;
40 a->handle = mp->handle;
41 vnet_disconnect_session (a);
42 return;
43 }
44
45 if (session_handle_is_local (mp->handle))
46 {
47 ls = application_get_local_session_from_handle (mp->handle);
Florin Corasab2f6db2018-08-31 14:31:41 -070048 if (!ls)
Florin Coras52207f12018-07-12 14:48:06 -070049 {
Florin Corasab2f6db2018-08-31 14:31:41 -070050 clib_warning ("unknown local handle 0x%lx", mp->handle);
51 return;
52 }
53 app_wrk = app_worker_get (ls->app_wrk_index);
Florin Coras21795132018-09-09 09:40:51 -070054 if (app_wrk->app_index != mp->context)
Florin Corasab2f6db2018-08-31 14:31:41 -070055 {
56 clib_warning ("server %u doesn't own local handle 0x%lx",
Florin Coras52207f12018-07-12 14:48:06 -070057 mp->context, mp->handle);
58 return;
59 }
60 if (application_local_session_connect_notify (ls))
61 return;
62 ls->session_state = SESSION_STATE_READY;
63 }
64 else
65 {
66 s = session_get_from_handle_if_valid (mp->handle);
67 if (!s)
68 {
69 clib_warning ("session doesn't exist");
70 return;
71 }
Florin Coras21795132018-09-09 09:40:51 -070072 app_wrk = app_worker_get (s->app_wrk_index);
73 if (app_wrk->app_index != mp->context)
Florin Coras52207f12018-07-12 14:48:06 -070074 {
75 clib_warning ("app doesn't own session");
76 return;
77 }
78 s->session_state = SESSION_STATE_READY;
Florin Coras84099552018-07-22 12:59:30 -070079 if (!svm_fifo_is_empty (s->server_rx_fifo))
Florin Coras21795132018-09-09 09:40:51 -070080 app_worker_lock_and_send_event (app_wrk, s, FIFO_EVENT_APP_RX);
Florin Coras52207f12018-07-12 14:48:06 -070081 }
82}
83
84static void
85session_mq_reset_reply_handler (void *data)
86{
87 session_reset_reply_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -070088 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -070089 stream_session_t *s;
Florin Coras15531972018-08-12 23:50:53 -070090 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -070091 u32 index, thread_index;
92
93 mp = (session_reset_reply_msg_t *) data;
94 app = application_lookup (mp->client_index);
95 if (!app)
96 return;
97
98 session_parse_handle (mp->handle, &index, &thread_index);
99 s = session_get_if_valid (index, thread_index);
Florin Coras15531972018-08-12 23:50:53 -0700100 if (!s)
Florin Coras52207f12018-07-12 14:48:06 -0700101 {
102 clib_warning ("Invalid session!");
103 return;
104 }
Florin Coras15531972018-08-12 23:50:53 -0700105 app_wrk = app_worker_get (s->app_wrk_index);
106 if (!app_wrk || app_wrk->app_index != app->app_index)
107 {
108 clib_warning ("App % does not own handle 0x%lx!", app->app_index,
109 mp->handle);
110 return;
111 }
Florin Coras52207f12018-07-12 14:48:06 -0700112
113 /* Client objected to resetting the session, log and continue */
114 if (mp->retval)
115 {
116 clib_warning ("client retval %d", mp->retval);
117 return;
118 }
119
120 /* This comes as a response to a reset, transport only waiting for
121 * confirmation to remove connection state, no need to disconnect */
122 stream_session_cleanup (s);
123}
124
125static void
126session_mq_disconnected_handler (void *data)
127{
128 session_disconnected_reply_msg_t *rmp;
129 vnet_disconnect_args_t _a, *a = &_a;
130 svm_msg_q_msg_t _msg, *msg = &_msg;
131 session_disconnected_msg_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700132 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700133 session_event_t *evt;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700134 stream_session_t *s;
Florin Coras52207f12018-07-12 14:48:06 -0700135 application_t *app;
136 int rv = 0;
137
138 mp = (session_disconnected_msg_t *) data;
Florin Corasc3638fe2018-08-24 13:58:49 -0700139 if (!(s = session_get_from_handle_if_valid (mp->handle)))
140 {
141 clib_warning ("could not disconnect handle %llu", mp->handle);
142 return;
143 }
Florin Coras15531972018-08-12 23:50:53 -0700144 app_wrk = app_worker_get (s->app_wrk_index);
145 app = application_lookup (mp->client_index);
Florin Corasc3638fe2018-08-24 13:58:49 -0700146 if (!(app_wrk && app && app->app_index == app_wrk->app_index))
Florin Coras52207f12018-07-12 14:48:06 -0700147 {
Florin Corasc3638fe2018-08-24 13:58:49 -0700148 clib_warning ("could not disconnect session: %llu app: %u",
Florin Coras15531972018-08-12 23:50:53 -0700149 mp->handle, mp->client_index);
Florin Coras3d0fadc2018-07-17 05:35:47 -0700150 return;
Florin Coras52207f12018-07-12 14:48:06 -0700151 }
Florin Coras3d0fadc2018-07-17 05:35:47 -0700152
153 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700154 a->app_index = app_wrk->wrk_index;
Florin Coras3d0fadc2018-07-17 05:35:47 -0700155 rv = vnet_disconnect_session (a);
Florin Coras52207f12018-07-12 14:48:06 -0700156
Florin Coras15531972018-08-12 23:50:53 -0700157 svm_msg_q_lock_and_alloc_msg_w_ring (app_wrk->event_queue,
Florin Coras52207f12018-07-12 14:48:06 -0700158 SESSION_MQ_CTRL_EVT_RING,
159 SVM_Q_WAIT, msg);
Florin Coras15531972018-08-12 23:50:53 -0700160 svm_msg_q_unlock (app_wrk->event_queue);
161 evt = svm_msg_q_msg_data (app_wrk->event_queue, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700162 memset (evt, 0, sizeof (*evt));
163 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED;
164 rmp = (session_disconnected_reply_msg_t *) evt->data;
165 rmp->handle = mp->handle;
166 rmp->context = mp->context;
167 rmp->retval = rv;
Florin Coras15531972018-08-12 23:50:53 -0700168 svm_msg_q_add (app_wrk->event_queue, msg, SVM_Q_WAIT);
Florin Coras52207f12018-07-12 14:48:06 -0700169}
170
171static void
172session_mq_disconnected_reply_handler (void *data)
173{
174 session_disconnected_reply_msg_t *mp;
175 vnet_disconnect_args_t _a, *a = &_a;
176 application_t *app;
177
178 mp = (session_disconnected_reply_msg_t *) data;
179
180 /* Client objected to disconnecting the session, log and continue */
181 if (mp->retval)
182 {
183 clib_warning ("client retval %d", mp->retval);
184 return;
185 }
186
187 /* Disconnect has been confirmed. Confirm close to transport */
188 app = application_lookup (mp->context);
189 if (app)
190 {
191 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700192 a->app_index = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700193 vnet_disconnect_session (a);
194 }
195}
196
Dave Barach68b0fb02017-02-28 15:15:56 -0500197vlib_node_registration_t session_queue_node;
198
199typedef struct
200{
201 u32 session_index;
202 u32 server_thread_index;
203} session_queue_trace_t;
204
205/* packet trace format function */
206static u8 *
207format_session_queue_trace (u8 * s, va_list * args)
208{
209 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
210 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
211 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
212
213 s = format (s, "SESSION_QUEUE: session index %d, server thread index %d",
214 t->session_index, t->server_thread_index);
215 return s;
216}
217
Florin Coras6792ec02017-03-13 03:49:51 -0700218#define foreach_session_queue_error \
219_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -0700220_(TIMER, "Timer events") \
221_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -0500222
223typedef enum
224{
225#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
226 foreach_session_queue_error
227#undef _
228 SESSION_QUEUE_N_ERROR,
229} session_queue_error_t;
230
231static char *session_queue_error_strings[] = {
232#define _(sym,string) string,
233 foreach_session_queue_error
234#undef _
235};
236
Florin Coras0d60a0f2018-06-29 02:02:08 -0700237enum
238{
239 SESSION_TX_NO_BUFFERS = -2,
240 SESSION_TX_NO_DATA,
241 SESSION_TX_OK
242};
243
Florin Coras66cf5e02018-06-08 09:17:39 -0700244static void
245session_tx_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
246 u32 next_index, u32 * to_next, u16 n_segs,
247 stream_session_t * s, u32 n_trace)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700248{
Florin Coras8e43d042018-05-04 15:46:57 -0700249 session_queue_trace_t *t;
Florin Coras66cf5e02018-06-08 09:17:39 -0700250 vlib_buffer_t *b;
251 int i;
252
253 for (i = 0; i < clib_min (n_trace, n_segs); i++)
254 {
255 b = vlib_get_buffer (vm, to_next[i - n_segs]);
256 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
Florin Coras66cf5e02018-06-08 09:17:39 -0700257 t = vlib_add_trace (vm, node, b, sizeof (*t));
258 t->session_index = s->session_index;
259 t->server_thread_index = s->thread_index;
260 }
Florin Coras4df38712018-06-20 12:44:16 -0700261 vlib_set_trace_count (vm, node, n_trace - i);
Florin Coras8e43d042018-05-04 15:46:57 -0700262}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700263
Florin Coras8e43d042018-05-04 15:46:57 -0700264always_inline void
265session_tx_fifo_chain_tail (vlib_main_t * vm, session_tx_context_t * ctx,
266 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
267{
268 session_manager_main_t *smm = &session_manager_main;
269 vlib_buffer_t *chain_b, *prev_b;
270 u32 chain_bi0, to_deq, left_from_seg;
271 u16 len_to_deq, n_bytes_read;
272 u8 *data, j;
Florin Corasb2215d62017-08-01 16:56:58 -0700273
Florin Coras8e43d042018-05-04 15:46:57 -0700274 b->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
275 b->total_length_not_including_first_buffer = 0;
276
277 chain_b = b;
278 left_from_seg = clib_min (ctx->snd_mss - b->current_length,
279 ctx->left_to_snd);
Florin Corasb2215d62017-08-01 16:56:58 -0700280 to_deq = left_from_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700281 for (j = 1; j < ctx->n_bufs_per_seg; j++)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700282 {
Florin Coras8e43d042018-05-04 15:46:57 -0700283 prev_b = chain_b;
284 len_to_deq = clib_min (to_deq, ctx->deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700285
286 *n_bufs -= 1;
Florin Coras8e43d042018-05-04 15:46:57 -0700287 chain_bi0 = smm->tx_buffers[ctx->s->thread_index][*n_bufs];
288 _vec_len (smm->tx_buffers[ctx->s->thread_index]) = *n_bufs;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700289
Florin Coras8e43d042018-05-04 15:46:57 -0700290 chain_b = vlib_get_buffer (vm, chain_bi0);
291 chain_b->current_data = 0;
292 data = vlib_buffer_get_current (chain_b);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700293 if (peek_data)
294 {
Florin Coras8e43d042018-05-04 15:46:57 -0700295 n_bytes_read = svm_fifo_peek (ctx->s->server_tx_fifo,
296 ctx->tx_offset, len_to_deq, data);
297 ctx->tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700298 }
299 else
300 {
Florin Coras8e43d042018-05-04 15:46:57 -0700301 if (ctx->transport_vft->tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700302 {
Florin Coras8e43d042018-05-04 15:46:57 -0700303 svm_fifo_t *f = ctx->s->server_tx_fifo;
304 session_dgram_hdr_t *hdr = &ctx->hdr;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700305 u16 deq_now;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700306 deq_now = clib_min (hdr->data_length - hdr->data_offset,
Florin Coras8e43d042018-05-04 15:46:57 -0700307 len_to_deq);
308 n_bytes_read = svm_fifo_peek (f, hdr->data_offset, deq_now,
309 data);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700310 ASSERT (n_bytes_read > 0);
311
312 hdr->data_offset += n_bytes_read;
313 if (hdr->data_offset == hdr->data_length)
shubing guoaea5f392018-08-30 13:29:49 +0800314 {
315 u32 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
316 svm_fifo_dequeue_drop (f, offset);
317 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700318 }
319 else
Florin Coras8e43d042018-05-04 15:46:57 -0700320 n_bytes_read = svm_fifo_dequeue_nowait (ctx->s->server_tx_fifo,
321 len_to_deq, data);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700322 }
Florin Coras8e43d042018-05-04 15:46:57 -0700323 ASSERT (n_bytes_read == len_to_deq);
324 chain_b->current_length = n_bytes_read;
325 b->total_length_not_including_first_buffer += chain_b->current_length;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700326
327 /* update previous buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700328 prev_b->next_buffer = chain_bi0;
329 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700330
331 /* update current buffer */
Florin Coras8e43d042018-05-04 15:46:57 -0700332 chain_b->next_buffer = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700333
Florin Corasb2215d62017-08-01 16:56:58 -0700334 to_deq -= n_bytes_read;
335 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700336 break;
337 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700338 ASSERT (to_deq == 0
Florin Coras8e43d042018-05-04 15:46:57 -0700339 && b->total_length_not_including_first_buffer == left_from_seg);
340 ctx->left_to_snd -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700341}
342
Dave Barach68b0fb02017-02-28 15:15:56 -0500343always_inline int
Florin Coras8e43d042018-05-04 15:46:57 -0700344session_output_try_get_buffers (vlib_main_t * vm,
Florin Corasd79b41e2017-03-04 05:37:52 -0800345 session_manager_main_t * smm,
Florin Coras8e43d042018-05-04 15:46:57 -0700346 u32 thread_index, u16 * n_bufs, u32 wanted)
Dave Barach68b0fb02017-02-28 15:15:56 -0500347{
Florin Corasf08f26d2018-05-10 13:20:47 -0700348 u32 n_alloc;
349 vec_validate_aligned (smm->tx_buffers[thread_index], wanted - 1,
Florin Coras8e43d042018-05-04 15:46:57 -0700350 CLIB_CACHE_LINE_BYTES);
Florin Corasf08f26d2018-05-10 13:20:47 -0700351 n_alloc = vlib_buffer_alloc (vm, &smm->tx_buffers[thread_index][*n_bufs],
352 wanted - *n_bufs);
353 *n_bufs += n_alloc;
Florin Coras8e43d042018-05-04 15:46:57 -0700354 _vec_len (smm->tx_buffers[thread_index]) = *n_bufs;
Florin Corasf08f26d2018-05-10 13:20:47 -0700355 return n_alloc;
Florin Coras8e43d042018-05-04 15:46:57 -0700356}
357
358always_inline void
359session_tx_fill_buffer (vlib_main_t * vm, session_tx_context_t * ctx,
360 vlib_buffer_t * b, u16 * n_bufs, u8 peek_data)
361{
362 u32 len_to_deq;
363 u8 *data0;
364 int n_bytes_read;
365
366 /*
367 * Start with the first buffer in chain
368 */
369 b->error = 0;
370 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
371 b->current_data = 0;
Florin Coras8e43d042018-05-04 15:46:57 -0700372
373 data0 = vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
374 len_to_deq = clib_min (ctx->left_to_snd, ctx->deq_per_first_buf);
375
Florin Coras7fb0fe12018-04-09 09:24:52 -0700376 if (peek_data)
377 {
Florin Coras8e43d042018-05-04 15:46:57 -0700378 n_bytes_read = svm_fifo_peek (ctx->s->server_tx_fifo, ctx->tx_offset,
379 len_to_deq, data0);
380 ASSERT (n_bytes_read > 0);
381 /* Keep track of progress locally, transport is also supposed to
382 * increment it independently when pushing the header */
383 ctx->tx_offset += n_bytes_read;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700384 }
385 else
386 {
Florin Coras8e43d042018-05-04 15:46:57 -0700387 if (ctx->transport_vft->tx_type == TRANSPORT_TX_DGRAM)
388 {
389 session_dgram_hdr_t *hdr = &ctx->hdr;
390 svm_fifo_t *f = ctx->s->server_tx_fifo;
391 u16 deq_now;
392 u32 offset;
393
394 ASSERT (hdr->data_length > hdr->data_offset);
395 deq_now = clib_min (hdr->data_length - hdr->data_offset,
396 len_to_deq);
397 offset = hdr->data_offset + SESSION_CONN_HDR_LEN;
398 n_bytes_read = svm_fifo_peek (f, offset, deq_now, data0);
399 ASSERT (n_bytes_read > 0);
400
401 if (ctx->s->session_state == SESSION_STATE_LISTENING)
402 {
403 ip_copy (&ctx->tc->rmt_ip, &hdr->rmt_ip, ctx->tc->is_ip4);
404 ctx->tc->rmt_port = hdr->rmt_port;
405 }
406 hdr->data_offset += n_bytes_read;
407 if (hdr->data_offset == hdr->data_length)
408 {
409 offset = hdr->data_length + SESSION_CONN_HDR_LEN;
410 svm_fifo_dequeue_drop (f, offset);
411 }
412 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700413 else
414 {
Florin Coras8e43d042018-05-04 15:46:57 -0700415 n_bytes_read = svm_fifo_dequeue_nowait (ctx->s->server_tx_fifo,
416 len_to_deq, data0);
417 ASSERT (n_bytes_read > 0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700418 }
419 }
Florin Coras8e43d042018-05-04 15:46:57 -0700420 b->current_length = n_bytes_read;
421 ctx->left_to_snd -= n_bytes_read;
Dave Barach68b0fb02017-02-28 15:15:56 -0500422
Florin Coras8e43d042018-05-04 15:46:57 -0700423 /*
424 * Fill in the remaining buffers in the chain, if any
425 */
426 if (PREDICT_FALSE (ctx->n_bufs_per_seg > 1 && ctx->left_to_snd))
427 session_tx_fifo_chain_tail (vm, ctx, b, n_bufs, peek_data);
Dave Barach68b0fb02017-02-28 15:15:56 -0500428
Florin Coras8e43d042018-05-04 15:46:57 -0700429 /* *INDENT-OFF* */
Florin Coras8b20bf52018-06-14 14:55:50 -0700430 SESSION_EVT_DBG(SESSION_EVT_DEQ, ctx->s, ({
431 ed->data[0] = FIFO_EVENT_APP_TX;
432 ed->data[1] = ctx->max_dequeue;
Florin Coras8e43d042018-05-04 15:46:57 -0700433 ed->data[2] = len_to_deq;
Florin Coras8b20bf52018-06-14 14:55:50 -0700434 ed->data[3] = ctx->left_to_snd;
Florin Coras8e43d042018-05-04 15:46:57 -0700435 }));
436 /* *INDENT-ON* */
437}
438
439always_inline u8
440session_tx_not_ready (stream_session_t * s, u8 peek_data)
441{
442 if (peek_data)
Florin Corase04c2992017-03-01 08:17:34 -0800443 {
Florin Coras8e43d042018-05-04 15:46:57 -0700444 /* Can retransmit for closed sessions but can't send new data if
445 * session is not ready or closed */
446 if (s->session_state < SESSION_STATE_READY)
447 return 1;
Florin Corasca1c8f32018-05-23 21:01:30 -0700448 if (s->session_state == SESSION_STATE_CLOSED)
449 return 2;
Florin Corase04c2992017-03-01 08:17:34 -0800450 }
Florin Coras8e43d042018-05-04 15:46:57 -0700451 return 0;
452}
Dave Barach68b0fb02017-02-28 15:15:56 -0500453
Florin Coras8e43d042018-05-04 15:46:57 -0700454always_inline transport_connection_t *
455session_tx_get_transport (session_tx_context_t * ctx, u8 peek_data)
456{
457 if (peek_data)
458 {
459 return ctx->transport_vft->get_connection (ctx->s->connection_index,
460 ctx->s->thread_index);
461 }
462 else
463 {
464 if (ctx->s->session_state == SESSION_STATE_LISTENING)
465 return ctx->transport_vft->get_listener (ctx->s->connection_index);
466 else
467 {
468 return ctx->transport_vft->get_connection (ctx->s->connection_index,
469 ctx->s->thread_index);
470 }
471 }
472}
Florin Coras6a9b68b2017-11-21 04:20:42 -0800473
Florin Coras8e43d042018-05-04 15:46:57 -0700474always_inline void
475session_tx_set_dequeue_params (vlib_main_t * vm, session_tx_context_t * ctx,
Florin Corasf08f26d2018-05-10 13:20:47 -0700476 u32 max_segs, u8 peek_data)
Florin Coras8e43d042018-05-04 15:46:57 -0700477{
478 u32 n_bytes_per_buf, n_bytes_per_seg;
479 ctx->max_dequeue = svm_fifo_max_dequeue (ctx->s->server_tx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500480 if (peek_data)
481 {
Florin Coras9d063042017-09-14 03:08:00 -0400482 /* Offset in rx fifo from where to peek data */
Florin Coras8e43d042018-05-04 15:46:57 -0700483 ctx->tx_offset = ctx->transport_vft->tx_fifo_offset (ctx->tc);
484 if (PREDICT_FALSE (ctx->tx_offset >= ctx->max_dequeue))
485 {
486 ctx->max_len_to_snd = 0;
487 return;
488 }
489 ctx->max_dequeue -= ctx->tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500490 }
Florin Coras7fb0fe12018-04-09 09:24:52 -0700491 else
492 {
Florin Coras8e43d042018-05-04 15:46:57 -0700493 if (ctx->transport_vft->tx_type == TRANSPORT_TX_DGRAM)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700494 {
Florin Coras8e43d042018-05-04 15:46:57 -0700495 if (ctx->max_dequeue <= sizeof (ctx->hdr))
496 {
497 ctx->max_len_to_snd = 0;
498 return;
499 }
500 svm_fifo_peek (ctx->s->server_tx_fifo, 0, sizeof (ctx->hdr),
501 (u8 *) & ctx->hdr);
502 ASSERT (ctx->hdr.data_length > ctx->hdr.data_offset);
503 ctx->max_dequeue = ctx->hdr.data_length - ctx->hdr.data_offset;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700504 }
505 }
Florin Coras8e43d042018-05-04 15:46:57 -0700506 ASSERT (ctx->max_dequeue > 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700507
508 /* Ensure we're not writing more than transport window allows */
Florin Coras8e43d042018-05-04 15:46:57 -0700509 if (ctx->max_dequeue < ctx->snd_space)
Florin Coras3e350af2017-03-30 02:54:28 -0700510 {
511 /* Constrained by tx queue. Try to send only fully formed segments */
Florin Coras8e43d042018-05-04 15:46:57 -0700512 ctx->max_len_to_snd =
513 (ctx->max_dequeue > ctx->snd_mss) ?
514 ctx->max_dequeue - ctx->max_dequeue % ctx->snd_mss : ctx->max_dequeue;
Florin Coras3e350af2017-03-30 02:54:28 -0700515 /* TODO Nagle ? */
516 }
517 else
518 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700519 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras8e43d042018-05-04 15:46:57 -0700520 ctx->max_len_to_snd = ctx->snd_space;
Florin Coras3e350af2017-03-30 02:54:28 -0700521 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500522
Florin Corasf08f26d2018-05-10 13:20:47 -0700523 /* Check if we're tx constrained by the node */
524 ctx->n_segs_per_evt = ceil ((f64) ctx->max_len_to_snd / ctx->snd_mss);
525 if (ctx->n_segs_per_evt > max_segs)
526 {
527 ctx->n_segs_per_evt = max_segs;
528 ctx->max_len_to_snd = max_segs * ctx->snd_mss;
529 }
530
Florin Coras8e43d042018-05-04 15:46:57 -0700531 n_bytes_per_buf = vlib_buffer_free_list_buffer_size (vm,
532 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Florin Corase87216f2017-08-17 16:59:22 -0700533 ASSERT (n_bytes_per_buf > MAX_HDRS_LEN);
Florin Coras8e43d042018-05-04 15:46:57 -0700534 n_bytes_per_seg = MAX_HDRS_LEN + ctx->snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700535 ctx->n_bufs_per_seg = ceil ((f64) n_bytes_per_seg / n_bytes_per_buf);
Florin Coras8e43d042018-05-04 15:46:57 -0700536 ctx->deq_per_buf = clib_min (ctx->snd_mss, n_bytes_per_buf);
537 ctx->deq_per_first_buf = clib_min (ctx->snd_mss,
538 n_bytes_per_buf - MAX_HDRS_LEN);
539}
Florin Corasf6d68ed2017-05-07 19:12:02 -0700540
Florin Coras8e43d042018-05-04 15:46:57 -0700541always_inline int
542session_tx_fifo_read_and_snd_i (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras52207f12018-07-12 14:48:06 -0700543 session_event_t * e,
Florin Coras8e43d042018-05-04 15:46:57 -0700544 stream_session_t * s, int *n_tx_packets,
545 u8 peek_data)
546{
Florin Coras66cf5e02018-06-08 09:17:39 -0700547 u32 next_index, next0, next1, *to_next, n_left_to_next;
Florin Corasf08f26d2018-05-10 13:20:47 -0700548 u32 n_trace = vlib_get_trace_count (vm, node), n_bufs_needed = 0;
549 u32 thread_index = s->thread_index, n_left, pbi;
Florin Coras8e43d042018-05-04 15:46:57 -0700550 session_manager_main_t *smm = &session_manager_main;
551 session_tx_context_t *ctx = &smm->ctx[thread_index];
552 transport_proto_t tp;
553 vlib_buffer_t *pb;
Florin Corasca1c8f32018-05-23 21:01:30 -0700554 u16 n_bufs, rv;
Florin Coras8e43d042018-05-04 15:46:57 -0700555
Florin Corasca1c8f32018-05-23 21:01:30 -0700556 if (PREDICT_FALSE ((rv = session_tx_not_ready (s, peek_data))))
Florin Coras8e43d042018-05-04 15:46:57 -0700557 {
Florin Corasca1c8f32018-05-23 21:01:30 -0700558 if (rv < 2)
559 vec_add1 (smm->pending_event_vector[thread_index], *e);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700560 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700561 }
562
563 next_index = smm->session_type_to_next[s->session_type];
Florin Coras66cf5e02018-06-08 09:17:39 -0700564 next0 = next1 = next_index;
Florin Coras8e43d042018-05-04 15:46:57 -0700565
566 tp = session_get_transport_proto (s);
567 ctx->s = s;
568 ctx->transport_vft = transport_protocol_get_vft (tp);
569 ctx->tc = session_tx_get_transport (ctx, peek_data);
570 ctx->snd_mss = ctx->transport_vft->send_mss (ctx->tc);
571 ctx->snd_space = ctx->transport_vft->send_space (ctx->tc);
572 if (ctx->snd_space == 0 || ctx->snd_mss == 0)
573 {
574 vec_add1 (smm->pending_event_vector[thread_index], *e);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700575 return SESSION_TX_NO_DATA;
Florin Coras8e43d042018-05-04 15:46:57 -0700576 }
577
578 /* Allow enqueuing of a new event */
579 svm_fifo_unset_event (s->server_tx_fifo);
580
581 /* Check how much we can pull. */
Florin Corasf08f26d2018-05-10 13:20:47 -0700582 session_tx_set_dequeue_params (vm, ctx, VLIB_FRAME_SIZE - *n_tx_packets,
583 peek_data);
584
Florin Coras8e43d042018-05-04 15:46:57 -0700585 if (PREDICT_FALSE (!ctx->max_len_to_snd))
Florin Coras0d60a0f2018-06-29 02:02:08 -0700586 return SESSION_TX_NO_DATA;
Dave Barach68b0fb02017-02-28 15:15:56 -0500587
588 n_bufs = vec_len (smm->tx_buffers[thread_index]);
Florin Corasf08f26d2018-05-10 13:20:47 -0700589 n_bufs_needed = ctx->n_segs_per_evt * ctx->n_bufs_per_seg;
Florin Coras8e43d042018-05-04 15:46:57 -0700590
591 /*
592 * Make sure we have at least one full frame of buffers ready
593 */
Florin Corasf08f26d2018-05-10 13:20:47 -0700594 if (n_bufs < n_bufs_needed)
Dave Barach68b0fb02017-02-28 15:15:56 -0500595 {
Florin Coras8e43d042018-05-04 15:46:57 -0700596 session_output_try_get_buffers (vm, smm, thread_index, &n_bufs,
Florin Corasf08f26d2018-05-10 13:20:47 -0700597 ctx->n_bufs_per_seg * VLIB_FRAME_SIZE);
598 if (PREDICT_FALSE (n_bufs < n_bufs_needed))
Dave Barach68b0fb02017-02-28 15:15:56 -0500599 {
Florin Coras8e43d042018-05-04 15:46:57 -0700600 vec_add1 (smm->pending_event_vector[thread_index], *e);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700601 return SESSION_TX_NO_BUFFERS;
Dave Barach68b0fb02017-02-28 15:15:56 -0500602 }
Florin Coras8e43d042018-05-04 15:46:57 -0700603 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500604
Florin Coras8e43d042018-05-04 15:46:57 -0700605 /*
606 * Write until we fill up a frame
607 */
608 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Florin Corasf08f26d2018-05-10 13:20:47 -0700609 if (PREDICT_FALSE (ctx->n_segs_per_evt > n_left_to_next))
Florin Coras8e43d042018-05-04 15:46:57 -0700610 {
Florin Corasf08f26d2018-05-10 13:20:47 -0700611 ctx->n_segs_per_evt = n_left_to_next;
612 ctx->max_len_to_snd = ctx->snd_mss * n_left_to_next;
613 }
614 ctx->left_to_snd = ctx->max_len_to_snd;
615 n_left = ctx->n_segs_per_evt;
Florin Coras66cf5e02018-06-08 09:17:39 -0700616
617 while (n_left >= 4)
618 {
619 vlib_buffer_t *b0, *b1;
620 u32 bi0, bi1;
621
622 pbi = smm->tx_buffers[thread_index][n_bufs - 3];
623 pb = vlib_get_buffer (vm, pbi);
624 vlib_prefetch_buffer_header (pb, STORE);
625 pbi = smm->tx_buffers[thread_index][n_bufs - 4];
626 pb = vlib_get_buffer (vm, pbi);
627 vlib_prefetch_buffer_header (pb, STORE);
628
629 to_next[0] = bi0 = smm->tx_buffers[thread_index][--n_bufs];
630 to_next[1] = bi1 = smm->tx_buffers[thread_index][--n_bufs];
631
632 b0 = vlib_get_buffer (vm, bi0);
633 b1 = vlib_get_buffer (vm, bi1);
634
635 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
636 session_tx_fill_buffer (vm, ctx, b1, &n_bufs, peek_data);
637
638 ctx->transport_vft->push_header (ctx->tc, b0);
639 ctx->transport_vft->push_header (ctx->tc, b1);
640
641 to_next += 2;
642 n_left_to_next -= 2;
643 n_left -= 2;
644
645 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
646 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b1);
647
648 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
649 n_left_to_next, bi0, bi1, next0,
650 next1);
651 }
Florin Corasf08f26d2018-05-10 13:20:47 -0700652 while (n_left)
653 {
Florin Coras66cf5e02018-06-08 09:17:39 -0700654 vlib_buffer_t *b0;
655 u32 bi0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700656
Florin Coras91ca4622018-06-30 11:27:59 -0700657 if (n_left > 1)
658 {
659 pbi = smm->tx_buffers[thread_index][n_bufs - 2];
660 pb = vlib_get_buffer (vm, pbi);
661 vlib_prefetch_buffer_header (pb, STORE);
662 }
663
Florin Coras66cf5e02018-06-08 09:17:39 -0700664 to_next[0] = bi0 = smm->tx_buffers[thread_index][--n_bufs];
665 b0 = vlib_get_buffer (vm, bi0);
666 session_tx_fill_buffer (vm, ctx, b0, &n_bufs, peek_data);
Florin Coras81a13db2018-03-16 08:48:31 -0700667
Florin Coras66cf5e02018-06-08 09:17:39 -0700668 /* Ask transport to push header after current_length and
669 * total_length_not_including_first_buffer are updated */
670 ctx->transport_vft->push_header (ctx->tc, b0);
Florin Corasf6359c82017-06-19 12:26:09 -0400671
Florin Coras66cf5e02018-06-08 09:17:39 -0700672 to_next += 1;
673 n_left_to_next -= 1;
674 n_left -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500675
Florin Coras66cf5e02018-06-08 09:17:39 -0700676 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700677
Florin Coras66cf5e02018-06-08 09:17:39 -0700678 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
679 n_left_to_next, bi0, next0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500680 }
Florin Coras66cf5e02018-06-08 09:17:39 -0700681
682 if (PREDICT_FALSE (n_trace > 0))
683 session_tx_trace_frame (vm, node, next_index, to_next,
684 ctx->n_segs_per_evt, s, n_trace);
685
Florin Coras8e43d042018-05-04 15:46:57 -0700686 _vec_len (smm->tx_buffers[thread_index]) = n_bufs;
Florin Corasf08f26d2018-05-10 13:20:47 -0700687 *n_tx_packets += ctx->n_segs_per_evt;
Florin Coras8e43d042018-05-04 15:46:57 -0700688 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -0500689
Florin Coras6792ec02017-03-13 03:49:51 -0700690 /* If we couldn't dequeue all bytes mark as partially read */
Florin Corasf08f26d2018-05-10 13:20:47 -0700691 ASSERT (ctx->left_to_snd == 0);
Florin Coras8e43d042018-05-04 15:46:57 -0700692 if (ctx->max_len_to_snd < ctx->max_dequeue)
693 if (svm_fifo_set_event (s->server_tx_fifo))
694 vec_add1 (smm->pending_event_vector[thread_index], *e);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700695
Florin Coras8e43d042018-05-04 15:46:57 -0700696 if (!peek_data && ctx->transport_vft->tx_type == TRANSPORT_TX_DGRAM)
Dave Barach68b0fb02017-02-28 15:15:56 -0500697 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700698 /* Fix dgram pre header */
Florin Coras8e43d042018-05-04 15:46:57 -0700699 if (ctx->max_len_to_snd < ctx->max_dequeue)
700 svm_fifo_overwrite_head (s->server_tx_fifo, (u8 *) & ctx->hdr,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700701 sizeof (session_dgram_pre_hdr_t));
702 /* More data needs to be read */
Florin Coras8e43d042018-05-04 15:46:57 -0700703 else if (svm_fifo_max_dequeue (s->server_tx_fifo) > 0)
704 if (svm_fifo_set_event (s->server_tx_fifo))
705 vec_add1 (smm->pending_event_vector[thread_index], *e);
Dave Barach68b0fb02017-02-28 15:15:56 -0500706 }
Florin Coras0d60a0f2018-06-29 02:02:08 -0700707 return SESSION_TX_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -0500708}
709
710int
Florin Corasd79b41e2017-03-04 05:37:52 -0800711session_tx_fifo_peek_and_snd (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras52207f12018-07-12 14:48:06 -0700712 session_event_t * e,
Florin Coras0d60a0f2018-06-29 02:02:08 -0700713 stream_session_t * s, int *n_tx_pkts)
Dave Barach68b0fb02017-02-28 15:15:56 -0500714{
Florin Coras0d60a0f2018-06-29 02:02:08 -0700715 return session_tx_fifo_read_and_snd_i (vm, node, e, s, n_tx_pkts, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500716}
717
718int
Florin Corasd79b41e2017-03-04 05:37:52 -0800719session_tx_fifo_dequeue_and_snd (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras52207f12018-07-12 14:48:06 -0700720 session_event_t * e,
Florin Coras0d60a0f2018-06-29 02:02:08 -0700721 stream_session_t * s, int *n_tx_pkts)
Dave Barach68b0fb02017-02-28 15:15:56 -0500722{
Florin Coras0d60a0f2018-06-29 02:02:08 -0700723 return session_tx_fifo_read_and_snd_i (vm, node, e, s, n_tx_pkts, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500724}
725
Florin Coras371ca502018-02-21 12:07:41 -0800726int
727session_tx_fifo_dequeue_internal (vlib_main_t * vm,
728 vlib_node_runtime_t * node,
Florin Coras52207f12018-07-12 14:48:06 -0700729 session_event_t * e,
Florin Coras0d60a0f2018-06-29 02:02:08 -0700730 stream_session_t * s, int *n_tx_pkts)
Florin Coras371ca502018-02-21 12:07:41 -0800731{
732 application_t *app;
Florin Corasef915342018-09-29 10:23:06 -0700733 if (PREDICT_FALSE (s->session_state == SESSION_STATE_CLOSED))
734 return 0;
Florin Corasab2f6db2018-08-31 14:31:41 -0700735 app = application_get (s->t_app_index);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700736 svm_fifo_unset_event (s->server_tx_fifo);
737 return app->cb_fns.builtin_app_tx_callback (s);
Florin Coras371ca502018-02-21 12:07:41 -0800738}
739
Dave Barach2c25a622017-06-26 11:35:07 -0400740always_inline stream_session_t *
Florin Coras52207f12018-07-12 14:48:06 -0700741session_event_get_session (session_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -0700742{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700743 return session_get_if_valid (e->fifo->master_session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700744}
745
Florin Coras0d60a0f2018-06-29 02:02:08 -0700746static uword
747session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
748 vlib_frame_t * frame)
749{
750 session_manager_main_t *smm = vnet_get_session_manager_main ();
Florin Coras3c2fed52018-07-04 04:15:05 -0700751 u32 thread_index = vm->thread_index, n_to_dequeue, n_events;
Florin Coras52207f12018-07-12 14:48:06 -0700752 session_event_t *pending_events, *e;
753 session_event_t *fifo_events;
Florin Coras3c2fed52018-07-04 04:15:05 -0700754 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700755 f64 now = vlib_time_now (vm);
Florin Coras3c2fed52018-07-04 04:15:05 -0700756 int n_tx_packets = 0, i, rv;
Florin Coras15531972018-08-12 23:50:53 -0700757 app_worker_t *app_wrk;
Florin Coras3c2fed52018-07-04 04:15:05 -0700758 application_t *app;
759 svm_msg_q_t *mq;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700760 void (*fp) (void *);
761
762 SESSION_EVT_DBG (SESSION_EVT_POLL_GAP_TRACK, smm, thread_index);
763
764 /*
765 * Update transport time
766 */
767 transport_update_time (now, thread_index);
768
769 /*
Florin Coras3c2fed52018-07-04 04:15:05 -0700770 * Get vpp queue events that we can dequeue without blocking
Florin Coras0d60a0f2018-06-29 02:02:08 -0700771 */
Florin Coras3c2fed52018-07-04 04:15:05 -0700772 mq = smm->vpp_event_queues[thread_index];
Florin Coras0d60a0f2018-06-29 02:02:08 -0700773 fifo_events = smm->free_event_vector[thread_index];
Florin Coras3c2fed52018-07-04 04:15:05 -0700774 n_to_dequeue = svm_msg_q_size (mq);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700775 pending_events = smm->pending_event_vector[thread_index];
776
777 if (!n_to_dequeue && !vec_len (pending_events)
778 && !vec_len (smm->pending_disconnects[thread_index]))
779 return 0;
780
781 SESSION_EVT_DBG (SESSION_EVT_DEQ_NODE, 0);
782
783 /*
784 * If we didn't manage to process previous events try going
785 * over them again without dequeuing new ones.
786 * XXX: Handle senders to sessions that can't keep up
787 */
788 if (0 && vec_len (pending_events) >= 100)
789 {
790 clib_warning ("too many fifo events unsolved");
791 goto skip_dequeue;
792 }
793
794 /* See you in the next life, don't be late
Florin Coras3c2fed52018-07-04 04:15:05 -0700795 * XXX: we may need priorities here */
796 if (svm_msg_q_try_lock (mq))
Florin Coras0d60a0f2018-06-29 02:02:08 -0700797 return 0;
798
799 for (i = 0; i < n_to_dequeue; i++)
800 {
801 vec_add2 (fifo_events, e, 1);
Florin Coras3c2fed52018-07-04 04:15:05 -0700802 svm_msg_q_sub_w_lock (mq, msg);
803 clib_memcpy (e, svm_msg_q_msg_data (mq, msg), sizeof (*e));
804 svm_msg_q_free_msg (mq, msg);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700805 }
806
Florin Coras3c2fed52018-07-04 04:15:05 -0700807 svm_msg_q_unlock (mq);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700808
809 vec_append (fifo_events, pending_events);
810 vec_append (fifo_events, smm->pending_disconnects[thread_index]);
811
812 _vec_len (pending_events) = 0;
813 smm->pending_event_vector[thread_index] = pending_events;
814 _vec_len (smm->pending_disconnects[thread_index]) = 0;
815
816skip_dequeue:
817 n_events = vec_len (fifo_events);
818 for (i = 0; i < n_events; i++)
819 {
820 stream_session_t *s; /* $$$ prefetch 1 ahead maybe */
Florin Coras52207f12018-07-12 14:48:06 -0700821 session_event_t *e;
Florin Coras0e88e852018-09-17 22:09:02 -0700822 u8 want_tx_evt;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700823
824 e = &fifo_events[i];
825 switch (e->event_type)
826 {
827 case FIFO_EVENT_APP_TX:
828 /* Don't try to send more that one frame per dispatch cycle */
829 if (n_tx_packets == VLIB_FRAME_SIZE)
830 {
831 vec_add1 (smm->pending_event_vector[thread_index], *e);
832 break;
833 }
834
835 s = session_event_get_session (e, thread_index);
836 if (PREDICT_FALSE (!s))
837 {
838 clib_warning ("It's dead, Jim!");
839 continue;
840 }
841
Florin Coras0e88e852018-09-17 22:09:02 -0700842 want_tx_evt = svm_fifo_want_tx_evt (s->server_tx_fifo);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700843 /* Spray packets in per session type frames, since they go to
844 * different nodes */
845 rv = (smm->session_tx_fns[s->session_type]) (vm, node, e, s,
846 &n_tx_packets);
847 if (PREDICT_TRUE (rv == SESSION_TX_OK))
848 {
Florin Coras0e88e852018-09-17 22:09:02 -0700849 if (PREDICT_FALSE (want_tx_evt))
850 {
851 svm_fifo_set_want_tx_evt (s->server_tx_fifo, 0);
852 session_dequeue_notify (s);
853 }
Florin Coras0d60a0f2018-06-29 02:02:08 -0700854 }
855 else if (PREDICT_FALSE (rv == SESSION_TX_NO_BUFFERS))
856 {
857 vlib_node_increment_counter (vm, node->node_index,
858 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
859 continue;
860 }
861 break;
862 case FIFO_EVENT_DISCONNECT:
863 /* Make sure stream disconnects run after the pending list is
864 * drained */
865 s = session_get_from_handle (e->session_handle);
866 if (!e->postponed)
867 {
868 e->postponed = 1;
869 vec_add1 (smm->pending_disconnects[thread_index], *e);
870 continue;
871 }
872 /* If tx queue is still not empty, wait */
873 if (svm_fifo_max_dequeue (s->server_tx_fifo))
874 {
875 vec_add1 (smm->pending_disconnects[thread_index], *e);
876 continue;
877 }
878
879 stream_session_disconnect_transport (s);
880 break;
881 case FIFO_EVENT_BUILTIN_RX:
882 s = session_event_get_session (e, thread_index);
Florin Corasef915342018-09-29 10:23:06 -0700883 if (PREDICT_FALSE (!s || s->session_state >= SESSION_STATE_CLOSING))
Florin Coras0d60a0f2018-06-29 02:02:08 -0700884 continue;
885 svm_fifo_unset_event (s->server_rx_fifo);
Florin Coras15531972018-08-12 23:50:53 -0700886 app_wrk = app_worker_get (s->app_wrk_index);
887 app = application_get (app_wrk->app_index);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700888 app->cb_fns.builtin_app_rx_callback (s);
889 break;
Florin Corasef915342018-09-29 10:23:06 -0700890 case FIFO_EVENT_BUILTIN_TX:
891 s = session_get_from_handle_if_valid (e->session_handle);
892 if (PREDICT_TRUE (s != 0))
893 session_tx_fifo_dequeue_internal (vm, node, e, s, &n_tx_packets);
894 break;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700895 case FIFO_EVENT_RPC:
896 fp = e->rpc_args.fp;
897 (*fp) (e->rpc_args.arg);
898 break;
Florin Coras52207f12018-07-12 14:48:06 -0700899 case SESSION_CTRL_EVT_DISCONNECTED:
900 session_mq_disconnected_handler (e->data);
901 break;
902 case SESSION_CTRL_EVT_ACCEPTED_REPLY:
903 session_mq_accepted_reply_handler (e->data);
904 break;
905 case SESSION_CTRL_EVT_CONNECTED_REPLY:
906 break;
907 case SESSION_CTRL_EVT_DISCONNECTED_REPLY:
908 session_mq_disconnected_reply_handler (e->data);
909 break;
910 case SESSION_CTRL_EVT_RESET_REPLY:
911 session_mq_reset_reply_handler (e->data);
912 break;
Florin Coras0d60a0f2018-06-29 02:02:08 -0700913 default:
914 clib_warning ("unhandled event type %d", e->event_type);
915 }
916 }
917
918 _vec_len (fifo_events) = 0;
919 smm->free_event_vector[thread_index] = fifo_events;
920
921 vlib_node_increment_counter (vm, session_queue_node.index,
922 SESSION_QUEUE_ERROR_TX, n_tx_packets);
923
924 SESSION_EVT_DBG (SESSION_EVT_DISPATCH_END, smm, thread_index);
925
926 return n_tx_packets;
927}
928
929/* *INDENT-OFF* */
930VLIB_REGISTER_NODE (session_queue_node) =
931{
932 .function = session_queue_node_fn,
933 .name = "session-queue",
934 .format_trace = format_session_queue_trace,
935 .type = VLIB_NODE_TYPE_INPUT,
936 .n_errors = ARRAY_LEN (session_queue_error_strings),
937 .error_strings = session_queue_error_strings,
938 .state = VLIB_NODE_STATE_DISABLED,
939};
940/* *INDENT-ON* */
941
Dave Barachacd2a6a2017-05-16 17:41:34 -0400942void
943dump_thread_0_event_queue (void)
944{
945 session_manager_main_t *smm = vnet_get_session_manager_main ();
946 vlib_main_t *vm = &vlib_global_main;
947 u32 my_thread_index = vm->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700948 session_event_t _e, *e = &_e;
Florin Coras3c2fed52018-07-04 04:15:05 -0700949 svm_msg_q_ring_t *ring;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400950 stream_session_t *s0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700951 svm_msg_q_msg_t *msg;
952 svm_msg_q_t *mq;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400953 int i, index;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400954
Florin Coras3c2fed52018-07-04 04:15:05 -0700955 mq = smm->vpp_event_queues[my_thread_index];
956 index = mq->q->head;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400957
Florin Coras3c2fed52018-07-04 04:15:05 -0700958 for (i = 0; i < mq->q->cursize; i++)
Dave Barachacd2a6a2017-05-16 17:41:34 -0400959 {
Florin Coras3c2fed52018-07-04 04:15:05 -0700960 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
961 ring = svm_msg_q_ring (mq, msg->ring_index);
962 clib_memcpy (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Dave Barachacd2a6a2017-05-16 17:41:34 -0400963
964 switch (e->event_type)
965 {
966 case FIFO_EVENT_APP_TX:
967 s0 = session_event_get_session (e, my_thread_index);
968 fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index);
969 break;
970
971 case FIFO_EVENT_DISCONNECT:
Florin Corascea194d2017-10-02 00:18:51 -0700972 s0 = session_get_from_handle (e->session_handle);
Dave Barachacd2a6a2017-05-16 17:41:34 -0400973 fformat (stdout, "[%04d] disconnect session %d\n", i,
974 s0->session_index);
975 break;
976
977 case FIFO_EVENT_BUILTIN_RX:
978 s0 = session_event_get_session (e, my_thread_index);
979 fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index);
980 break;
981
982 case FIFO_EVENT_RPC:
983 fformat (stdout, "[%04d] RPC call %llx with %llx\n",
984 i, (u64) (e->rpc_args.fp), (u64) (e->rpc_args.arg));
985 break;
986
987 default:
988 fformat (stdout, "[%04d] unhandled event type %d\n",
989 i, e->event_type);
990 break;
991 }
992
993 index++;
994
Florin Coras3c2fed52018-07-04 04:15:05 -0700995 if (index == mq->q->maxsize)
Dave Barachacd2a6a2017-05-16 17:41:34 -0400996 index = 0;
997 }
998}
999
Florin Coras6534b7a2017-07-18 05:38:03 -04001000static u8
Florin Coras52207f12018-07-12 14:48:06 -07001001session_node_cmp_event (session_event_t * e, svm_fifo_t * f)
Florin Coras6534b7a2017-07-18 05:38:03 -04001002{
1003 stream_session_t *s;
1004 switch (e->event_type)
1005 {
1006 case FIFO_EVENT_APP_RX:
1007 case FIFO_EVENT_APP_TX:
1008 case FIFO_EVENT_BUILTIN_RX:
1009 if (e->fifo == f)
1010 return 1;
1011 break;
1012 case FIFO_EVENT_DISCONNECT:
1013 break;
1014 case FIFO_EVENT_RPC:
Florin Corascea194d2017-10-02 00:18:51 -07001015 s = session_get_from_handle (e->session_handle);
Florin Coras6534b7a2017-07-18 05:38:03 -04001016 if (!s)
1017 {
1018 clib_warning ("session has event but doesn't exist!");
1019 break;
1020 }
1021 if (s->server_rx_fifo == f || s->server_tx_fifo == f)
1022 return 1;
1023 break;
1024 default:
1025 break;
1026 }
1027 return 0;
1028}
1029
1030u8
Florin Coras52207f12018-07-12 14:48:06 -07001031session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e)
Florin Coras6534b7a2017-07-18 05:38:03 -04001032{
1033 session_manager_main_t *smm = vnet_get_session_manager_main ();
Florin Coras3c2fed52018-07-04 04:15:05 -07001034 svm_msg_q_t *mq;
Florin Coras52207f12018-07-12 14:48:06 -07001035 session_event_t *pending_event_vector, *evt;
Florin Coras6534b7a2017-07-18 05:38:03 -04001036 int i, index, found = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001037 svm_msg_q_msg_t *msg;
1038 svm_msg_q_ring_t *ring;
Florin Coras6534b7a2017-07-18 05:38:03 -04001039 u8 thread_index;
1040
1041 ASSERT (e);
1042 thread_index = f->master_thread_index;
1043 /*
1044 * Search evt queue
1045 */
Florin Coras3c2fed52018-07-04 04:15:05 -07001046 mq = smm->vpp_event_queues[thread_index];
1047 index = mq->q->head;
1048 for (i = 0; i < mq->q->cursize; i++)
Florin Coras6534b7a2017-07-18 05:38:03 -04001049 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001050 msg = (svm_msg_q_msg_t *) (&mq->q->data[0] + mq->q->elsize * index);
1051 ring = svm_msg_q_ring (mq, msg->ring_index);
1052 clib_memcpy (e, svm_msg_q_msg_data (mq, msg), ring->elsize);
Florin Coras6534b7a2017-07-18 05:38:03 -04001053 found = session_node_cmp_event (e, f);
1054 if (found)
Florin Coras371ca502018-02-21 12:07:41 -08001055 return 1;
Florin Coras3c2fed52018-07-04 04:15:05 -07001056 if (++index == mq->q->maxsize)
Florin Coras6534b7a2017-07-18 05:38:03 -04001057 index = 0;
1058 }
1059 /*
1060 * Search pending events vector
1061 */
1062 pending_event_vector = smm->pending_event_vector[thread_index];
1063 vec_foreach (evt, pending_event_vector)
1064 {
1065 found = session_node_cmp_event (evt, f);
1066 if (found)
1067 {
1068 clib_memcpy (e, evt, sizeof (*evt));
1069 break;
1070 }
1071 }
1072 return found;
1073}
1074
Dave Barach2a863912017-11-28 10:11:42 -05001075static clib_error_t *
1076session_queue_exit (vlib_main_t * vm)
1077{
1078 if (vec_len (vlib_mains) < 2)
1079 return 0;
1080
1081 /*
1082 * Shut off (especially) worker-thread session nodes.
1083 * Otherwise, vpp can crash as the main thread unmaps the
1084 * API segment.
1085 */
1086 vlib_worker_thread_barrier_sync (vm);
1087 session_node_enable_disable (0 /* is_enable */ );
1088 vlib_worker_thread_barrier_release (vm);
1089 return 0;
1090}
1091
1092VLIB_MAIN_LOOP_EXIT_FUNCTION (session_queue_exit);
1093
Florin Corasfd542f12018-05-16 19:28:24 -07001094static uword
1095session_queue_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1096 vlib_frame_t * f)
1097{
1098 f64 now, timeout = 1.0;
1099 uword *event_data = 0;
1100 uword event_type;
1101
1102 while (1)
1103 {
1104 vlib_process_wait_for_event_or_clock (vm, timeout);
1105 now = vlib_time_now (vm);
1106 event_type = vlib_process_get_events (vm, (uword **) & event_data);
1107
1108 switch (event_type)
1109 {
1110 case SESSION_Q_PROCESS_FLUSH_FRAMES:
1111 /* Flush the frames by updating all transports times */
1112 transport_update_time (now, 0);
1113 break;
1114 case SESSION_Q_PROCESS_STOP:
1115 timeout = 100000.0;
1116 break;
1117 case ~0:
1118 /* Timed out. Update time for all transports to trigger all
1119 * outstanding retransmits. */
1120 transport_update_time (now, 0);
1121 break;
1122 }
1123 vec_reset_length (event_data);
1124 }
1125 return 0;
1126}
1127
1128/* *INDENT-OFF* */
1129VLIB_REGISTER_NODE (session_queue_process_node) =
1130{
1131 .function = session_queue_process,
1132 .type = VLIB_NODE_TYPE_PROCESS,
1133 .name = "session-queue-process",
1134 .state = VLIB_NODE_STATE_DISABLED,
1135};
1136/* *INDENT-ON* */
1137
1138
Dave Barach68b0fb02017-02-28 15:15:56 -05001139/*
1140 * fd.io coding-style-patch-verification: ON
1141 *
1142 * Local Variables:
1143 * eval: (c-set-style "gnu")
1144 * End:
1145 */