blob: b1a03d213e9b2b1598b56f11e168c5a079702b0e [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
Dave Wallace33e002b2017-09-06 01:20:02 -040041static inline const char *
42fifo_event_type_str (fifo_event_type_t et)
43{
44 switch (et)
45 {
46 case FIFO_EVENT_APP_RX:
47 return "FIFO_EVENT_APP_RX";
48 case FIFO_EVENT_APP_TX:
49 return "FIFO_EVENT_APP_TX";
50 case FIFO_EVENT_TIMEOUT:
51 return "FIFO_EVENT_TIMEOUT";
52 case FIFO_EVENT_DISCONNECT:
53 return "FIFO_EVENT_DISCONNECT";
54 case FIFO_EVENT_BUILTIN_RX:
55 return "FIFO_EVENT_BUILTIN_RX";
56 case FIFO_EVENT_RPC:
57 return "FIFO_EVENT_RPC";
58 default:
59 return "UNKNOWN FIFO EVENT";
60 }
61}
62
Florin Coras3e350af2017-03-30 02:54:28 -070063#define foreach_session_input_error \
Dave Barach68b0fb02017-02-28 15:15:56 -050064_(NO_SESSION, "No session drops") \
65_(NO_LISTENER, "No listener for dst port drops") \
66_(ENQUEUED, "Packets pushed into rx fifo") \
67_(NOT_READY, "Session not ready packets") \
68_(FIFO_FULL, "Packets dropped for lack of rx fifo space") \
69_(EVENT_FIFO_FULL, "Events not sent for lack of event fifo space") \
70_(API_QUEUE_FULL, "Sessions not created for lack of API queue space") \
71_(NEW_SEG_NO_SPACE, "Created segment, couldn't allocate a fifo pair") \
72_(NO_SPACE, "Couldn't allocate a fifo pair")
73
74typedef enum
75{
76#define _(sym,str) SESSION_ERROR_##sym,
77 foreach_session_input_error
78#undef _
79 SESSION_N_ERROR,
80} session_error_t;
81
82/* Event queue input node static next indices */
83typedef enum
84{
85 SESSION_QUEUE_NEXT_DROP,
86 SESSION_QUEUE_NEXT_TCP_IP4_OUTPUT,
87 SESSION_QUEUE_NEXT_IP4_LOOKUP,
88 SESSION_QUEUE_NEXT_TCP_IP6_OUTPUT,
89 SESSION_QUEUE_NEXT_IP6_LOOKUP,
90 SESSION_QUEUE_N_NEXT,
91} session_queue_next_t;
92
Dave Barache5f1d272017-05-10 13:34:04 -040093typedef struct
94{
95 void *fp;
96 void *arg;
97} rpc_args_t;
98
Florin Coras6792ec02017-03-13 03:49:51 -070099/* *INDENT-OFF* */
100typedef CLIB_PACKED (struct {
Florin Corasa5464812017-04-19 13:00:05 -0700101 union
102 {
103 svm_fifo_t * fifo;
104 u64 session_handle;
Dave Barache5f1d272017-05-10 13:34:04 -0400105 rpc_args_t rpc_args;
Florin Corasa5464812017-04-19 13:00:05 -0700106 };
Florin Coras6792ec02017-03-13 03:49:51 -0700107 u8 event_type;
108 u16 event_id;
109}) session_fifo_event_t;
110/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500111
Dave Barach68b0fb02017-02-28 15:15:56 -0500112/* Forward definition */
113typedef struct _session_manager_main session_manager_main_t;
114
115typedef int
116 (session_fifo_rx_fn) (vlib_main_t * vm, vlib_node_runtime_t * node,
117 session_manager_main_t * smm,
118 session_fifo_event_t * e0, stream_session_t * s0,
119 u32 thread_index, int *n_tx_pkts);
120
Florin Corasd79b41e2017-03-04 05:37:52 -0800121extern session_fifo_rx_fn session_tx_fifo_peek_and_snd;
122extern session_fifo_rx_fn session_tx_fifo_dequeue_and_snd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500123
Florin Coras6534b7a2017-07-18 05:38:03 -0400124u8 session_node_lookup_fifo_event (svm_fifo_t * f, session_fifo_event_t * e);
125
Dave Barach68b0fb02017-02-28 15:15:56 -0500126struct _session_manager_main
127{
Dave Barach68b0fb02017-02-28 15:15:56 -0500128 /** Per worker thread session pools */
129 stream_session_t **sessions;
130
131 /** Pool of listen sessions. Same type as stream sessions to ease lookups */
132 stream_session_t *listen_sessions[SESSION_N_TYPES];
133
134 /** Sparse vector to map dst port to stream server */
135 u16 *stream_server_by_dst_port[SESSION_N_TYPES];
136
137 /** per-worker enqueue epoch counters */
138 u8 *current_enqueue_epoch;
139
140 /** Per-worker thread vector of sessions to enqueue */
141 u32 **session_indices_to_enqueue_by_thread;
142
143 /** per-worker tx buffer free lists */
144 u32 **tx_buffers;
145
146 /** Per worker-thread vector of partially read events */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400147 session_fifo_event_t **free_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500148
149 /** per-worker active event vectors */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400150 session_fifo_event_t **pending_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500151
152 /** vpp fifo event queue */
153 unix_shared_memory_queue_t **vpp_event_queues;
154
Dave Barach10d8cc62017-05-30 09:30:07 -0400155 /** vpp fifo event queue configured length */
156 u32 configured_event_queue_length;
157
Florin Coras66b11312017-07-31 17:18:03 -0700158 /** session table size parameters */
159 u32 configured_v4_session_table_buckets;
160 u32 configured_v4_session_table_memory;
161 u32 configured_v4_halfopen_table_buckets;
162 u32 configured_v4_halfopen_table_memory;
163 u32 configured_v6_session_table_buckets;
164 u32 configured_v6_session_table_memory;
165 u32 configured_v6_halfopen_table_buckets;
166 u32 configured_v6_halfopen_table_memory;
167
Dave Barach68b0fb02017-02-28 15:15:56 -0500168 /** Unique segment name counter */
169 u32 unique_segment_name_counter;
170
Dave Barach68b0fb02017-02-28 15:15:56 -0500171 /** Per transport rx function that can either dequeue or peek */
Florin Corase69f4952017-03-07 10:06:24 -0800172 session_fifo_rx_fn *session_tx_fns[SESSION_N_TYPES];
Dave Barach68b0fb02017-02-28 15:15:56 -0500173
Dave Barach2c25a622017-06-26 11:35:07 -0400174 /** Session manager is enabled */
Florin Corase04c2992017-03-01 08:17:34 -0800175 u8 is_enabled;
176
Dave Barach2c25a622017-06-26 11:35:07 -0400177 /** Preallocate session config parameter */
178 u32 preallocated_sessions;
179
Florin Coras3e350af2017-03-30 02:54:28 -0700180#if SESSION_DBG
181 /**
182 * last event poll time by thread
183 * Debug only. Will cause false cache-line sharing as-is
184 */
185 f64 *last_event_poll_by_thread;
186#endif
187
Dave Barach68b0fb02017-02-28 15:15:56 -0500188};
189
190extern session_manager_main_t session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -0800191extern vlib_node_registration_t session_queue_node;
Dave Barach68b0fb02017-02-28 15:15:56 -0500192
193/*
194 * Session manager function
195 */
196always_inline session_manager_main_t *
197vnet_get_session_manager_main ()
198{
199 return &session_manager_main;
200}
201
Dave Barach2c25a622017-06-26 11:35:07 -0400202always_inline u8
203stream_session_is_valid (u32 si, u8 thread_index)
204{
205 stream_session_t *s;
206 s = pool_elt_at_index (session_manager_main.sessions[thread_index], si);
207 if (s->thread_index != thread_index || s->session_index != si
Dave Barach52851e62017-08-07 09:35:25 -0400208 /* || s->server_rx_fifo->master_session_index != si
209 || s->server_tx_fifo->master_session_index != si
210 || s->server_rx_fifo->master_thread_index != thread_index
211 || s->server_tx_fifo->master_thread_index != thread_index */ )
Dave Barach2c25a622017-06-26 11:35:07 -0400212 return 0;
213 return 1;
214}
215
Dave Barach68b0fb02017-02-28 15:15:56 -0500216always_inline stream_session_t *
Florin Corascea194d2017-10-02 00:18:51 -0700217session_get (u32 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500218{
Dave Barach2c25a622017-06-26 11:35:07 -0400219 ASSERT (stream_session_is_valid (si, thread_index));
Dave Barach68b0fb02017-02-28 15:15:56 -0500220 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
221}
222
223always_inline stream_session_t *
224stream_session_get_if_valid (u64 si, u32 thread_index)
225{
226 if (thread_index >= vec_len (session_manager_main.sessions))
227 return 0;
228
229 if (pool_is_free_index (session_manager_main.sessions[thread_index], si))
230 return 0;
231
Dave Barach2c25a622017-06-26 11:35:07 -0400232 ASSERT (stream_session_is_valid (si, thread_index));
Dave Barach68b0fb02017-02-28 15:15:56 -0500233 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
234}
235
Florin Coras6cf30ad2017-04-04 23:08:23 -0700236always_inline u64
237stream_session_handle (stream_session_t * s)
238{
239 return ((u64) s->thread_index << 32) | (u64) s->session_index;
240}
241
242always_inline u32
Florin Corascea194d2017-10-02 00:18:51 -0700243session_index_from_handle (u64 handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700244{
245 return handle & 0xFFFFFFFF;
246}
247
248always_inline u32
Florin Corascea194d2017-10-02 00:18:51 -0700249session_thread_from_handle (u64 handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700250{
251 return handle >> 32;
252}
253
254always_inline void
Florin Corascea194d2017-10-02 00:18:51 -0700255session_parse_handle (u64 handle, u32 * index, u32 * thread_index)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700256{
Florin Corascea194d2017-10-02 00:18:51 -0700257 *index = session_index_from_handle (handle);
258 *thread_index = session_thread_from_handle (handle);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700259}
260
261always_inline stream_session_t *
Florin Corascea194d2017-10-02 00:18:51 -0700262session_get_from_handle (u64 handle)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700263{
264 session_manager_main_t *smm = &session_manager_main;
Florin Corascea194d2017-10-02 00:18:51 -0700265 return
266 pool_elt_at_index (smm->sessions[session_thread_from_handle (handle)],
267 session_index_from_handle (handle));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700268}
269
Dave Barach68b0fb02017-02-28 15:15:56 -0500270always_inline stream_session_t *
271stream_session_listener_get (u8 sst, u64 si)
272{
273 return pool_elt_at_index (session_manager_main.listen_sessions[sst], si);
274}
275
276always_inline u32
277stream_session_get_index (stream_session_t * s)
278{
279 if (s->session_state == SESSION_STATE_LISTENING)
280 return s - session_manager_main.listen_sessions[s->session_type];
281
282 return s - session_manager_main.sessions[s->thread_index];
283}
284
285always_inline u32
Florin Coras6792ec02017-03-13 03:49:51 -0700286stream_session_max_rx_enqueue (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500287{
Florin Corascea194d2017-10-02 00:18:51 -0700288 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500289 return svm_fifo_max_enqueue (s->server_rx_fifo);
290}
291
Florin Corase04c2992017-03-01 08:17:34 -0800292always_inline u32
Florin Coras93992a92017-05-24 18:03:56 -0700293stream_session_rx_fifo_size (transport_connection_t * tc)
Florin Corase04c2992017-03-01 08:17:34 -0800294{
Florin Corascea194d2017-10-02 00:18:51 -0700295 stream_session_t *s = session_get (tc->s_index, tc->thread_index);
Florin Corase04c2992017-03-01 08:17:34 -0800296 return s->server_rx_fifo->nitems;
297}
298
Florin Coras93992a92017-05-24 18:03:56 -0700299u32 stream_session_tx_fifo_max_dequeue (transport_connection_t * tc);
300
Dave Barach68b0fb02017-02-28 15:15:56 -0500301int
Florin Corasf6d68ed2017-05-07 19:12:02 -0700302stream_session_enqueue_data (transport_connection_t * tc, vlib_buffer_t * b,
303 u32 offset, u8 queue_event, u8 is_in_order);
Florin Coras93992a92017-05-24 18:03:56 -0700304int
Dave Barach68b0fb02017-02-28 15:15:56 -0500305stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
306 u32 offset, u32 max_bytes);
307u32 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
308
Florin Coras68810622017-07-24 17:40:28 -0700309int stream_session_connect_notify (transport_connection_t * tc, u8 is_fail);
Florin Corasc28764f2017-04-26 00:08:42 -0700310void stream_session_init_fifos_pointers (transport_connection_t * tc,
311 u32 rx_pointer, u32 tx_pointer);
Florin Corase69f4952017-03-07 10:06:24 -0800312
Dave Barach68b0fb02017-02-28 15:15:56 -0500313void stream_session_accept_notify (transport_connection_t * tc);
314void stream_session_disconnect_notify (transport_connection_t * tc);
315void stream_session_delete_notify (transport_connection_t * tc);
316void stream_session_reset_notify (transport_connection_t * tc);
317int
318stream_session_accept (transport_connection_t * tc, u32 listener_index,
Florin Corascea194d2017-10-02 00:18:51 -0700319 u8 notify);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700320int
Florin Corascea194d2017-10-02 00:18:51 -0700321stream_session_open (u32 app_index, session_endpoint_t * tep,
Florin Coras6cf30ad2017-04-04 23:08:23 -0700322 transport_connection_t ** tc);
Florin Corascea194d2017-10-02 00:18:51 -0700323int stream_session_listen (stream_session_t * s, session_endpoint_t * tep);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700324int stream_session_stop_listen (stream_session_t * s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500325void stream_session_disconnect (stream_session_t * s);
326void stream_session_cleanup (stream_session_t * s);
Florin Corasa5464812017-04-19 13:00:05 -0700327void session_send_session_evt_to_thread (u64 session_handle,
328 fifo_event_type_t evt_type,
329 u32 thread_index);
Florin Coras3eb50622017-07-13 01:24:57 -0400330
Dave Barach68b0fb02017-02-28 15:15:56 -0500331u8 *format_stream_session (u8 * s, va_list * args);
Florin Coras3eb50622017-07-13 01:24:57 -0400332uword unformat_stream_session (unformat_input_t * input, va_list * args);
333uword unformat_transport_connection (unformat_input_t * input,
334 va_list * args);
335
Dave Barach0194f1a2017-05-15 10:11:39 -0400336int
337send_session_connected_callback (u32 app_index, u32 api_context,
338 stream_session_t * s, u8 is_fail);
339
Dave Barach68b0fb02017-02-28 15:15:56 -0500340
Florin Corase04c2992017-03-01 08:17:34 -0800341clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
342
Florin Coras6cf30ad2017-04-04 23:08:23 -0700343always_inline unix_shared_memory_queue_t *
344session_manager_get_vpp_event_queue (u32 thread_index)
345{
346 return session_manager_main.vpp_event_queues[thread_index];
347}
348
349int session_manager_flush_enqueue_events (u32 thread_index);
350
351always_inline u64
352listen_session_get_handle (stream_session_t * s)
353{
354 ASSERT (s->session_state == SESSION_STATE_LISTENING);
355 return ((u64) s->session_type << 32) | s->session_index;
356}
357
358always_inline stream_session_t *
359listen_session_get_from_handle (u64 handle)
360{
361 session_manager_main_t *smm = &session_manager_main;
362 stream_session_t *s;
363 u32 type, index;
364 type = handle >> 32;
365 index = handle & 0xFFFFFFFF;
366
367 if (pool_is_free_index (smm->listen_sessions[type], index))
368 return 0;
369
370 s = pool_elt_at_index (smm->listen_sessions[type], index);
371 ASSERT (s->session_state == SESSION_STATE_LISTENING);
372 return s;
373}
374
375always_inline stream_session_t *
376listen_session_new (session_type_t type)
377{
378 stream_session_t *s;
Dave Barach1015a1e2017-05-08 19:15:03 -0400379 pool_get_aligned (session_manager_main.listen_sessions[type], s,
380 CLIB_CACHE_LINE_BYTES);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700381 memset (s, 0, sizeof (*s));
382
383 s->session_type = type;
384 s->session_state = SESSION_STATE_LISTENING;
385 s->session_index = s - session_manager_main.listen_sessions[type];
386
387 return s;
388}
389
390always_inline stream_session_t *
391listen_session_get (session_type_t type, u32 index)
392{
393 return pool_elt_at_index (session_manager_main.listen_sessions[type],
394 index);
395}
396
397always_inline void
398listen_session_del (stream_session_t * s)
399{
400 pool_put (session_manager_main.listen_sessions[s->session_type], s);
401}
402
Florin Corascea194d2017-10-02 00:18:51 -0700403int
404listen_session_get_local_session_endpoint (stream_session_t * listener,
405 session_endpoint_t * sep);
406
Florin Coras04e53442017-07-16 17:12:15 -0700407always_inline stream_session_t *
408session_manager_get_listener (u8 type, u32 index)
409{
410 return pool_elt_at_index (session_manager_main.listen_sessions[type],
411 index);
412}
413
414always_inline void
415session_manager_set_transport_rx_fn (u8 type, u8 is_peek)
416{
417 /* If an offset function is provided, then peek instead of dequeue */
418 session_manager_main.session_tx_fns[type] = (is_peek) ?
419 session_tx_fifo_peek_and_snd : session_tx_fifo_dequeue_and_snd;
420}
421
422session_type_t
423session_type_from_proto_and_ip (transport_proto_t proto, u8 is_ip4);
424
Florin Coras6cf30ad2017-04-04 23:08:23 -0700425always_inline u8
426session_manager_is_enabled ()
427{
428 return session_manager_main.is_enabled == 1;
429}
430
Florin Corascea194d2017-10-02 00:18:51 -0700431#define session_cli_return_if_not_enabled() \
432do { \
433 if (!session_manager_main.is_enabled) \
434 return clib_error_return(0, "session layer is not enabled"); \
435} while (0)
436
Dave Barach68b0fb02017-02-28 15:15:56 -0500437#endif /* __included_session_h__ */
438
439/*
440 * fd.io coding-style-patch-verification: ON
441 *
442 * Local Variables:
443 * eval: (c-set-style "gnu")
444 * End:
445 */