blob: 5af824ade60b2b8650258cc6f3994c226fa84bc9 [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#ifndef __included_session_h__
16#define __included_session_h__
17
Florin Coras2062ec02019-07-15 13:15:18 -070018#include <vppinfra/llist.h>
Florin Coras288eaab2019-02-03 15:26:14 -080019#include <vnet/session/session_types.h>
Florin Coras04e53442017-07-16 17:12:15 -070020#include <vnet/session/session_lookup.h>
Florin Coras3e350af2017-03-30 02:54:28 -070021#include <vnet/session/session_debug.h>
Florin Coras288eaab2019-02-03 15:26:14 -080022#include <svm/message_queue.h>
Florin Coras31c99552019-03-01 13:00:58 -080023#include <svm/ssvm.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
Florin Coras3e350af2017-03-30 02:54:28 -070025#define foreach_session_input_error \
Dave Barach68b0fb02017-02-28 15:15:56 -050026_(NO_SESSION, "No session drops") \
27_(NO_LISTENER, "No listener for dst port drops") \
28_(ENQUEUED, "Packets pushed into rx fifo") \
29_(NOT_READY, "Session not ready packets") \
30_(FIFO_FULL, "Packets dropped for lack of rx fifo space") \
31_(EVENT_FIFO_FULL, "Events not sent for lack of event fifo space") \
32_(API_QUEUE_FULL, "Sessions not created for lack of API queue space") \
33_(NEW_SEG_NO_SPACE, "Created segment, couldn't allocate a fifo pair") \
Florin Corasa332c462018-01-31 06:52:17 -080034_(NO_SPACE, "Couldn't allocate a fifo pair") \
35_(SEG_CREATE, "Couldn't create a new segment")
Dave Barach68b0fb02017-02-28 15:15:56 -050036
37typedef enum
38{
39#define _(sym,str) SESSION_ERROR_##sym,
40 foreach_session_input_error
41#undef _
42 SESSION_N_ERROR,
43} session_error_t;
44
Florin Coras8e43d042018-05-04 15:46:57 -070045typedef struct session_tx_context_
46{
47 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Florin Coras288eaab2019-02-03 15:26:14 -080048 session_t *s;
Florin Coras8e43d042018-05-04 15:46:57 -070049 transport_proto_vft_t *transport_vft;
50 transport_connection_t *tc;
Florin Coras8e43d042018-05-04 15:46:57 -070051 u32 max_dequeue;
52 u32 snd_space;
53 u32 left_to_snd;
54 u32 tx_offset;
55 u32 max_len_to_snd;
56 u16 deq_per_first_buf;
57 u16 deq_per_buf;
58 u16 snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -070059 u16 n_segs_per_evt;
Florin Coras8e43d042018-05-04 15:46:57 -070060 u8 n_bufs_per_seg;
61 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
62 session_dgram_hdr_t hdr;
63} session_tx_context_t;
64
Florin Coras2062ec02019-07-15 13:15:18 -070065typedef struct session_evt_elt
66{
67 clib_llist_anchor_t evt_list;
68 session_event_t evt;
69} session_evt_elt_t;
70
Florin Coras31c99552019-03-01 13:00:58 -080071typedef struct session_worker_
Dave Barach68b0fb02017-02-28 15:15:56 -050072{
Florin Coras5a7ca7b2018-10-30 12:01:48 -070073 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Dave Barach68b0fb02017-02-28 15:15:56 -050074
Florin Coras5a7ca7b2018-10-30 12:01:48 -070075 /** Worker session pool */
Florin Coras288eaab2019-02-03 15:26:14 -080076 session_t *sessions;
Florin Coras3cbc04b2017-10-02 00:18:51 -070077
Florin Coras5a7ca7b2018-10-30 12:01:48 -070078 /** vpp event message queue for worker */
79 svm_msg_q_t *vpp_event_queue;
Florin Coras8e43d042018-05-04 15:46:57 -070080
Florin Corasd67f1122018-05-21 17:47:40 -070081 /** vlib_time_now last time around the track */
Florin Coras5a7ca7b2018-10-30 12:01:48 -070082 f64 last_vlib_time;
Florin Corasd67f1122018-05-21 17:47:40 -070083
Florin Coras60183db2019-07-20 15:53:16 -070084 /** Convenience pointer to this worker's vlib_main */
85 vlib_main_t *vm;
86
Florin Coras5a7ca7b2018-10-30 12:01:48 -070087 /** Per-proto vector of sessions to enqueue */
88 u32 *session_to_enqueue[TRANSPORT_N_PROTO];
89
90 /** Context for session tx */
91 session_tx_context_t ctx;
92
93 /** Vector of tx buffer free lists */
94 u32 *tx_buffers;
95
Florin Coras2062ec02019-07-15 13:15:18 -070096 /** Pool of session event list elements */
97 session_evt_elt_t *event_elts;
Florin Coras5a7ca7b2018-10-30 12:01:48 -070098
Florin Corasb0ffbee2019-07-21 19:23:46 -070099 /** Head of control events list */
100 clib_llist_index_t ctrl_head;
101
Florin Coras2062ec02019-07-15 13:15:18 -0700102 /** Head of list of elements */
103 clib_llist_index_t new_head;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700104
Florin Coras2062ec02019-07-15 13:15:18 -0700105 /** Head of list of pending events */
Florin Coras60183db2019-07-20 15:53:16 -0700106 clib_llist_index_t old_head;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700107
108 /** Peekers rw lock */
109 clib_rwlock_t peekers_rw_locks;
110
Florin Corascca96182019-07-19 07:34:13 -0700111#if SESSION_DEBUG
112 /** last event poll time by thread */
113 f64 last_event_poll;
114#endif
Florin Coras31c99552019-03-01 13:00:58 -0800115} session_worker_t;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700116
Florin Coras60183db2019-07-20 15:53:16 -0700117typedef int (session_fifo_rx_fn) (session_worker_t * wrk,
Florin Coras1bcad5c2019-01-09 20:04:38 -0800118 vlib_node_runtime_t * node,
Florin Coras60183db2019-07-20 15:53:16 -0700119 session_evt_elt_t * e, int *n_tx_packets);
Florin Coras1bcad5c2019-01-09 20:04:38 -0800120
121extern session_fifo_rx_fn session_tx_fifo_peek_and_snd;
122extern session_fifo_rx_fn session_tx_fifo_dequeue_and_snd;
123extern session_fifo_rx_fn session_tx_fifo_dequeue_internal;
124
125u8 session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e);
126
Florin Coras31c99552019-03-01 13:00:58 -0800127typedef struct session_main_
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700128{
129 /** Worker contexts */
Florin Coras31c99552019-03-01 13:00:58 -0800130 session_worker_t *wrk;
Dave Barach68b0fb02017-02-28 15:15:56 -0500131
Florin Corasb384b542018-01-15 01:08:33 -0800132 /** Event queues memfd segment initialized only if so configured */
133 ssvm_private_t evt_qs_segment;
134
Florin Coras93e65802017-11-29 00:07:11 -0500135 /** Unique segment name counter */
136 u32 unique_segment_name_counter;
137
138 /** Per transport rx function that can either dequeue or peek */
Florin Coras561af9b2017-12-09 10:19:43 -0800139 session_fifo_rx_fn **session_tx_fns;
140
141 /** Per session type output nodes. Could optimize to group nodes by
142 * fib but lookup would then require session type parsing in session node.
143 * Trade memory for speed, for now */
144 u32 *session_type_to_next;
Florin Coras93e65802017-11-29 00:07:11 -0500145
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700146 /*
147 * Config parameters
148 */
149
Florin Coras93e65802017-11-29 00:07:11 -0500150 /** Session manager is enabled */
151 u8 is_enabled;
152
Dave Barach10d8cc62017-05-30 09:30:07 -0400153 /** vpp fifo event queue configured length */
154 u32 configured_event_queue_length;
155
Florin Corasb384b542018-01-15 01:08:33 -0800156 /** Session ssvm segment configs*/
157 uword session_baseva;
Florin Corasa332c462018-01-31 06:52:17 -0800158 uword session_va_space_size;
Florin Corasb4c14912019-02-09 13:51:25 -0800159 uword evt_qs_segment_size;
Florin Corasb384b542018-01-15 01:08:33 -0800160 u8 evt_qs_use_memfd_seg;
161
162 /** Session table size parameters */
Florin Coras66b11312017-07-31 17:18:03 -0700163 u32 configured_v4_session_table_buckets;
164 u32 configured_v4_session_table_memory;
165 u32 configured_v4_halfopen_table_buckets;
166 u32 configured_v4_halfopen_table_memory;
167 u32 configured_v6_session_table_buckets;
168 u32 configured_v6_session_table_memory;
169 u32 configured_v6_halfopen_table_buckets;
170 u32 configured_v6_halfopen_table_memory;
171
Florin Coras93e65802017-11-29 00:07:11 -0500172 /** Transport table (preallocation) size parameters */
173 u32 local_endpoints_table_memory;
174 u32 local_endpoints_table_buckets;
Florin Corase04c2992017-03-01 08:17:34 -0800175
Dave Barach2c25a622017-06-26 11:35:07 -0400176 /** Preallocate session config parameter */
177 u32 preallocated_sessions;
178
Florin Coras31c99552019-03-01 13:00:58 -0800179} session_main_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500180
Florin Coras31c99552019-03-01 13:00:58 -0800181extern session_main_t session_main;
Florin Corase04c2992017-03-01 08:17:34 -0800182extern vlib_node_registration_t session_queue_node;
Florin Corasfd542f12018-05-16 19:28:24 -0700183extern vlib_node_registration_t session_queue_process_node;
Florin Coras653e43f2019-03-04 10:56:23 -0800184extern vlib_node_registration_t session_queue_pre_input_node;
Florin Corasfd542f12018-05-16 19:28:24 -0700185
186#define SESSION_Q_PROCESS_FLUSH_FRAMES 1
187#define SESSION_Q_PROCESS_STOP 2
Dave Barach68b0fb02017-02-28 15:15:56 -0500188
Florin Coras2062ec02019-07-15 13:15:18 -0700189static inline session_evt_elt_t *
190session_evt_elt_alloc (session_worker_t * wrk)
191{
192 session_evt_elt_t *elt;
193 pool_get (wrk->event_elts, elt);
194 return elt;
195}
196
197static inline void
198session_evt_elt_free (session_worker_t * wrk, session_evt_elt_t * elt)
199{
200 pool_put (wrk->event_elts, elt);
201}
202
Florin Coras2062ec02019-07-15 13:15:18 -0700203static inline void
Florin Coras60183db2019-07-20 15:53:16 -0700204session_evt_add_old (session_worker_t * wrk, session_evt_elt_t * elt)
Florin Coras2062ec02019-07-15 13:15:18 -0700205{
206 clib_llist_add_tail (wrk->event_elts, evt_list, elt,
Florin Corasb0ffbee2019-07-21 19:23:46 -0700207 pool_elt_at_index (wrk->event_elts, wrk->old_head));
Florin Coras2062ec02019-07-15 13:15:18 -0700208}
209
Florin Corasb0ffbee2019-07-21 19:23:46 -0700210static inline session_evt_elt_t *
211session_evt_alloc_ctrl (session_worker_t * wrk)
Florin Coras2062ec02019-07-15 13:15:18 -0700212{
Florin Corasb0ffbee2019-07-21 19:23:46 -0700213 session_evt_elt_t *elt;
214 elt = session_evt_elt_alloc (wrk);
Florin Coras2062ec02019-07-15 13:15:18 -0700215 clib_llist_add_tail (wrk->event_elts, evt_list, elt,
Florin Corasb0ffbee2019-07-21 19:23:46 -0700216 pool_elt_at_index (wrk->event_elts, wrk->ctrl_head));
217 return elt;
Florin Coras2062ec02019-07-15 13:15:18 -0700218}
219
Florin Coras26dd6de2019-07-23 23:54:47 -0700220static inline session_evt_elt_t *
221session_evt_alloc_new (session_worker_t * wrk)
222{
223 session_evt_elt_t *elt;
224 elt = session_evt_elt_alloc (wrk);
225 clib_llist_add_tail (wrk->event_elts, evt_list, elt,
226 pool_elt_at_index (wrk->event_elts, wrk->new_head));
227 return elt;
228}
229
230static inline session_evt_elt_t *
231session_evt_alloc_old (session_worker_t * wrk)
232{
233 session_evt_elt_t *elt;
234 elt = session_evt_elt_alloc (wrk);
235 clib_llist_add_tail (wrk->event_elts, evt_list, elt,
236 pool_elt_at_index (wrk->event_elts, wrk->old_head));
237 return elt;
238}
239
Dave Barach2c25a622017-06-26 11:35:07 -0400240always_inline u8
Florin Coras31c99552019-03-01 13:00:58 -0800241session_is_valid (u32 si, u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -0400242{
Florin Coras288eaab2019-02-03 15:26:14 -0800243 session_t *s;
Florin Coras31c99552019-03-01 13:00:58 -0800244 s = pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
Florin Coras653e43f2019-03-04 10:56:23 -0800245 if (s->session_state == SESSION_STATE_CLOSED)
246 return 1;
247
Florin Coras31c99552019-03-01 13:00:58 -0800248 if (s->thread_index != thread_index || s->session_index != si)
Dave Barach2c25a622017-06-26 11:35:07 -0400249 return 0;
250 return 1;
251}
252
Florin Coras288eaab2019-02-03 15:26:14 -0800253session_t *session_alloc (u32 thread_index);
Florin Coras288eaab2019-02-03 15:26:14 -0800254void session_free (session_t * s);
255void session_free_w_fifos (session_t * s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700256
Florin Coras288eaab2019-02-03 15:26:14 -0800257always_inline session_t *
Florin Corascea194d2017-10-02 00:18:51 -0700258session_get (u32 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500259{
Florin Coras31c99552019-03-01 13:00:58 -0800260 ASSERT (session_is_valid (si, thread_index));
261 return pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
Dave Barach68b0fb02017-02-28 15:15:56 -0500262}
263
Florin Coras288eaab2019-02-03 15:26:14 -0800264always_inline session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700265session_get_if_valid (u64 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500266{
Florin Coras31c99552019-03-01 13:00:58 -0800267 if (thread_index >= vec_len (session_main.wrk))
Dave Barach68b0fb02017-02-28 15:15:56 -0500268 return 0;
269
Florin Coras31c99552019-03-01 13:00:58 -0800270 if (pool_is_free_index (session_main.wrk[thread_index].sessions, si))
Dave Barach68b0fb02017-02-28 15:15:56 -0500271 return 0;
272
Florin Coras31c99552019-03-01 13:00:58 -0800273 ASSERT (session_is_valid (si, thread_index));
274 return pool_elt_at_index (session_main.wrk[thread_index].sessions, si);
Dave Barach68b0fb02017-02-28 15:15:56 -0500275}
276
Florin Coras288eaab2019-02-03 15:26:14 -0800277always_inline session_t *
Florin Corasf8f516a2018-02-08 15:10:09 -0800278session_get_from_handle (session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700279{
Florin Coras31c99552019-03-01 13:00:58 -0800280 session_main_t *smm = &session_main;
Florin Corasf8f516a2018-02-08 15:10:09 -0800281 u32 session_index, thread_index;
282 session_parse_handle (handle, &session_index, &thread_index);
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700283 return pool_elt_at_index (smm->wrk[thread_index].sessions, session_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800284}
285
Florin Coras288eaab2019-02-03 15:26:14 -0800286always_inline session_t *
Florin Corasf8f516a2018-02-08 15:10:09 -0800287session_get_from_handle_if_valid (session_handle_t handle)
288{
289 u32 session_index, thread_index;
290 session_parse_handle (handle, &session_index, &thread_index);
291 return session_get_if_valid (session_index, thread_index);
292}
293
Florin Coras31c99552019-03-01 13:00:58 -0800294u64 session_segment_handle (session_t * s);
Florin Corasfa76a762018-11-29 12:40:10 -0800295
Florin Coras3cbc04b2017-10-02 00:18:51 -0700296/**
297 * Acquires a lock that blocks a session pool from expanding.
298 *
299 * This is typically used for safely peeking into other threads'
300 * pools in order to clone elements. Lock should be dropped as soon
301 * as possible by calling @ref session_pool_remove_peeker.
302 *
303 * NOTE: Avoid using pool_elt_at_index while the lock is held because
304 * it may lead to free elt bitmap expansion/contraction!
305 */
306always_inline void
307session_pool_add_peeker (u32 thread_index)
308{
Florin Coras31c99552019-03-01 13:00:58 -0800309 session_worker_t *wrk = &session_main.wrk[thread_index];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700310 if (thread_index == vlib_get_thread_index ())
311 return;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700312 clib_rwlock_reader_lock (&wrk->peekers_rw_locks);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700313}
314
315always_inline void
316session_pool_remove_peeker (u32 thread_index)
317{
Florin Coras31c99552019-03-01 13:00:58 -0800318 session_worker_t *wrk = &session_main.wrk[thread_index];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700319 if (thread_index == vlib_get_thread_index ())
320 return;
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700321 clib_rwlock_reader_unlock (&wrk->peekers_rw_locks);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700322}
323
324/**
325 * Get session from handle and 'lock' pool resize if not in same thread
326 *
327 * Caller should drop the peek 'lock' as soon as possible.
328 */
Florin Coras288eaab2019-02-03 15:26:14 -0800329always_inline session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700330session_get_from_handle_safe (u64 handle)
331{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700332 u32 thread_index = session_thread_from_handle (handle);
Florin Coras31c99552019-03-01 13:00:58 -0800333 session_worker_t *wrk = &session_main.wrk[thread_index];
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700334
Florin Coras3cbc04b2017-10-02 00:18:51 -0700335 if (thread_index == vlib_get_thread_index ())
336 {
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700337 return pool_elt_at_index (wrk->sessions,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700338 session_index_from_handle (handle));
339 }
340 else
341 {
342 session_pool_add_peeker (thread_index);
343 /* Don't use pool_elt_at index. See @ref session_pool_add_peeker */
Florin Coras5a7ca7b2018-10-30 12:01:48 -0700344 return wrk->sessions + session_index_from_handle (handle);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700345 }
346}
347
Dave Barach68b0fb02017-02-28 15:15:56 -0500348always_inline u32
Florin Coras1ee78302019-02-05 15:51:15 -0800349session_get_index (session_t * s)
350{
Florin Coras31c99552019-03-01 13:00:58 -0800351 return (s - session_main.wrk[s->thread_index].sessions);
Florin Coras1ee78302019-02-05 15:51:15 -0800352}
353
354always_inline session_t *
355session_clone_safe (u32 session_index, u32 thread_index)
356{
357 session_t *old_s, *new_s;
358 u32 current_thread_index = vlib_get_thread_index ();
359
360 /* If during the memcpy pool is reallocated AND the memory allocator
361 * decides to give the old chunk of memory to somebody in a hurry to
362 * scribble something on it, we have a problem. So add this thread as
363 * a session pool peeker.
364 */
365 session_pool_add_peeker (thread_index);
366 new_s = session_alloc (current_thread_index);
Florin Coras31c99552019-03-01 13:00:58 -0800367 old_s = session_main.wrk[thread_index].sessions + session_index;
Florin Coras1ee78302019-02-05 15:51:15 -0800368 clib_memcpy_fast (new_s, old_s, sizeof (*new_s));
369 session_pool_remove_peeker (thread_index);
370 new_s->thread_index = current_thread_index;
371 new_s->session_index = session_get_index (new_s);
372 return new_s;
373}
374
375int session_open (u32 app_index, session_endpoint_t * tep, u32 opaque);
376int session_listen (session_t * s, session_endpoint_cfg_t * sep);
377int session_stop_listen (session_t * s);
378void session_close (session_t * s);
379void session_transport_close (session_t * s);
380void session_transport_cleanup (session_t * s);
381int session_send_io_evt_to_thread (svm_fifo_t * f,
382 session_evt_type_t evt_type);
Florin Coras653e43f2019-03-04 10:56:23 -0800383int session_enqueue_notify (session_t * s);
Florin Coras1ee78302019-02-05 15:51:15 -0800384int session_dequeue_notify (session_t * s);
385int session_send_io_evt_to_thread_custom (void *data, u32 thread_index,
386 session_evt_type_t evt_type);
387void session_send_rpc_evt_to_thread (u32 thread_index, void *fp,
388 void *rpc_args);
Nathan Skrzypczak60f3e652019-03-19 13:57:31 +0100389void session_send_rpc_evt_to_thread_force (u32 thread_index, void *fp,
390 void *rpc_args);
Florin Coras26dd6de2019-07-23 23:54:47 -0700391void session_add_self_custom_tx_evt (transport_connection_t * tc,
392 u8 has_prio);
Florin Coras1ee78302019-02-05 15:51:15 -0800393transport_connection_t *session_get_transport (session_t * s);
Florin Coras09d18c22019-04-24 11:10:02 -0700394void session_get_endpoint (session_t * s, transport_endpoint_t * tep,
395 u8 is_lcl);
Florin Coras1ee78302019-02-05 15:51:15 -0800396
Florin Coras31c99552019-03-01 13:00:58 -0800397u8 *format_session (u8 * s, va_list * args);
398uword unformat_session (unformat_input_t * input, va_list * args);
Florin Coras1ee78302019-02-05 15:51:15 -0800399uword unformat_transport_connection (unformat_input_t * input,
400 va_list * args);
401
402/*
403 * Interface to transport protos
404 */
405
406int session_enqueue_stream_connection (transport_connection_t * tc,
407 vlib_buffer_t * b, u32 offset,
408 u8 queue_event, u8 is_in_order);
409int session_enqueue_dgram_connection (session_t * s,
410 session_dgram_hdr_t * hdr,
411 vlib_buffer_t * b, u8 proto,
412 u8 queue_event);
Florin Coras1ee78302019-02-05 15:51:15 -0800413int session_stream_connect_notify (transport_connection_t * tc, u8 is_fail);
414int session_dgram_connect_notify (transport_connection_t * tc,
415 u32 old_thread_index,
416 session_t ** new_session);
Florin Corasa27a46e2019-02-18 13:02:28 -0800417int session_stream_accept_notify (transport_connection_t * tc);
Florin Coras1ee78302019-02-05 15:51:15 -0800418void session_transport_closing_notify (transport_connection_t * tc);
419void session_transport_delete_notify (transport_connection_t * tc);
420void session_transport_closed_notify (transport_connection_t * tc);
421void session_transport_reset_notify (transport_connection_t * tc);
Florin Corasc9940fc2019-02-05 20:55:11 -0800422int session_stream_accept (transport_connection_t * tc, u32 listener_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200423 u32 thread_index, u8 notify);
Florin Coras1ee78302019-02-05 15:51:15 -0800424void session_register_transport (transport_proto_t transport_proto,
425 const transport_proto_vft_t * vft, u8 is_ip4,
426 u32 output_node);
Florin Coras31c99552019-03-01 13:00:58 -0800427int session_tx_fifo_peek_bytes (transport_connection_t * tc, u8 * buffer,
428 u32 offset, u32 max_bytes);
429u32 session_tx_fifo_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
Florin Coras1ee78302019-02-05 15:51:15 -0800430
431always_inline u32
Florin Corasd2aab832018-05-22 11:39:59 -0700432transport_max_rx_enqueue (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500433{
Florin Coras288eaab2019-02-03 15:26:14 -0800434 session_t *s = session_get (tc->s_index, tc->thread_index);
Sirshak Das28aa5392019-02-05 01:33:33 -0600435 return svm_fifo_max_enqueue_prod (s->rx_fifo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500436}
437
Florin Corase04c2992017-03-01 08:17:34 -0800438always_inline u32
Florin Coras42ceddb2018-12-12 10:56:01 -0800439transport_max_tx_dequeue (transport_connection_t * tc)
440{
Florin Coras288eaab2019-02-03 15:26:14 -0800441 session_t *s = session_get (tc->s_index, tc->thread_index);
Sirshak Das28aa5392019-02-05 01:33:33 -0600442 return svm_fifo_max_dequeue_cons (s->tx_fifo);
Florin Coras42ceddb2018-12-12 10:56:01 -0800443}
444
445always_inline u32
Florin Corasf65074e2019-03-31 17:17:11 -0700446transport_max_rx_dequeue (transport_connection_t * tc)
447{
448 session_t *s = session_get (tc->s_index, tc->thread_index);
449 return svm_fifo_max_dequeue (s->rx_fifo);
450}
451
452always_inline u32
Florin Corasd2aab832018-05-22 11:39:59 -0700453transport_rx_fifo_size (transport_connection_t * tc)
Florin Corase04c2992017-03-01 08:17:34 -0800454{
Florin Coras288eaab2019-02-03 15:26:14 -0800455 session_t *s = session_get (tc->s_index, tc->thread_index);
456 return s->rx_fifo->nitems;
Florin Corase04c2992017-03-01 08:17:34 -0800457}
458
Florin Coras3cbc04b2017-10-02 00:18:51 -0700459always_inline u32
Florin Corasd2aab832018-05-22 11:39:59 -0700460transport_tx_fifo_size (transport_connection_t * tc)
461{
Florin Coras288eaab2019-02-03 15:26:14 -0800462 session_t *s = session_get (tc->s_index, tc->thread_index);
463 return s->tx_fifo->nitems;
Florin Corasd2aab832018-05-22 11:39:59 -0700464}
465
Florin Coras7ac053b2018-11-05 15:57:21 -0800466always_inline u8
467transport_rx_fifo_has_ooo_data (transport_connection_t * tc)
468{
Florin Coras288eaab2019-02-03 15:26:14 -0800469 session_t *s = session_get (tc->c_index, tc->thread_index);
470 return svm_fifo_has_ooo_data (s->rx_fifo);
Florin Coras7ac053b2018-11-05 15:57:21 -0800471}
472
Florin Corasd67f1122018-05-21 17:47:40 -0700473always_inline f64
Florin Corasd67f1122018-05-21 17:47:40 -0700474transport_time_now (u32 thread_index)
475{
Florin Coras31c99552019-03-01 13:00:58 -0800476 return session_main.wrk[thread_index].last_vlib_time;
Florin Corasd67f1122018-05-21 17:47:40 -0700477}
478
Florin Coras3ec66b02018-08-23 16:27:05 -0700479always_inline void
480transport_add_tx_event (transport_connection_t * tc)
481{
Florin Coras288eaab2019-02-03 15:26:14 -0800482 session_t *s = session_get (tc->s_index, tc->thread_index);
483 if (svm_fifo_has_event (s->tx_fifo))
Florin Coras3ec66b02018-08-23 16:27:05 -0700484 return;
Florin Corasf6c43132019-03-01 12:41:21 -0800485 session_send_io_evt_to_thread (s->tx_fifo, SESSION_IO_EVT_TX);
Florin Coras3ec66b02018-08-23 16:27:05 -0700486}
487
Florin Coras1ee78302019-02-05 15:51:15 -0800488/*
489 * Listen sessions
490 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700491
492always_inline u64
Florin Coras288eaab2019-02-03 15:26:14 -0800493listen_session_get_handle (session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700494{
Aloys Augustincdb71702019-04-08 17:54:39 +0200495 ASSERT (s->session_state == SESSION_STATE_LISTENING ||
496 session_get_transport_proto (s) == TRANSPORT_PROTO_QUIC);
Florin Coras5c9083d2018-04-13 06:39:07 -0700497 return session_handle (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700498}
499
Florin Coras288eaab2019-02-03 15:26:14 -0800500always_inline session_t *
Florin Corasf8f516a2018-02-08 15:10:09 -0800501listen_session_get_from_handle (session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700502{
Florin Coras5c9083d2018-04-13 06:39:07 -0700503 return session_get_from_handle (handle);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700504}
505
Florin Coras371ca502018-02-21 12:07:41 -0800506always_inline void
Florin Coras5c9083d2018-04-13 06:39:07 -0700507listen_session_parse_handle (session_handle_t handle, u32 * index,
508 u32 * thread_index)
Florin Coras371ca502018-02-21 12:07:41 -0800509{
Florin Coras5c9083d2018-04-13 06:39:07 -0700510 session_parse_handle (handle, index, thread_index);
Florin Coras371ca502018-02-21 12:07:41 -0800511}
512
Florin Coras288eaab2019-02-03 15:26:14 -0800513always_inline session_t *
Florin Corasba7d8f52019-02-22 13:11:38 -0800514listen_session_alloc (u8 thread_index, session_type_t type)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700515{
Florin Coras288eaab2019-02-03 15:26:14 -0800516 session_t *s;
Florin Coras5c9083d2018-04-13 06:39:07 -0700517 s = session_alloc (thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700518 s->session_type = type;
519 s->session_state = SESSION_STATE_LISTENING;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700520 return s;
521}
522
Florin Coras288eaab2019-02-03 15:26:14 -0800523always_inline session_t *
Florin Corasba7d8f52019-02-22 13:11:38 -0800524listen_session_get (u32 ls_index)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700525{
Florin Corasba7d8f52019-02-22 13:11:38 -0800526 return session_get (ls_index, 0);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700527}
528
529always_inline void
Florin Corasba7d8f52019-02-22 13:11:38 -0800530listen_session_free (session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700531{
Florin Coras5c9083d2018-04-13 06:39:07 -0700532 session_free (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700533}
534
Florin Coras288eaab2019-02-03 15:26:14 -0800535transport_connection_t *listen_session_get_transport (session_t * s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700536
Florin Coras1ee78302019-02-05 15:51:15 -0800537/*
Florin Coras31c99552019-03-01 13:00:58 -0800538 * Session layer functions
Florin Coras1ee78302019-02-05 15:51:15 -0800539 */
540
Florin Coras31c99552019-03-01 13:00:58 -0800541always_inline session_main_t *
542vnet_get_session_main ()
Florin Coras1ee78302019-02-05 15:51:15 -0800543{
Florin Coras31c99552019-03-01 13:00:58 -0800544 return &session_main;
Florin Coras1ee78302019-02-05 15:51:15 -0800545}
546
Florin Coras31c99552019-03-01 13:00:58 -0800547always_inline session_worker_t *
548session_main_get_worker (u32 thread_index)
Florin Coras1ee78302019-02-05 15:51:15 -0800549{
Florin Coras31c99552019-03-01 13:00:58 -0800550 return &session_main.wrk[thread_index];
Florin Coras1ee78302019-02-05 15:51:15 -0800551}
552
553always_inline svm_msg_q_t *
Florin Coras31c99552019-03-01 13:00:58 -0800554session_main_get_vpp_event_queue (u32 thread_index)
Florin Coras1ee78302019-02-05 15:51:15 -0800555{
Florin Coras31c99552019-03-01 13:00:58 -0800556 return session_main.wrk[thread_index].vpp_event_queue;
Florin Coras1ee78302019-02-05 15:51:15 -0800557}
Florin Corasfd542f12018-05-16 19:28:24 -0700558
Florin Coras6cf30ad2017-04-04 23:08:23 -0700559always_inline u8
Florin Coras31c99552019-03-01 13:00:58 -0800560session_main_is_enabled ()
Florin Coras6cf30ad2017-04-04 23:08:23 -0700561{
Florin Coras31c99552019-03-01 13:00:58 -0800562 return session_main.is_enabled == 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700563}
564
Florin Corascea194d2017-10-02 00:18:51 -0700565#define session_cli_return_if_not_enabled() \
566do { \
Florin Coras31c99552019-03-01 13:00:58 -0800567 if (!session_main.is_enabled) \
Florin Corascea194d2017-10-02 00:18:51 -0700568 return clib_error_return(0, "session layer is not enabled"); \
569} while (0)
570
Florin Coras31c99552019-03-01 13:00:58 -0800571int session_main_flush_enqueue_events (u8 proto, u32 thread_index);
572int session_main_flush_all_enqueue_events (u8 transport_proto);
Florin Coras1ee78302019-02-05 15:51:15 -0800573void session_flush_frames_main_thread (vlib_main_t * vm);
Florin Coras31c99552019-03-01 13:00:58 -0800574ssvm_private_t *session_main_get_evt_q_segment (void);
Dave Barach2a863912017-11-28 10:11:42 -0500575void session_node_enable_disable (u8 is_en);
Florin Coras1ee78302019-02-05 15:51:15 -0800576clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
Dave Barach2a863912017-11-28 10:11:42 -0500577
Dave Barach68b0fb02017-02-28 15:15:56 -0500578#endif /* __included_session_h__ */
579
580/*
581 * fd.io coding-style-patch-verification: ON
582 *
583 * Local Variables:
584 * eval: (c-set-style "gnu")
585 * End:
586 */