blob: aa827556d45b9fac17ff372ef673fcc2df5c8628 [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#ifndef __included_session_h__
16#define __included_session_h__
17
Florin Coras04e53442017-07-16 17:12:15 -070018#include <vnet/session/stream_session.h>
19#include <vnet/session/session_lookup.h>
20#include <vnet/session/transport_interface.h>
Florin Coras3e350af2017-03-30 02:54:28 -070021#include <vnet/session/session_debug.h>
Florin Coras6cf30ad2017-04-04 23:08:23 -070022#include <vnet/session/segment_manager.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080023#include <svm/queue.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
25#define HALF_OPEN_LOOKUP_INVALID_VALUE ((u64)~0)
26#define INVALID_INDEX ((u32)~0)
Florin Corasab2f6db2018-08-31 14:31:41 -070027#define SESSION_PROXY_LISTENER_INDEX ((u8)~0 - 1)
Florin Coras5fda7a32018-02-14 08:04:31 -080028#define SESSION_LOCAL_HANDLE_PREFIX 0x7FFFFFFF
Dave Barach68b0fb02017-02-28 15:15:56 -050029
30/* TODO decide how much since we have pre-data as well */
31#define MAX_HDRS_LEN 100 /* Max number of bytes for headers */
32
33typedef enum
34{
Florin Corasa5464812017-04-19 13:00:05 -070035 FIFO_EVENT_APP_RX,
Florin Coras460dce62018-07-27 05:45:06 -070036 SESSION_IO_EVT_CT_RX,
Florin Corasa5464812017-04-19 13:00:05 -070037 FIFO_EVENT_APP_TX,
Florin Coras460dce62018-07-27 05:45:06 -070038 SESSION_IO_EVT_CT_TX,
Florin Corasa5464812017-04-19 13:00:05 -070039 FIFO_EVENT_DISCONNECT,
Dave Barache5f1d272017-05-10 13:34:04 -040040 FIFO_EVENT_BUILTIN_RX,
41 FIFO_EVENT_RPC,
Florin Coras60116992018-08-27 09:52:18 -070042 SESSION_CTRL_EVT_BOUND,
Florin Coras52207f12018-07-12 14:48:06 -070043 SESSION_CTRL_EVT_ACCEPTED,
44 SESSION_CTRL_EVT_ACCEPTED_REPLY,
45 SESSION_CTRL_EVT_CONNECTED,
46 SESSION_CTRL_EVT_CONNECTED_REPLY,
47 SESSION_CTRL_EVT_DISCONNECTED,
48 SESSION_CTRL_EVT_DISCONNECTED_REPLY,
49 SESSION_CTRL_EVT_RESET,
50 SESSION_CTRL_EVT_RESET_REPLY
Florin Coras3c2fed52018-07-04 04:15:05 -070051} session_evt_type_t;
Dave Barach68b0fb02017-02-28 15:15:56 -050052
Dave Wallace33e002b2017-09-06 01:20:02 -040053static inline const char *
Florin Coras3c2fed52018-07-04 04:15:05 -070054fifo_event_type_str (session_evt_type_t et)
Dave Wallace33e002b2017-09-06 01:20:02 -040055{
56 switch (et)
57 {
58 case FIFO_EVENT_APP_RX:
59 return "FIFO_EVENT_APP_RX";
60 case FIFO_EVENT_APP_TX:
61 return "FIFO_EVENT_APP_TX";
Dave Wallace33e002b2017-09-06 01:20:02 -040062 case FIFO_EVENT_DISCONNECT:
63 return "FIFO_EVENT_DISCONNECT";
64 case FIFO_EVENT_BUILTIN_RX:
65 return "FIFO_EVENT_BUILTIN_RX";
66 case FIFO_EVENT_RPC:
67 return "FIFO_EVENT_RPC";
68 default:
69 return "UNKNOWN FIFO EVENT";
70 }
71}
72
Florin Coras3c2fed52018-07-04 04:15:05 -070073typedef enum
74{
75 SESSION_MQ_IO_EVT_RING,
76 SESSION_MQ_CTRL_EVT_RING,
77 SESSION_MQ_N_RINGS
78} session_mq_rings_e;
79
Florin Coras3e350af2017-03-30 02:54:28 -070080#define foreach_session_input_error \
Dave Barach68b0fb02017-02-28 15:15:56 -050081_(NO_SESSION, "No session drops") \
82_(NO_LISTENER, "No listener for dst port drops") \
83_(ENQUEUED, "Packets pushed into rx fifo") \
84_(NOT_READY, "Session not ready packets") \
85_(FIFO_FULL, "Packets dropped for lack of rx fifo space") \
86_(EVENT_FIFO_FULL, "Events not sent for lack of event fifo space") \
87_(API_QUEUE_FULL, "Sessions not created for lack of API queue space") \
88_(NEW_SEG_NO_SPACE, "Created segment, couldn't allocate a fifo pair") \
Florin Corasa332c462018-01-31 06:52:17 -080089_(NO_SPACE, "Couldn't allocate a fifo pair") \
90_(SEG_CREATE, "Couldn't create a new segment")
Dave Barach68b0fb02017-02-28 15:15:56 -050091
92typedef enum
93{
94#define _(sym,str) SESSION_ERROR_##sym,
95 foreach_session_input_error
96#undef _
97 SESSION_N_ERROR,
98} session_error_t;
99
Dave Barache5f1d272017-05-10 13:34:04 -0400100typedef struct
101{
102 void *fp;
103 void *arg;
Florin Coras3c2fed52018-07-04 04:15:05 -0700104} session_rpc_args_t;
Dave Barache5f1d272017-05-10 13:34:04 -0400105
Florin Corasf8f516a2018-02-08 15:10:09 -0800106typedef u64 session_handle_t;
107
Florin Coras6792ec02017-03-13 03:49:51 -0700108/* *INDENT-OFF* */
Florin Coras3c2fed52018-07-04 04:15:05 -0700109typedef struct
110{
Florin Coras6792ec02017-03-13 03:49:51 -0700111 u8 event_type;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700112 u8 postponed;
Florin Coras3c2fed52018-07-04 04:15:05 -0700113 union
114 {
115 svm_fifo_t *fifo;
116 session_handle_t session_handle;
117 session_rpc_args_t rpc_args;
118 struct
119 {
120 u8 data[0];
121 };
122 };
Florin Coras52207f12018-07-12 14:48:06 -0700123} __clib_packed session_event_t;
Florin Coras6792ec02017-03-13 03:49:51 -0700124/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500125
Florin Coras3c2fed52018-07-04 04:15:05 -0700126#define SESSION_MSG_NULL { }
127
Florin Coras8e43d042018-05-04 15:46:57 -0700128typedef struct session_dgram_pre_hdr_
129{
130 u32 data_length;
131 u32 data_offset;
132} session_dgram_pre_hdr_t;
133
134/* *INDENT-OFF* */
135typedef CLIB_PACKED (struct session_dgram_header_
136{
137 u32 data_length;
138 u32 data_offset;
139 ip46_address_t rmt_ip;
140 ip46_address_t lcl_ip;
141 u16 rmt_port;
142 u16 lcl_port;
143 u8 is_ip4;
144}) session_dgram_hdr_t;
145/* *INDENT-ON* */
146
147#define SESSION_CONN_ID_LEN 37
148#define SESSION_CONN_HDR_LEN 45
149
150STATIC_ASSERT (sizeof (session_dgram_hdr_t) == (SESSION_CONN_ID_LEN + 8),
151 "session conn id wrong length");
152
153typedef struct session_tx_context_
154{
155 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
156 stream_session_t *s;
157 transport_proto_vft_t *transport_vft;
158 transport_connection_t *tc;
159 vlib_buffer_t *b;
160 u32 max_dequeue;
161 u32 snd_space;
162 u32 left_to_snd;
163 u32 tx_offset;
164 u32 max_len_to_snd;
165 u16 deq_per_first_buf;
166 u16 deq_per_buf;
167 u16 snd_mss;
Florin Corasf08f26d2018-05-10 13:20:47 -0700168 u16 n_segs_per_evt;
Florin Coras8e43d042018-05-04 15:46:57 -0700169 u8 n_bufs_per_seg;
170 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
171 session_dgram_hdr_t hdr;
172} session_tx_context_t;
173
Dave Barach68b0fb02017-02-28 15:15:56 -0500174/* Forward definition */
175typedef struct _session_manager_main session_manager_main_t;
176
177typedef int
178 (session_fifo_rx_fn) (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras52207f12018-07-12 14:48:06 -0700179 session_event_t * e0, stream_session_t * s0,
Florin Coras8e43d042018-05-04 15:46:57 -0700180 int *n_tx_pkts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500181
Florin Corasd79b41e2017-03-04 05:37:52 -0800182extern session_fifo_rx_fn session_tx_fifo_peek_and_snd;
183extern session_fifo_rx_fn session_tx_fifo_dequeue_and_snd;
Florin Coras371ca502018-02-21 12:07:41 -0800184extern session_fifo_rx_fn session_tx_fifo_dequeue_internal;
Dave Barach68b0fb02017-02-28 15:15:56 -0500185
Florin Coras52207f12018-07-12 14:48:06 -0700186u8 session_node_lookup_fifo_event (svm_fifo_t * f, session_event_t * e);
Florin Coras6534b7a2017-07-18 05:38:03 -0400187
Dave Barach68b0fb02017-02-28 15:15:56 -0500188struct _session_manager_main
189{
Dave Barach68b0fb02017-02-28 15:15:56 -0500190 /** Per worker thread session pools */
191 stream_session_t **sessions;
192
Florin Coras84a30ef2018-01-24 10:49:23 -0800193 /** Per worker-thread session pool peekers rw locks */
194 clib_rwlock_t *peekers_rw_locks;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700195
Florin Coras3cbc04b2017-10-02 00:18:51 -0700196 /** Per-proto, per-worker enqueue epoch counters */
Florin Coras93e65802017-11-29 00:07:11 -0500197 u32 *current_enqueue_epoch[TRANSPORT_N_PROTO];
Dave Barach68b0fb02017-02-28 15:15:56 -0500198
Florin Coras3cbc04b2017-10-02 00:18:51 -0700199 /** Per-proto, per-worker thread vector of sessions to enqueue */
200 u32 **session_to_enqueue[TRANSPORT_N_PROTO];
Dave Barach68b0fb02017-02-28 15:15:56 -0500201
202 /** per-worker tx buffer free lists */
203 u32 **tx_buffers;
204
205 /** Per worker-thread vector of partially read events */
Florin Coras52207f12018-07-12 14:48:06 -0700206 session_event_t **free_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500207
208 /** per-worker active event vectors */
Florin Coras52207f12018-07-12 14:48:06 -0700209 session_event_t **pending_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500210
Florin Coras3cbc04b2017-10-02 00:18:51 -0700211 /** per-worker postponed disconnects */
Florin Coras52207f12018-07-12 14:48:06 -0700212 session_event_t **pending_disconnects;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700213
Florin Coras8e43d042018-05-04 15:46:57 -0700214 /** per-worker session context */
215 session_tx_context_t *ctx;
216
Dave Barach68b0fb02017-02-28 15:15:56 -0500217 /** vpp fifo event queue */
Florin Coras3c2fed52018-07-04 04:15:05 -0700218 svm_msg_q_t **vpp_event_queues;
Dave Barach68b0fb02017-02-28 15:15:56 -0500219
Florin Corasb384b542018-01-15 01:08:33 -0800220 /** Event queues memfd segment initialized only if so configured */
221 ssvm_private_t evt_qs_segment;
222
Florin Coras93e65802017-11-29 00:07:11 -0500223 /** Unique segment name counter */
224 u32 unique_segment_name_counter;
225
226 /** Per transport rx function that can either dequeue or peek */
Florin Coras561af9b2017-12-09 10:19:43 -0800227 session_fifo_rx_fn **session_tx_fns;
228
229 /** Per session type output nodes. Could optimize to group nodes by
230 * fib but lookup would then require session type parsing in session node.
231 * Trade memory for speed, for now */
232 u32 *session_type_to_next;
Florin Coras93e65802017-11-29 00:07:11 -0500233
234 /** Session manager is enabled */
235 u8 is_enabled;
236
Dave Barach10d8cc62017-05-30 09:30:07 -0400237 /** vpp fifo event queue configured length */
238 u32 configured_event_queue_length;
239
Florin Coras93e65802017-11-29 00:07:11 -0500240 /*
241 * Config parameters
242 */
243
Florin Corasb384b542018-01-15 01:08:33 -0800244 /** Session ssvm segment configs*/
245 uword session_baseva;
Florin Corasa332c462018-01-31 06:52:17 -0800246 uword session_va_space_size;
Florin Corasb384b542018-01-15 01:08:33 -0800247 u32 evt_qs_segment_size;
248 u8 evt_qs_use_memfd_seg;
249
250 /** Session table size parameters */
Florin Coras66b11312017-07-31 17:18:03 -0700251 u32 configured_v4_session_table_buckets;
252 u32 configured_v4_session_table_memory;
253 u32 configured_v4_halfopen_table_buckets;
254 u32 configured_v4_halfopen_table_memory;
255 u32 configured_v6_session_table_buckets;
256 u32 configured_v6_session_table_memory;
257 u32 configured_v6_halfopen_table_buckets;
258 u32 configured_v6_halfopen_table_memory;
259
Florin Coras93e65802017-11-29 00:07:11 -0500260 /** Transport table (preallocation) size parameters */
261 u32 local_endpoints_table_memory;
262 u32 local_endpoints_table_buckets;
Florin Corase04c2992017-03-01 08:17:34 -0800263
Dave Barach2c25a622017-06-26 11:35:07 -0400264 /** Preallocate session config parameter */
265 u32 preallocated_sessions;
266
Florin Corasc1a448b2018-04-20 10:51:49 -0700267#if SESSION_DEBUG
Florin Coras3e350af2017-03-30 02:54:28 -0700268 /**
269 * last event poll time by thread
270 * Debug only. Will cause false cache-line sharing as-is
271 */
272 f64 *last_event_poll_by_thread;
273#endif
274
Dave Barach68b0fb02017-02-28 15:15:56 -0500275};
276
277extern session_manager_main_t session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -0800278extern vlib_node_registration_t session_queue_node;
Florin Corasfd542f12018-05-16 19:28:24 -0700279extern vlib_node_registration_t session_queue_process_node;
280
281#define SESSION_Q_PROCESS_FLUSH_FRAMES 1
282#define SESSION_Q_PROCESS_STOP 2
Dave Barach68b0fb02017-02-28 15:15:56 -0500283
284/*
285 * Session manager function
286 */
287always_inline session_manager_main_t *
288vnet_get_session_manager_main ()
289{
290 return &session_manager_main;
291}
292
Dave Barach2c25a622017-06-26 11:35:07 -0400293always_inline u8
294stream_session_is_valid (u32 si, u8 thread_index)
295{
296 stream_session_t *s;
297 s = pool_elt_at_index (session_manager_main.sessions[thread_index], si);
298 if (s->thread_index != thread_index || s->session_index != si
Dave Barach52851e62017-08-07 09:35:25 -0400299 /* || s->server_rx_fifo->master_session_index != si
300 || s->server_tx_fifo->master_session_index != si
301 || s->server_rx_fifo->master_thread_index != thread_index
302 || s->server_tx_fifo->master_thread_index != thread_index */ )
Dave Barach2c25a622017-06-26 11:35:07 -0400303 return 0;
304 return 1;
305}
306
Florin Coras3cbc04b2017-10-02 00:18:51 -0700307stream_session_t *session_alloc (u32 thread_index);
Florin Coras371ca502018-02-21 12:07:41 -0800308int session_alloc_fifos (segment_manager_t * sm, stream_session_t * s);
309void session_free (stream_session_t * s);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700310
Dave Barach68b0fb02017-02-28 15:15:56 -0500311always_inline stream_session_t *
Florin Corascea194d2017-10-02 00:18:51 -0700312session_get (u32 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500313{
Dave Barach2c25a622017-06-26 11:35:07 -0400314 ASSERT (stream_session_is_valid (si, thread_index));
Dave Barach68b0fb02017-02-28 15:15:56 -0500315 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
316}
317
318always_inline stream_session_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700319session_get_if_valid (u64 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500320{
321 if (thread_index >= vec_len (session_manager_main.sessions))
322 return 0;
323
324 if (pool_is_free_index (session_manager_main.sessions[thread_index], si))
325 return 0;
326
Dave Barach2c25a622017-06-26 11:35:07 -0400327 ASSERT (stream_session_is_valid (si, thread_index));
Dave Barach68b0fb02017-02-28 15:15:56 -0500328 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
329}
330
Florin Corasf8f516a2018-02-08 15:10:09 -0800331always_inline session_handle_t
Florin Coras3cbc04b2017-10-02 00:18:51 -0700332session_handle (stream_session_t * s)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700333{
334 return ((u64) s->thread_index << 32) | (u64) s->session_index;
335}
336
337always_inline u32
Florin Corasf8f516a2018-02-08 15:10:09 -0800338session_index_from_handle (session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700339{
340 return handle & 0xFFFFFFFF;
341}
342
343always_inline u32
Florin Corasf8f516a2018-02-08 15:10:09 -0800344session_thread_from_handle (session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700345{
346 return handle >> 32;
347}
348
349always_inline void
Florin Corasf8f516a2018-02-08 15:10:09 -0800350session_parse_handle (session_handle_t handle, u32 * index,
351 u32 * thread_index)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700352{
Florin Corascea194d2017-10-02 00:18:51 -0700353 *index = session_index_from_handle (handle);
354 *thread_index = session_thread_from_handle (handle);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700355}
356
357always_inline stream_session_t *
Florin Corasf8f516a2018-02-08 15:10:09 -0800358session_get_from_handle (session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700359{
360 session_manager_main_t *smm = &session_manager_main;
Florin Corasf8f516a2018-02-08 15:10:09 -0800361 u32 session_index, thread_index;
362 session_parse_handle (handle, &session_index, &thread_index);
363 return pool_elt_at_index (smm->sessions[thread_index], session_index);
364}
365
366always_inline stream_session_t *
367session_get_from_handle_if_valid (session_handle_t handle)
368{
369 u32 session_index, thread_index;
370 session_parse_handle (handle, &session_index, &thread_index);
371 return session_get_if_valid (session_index, thread_index);
372}
373
374always_inline u8
375session_handle_is_local (session_handle_t handle)
376{
Florin Coras5fda7a32018-02-14 08:04:31 -0800377 if ((handle >> 32) == SESSION_LOCAL_HANDLE_PREFIX)
Florin Corasf8f516a2018-02-08 15:10:09 -0800378 return 1;
379 return 0;
380}
381
382always_inline transport_proto_t
383session_type_transport_proto (session_type_t st)
384{
385 return (st >> 1);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700386}
387
Florin Coras5fda7a32018-02-14 08:04:31 -0800388always_inline u8
389session_type_is_ip4 (session_type_t st)
390{
391 return (st & 1);
392}
393
Florin Coras561af9b2017-12-09 10:19:43 -0800394always_inline transport_proto_t
395session_get_transport_proto (stream_session_t * s)
396{
397 return (s->session_type >> 1);
398}
399
Florin Corasf8f516a2018-02-08 15:10:09 -0800400always_inline fib_protocol_t
401session_get_fib_proto (stream_session_t * s)
402{
403 u8 is_ip4 = s->session_type & 1;
404 return (is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6);
405}
406
Florin Coras561af9b2017-12-09 10:19:43 -0800407always_inline session_type_t
408session_type_from_proto_and_ip (transport_proto_t proto, u8 is_ip4)
409{
410 return (proto << 1 | is_ip4);
411}
412
Florin Corasf8f516a2018-02-08 15:10:09 -0800413always_inline u8
414session_has_transport (stream_session_t * s)
415{
416 return (session_get_transport_proto (s) != TRANSPORT_PROTO_NONE);
417}
418
Florin Corasf08f26d2018-05-10 13:20:47 -0700419transport_service_type_t session_transport_service_type (stream_session_t *);
420transport_tx_fn_type_t session_transport_tx_fn_type (stream_session_t *);
421u8 session_tx_is_dgram (stream_session_t * s);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700422
Florin Coras3cbc04b2017-10-02 00:18:51 -0700423/**
424 * Acquires a lock that blocks a session pool from expanding.
425 *
426 * This is typically used for safely peeking into other threads'
427 * pools in order to clone elements. Lock should be dropped as soon
428 * as possible by calling @ref session_pool_remove_peeker.
429 *
430 * NOTE: Avoid using pool_elt_at_index while the lock is held because
431 * it may lead to free elt bitmap expansion/contraction!
432 */
433always_inline void
434session_pool_add_peeker (u32 thread_index)
435{
436 session_manager_main_t *smm = &session_manager_main;
437 if (thread_index == vlib_get_thread_index ())
438 return;
Florin Coras84a30ef2018-01-24 10:49:23 -0800439 clib_rwlock_reader_lock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700440}
441
442always_inline void
443session_pool_remove_peeker (u32 thread_index)
444{
445 session_manager_main_t *smm = &session_manager_main;
446 if (thread_index == vlib_get_thread_index ())
447 return;
Florin Coras84a30ef2018-01-24 10:49:23 -0800448 clib_rwlock_reader_unlock (&smm->peekers_rw_locks[thread_index]);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700449}
450
451/**
452 * Get session from handle and 'lock' pool resize if not in same thread
453 *
454 * Caller should drop the peek 'lock' as soon as possible.
455 */
456always_inline stream_session_t *
457session_get_from_handle_safe (u64 handle)
458{
459 session_manager_main_t *smm = &session_manager_main;
460 u32 thread_index = session_thread_from_handle (handle);
461 if (thread_index == vlib_get_thread_index ())
462 {
463 return pool_elt_at_index (smm->sessions[thread_index],
464 session_index_from_handle (handle));
465 }
466 else
467 {
468 session_pool_add_peeker (thread_index);
469 /* Don't use pool_elt_at index. See @ref session_pool_add_peeker */
470 return smm->sessions[thread_index] + session_index_from_handle (handle);
471 }
472}
473
Dave Barach68b0fb02017-02-28 15:15:56 -0500474always_inline u32
Florin Corasd2aab832018-05-22 11:39:59 -0700475transport_max_rx_enqueue (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500476{
Florin Corascea194d2017-10-02 00:18:51 -0700477 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500478 return svm_fifo_max_enqueue (s->server_rx_fifo);
479}
480
Florin Corase04c2992017-03-01 08:17:34 -0800481always_inline u32
Florin Corasd2aab832018-05-22 11:39:59 -0700482transport_rx_fifo_size (transport_connection_t * tc)
Florin Corase04c2992017-03-01 08:17:34 -0800483{
Florin Corascea194d2017-10-02 00:18:51 -0700484 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corase04c2992017-03-01 08:17:34 -0800485 return s->server_rx_fifo->nitems;
486}
487
Florin Coras3cbc04b2017-10-02 00:18:51 -0700488always_inline u32
Florin Corasd2aab832018-05-22 11:39:59 -0700489transport_tx_fifo_size (transport_connection_t * tc)
490{
491 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
492 return s->server_tx_fifo->nitems;
493}
494
495always_inline u32
Florin Coras3cbc04b2017-10-02 00:18:51 -0700496session_get_index (stream_session_t * s)
497{
498 return (s - session_manager_main.sessions[s->thread_index]);
499}
500
501always_inline stream_session_t *
502session_clone_safe (u32 session_index, u32 thread_index)
503{
504 stream_session_t *old_s, *new_s;
505 u32 current_thread_index = vlib_get_thread_index ();
506
507 /* If during the memcpy pool is reallocated AND the memory allocator
508 * decides to give the old chunk of memory to somebody in a hurry to
509 * scribble something on it, we have a problem. So add this thread as
510 * a session pool peeker.
511 */
512 session_pool_add_peeker (thread_index);
513 new_s = session_alloc (current_thread_index);
514 old_s = session_manager_main.sessions[thread_index] + session_index;
515 clib_memcpy (new_s, old_s, sizeof (*new_s));
516 session_pool_remove_peeker (thread_index);
517 new_s->thread_index = current_thread_index;
518 new_s->session_index = session_get_index (new_s);
519 return new_s;
520}
521
522transport_connection_t *session_get_transport (stream_session_t * s);
523
Florin Coras25579b42018-06-06 17:55:02 -0700524u32 session_tx_fifo_max_dequeue (transport_connection_t * tc);
Florin Coras93992a92017-05-24 18:03:56 -0700525
Dave Barach68b0fb02017-02-28 15:15:56 -0500526int
Florin Coras3cbc04b2017-10-02 00:18:51 -0700527session_enqueue_stream_connection (transport_connection_t * tc,
528 vlib_buffer_t * b, u32 offset,
529 u8 queue_event, u8 is_in_order);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700530int session_enqueue_dgram_connection (stream_session_t * s,
531 session_dgram_hdr_t * hdr,
532 vlib_buffer_t * b, u8 proto,
533 u8 queue_event);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700534int stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
535 u32 offset, u32 max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500536u32 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
537
Florin Coras3cbc04b2017-10-02 00:18:51 -0700538int session_stream_connect_notify (transport_connection_t * tc, u8 is_fail);
539int session_dgram_connect_notify (transport_connection_t * tc,
540 u32 old_thread_index,
541 stream_session_t ** new_session);
Florin Coras0d60a0f2018-06-29 02:02:08 -0700542int session_dequeue_notify (stream_session_t * s);
Florin Corasc28764f2017-04-26 00:08:42 -0700543void stream_session_init_fifos_pointers (transport_connection_t * tc,
544 u32 rx_pointer, u32 tx_pointer);
Florin Corase69f4952017-03-07 10:06:24 -0800545
Dave Barach68b0fb02017-02-28 15:15:56 -0500546void stream_session_accept_notify (transport_connection_t * tc);
547void stream_session_disconnect_notify (transport_connection_t * tc);
548void stream_session_delete_notify (transport_connection_t * tc);
549void stream_session_reset_notify (transport_connection_t * tc);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700550int stream_session_accept (transport_connection_t * tc, u32 listener_index,
551 u8 notify);
552int session_open (u32 app_index, session_endpoint_t * tep, u32 opaque);
Florin Corasab2f6db2018-08-31 14:31:41 -0700553int session_listen (stream_session_t * s, session_endpoint_extended_t * sep);
554int session_stop_listen (stream_session_t * s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500555void stream_session_disconnect (stream_session_t * s);
Florin Coras2f8d8fa2018-01-26 06:36:04 -0800556void stream_session_disconnect_transport (stream_session_t * s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500557void stream_session_cleanup (stream_session_t * s);
Florin Coras3c2fed52018-07-04 04:15:05 -0700558int session_send_io_evt_to_thread (svm_fifo_t * f,
559 session_evt_type_t evt_type);
560int session_send_io_evt_to_thread_custom (svm_fifo_t * f, u32 thread_index,
561 session_evt_type_t evt_type);
562void session_send_rpc_evt_to_thread (u32 thread_index, void *fp,
563 void *rpc_args);
Florin Coras568ebc72018-09-18 16:12:50 -0700564
Florin Corasb384b542018-01-15 01:08:33 -0800565ssvm_private_t *session_manager_get_evt_q_segment (void);
Florin Coras3eb50622017-07-13 01:24:57 -0400566
Dave Barach68b0fb02017-02-28 15:15:56 -0500567u8 *format_stream_session (u8 * s, va_list * args);
Florin Coras3eb50622017-07-13 01:24:57 -0400568uword unformat_stream_session (unformat_input_t * input, va_list * args);
569uword unformat_transport_connection (unformat_input_t * input,
570 va_list * args);
571
Florin Coras561af9b2017-12-09 10:19:43 -0800572void session_register_transport (transport_proto_t transport_proto,
573 const transport_proto_vft_t * vft, u8 is_ip4,
574 u32 output_node);
Dave Barach68b0fb02017-02-28 15:15:56 -0500575
Florin Coras3ec66b02018-08-23 16:27:05 -0700576always_inline void
577transport_add_tx_event (transport_connection_t * tc)
578{
579 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
580 if (svm_fifo_has_event (s->server_tx_fifo))
581 return;
582 session_send_io_evt_to_thread (s->server_tx_fifo, FIFO_EVENT_APP_TX);
583}
584
Florin Corase04c2992017-03-01 08:17:34 -0800585clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
586
Florin Coras3c2fed52018-07-04 04:15:05 -0700587always_inline svm_msg_q_t *
Florin Coras6cf30ad2017-04-04 23:08:23 -0700588session_manager_get_vpp_event_queue (u32 thread_index)
589{
590 return session_manager_main.vpp_event_queues[thread_index];
591}
592
Florin Coras3cbc04b2017-10-02 00:18:51 -0700593int session_manager_flush_enqueue_events (u8 proto, u32 thread_index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700594int session_manager_flush_all_enqueue_events (u8 transport_proto);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700595
596always_inline u64
597listen_session_get_handle (stream_session_t * s)
598{
599 ASSERT (s->session_state == SESSION_STATE_LISTENING);
Florin Coras5c9083d2018-04-13 06:39:07 -0700600 return session_handle (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700601}
602
603always_inline stream_session_t *
Florin Corasf8f516a2018-02-08 15:10:09 -0800604listen_session_get_from_handle (session_handle_t handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700605{
Florin Coras5c9083d2018-04-13 06:39:07 -0700606 return session_get_from_handle (handle);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700607}
608
Florin Coras371ca502018-02-21 12:07:41 -0800609always_inline void
Florin Coras5c9083d2018-04-13 06:39:07 -0700610listen_session_parse_handle (session_handle_t handle, u32 * index,
611 u32 * thread_index)
Florin Coras371ca502018-02-21 12:07:41 -0800612{
Florin Coras5c9083d2018-04-13 06:39:07 -0700613 session_parse_handle (handle, index, thread_index);
Florin Coras371ca502018-02-21 12:07:41 -0800614}
615
Florin Coras6cf30ad2017-04-04 23:08:23 -0700616always_inline stream_session_t *
Florin Coras5c9083d2018-04-13 06:39:07 -0700617listen_session_new (u8 thread_index, session_type_t type)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700618{
619 stream_session_t *s;
Florin Coras5c9083d2018-04-13 06:39:07 -0700620 s = session_alloc (thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700621 s->session_type = type;
622 s->session_state = SESSION_STATE_LISTENING;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700623 return s;
624}
625
626always_inline stream_session_t *
Florin Coras5c9083d2018-04-13 06:39:07 -0700627listen_session_get (u32 index)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700628{
Florin Coras5c9083d2018-04-13 06:39:07 -0700629 return session_get (index, 0);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700630}
631
632always_inline void
633listen_session_del (stream_session_t * s)
634{
Florin Coras5c9083d2018-04-13 06:39:07 -0700635 session_free (s);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700636}
637
Florin Coras3cbc04b2017-10-02 00:18:51 -0700638transport_connection_t *listen_session_get_transport (stream_session_t * s);
639
Florin Corascea194d2017-10-02 00:18:51 -0700640int
641listen_session_get_local_session_endpoint (stream_session_t * listener,
642 session_endpoint_t * sep);
643
Florin Corasfd542f12018-05-16 19:28:24 -0700644void session_flush_frames_main_thread (vlib_main_t * vm);
645
Florin Coras6cf30ad2017-04-04 23:08:23 -0700646always_inline u8
647session_manager_is_enabled ()
648{
649 return session_manager_main.is_enabled == 1;
650}
651
Florin Corascea194d2017-10-02 00:18:51 -0700652#define session_cli_return_if_not_enabled() \
653do { \
654 if (!session_manager_main.is_enabled) \
655 return clib_error_return(0, "session layer is not enabled"); \
656} while (0)
657
Dave Barach2a863912017-11-28 10:11:42 -0500658void session_node_enable_disable (u8 is_en);
659
Dave Barach68b0fb02017-02-28 15:15:56 -0500660#endif /* __included_session_h__ */
661
662/*
663 * fd.io coding-style-patch-verification: ON
664 *
665 * Local Variables:
666 * eval: (c-set-style "gnu")
667 * End:
668 */