blob: d015584990e88add090aee9d36c7171740c8f030 [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 <vnet/tcp/tcp.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050020#include <vppinfra/elog.h>
Florin Coras6792ec02017-03-13 03:49:51 -070021#include <vnet/session/application.h>
Florin Corase69f4952017-03-07 10:06:24 -080022#include <vnet/session/session_debug.h>
Florin Coras6792ec02017-03-13 03:49:51 -070023#include <vlibmemory/unix_shared_memory_queue.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
25vlib_node_registration_t session_queue_node;
26
27typedef struct
28{
29 u32 session_index;
30 u32 server_thread_index;
31} session_queue_trace_t;
32
33/* packet trace format function */
34static u8 *
35format_session_queue_trace (u8 * s, va_list * args)
36{
37 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
38 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
39 session_queue_trace_t *t = va_arg (*args, session_queue_trace_t *);
40
41 s = format (s, "SESSION_QUEUE: session index %d, server thread index %d",
42 t->session_index, t->server_thread_index);
43 return s;
44}
45
46vlib_node_registration_t session_queue_node;
47
Florin Coras6792ec02017-03-13 03:49:51 -070048#define foreach_session_queue_error \
49_(TX, "Packets transmitted") \
Florin Coras93992a92017-05-24 18:03:56 -070050_(TIMER, "Timer events") \
51_(NO_BUFFER, "Out of buffers")
Dave Barach68b0fb02017-02-28 15:15:56 -050052
53typedef enum
54{
55#define _(sym,str) SESSION_QUEUE_ERROR_##sym,
56 foreach_session_queue_error
57#undef _
58 SESSION_QUEUE_N_ERROR,
59} session_queue_error_t;
60
61static char *session_queue_error_strings[] = {
62#define _(sym,string) string,
63 foreach_session_queue_error
64#undef _
65};
66
67static u32 session_type_to_next[] = {
68 SESSION_QUEUE_NEXT_TCP_IP4_OUTPUT,
69 SESSION_QUEUE_NEXT_IP4_LOOKUP,
70 SESSION_QUEUE_NEXT_TCP_IP6_OUTPUT,
71 SESSION_QUEUE_NEXT_IP6_LOOKUP,
72};
73
Florin Corasf6d68ed2017-05-07 19:12:02 -070074always_inline void
75session_tx_fifo_chain_tail (session_manager_main_t * smm, vlib_main_t * vm,
76 u8 thread_index, svm_fifo_t * fifo,
77 vlib_buffer_t * b0, u32 bi0, u8 n_bufs_per_seg,
Florin Corasb2215d62017-08-01 16:56:58 -070078 u32 left_from_seg, u32 * left_to_snd0,
Florin Coras1f152cd2017-08-18 19:28:03 -070079 u16 * n_bufs, u32 * tx_offset, u16 deq_per_buf,
Florin Corasb2215d62017-08-01 16:56:58 -070080 u8 peek_data)
Florin Corasf6d68ed2017-05-07 19:12:02 -070081{
82 vlib_buffer_t *chain_b0, *prev_b0;
Florin Corasb2215d62017-08-01 16:56:58 -070083 u32 chain_bi0, to_deq;
Florin Corasf6d68ed2017-05-07 19:12:02 -070084 u16 len_to_deq0, n_bytes_read;
85 u8 *data0, j;
86
Florin Corasb2215d62017-08-01 16:56:58 -070087 b0->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
88 b0->total_length_not_including_first_buffer = 0;
89
Florin Corasf6d68ed2017-05-07 19:12:02 -070090 chain_bi0 = bi0;
91 chain_b0 = b0;
Florin Corasb2215d62017-08-01 16:56:58 -070092 to_deq = left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -070093 for (j = 1; j < n_bufs_per_seg; j++)
94 {
95 prev_b0 = chain_b0;
Florin Corasb2215d62017-08-01 16:56:58 -070096 len_to_deq0 = clib_min (to_deq, deq_per_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -070097
98 *n_bufs -= 1;
99 chain_bi0 = smm->tx_buffers[thread_index][*n_bufs];
100 _vec_len (smm->tx_buffers[thread_index]) = *n_bufs;
101
102 chain_b0 = vlib_get_buffer (vm, chain_bi0);
103 chain_b0->current_data = 0;
104 data0 = vlib_buffer_get_current (chain_b0);
105 if (peek_data)
106 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700107 n_bytes_read = svm_fifo_peek (fifo, *tx_offset, len_to_deq0, data0);
108 *tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700109 }
110 else
111 {
112 n_bytes_read = svm_fifo_dequeue_nowait (fifo, len_to_deq0, data0);
113 }
114 ASSERT (n_bytes_read == len_to_deq0);
115 chain_b0->current_length = n_bytes_read;
116 b0->total_length_not_including_first_buffer += chain_b0->current_length;
117
118 /* update previous buffer */
119 prev_b0->next_buffer = chain_bi0;
120 prev_b0->flags |= VLIB_BUFFER_NEXT_PRESENT;
121
122 /* update current buffer */
123 chain_b0->next_buffer = 0;
124
Florin Corasb2215d62017-08-01 16:56:58 -0700125 to_deq -= n_bytes_read;
126 if (to_deq == 0)
Florin Corasf6d68ed2017-05-07 19:12:02 -0700127 break;
128 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700129 ASSERT (to_deq == 0
130 && b0->total_length_not_including_first_buffer == left_from_seg);
Florin Corasb2215d62017-08-01 16:56:58 -0700131 *left_to_snd0 -= left_from_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700132}
133
Dave Barach68b0fb02017-02-28 15:15:56 -0500134always_inline int
Florin Corasd79b41e2017-03-04 05:37:52 -0800135session_tx_fifo_read_and_snd_i (vlib_main_t * vm, vlib_node_runtime_t * node,
136 session_manager_main_t * smm,
137 session_fifo_event_t * e0,
138 stream_session_t * s0, u32 thread_index,
139 int *n_tx_packets, u8 peek_data)
Dave Barach68b0fb02017-02-28 15:15:56 -0500140{
141 u32 n_trace = vlib_get_trace_count (vm, node);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700142 u32 left_to_snd0, max_len_to_snd0, len_to_deq0, snd_space0;
Florin Corase87216f2017-08-17 16:59:22 -0700143 u32 n_bufs_per_evt, n_frames_per_evt, n_bufs_per_frame;
Dave Barach68b0fb02017-02-28 15:15:56 -0500144 transport_connection_t *tc0;
145 transport_proto_vft_t *transport_vft;
146 u32 next_index, next0, *to_next, n_left_to_next, bi0;
147 vlib_buffer_t *b0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700148 u32 tx_offset = 0, max_dequeue0, n_bytes_per_seg, left_for_seg;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700149 u16 snd_mss0, n_bufs_per_seg, n_bufs;
Dave Barach68b0fb02017-02-28 15:15:56 -0500150 u8 *data0;
Florin Coras6792ec02017-03-13 03:49:51 -0700151 int i, n_bytes_read;
Florin Corase87216f2017-08-17 16:59:22 -0700152 u32 n_bytes_per_buf, deq_per_buf, deq_per_first_buf;
Florin Coras93992a92017-05-24 18:03:56 -0700153 u32 buffers_allocated, buffers_allocated_this_call;
Dave Barach68b0fb02017-02-28 15:15:56 -0500154
155 next_index = next0 = session_type_to_next[s0->session_type];
156
157 transport_vft = session_get_transport_vft (s0->session_type);
158 tc0 = transport_vft->get_connection (s0->connection_index, thread_index);
159
160 /* Make sure we have space to send and there's something to dequeue */
Dave Barach68b0fb02017-02-28 15:15:56 -0500161 snd_mss0 = transport_vft->send_mss (tc0);
Florin Corasc8343412017-05-04 14:25:50 -0700162 snd_space0 = transport_vft->send_space (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500163
Florin Corase04c2992017-03-01 08:17:34 -0800164 /* Can't make any progress */
Florin Coras6792ec02017-03-13 03:49:51 -0700165 if (snd_space0 == 0 || snd_mss0 == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800166 {
Dave Barachacd2a6a2017-05-16 17:41:34 -0400167 vec_add1 (smm->pending_event_vector[thread_index], *e0);
Florin Corase04c2992017-03-01 08:17:34 -0800168 return 0;
169 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500170
Florin Coras9d063042017-09-14 03:08:00 -0400171 /* Check how much we can pull. */
172 max_dequeue0 = svm_fifo_max_dequeue (s0->server_tx_fifo);
173
Dave Barach68b0fb02017-02-28 15:15:56 -0500174 if (peek_data)
175 {
Florin Coras9d063042017-09-14 03:08:00 -0400176 /* Offset in rx fifo from where to peek data */
Florin Coras1f152cd2017-08-18 19:28:03 -0700177 tx_offset = transport_vft->tx_fifo_offset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -0400178 if (PREDICT_FALSE (tx_offset >= max_dequeue0))
179 max_dequeue0 = 0;
180 else
181 max_dequeue0 -= tx_offset;
Dave Barach68b0fb02017-02-28 15:15:56 -0500182 }
183
Florin Coras6792ec02017-03-13 03:49:51 -0700184 /* Nothing to read return */
185 if (max_dequeue0 == 0)
Florin Corasf03a59a2017-06-09 21:07:32 -0700186 {
187 svm_fifo_unset_event (s0->server_tx_fifo);
188 return 0;
189 }
Florin Coras6792ec02017-03-13 03:49:51 -0700190
191 /* Ensure we're not writing more than transport window allows */
Florin Coras3e350af2017-03-30 02:54:28 -0700192 if (max_dequeue0 < snd_space0)
193 {
194 /* Constrained by tx queue. Try to send only fully formed segments */
195 max_len_to_snd0 = (max_dequeue0 > snd_mss0) ?
196 max_dequeue0 - max_dequeue0 % snd_mss0 : max_dequeue0;
197 /* TODO Nagle ? */
198 }
199 else
200 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700201 /* Expectation is that snd_space0 is already a multiple of snd_mss */
Florin Coras3e350af2017-03-30 02:54:28 -0700202 max_len_to_snd0 = snd_space0;
203 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500204
Florin Coras93992a92017-05-24 18:03:56 -0700205 n_bytes_per_buf = vlib_buffer_free_list_buffer_size
206 (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Florin Corase87216f2017-08-17 16:59:22 -0700207 ASSERT (n_bytes_per_buf > MAX_HDRS_LEN);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700208 n_bytes_per_seg = MAX_HDRS_LEN + snd_mss0;
209 n_bufs_per_seg = ceil ((double) n_bytes_per_seg / n_bytes_per_buf);
Florin Corase87216f2017-08-17 16:59:22 -0700210 n_bufs_per_evt = ceil ((double) max_len_to_snd0 / n_bytes_per_seg);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700211 n_frames_per_evt = ceil ((double) n_bufs_per_evt / VLIB_FRAME_SIZE);
Florin Corase87216f2017-08-17 16:59:22 -0700212 n_bufs_per_frame = n_bufs_per_seg * VLIB_FRAME_SIZE;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700213
214 deq_per_buf = clib_min (snd_mss0, n_bytes_per_buf);
Florin Corase87216f2017-08-17 16:59:22 -0700215 deq_per_first_buf = clib_min (snd_mss0, n_bytes_per_buf - MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500216
217 n_bufs = vec_len (smm->tx_buffers[thread_index]);
218 left_to_snd0 = max_len_to_snd0;
219 for (i = 0; i < n_frames_per_evt; i++)
220 {
221 /* Make sure we have at least one full frame of buffers ready */
Florin Corase87216f2017-08-17 16:59:22 -0700222 if (PREDICT_FALSE (n_bufs < n_bufs_per_frame))
Dave Barach68b0fb02017-02-28 15:15:56 -0500223 {
224 vec_validate (smm->tx_buffers[thread_index],
Florin Corase87216f2017-08-17 16:59:22 -0700225 n_bufs + n_bufs_per_frame - 1);
Florin Coras93992a92017-05-24 18:03:56 -0700226 buffers_allocated = 0;
227 do
Dave Barach68b0fb02017-02-28 15:15:56 -0500228 {
Florin Corase87216f2017-08-17 16:59:22 -0700229 buffers_allocated_this_call = vlib_buffer_alloc (vm,
230 &smm->tx_buffers
231 [thread_index]
232 [n_bufs +
233 buffers_allocated],
234 n_bufs_per_frame
235 -
236 buffers_allocated);
Florin Coras93992a92017-05-24 18:03:56 -0700237 buffers_allocated += buffers_allocated_this_call;
Dave Barach68b0fb02017-02-28 15:15:56 -0500238 }
Florin Coras93992a92017-05-24 18:03:56 -0700239 while (buffers_allocated_this_call > 0
Florin Corase87216f2017-08-17 16:59:22 -0700240 && ((buffers_allocated + n_bufs < n_bufs_per_frame)));
Florin Coras93992a92017-05-24 18:03:56 -0700241
242 n_bufs += buffers_allocated;
Dave Barach68b0fb02017-02-28 15:15:56 -0500243 _vec_len (smm->tx_buffers[thread_index]) = n_bufs;
Florin Coras93992a92017-05-24 18:03:56 -0700244
Florin Corase87216f2017-08-17 16:59:22 -0700245 if (PREDICT_FALSE (n_bufs < n_bufs_per_frame))
Florin Coras93992a92017-05-24 18:03:56 -0700246 {
247 vec_add1 (smm->pending_event_vector[thread_index], *e0);
248 return -1;
249 }
Florin Corase87216f2017-08-17 16:59:22 -0700250 ASSERT (n_bufs >= n_bufs_per_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -0500251 }
Florin Coras93992a92017-05-24 18:03:56 -0700252 /* Allow enqueuing of a new event */
253 svm_fifo_unset_event (s0->server_tx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500254
255 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Florin Corase87216f2017-08-17 16:59:22 -0700256 while (left_to_snd0 && n_left_to_next)
Dave Barach68b0fb02017-02-28 15:15:56 -0500257 {
Florin Corasf6d68ed2017-05-07 19:12:02 -0700258 /*
259 * Handle first buffer in chain separately
260 */
261
Dave Barach68b0fb02017-02-28 15:15:56 -0500262 /* Get free buffer */
Florin Coras93992a92017-05-24 18:03:56 -0700263 ASSERT (n_bufs >= 1);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700264 bi0 = smm->tx_buffers[thread_index][--n_bufs];
Dave Barach68b0fb02017-02-28 15:15:56 -0500265 _vec_len (smm->tx_buffers[thread_index]) = n_bufs;
266
Florin Corasf6359c82017-06-19 12:26:09 -0400267 /* usual speculation, or the enqueue_x1 macro will barf */
268 to_next[0] = bi0;
269 to_next += 1;
270 n_left_to_next -= 1;
271
Dave Barach68b0fb02017-02-28 15:15:56 -0500272 b0 = vlib_get_buffer (vm, bi0);
273 b0->error = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400274 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500275 b0->current_data = 0;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700276 b0->total_length_not_including_first_buffer = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500277
Florin Corase87216f2017-08-17 16:59:22 -0700278 len_to_deq0 = clib_min (left_to_snd0, deq_per_first_buf);
Florin Corasf6d68ed2017-05-07 19:12:02 -0700279 data0 = vlib_buffer_make_headroom (b0, MAX_HDRS_LEN);
280 if (peek_data)
281 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700282 n_bytes_read = svm_fifo_peek (s0->server_tx_fifo, tx_offset,
Florin Corasf6d68ed2017-05-07 19:12:02 -0700283 len_to_deq0, data0);
Florin Coras9d063042017-09-14 03:08:00 -0400284 if (n_bytes_read <= 0)
285 goto dequeue_fail;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700286 /* Keep track of progress locally, transport is also supposed to
287 * increment it independently when pushing the header */
Florin Coras1f152cd2017-08-18 19:28:03 -0700288 tx_offset += n_bytes_read;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700289 }
290 else
291 {
292 n_bytes_read = svm_fifo_dequeue_nowait (s0->server_tx_fifo,
293 len_to_deq0, data0);
Florin Coras9d063042017-09-14 03:08:00 -0400294 if (n_bytes_read <= 0)
295 goto dequeue_fail;
Florin Corasf6d68ed2017-05-07 19:12:02 -0700296 }
297
Florin Corasf6d68ed2017-05-07 19:12:02 -0700298 b0->current_length = n_bytes_read;
299
300 left_to_snd0 -= n_bytes_read;
301 *n_tx_packets = *n_tx_packets + 1;
302
303 /*
304 * Fill in the remaining buffers in the chain, if any
305 */
Florin Corase87216f2017-08-17 16:59:22 -0700306 if (PREDICT_FALSE (n_bufs_per_seg > 1 && left_to_snd0))
Florin Corasb2215d62017-08-01 16:56:58 -0700307 {
Florin Corasb2215d62017-08-01 16:56:58 -0700308 left_for_seg = clib_min (snd_mss0 - n_bytes_read, left_to_snd0);
309 session_tx_fifo_chain_tail (smm, vm, thread_index,
310 s0->server_tx_fifo, b0, bi0,
311 n_bufs_per_seg, left_for_seg,
Florin Coras1f152cd2017-08-18 19:28:03 -0700312 &left_to_snd0, &n_bufs, &tx_offset,
Florin Corasb2215d62017-08-01 16:56:58 -0700313 deq_per_buf, peek_data);
314 }
Florin Corasf6d68ed2017-05-07 19:12:02 -0700315
316 /* Ask transport to push header after current_length and
317 * total_length_not_including_first_buffer are updated */
318 transport_vft->push_header (tc0, b0);
319
320 /* *INDENT-OFF* */
321 SESSION_EVT_DBG(SESSION_EVT_DEQ, s0, ({
322 ed->data[0] = e0->event_id;
323 ed->data[1] = max_dequeue0;
324 ed->data[2] = len_to_deq0;
325 ed->data[3] = left_to_snd0;
326 }));
327 /* *INDENT-ON* */
328
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400330 if (VLIB_BUFFER_TRACE_TRAJECTORY)
331 b0->pre_data[1] = 3;
332
Dave Barach68b0fb02017-02-28 15:15:56 -0500333 if (PREDICT_FALSE (n_trace > 0))
334 {
335 session_queue_trace_t *t0;
336 vlib_trace_buffer (vm, node, next_index, b0,
337 1 /* follow_chain */ );
338 vlib_set_trace_count (vm, node, --n_trace);
339 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
340 t0->session_index = s0->session_index;
341 t0->server_thread_index = s0->thread_index;
342 }
343
Dave Barach68b0fb02017-02-28 15:15:56 -0500344 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
345 to_next, n_left_to_next,
346 bi0, next0);
347 }
348 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
349 }
350
Florin Coras6792ec02017-03-13 03:49:51 -0700351 /* If we couldn't dequeue all bytes mark as partially read */
352 if (max_len_to_snd0 < max_dequeue0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500353 {
Florin Coras6792ec02017-03-13 03:49:51 -0700354 /* If we don't already have new event */
355 if (svm_fifo_set_event (s0->server_tx_fifo))
356 {
Dave Barachacd2a6a2017-05-16 17:41:34 -0400357 vec_add1 (smm->pending_event_vector[thread_index], *e0);
Florin Coras6792ec02017-03-13 03:49:51 -0700358 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500359 }
360 return 0;
361
362dequeue_fail:
Florin Coras6792ec02017-03-13 03:49:51 -0700363 /*
364 * Can't read from fifo. If we don't already have an event, save as partially
365 * read, return buff to free list and return
366 */
367 clib_warning ("dequeue fail");
Dave Barach68b0fb02017-02-28 15:15:56 -0500368
Florin Coras6792ec02017-03-13 03:49:51 -0700369 if (svm_fifo_set_event (s0->server_tx_fifo))
370 {
Dave Barachacd2a6a2017-05-16 17:41:34 -0400371 vec_add1 (smm->pending_event_vector[thread_index], *e0);
Florin Coras6792ec02017-03-13 03:49:51 -0700372 }
373 vlib_put_next_frame (vm, node, next_index, n_left_to_next + 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500374 _vec_len (smm->tx_buffers[thread_index]) += 1;
375
Dave Barach68b0fb02017-02-28 15:15:56 -0500376 return 0;
377}
378
379int
Florin Corasd79b41e2017-03-04 05:37:52 -0800380session_tx_fifo_peek_and_snd (vlib_main_t * vm, vlib_node_runtime_t * node,
381 session_manager_main_t * smm,
382 session_fifo_event_t * e0,
383 stream_session_t * s0, u32 thread_index,
384 int *n_tx_pkts)
Dave Barach68b0fb02017-02-28 15:15:56 -0500385{
Florin Corasd79b41e2017-03-04 05:37:52 -0800386 return session_tx_fifo_read_and_snd_i (vm, node, smm, e0, s0, thread_index,
387 n_tx_pkts, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500388}
389
390int
Florin Corasd79b41e2017-03-04 05:37:52 -0800391session_tx_fifo_dequeue_and_snd (vlib_main_t * vm, vlib_node_runtime_t * node,
392 session_manager_main_t * smm,
393 session_fifo_event_t * e0,
394 stream_session_t * s0, u32 thread_index,
395 int *n_tx_pkts)
Dave Barach68b0fb02017-02-28 15:15:56 -0500396{
Florin Corasd79b41e2017-03-04 05:37:52 -0800397 return session_tx_fifo_read_and_snd_i (vm, node, smm, e0, s0, thread_index,
398 n_tx_pkts, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500399}
400
Dave Barach2c25a622017-06-26 11:35:07 -0400401always_inline stream_session_t *
402session_event_get_session (session_fifo_event_t * e, u8 thread_index)
Florin Corasa5464812017-04-19 13:00:05 -0700403{
Dave Barach2c25a622017-06-26 11:35:07 -0400404 return stream_session_get_if_valid (e->fifo->master_session_index,
405 thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700406}
407
Dave Barachacd2a6a2017-05-16 17:41:34 -0400408void
409dump_thread_0_event_queue (void)
410{
411 session_manager_main_t *smm = vnet_get_session_manager_main ();
412 vlib_main_t *vm = &vlib_global_main;
413 u32 my_thread_index = vm->thread_index;
414 session_fifo_event_t _e, *e = &_e;
415 stream_session_t *s0;
416 int i, index;
417 i8 *headp;
418
419 unix_shared_memory_queue_t *q;
420 q = smm->vpp_event_queues[my_thread_index];
421
422 index = q->head;
423
424 for (i = 0; i < q->cursize; i++)
425 {
426 headp = (i8 *) (&q->data[0] + q->elsize * index);
427 clib_memcpy (e, headp, q->elsize);
428
429 switch (e->event_type)
430 {
431 case FIFO_EVENT_APP_TX:
432 s0 = session_event_get_session (e, my_thread_index);
433 fformat (stdout, "[%04d] TX session %d\n", i, s0->session_index);
434 break;
435
436 case FIFO_EVENT_DISCONNECT:
437 s0 = stream_session_get_from_handle (e->session_handle);
438 fformat (stdout, "[%04d] disconnect session %d\n", i,
439 s0->session_index);
440 break;
441
442 case FIFO_EVENT_BUILTIN_RX:
443 s0 = session_event_get_session (e, my_thread_index);
444 fformat (stdout, "[%04d] builtin_rx %d\n", i, s0->session_index);
445 break;
446
447 case FIFO_EVENT_RPC:
448 fformat (stdout, "[%04d] RPC call %llx with %llx\n",
449 i, (u64) (e->rpc_args.fp), (u64) (e->rpc_args.arg));
450 break;
451
452 default:
453 fformat (stdout, "[%04d] unhandled event type %d\n",
454 i, e->event_type);
455 break;
456 }
457
458 index++;
459
460 if (index == q->maxsize)
461 index = 0;
462 }
463}
464
Florin Coras6534b7a2017-07-18 05:38:03 -0400465static u8
466session_node_cmp_event (session_fifo_event_t * e, svm_fifo_t * f)
467{
468 stream_session_t *s;
469 switch (e->event_type)
470 {
471 case FIFO_EVENT_APP_RX:
472 case FIFO_EVENT_APP_TX:
473 case FIFO_EVENT_BUILTIN_RX:
474 if (e->fifo == f)
475 return 1;
476 break;
477 case FIFO_EVENT_DISCONNECT:
478 break;
479 case FIFO_EVENT_RPC:
480 s = stream_session_get_from_handle (e->session_handle);
481 if (!s)
482 {
483 clib_warning ("session has event but doesn't exist!");
484 break;
485 }
486 if (s->server_rx_fifo == f || s->server_tx_fifo == f)
487 return 1;
488 break;
489 default:
490 break;
491 }
492 return 0;
493}
494
495u8
496session_node_lookup_fifo_event (svm_fifo_t * f, session_fifo_event_t * e)
497{
498 session_manager_main_t *smm = vnet_get_session_manager_main ();
499 unix_shared_memory_queue_t *q;
500 session_fifo_event_t *pending_event_vector, *evt;
501 int i, index, found = 0;
502 i8 *headp;
503 u8 thread_index;
504
505 ASSERT (e);
506 thread_index = f->master_thread_index;
507 /*
508 * Search evt queue
509 */
510 q = smm->vpp_event_queues[thread_index];
511 index = q->head;
512 for (i = 0; i < q->cursize; i++)
513 {
514 headp = (i8 *) (&q->data[0] + q->elsize * index);
515 clib_memcpy (e, headp, q->elsize);
516 found = session_node_cmp_event (e, f);
517 if (found)
518 break;
519 if (++index == q->maxsize)
520 index = 0;
521 }
522 /*
523 * Search pending events vector
524 */
525 pending_event_vector = smm->pending_event_vector[thread_index];
526 vec_foreach (evt, pending_event_vector)
527 {
528 found = session_node_cmp_event (evt, f);
529 if (found)
530 {
531 clib_memcpy (e, evt, sizeof (*evt));
532 break;
533 }
534 }
535 return found;
536}
537
Dave Barach68b0fb02017-02-28 15:15:56 -0500538static uword
539session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
540 vlib_frame_t * frame)
541{
542 session_manager_main_t *smm = vnet_get_session_manager_main ();
Dave Barachacd2a6a2017-05-16 17:41:34 -0400543 session_fifo_event_t *my_pending_event_vector, *e;
544 session_fifo_event_t *my_fifo_events;
Florin Corase04c2992017-03-01 08:17:34 -0800545 u32 n_to_dequeue, n_events;
Dave Barach68b0fb02017-02-28 15:15:56 -0500546 unix_shared_memory_queue_t *q;
Florin Coras6792ec02017-03-13 03:49:51 -0700547 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500548 int n_tx_packets = 0;
Damjan Marion586afd72017-04-05 19:18:20 +0200549 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500550 int i, rv;
Florin Coras3e350af2017-03-30 02:54:28 -0700551 f64 now = vlib_time_now (vm);
Dave Barache5f1d272017-05-10 13:34:04 -0400552 void (*fp) (void *);
Florin Coras3e350af2017-03-30 02:54:28 -0700553
554 SESSION_EVT_DBG (SESSION_EVT_POLL_GAP_TRACK, smm, my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500555
556 /*
557 * Update TCP time
558 */
Florin Coras3e350af2017-03-30 02:54:28 -0700559 tcp_update_time (now, my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500560
561 /*
562 * Get vpp queue events
563 */
564 q = smm->vpp_event_queues[my_thread_index];
565 if (PREDICT_FALSE (q == 0))
566 return 0;
567
Dave Barachacd2a6a2017-05-16 17:41:34 -0400568 my_fifo_events = smm->free_event_vector[my_thread_index];
569
Dave Barach68b0fb02017-02-28 15:15:56 -0500570 /* min number of events we can dequeue without blocking */
571 n_to_dequeue = q->cursize;
Dave Barachacd2a6a2017-05-16 17:41:34 -0400572 my_pending_event_vector = smm->pending_event_vector[my_thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500573
Dave Barachacd2a6a2017-05-16 17:41:34 -0400574 if (n_to_dequeue == 0 && vec_len (my_pending_event_vector) == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800575 return 0;
576
Florin Coras6792ec02017-03-13 03:49:51 -0700577 SESSION_EVT_DBG (SESSION_EVT_DEQ_NODE, 0);
578
Florin Corase04c2992017-03-01 08:17:34 -0800579 /*
580 * If we didn't manage to process previous events try going
Dave Barach68b0fb02017-02-28 15:15:56 -0500581 * over them again without dequeuing new ones.
Florin Corase04c2992017-03-01 08:17:34 -0800582 */
583 /* XXX: Block senders to sessions that can't keep up */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400584 if (0 && vec_len (my_pending_event_vector) >= 100)
Florin Coras6792ec02017-03-13 03:49:51 -0700585 {
586 clib_warning ("too many fifo events unsolved");
587 goto skip_dequeue;
588 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500589
590 /* See you in the next life, don't be late */
591 if (pthread_mutex_trylock (&q->mutex))
592 return 0;
593
594 for (i = 0; i < n_to_dequeue; i++)
595 {
596 vec_add2 (my_fifo_events, e, 1);
597 unix_shared_memory_queue_sub_raw (q, (u8 *) e);
598 }
599
600 /* The other side of the connection is not polling */
601 if (q->cursize < (q->maxsize / 8))
602 (void) pthread_cond_broadcast (&q->condvar);
603 pthread_mutex_unlock (&q->mutex);
604
Dave Barachacd2a6a2017-05-16 17:41:34 -0400605 vec_append (my_fifo_events, my_pending_event_vector);
606
607 _vec_len (my_pending_event_vector) = 0;
608 smm->pending_event_vector[my_thread_index] = my_pending_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500609
610skip_dequeue:
Florin Corase04c2992017-03-01 08:17:34 -0800611 n_events = vec_len (my_fifo_events);
612 for (i = 0; i < n_events; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500613 {
Florin Corasa5464812017-04-19 13:00:05 -0700614 stream_session_t *s0; /* $$$ prefetch 1 ahead maybe */
Dave Barach68b0fb02017-02-28 15:15:56 -0500615 session_fifo_event_t *e0;
616
617 e0 = &my_fifo_events[i];
Dave Barach68b0fb02017-02-28 15:15:56 -0500618
619 switch (e0->event_type)
620 {
Florin Corasa5464812017-04-19 13:00:05 -0700621 case FIFO_EVENT_APP_TX:
622 s0 = session_event_get_session (e0, my_thread_index);
623
Florin Coras9d063042017-09-14 03:08:00 -0400624 if (PREDICT_FALSE (!s0))
Florin Corasa5464812017-04-19 13:00:05 -0700625 {
626 clib_warning ("It's dead, Jim!");
627 continue;
628 }
Florin Corasb2215d62017-08-01 16:56:58 -0700629 /* Can retransmit for closed sessions but can't do anything if
630 * session is not ready or closed */
631 if (PREDICT_FALSE (s0->session_state < SESSION_STATE_READY))
Florin Corasa5464812017-04-19 13:00:05 -0700632 continue;
Dave Barach68b0fb02017-02-28 15:15:56 -0500633 /* Spray packets in per session type frames, since they go to
634 * different nodes */
Florin Corase69f4952017-03-07 10:06:24 -0800635 rv = (smm->session_tx_fns[s0->session_type]) (vm, node, smm, e0, s0,
Dave Barach68b0fb02017-02-28 15:15:56 -0500636 my_thread_index,
637 &n_tx_packets);
Florin Coras6792ec02017-03-13 03:49:51 -0700638 /* Out of buffers */
Florin Coras93992a92017-05-24 18:03:56 -0700639 if (PREDICT_FALSE (rv < 0))
Dave Barachacd2a6a2017-05-16 17:41:34 -0400640 {
Florin Coras93992a92017-05-24 18:03:56 -0700641 vlib_node_increment_counter (vm, node->node_index,
642 SESSION_QUEUE_ERROR_NO_BUFFER, 1);
Dave Barachacd2a6a2017-05-16 17:41:34 -0400643 continue;
644 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500645 break;
Florin Corasa5464812017-04-19 13:00:05 -0700646 case FIFO_EVENT_DISCONNECT:
647 s0 = stream_session_get_from_handle (e0->session_handle);
Florin Coras6792ec02017-03-13 03:49:51 -0700648 stream_session_disconnect (s0);
649 break;
650 case FIFO_EVENT_BUILTIN_RX:
Florin Corasa5464812017-04-19 13:00:05 -0700651 s0 = session_event_get_session (e0, my_thread_index);
Florin Corasc87c91d2017-08-16 19:55:49 -0700652 if (PREDICT_FALSE (!s0))
653 continue;
Florin Coras6792ec02017-03-13 03:49:51 -0700654 svm_fifo_unset_event (s0->server_rx_fifo);
Florin Coras6792ec02017-03-13 03:49:51 -0700655 app = application_get (s0->app_index);
656 app->cb_fns.builtin_server_rx_callback (s0);
657 break;
Dave Barache5f1d272017-05-10 13:34:04 -0400658 case FIFO_EVENT_RPC:
659 fp = e0->rpc_args.fp;
660 (*fp) (e0->rpc_args.arg);
661 break;
662
Dave Barach68b0fb02017-02-28 15:15:56 -0500663 default:
664 clib_warning ("unhandled event type %d", e0->event_type);
665 }
666 }
667
Dave Barachacd2a6a2017-05-16 17:41:34 -0400668 _vec_len (my_fifo_events) = 0;
669 smm->free_event_vector[my_thread_index] = my_fifo_events;
Dave Barach68b0fb02017-02-28 15:15:56 -0500670
671 vlib_node_increment_counter (vm, session_queue_node.index,
672 SESSION_QUEUE_ERROR_TX, n_tx_packets);
673
Florin Coras6792ec02017-03-13 03:49:51 -0700674 SESSION_EVT_DBG (SESSION_EVT_DEQ_NODE, 1);
675
Dave Barach68b0fb02017-02-28 15:15:56 -0500676 return n_tx_packets;
677}
678
679/* *INDENT-OFF* */
680VLIB_REGISTER_NODE (session_queue_node) =
681{
682 .function = session_queue_node_fn,
683 .name = "session-queue",
684 .format_trace = format_session_queue_trace,
685 .type = VLIB_NODE_TYPE_INPUT,
686 .n_errors = ARRAY_LEN (session_queue_error_strings),
687 .error_strings = session_queue_error_strings,
688 .n_next_nodes = SESSION_QUEUE_N_NEXT,
Florin Corase04c2992017-03-01 08:17:34 -0800689 .state = VLIB_NODE_STATE_DISABLED,
Dave Barach68b0fb02017-02-28 15:15:56 -0500690 .next_nodes =
691 {
692 [SESSION_QUEUE_NEXT_DROP] = "error-drop",
693 [SESSION_QUEUE_NEXT_IP4_LOOKUP] = "ip4-lookup",
694 [SESSION_QUEUE_NEXT_IP6_LOOKUP] = "ip6-lookup",
695 [SESSION_QUEUE_NEXT_TCP_IP4_OUTPUT] = "tcp4-output",
696 [SESSION_QUEUE_NEXT_TCP_IP6_OUTPUT] = "tcp6-output",
697 },
698};
699/* *INDENT-ON* */
700
701/*
702 * fd.io coding-style-patch-verification: ON
703 *
704 * Local Variables:
705 * eval: (c-set-style "gnu")
706 * End:
707 */