blob: 74d82a408dce1791a79c5a78af6b75663bcb7f6d [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>
Dave Barach68b0fb02017-02-28 15:15:56 -050021#include <vlibmemory/unix_shared_memory_queue.h>
Florin Coras3e350af2017-03-30 02:54:28 -070022#include <vnet/session/session_debug.h>
Florin Coras6cf30ad2017-04-04 23:08:23 -070023#include <vnet/session/segment_manager.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
25#define HALF_OPEN_LOOKUP_INVALID_VALUE ((u64)~0)
26#define INVALID_INDEX ((u32)~0)
27
28/* TODO decide how much since we have pre-data as well */
29#define MAX_HDRS_LEN 100 /* Max number of bytes for headers */
30
31typedef enum
32{
Florin Corasa5464812017-04-19 13:00:05 -070033 FIFO_EVENT_APP_RX,
34 FIFO_EVENT_APP_TX,
Dave Barach68b0fb02017-02-28 15:15:56 -050035 FIFO_EVENT_TIMEOUT,
Florin Corasa5464812017-04-19 13:00:05 -070036 FIFO_EVENT_DISCONNECT,
Dave Barache5f1d272017-05-10 13:34:04 -040037 FIFO_EVENT_BUILTIN_RX,
38 FIFO_EVENT_RPC,
Dave Barach68b0fb02017-02-28 15:15:56 -050039} fifo_event_type_t;
40
Florin Coras3e350af2017-03-30 02:54:28 -070041#define foreach_session_input_error \
Dave Barach68b0fb02017-02-28 15:15:56 -050042_(NO_SESSION, "No session drops") \
43_(NO_LISTENER, "No listener for dst port drops") \
44_(ENQUEUED, "Packets pushed into rx fifo") \
45_(NOT_READY, "Session not ready packets") \
46_(FIFO_FULL, "Packets dropped for lack of rx fifo space") \
47_(EVENT_FIFO_FULL, "Events not sent for lack of event fifo space") \
48_(API_QUEUE_FULL, "Sessions not created for lack of API queue space") \
49_(NEW_SEG_NO_SPACE, "Created segment, couldn't allocate a fifo pair") \
50_(NO_SPACE, "Couldn't allocate a fifo pair")
51
52typedef enum
53{
54#define _(sym,str) SESSION_ERROR_##sym,
55 foreach_session_input_error
56#undef _
57 SESSION_N_ERROR,
58} session_error_t;
59
60/* Event queue input node static next indices */
61typedef enum
62{
63 SESSION_QUEUE_NEXT_DROP,
64 SESSION_QUEUE_NEXT_TCP_IP4_OUTPUT,
65 SESSION_QUEUE_NEXT_IP4_LOOKUP,
66 SESSION_QUEUE_NEXT_TCP_IP6_OUTPUT,
67 SESSION_QUEUE_NEXT_IP6_LOOKUP,
68 SESSION_QUEUE_N_NEXT,
69} session_queue_next_t;
70
Dave Barache5f1d272017-05-10 13:34:04 -040071typedef struct
72{
73 void *fp;
74 void *arg;
75} rpc_args_t;
76
Florin Coras6792ec02017-03-13 03:49:51 -070077/* *INDENT-OFF* */
78typedef CLIB_PACKED (struct {
Florin Corasa5464812017-04-19 13:00:05 -070079 union
80 {
81 svm_fifo_t * fifo;
82 u64 session_handle;
Dave Barache5f1d272017-05-10 13:34:04 -040083 rpc_args_t rpc_args;
Florin Corasa5464812017-04-19 13:00:05 -070084 };
Florin Coras6792ec02017-03-13 03:49:51 -070085 u8 event_type;
86 u16 event_id;
87}) session_fifo_event_t;
88/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -050089
Dave Barach68b0fb02017-02-28 15:15:56 -050090/* Forward definition */
91typedef struct _session_manager_main session_manager_main_t;
92
93typedef int
94 (session_fifo_rx_fn) (vlib_main_t * vm, vlib_node_runtime_t * node,
95 session_manager_main_t * smm,
96 session_fifo_event_t * e0, stream_session_t * s0,
97 u32 thread_index, int *n_tx_pkts);
98
Florin Corasd79b41e2017-03-04 05:37:52 -080099extern session_fifo_rx_fn session_tx_fifo_peek_and_snd;
100extern session_fifo_rx_fn session_tx_fifo_dequeue_and_snd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500101
Florin Coras6534b7a2017-07-18 05:38:03 -0400102u8 session_node_lookup_fifo_event (svm_fifo_t * f, session_fifo_event_t * e);
103
Dave Barach68b0fb02017-02-28 15:15:56 -0500104struct _session_manager_main
105{
Dave Barach68b0fb02017-02-28 15:15:56 -0500106 /** Per worker thread session pools */
107 stream_session_t **sessions;
108
109 /** Pool of listen sessions. Same type as stream sessions to ease lookups */
110 stream_session_t *listen_sessions[SESSION_N_TYPES];
111
112 /** Sparse vector to map dst port to stream server */
113 u16 *stream_server_by_dst_port[SESSION_N_TYPES];
114
115 /** per-worker enqueue epoch counters */
116 u8 *current_enqueue_epoch;
117
118 /** Per-worker thread vector of sessions to enqueue */
119 u32 **session_indices_to_enqueue_by_thread;
120
121 /** per-worker tx buffer free lists */
122 u32 **tx_buffers;
123
124 /** Per worker-thread vector of partially read events */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400125 session_fifo_event_t **free_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500126
127 /** per-worker active event vectors */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400128 session_fifo_event_t **pending_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500129
130 /** vpp fifo event queue */
131 unix_shared_memory_queue_t **vpp_event_queues;
132
Dave Barach10d8cc62017-05-30 09:30:07 -0400133 /** vpp fifo event queue configured length */
134 u32 configured_event_queue_length;
135
Florin Coras66b11312017-07-31 17:18:03 -0700136 /** session table size parameters */
137 u32 configured_v4_session_table_buckets;
138 u32 configured_v4_session_table_memory;
139 u32 configured_v4_halfopen_table_buckets;
140 u32 configured_v4_halfopen_table_memory;
141 u32 configured_v6_session_table_buckets;
142 u32 configured_v6_session_table_memory;
143 u32 configured_v6_halfopen_table_buckets;
144 u32 configured_v6_halfopen_table_memory;
145
Dave Barach68b0fb02017-02-28 15:15:56 -0500146 /** Unique segment name counter */
147 u32 unique_segment_name_counter;
148
Dave Barach68b0fb02017-02-28 15:15:56 -0500149 /** Per transport rx function that can either dequeue or peek */
Florin Corase69f4952017-03-07 10:06:24 -0800150 session_fifo_rx_fn *session_tx_fns[SESSION_N_TYPES];
Dave Barach68b0fb02017-02-28 15:15:56 -0500151
Dave Barach2c25a622017-06-26 11:35:07 -0400152 /** Session manager is enabled */
Florin Corase04c2992017-03-01 08:17:34 -0800153 u8 is_enabled;
154
Dave Barach2c25a622017-06-26 11:35:07 -0400155 /** Preallocate session config parameter */
156 u32 preallocated_sessions;
157
Florin Coras3e350af2017-03-30 02:54:28 -0700158#if SESSION_DBG
159 /**
160 * last event poll time by thread
161 * Debug only. Will cause false cache-line sharing as-is
162 */
163 f64 *last_event_poll_by_thread;
164#endif
165
Dave Barach68b0fb02017-02-28 15:15:56 -0500166};
167
168extern session_manager_main_t session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -0800169extern vlib_node_registration_t session_queue_node;
Dave Barach68b0fb02017-02-28 15:15:56 -0500170
171/*
172 * Session manager function
173 */
174always_inline session_manager_main_t *
175vnet_get_session_manager_main ()
176{
177 return &session_manager_main;
178}
179
Dave Barach2c25a622017-06-26 11:35:07 -0400180always_inline u8
181stream_session_is_valid (u32 si, u8 thread_index)
182{
183 stream_session_t *s;
184 s = pool_elt_at_index (session_manager_main.sessions[thread_index], si);
185 if (s->thread_index != thread_index || s->session_index != si
Dave Barach52851e62017-08-07 09:35:25 -0400186 /* || s->server_rx_fifo->master_session_index != si
187 || s->server_tx_fifo->master_session_index != si
188 || s->server_rx_fifo->master_thread_index != thread_index
189 || s->server_tx_fifo->master_thread_index != thread_index */ )
Dave Barach2c25a622017-06-26 11:35:07 -0400190 return 0;
191 return 1;
192}
193
Dave Barach68b0fb02017-02-28 15:15:56 -0500194always_inline stream_session_t *
Florin Coras6cf30ad2017-04-04 23:08:23 -0700195stream_session_get (u32 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500196{
Dave Barach2c25a622017-06-26 11:35:07 -0400197 ASSERT (stream_session_is_valid (si, thread_index));
Dave Barach68b0fb02017-02-28 15:15:56 -0500198 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
199}
200
201always_inline stream_session_t *
202stream_session_get_if_valid (u64 si, u32 thread_index)
203{
204 if (thread_index >= vec_len (session_manager_main.sessions))
205 return 0;
206
207 if (pool_is_free_index (session_manager_main.sessions[thread_index], si))
208 return 0;
209
Dave Barach2c25a622017-06-26 11:35:07 -0400210 ASSERT (stream_session_is_valid (si, thread_index));
Dave Barach68b0fb02017-02-28 15:15:56 -0500211 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
212}
213
Florin Coras6cf30ad2017-04-04 23:08:23 -0700214always_inline u64
215stream_session_handle (stream_session_t * s)
216{
217 return ((u64) s->thread_index << 32) | (u64) s->session_index;
218}
219
220always_inline u32
221stream_session_index_from_handle (u64 handle)
222{
223 return handle & 0xFFFFFFFF;
224}
225
226always_inline u32
227stream_session_thread_from_handle (u64 handle)
228{
229 return handle >> 32;
230}
231
232always_inline void
233stream_session_parse_handle (u64 handle, u32 * index, u32 * thread_index)
234{
235 *index = stream_session_index_from_handle (handle);
236 *thread_index = stream_session_thread_from_handle (handle);
237}
238
239always_inline stream_session_t *
240stream_session_get_from_handle (u64 handle)
241{
242 session_manager_main_t *smm = &session_manager_main;
243 return pool_elt_at_index (smm->sessions[stream_session_thread_from_handle
244 (handle)],
245 stream_session_index_from_handle (handle));
246}
247
Dave Barach68b0fb02017-02-28 15:15:56 -0500248always_inline stream_session_t *
249stream_session_listener_get (u8 sst, u64 si)
250{
251 return pool_elt_at_index (session_manager_main.listen_sessions[sst], si);
252}
253
254always_inline u32
255stream_session_get_index (stream_session_t * s)
256{
257 if (s->session_state == SESSION_STATE_LISTENING)
258 return s - session_manager_main.listen_sessions[s->session_type];
259
260 return s - session_manager_main.sessions[s->thread_index];
261}
262
263always_inline u32
Florin Coras6792ec02017-03-13 03:49:51 -0700264stream_session_max_rx_enqueue (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500265{
266 stream_session_t *s = stream_session_get (tc->s_index, tc->thread_index);
267 return svm_fifo_max_enqueue (s->server_rx_fifo);
268}
269
Florin Corase04c2992017-03-01 08:17:34 -0800270always_inline u32
Florin Coras93992a92017-05-24 18:03:56 -0700271stream_session_rx_fifo_size (transport_connection_t * tc)
Florin Corase04c2992017-03-01 08:17:34 -0800272{
273 stream_session_t *s = stream_session_get (tc->s_index, tc->thread_index);
274 return s->server_rx_fifo->nitems;
275}
276
Florin Coras93992a92017-05-24 18:03:56 -0700277u32 stream_session_tx_fifo_max_dequeue (transport_connection_t * tc);
278
Dave Barach68b0fb02017-02-28 15:15:56 -0500279int
Florin Corasf6d68ed2017-05-07 19:12:02 -0700280stream_session_enqueue_data (transport_connection_t * tc, vlib_buffer_t * b,
281 u32 offset, u8 queue_event, u8 is_in_order);
Florin Coras93992a92017-05-24 18:03:56 -0700282int
Dave Barach68b0fb02017-02-28 15:15:56 -0500283stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
284 u32 offset, u32 max_bytes);
285u32 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
286
Florin Coras68810622017-07-24 17:40:28 -0700287int stream_session_connect_notify (transport_connection_t * tc, u8 is_fail);
Florin Corasc28764f2017-04-26 00:08:42 -0700288void stream_session_init_fifos_pointers (transport_connection_t * tc,
289 u32 rx_pointer, u32 tx_pointer);
Florin Corase69f4952017-03-07 10:06:24 -0800290
Dave Barach68b0fb02017-02-28 15:15:56 -0500291void stream_session_accept_notify (transport_connection_t * tc);
292void stream_session_disconnect_notify (transport_connection_t * tc);
293void stream_session_delete_notify (transport_connection_t * tc);
294void stream_session_reset_notify (transport_connection_t * tc);
295int
296stream_session_accept (transport_connection_t * tc, u32 listener_index,
297 u8 sst, u8 notify);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700298int
299stream_session_open (u32 app_index, session_type_t st,
300 transport_endpoint_t * tep,
301 transport_connection_t ** tc);
302int stream_session_listen (stream_session_t * s, transport_endpoint_t * tep);
303int stream_session_stop_listen (stream_session_t * s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500304void stream_session_disconnect (stream_session_t * s);
305void stream_session_cleanup (stream_session_t * s);
Florin Corasa5464812017-04-19 13:00:05 -0700306void session_send_session_evt_to_thread (u64 session_handle,
307 fifo_event_type_t evt_type,
308 u32 thread_index);
Florin Coras3eb50622017-07-13 01:24:57 -0400309
Dave Barach68b0fb02017-02-28 15:15:56 -0500310u8 *format_stream_session (u8 * s, va_list * args);
Florin Coras3eb50622017-07-13 01:24:57 -0400311uword unformat_stream_session (unformat_input_t * input, va_list * args);
312uword unformat_transport_connection (unformat_input_t * input,
313 va_list * args);
314
Dave Barach0194f1a2017-05-15 10:11:39 -0400315int
316send_session_connected_callback (u32 app_index, u32 api_context,
317 stream_session_t * s, u8 is_fail);
318
Dave Barach68b0fb02017-02-28 15:15:56 -0500319
Florin Corase04c2992017-03-01 08:17:34 -0800320clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
321
Florin Coras6cf30ad2017-04-04 23:08:23 -0700322always_inline unix_shared_memory_queue_t *
323session_manager_get_vpp_event_queue (u32 thread_index)
324{
325 return session_manager_main.vpp_event_queues[thread_index];
326}
327
328int session_manager_flush_enqueue_events (u32 thread_index);
329
330always_inline u64
331listen_session_get_handle (stream_session_t * s)
332{
333 ASSERT (s->session_state == SESSION_STATE_LISTENING);
334 return ((u64) s->session_type << 32) | s->session_index;
335}
336
337always_inline stream_session_t *
338listen_session_get_from_handle (u64 handle)
339{
340 session_manager_main_t *smm = &session_manager_main;
341 stream_session_t *s;
342 u32 type, index;
343 type = handle >> 32;
344 index = handle & 0xFFFFFFFF;
345
346 if (pool_is_free_index (smm->listen_sessions[type], index))
347 return 0;
348
349 s = pool_elt_at_index (smm->listen_sessions[type], index);
350 ASSERT (s->session_state == SESSION_STATE_LISTENING);
351 return s;
352}
353
354always_inline stream_session_t *
355listen_session_new (session_type_t type)
356{
357 stream_session_t *s;
Dave Barach1015a1e2017-05-08 19:15:03 -0400358 pool_get_aligned (session_manager_main.listen_sessions[type], s,
359 CLIB_CACHE_LINE_BYTES);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700360 memset (s, 0, sizeof (*s));
361
362 s->session_type = type;
363 s->session_state = SESSION_STATE_LISTENING;
364 s->session_index = s - session_manager_main.listen_sessions[type];
365
366 return s;
367}
368
369always_inline stream_session_t *
370listen_session_get (session_type_t type, u32 index)
371{
372 return pool_elt_at_index (session_manager_main.listen_sessions[type],
373 index);
374}
375
376always_inline void
377listen_session_del (stream_session_t * s)
378{
379 pool_put (session_manager_main.listen_sessions[s->session_type], s);
380}
381
Florin Coras04e53442017-07-16 17:12:15 -0700382always_inline stream_session_t *
383session_manager_get_listener (u8 type, u32 index)
384{
385 return pool_elt_at_index (session_manager_main.listen_sessions[type],
386 index);
387}
388
389always_inline void
390session_manager_set_transport_rx_fn (u8 type, u8 is_peek)
391{
392 /* If an offset function is provided, then peek instead of dequeue */
393 session_manager_main.session_tx_fns[type] = (is_peek) ?
394 session_tx_fifo_peek_and_snd : session_tx_fifo_dequeue_and_snd;
395}
396
397session_type_t
398session_type_from_proto_and_ip (transport_proto_t proto, u8 is_ip4);
399
Florin Coras6cf30ad2017-04-04 23:08:23 -0700400always_inline u8
401session_manager_is_enabled ()
402{
403 return session_manager_main.is_enabled == 1;
404}
405
Dave Barach68b0fb02017-02-28 15:15:56 -0500406#endif /* __included_session_h__ */
407
408/*
409 * fd.io coding-style-patch-verification: ON
410 *
411 * Local Variables:
412 * eval: (c-set-style "gnu")
413 * End:
414 */