blob: d9c38bd1ad81265db4e47395cf5a09fe160878ed [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
18#include <vnet/session/transport.h>
19#include <vlibmemory/unix_shared_memory_queue.h>
Florin Coras3e350af2017-03-30 02:54:28 -070020#include <vnet/session/session_debug.h>
Florin Coras6cf30ad2017-04-04 23:08:23 -070021#include <vnet/session/segment_manager.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050022
23#define HALF_OPEN_LOOKUP_INVALID_VALUE ((u64)~0)
24#define INVALID_INDEX ((u32)~0)
25
26/* TODO decide how much since we have pre-data as well */
27#define MAX_HDRS_LEN 100 /* Max number of bytes for headers */
28
29typedef enum
30{
Florin Corasa5464812017-04-19 13:00:05 -070031 FIFO_EVENT_APP_RX,
32 FIFO_EVENT_APP_TX,
Dave Barach68b0fb02017-02-28 15:15:56 -050033 FIFO_EVENT_TIMEOUT,
Florin Corasa5464812017-04-19 13:00:05 -070034 FIFO_EVENT_DISCONNECT,
Dave Barache5f1d272017-05-10 13:34:04 -040035 FIFO_EVENT_BUILTIN_RX,
36 FIFO_EVENT_RPC,
Dave Barach68b0fb02017-02-28 15:15:56 -050037} fifo_event_type_t;
38
Florin Coras3e350af2017-03-30 02:54:28 -070039#define foreach_session_input_error \
Dave Barach68b0fb02017-02-28 15:15:56 -050040_(NO_SESSION, "No session drops") \
41_(NO_LISTENER, "No listener for dst port drops") \
42_(ENQUEUED, "Packets pushed into rx fifo") \
43_(NOT_READY, "Session not ready packets") \
44_(FIFO_FULL, "Packets dropped for lack of rx fifo space") \
45_(EVENT_FIFO_FULL, "Events not sent for lack of event fifo space") \
46_(API_QUEUE_FULL, "Sessions not created for lack of API queue space") \
47_(NEW_SEG_NO_SPACE, "Created segment, couldn't allocate a fifo pair") \
48_(NO_SPACE, "Couldn't allocate a fifo pair")
49
50typedef enum
51{
52#define _(sym,str) SESSION_ERROR_##sym,
53 foreach_session_input_error
54#undef _
55 SESSION_N_ERROR,
56} session_error_t;
57
58/* Event queue input node static next indices */
59typedef enum
60{
61 SESSION_QUEUE_NEXT_DROP,
62 SESSION_QUEUE_NEXT_TCP_IP4_OUTPUT,
63 SESSION_QUEUE_NEXT_IP4_LOOKUP,
64 SESSION_QUEUE_NEXT_TCP_IP6_OUTPUT,
65 SESSION_QUEUE_NEXT_IP6_LOOKUP,
66 SESSION_QUEUE_N_NEXT,
67} session_queue_next_t;
68
69#define foreach_session_type \
70 _(IP4_TCP, ip4_tcp) \
71 _(IP4_UDP, ip4_udp) \
72 _(IP6_TCP, ip6_tcp) \
73 _(IP6_UDP, ip6_udp)
74
75typedef enum
76{
77#define _(A, a) SESSION_TYPE_##A,
78 foreach_session_type
79#undef _
80 SESSION_N_TYPES,
81} session_type_t;
82
83/*
84 * Application session state
85 */
86typedef enum
87{
88 SESSION_STATE_LISTENING,
89 SESSION_STATE_CONNECTING,
90 SESSION_STATE_READY,
91 SESSION_STATE_CLOSED,
92 SESSION_STATE_N_STATES,
93} stream_session_state_t;
94
Dave Barache5f1d272017-05-10 13:34:04 -040095typedef struct
96{
97 void *fp;
98 void *arg;
99} rpc_args_t;
100
Florin Coras6792ec02017-03-13 03:49:51 -0700101/* *INDENT-OFF* */
102typedef CLIB_PACKED (struct {
Florin Corasa5464812017-04-19 13:00:05 -0700103 union
104 {
105 svm_fifo_t * fifo;
106 u64 session_handle;
Dave Barache5f1d272017-05-10 13:34:04 -0400107 rpc_args_t rpc_args;
Florin Corasa5464812017-04-19 13:00:05 -0700108 };
Florin Coras6792ec02017-03-13 03:49:51 -0700109 u8 event_type;
110 u16 event_id;
111}) session_fifo_event_t;
112/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500113
114typedef struct _stream_session_t
115{
Florin Corasd79b41e2017-03-04 05:37:52 -0800116 /** fifo pointers. Once allocated, these do not move */
117 svm_fifo_t *server_rx_fifo;
118 svm_fifo_t *server_tx_fifo;
119
Dave Barach68b0fb02017-02-28 15:15:56 -0500120 /** Type */
121 u8 session_type;
122
123 /** State */
124 u8 session_state;
125
Florin Corasd79b41e2017-03-04 05:37:52 -0800126 u8 thread_index;
127
Florin Corasd79b41e2017-03-04 05:37:52 -0800128 /** To avoid n**2 "one event per frame" check */
129 u8 enqueue_epoch;
130
Dave Barach1015a1e2017-05-08 19:15:03 -0400131 /** Pad to a multiple of 8 octets */
Dave Barach10d8cc62017-05-30 09:30:07 -0400132 u8 align_pad[4];
Dave Barach1015a1e2017-05-08 19:15:03 -0400133
134 /** svm segment index where fifos were allocated */
135 u32 svm_segment_index;
136
Dave Barach68b0fb02017-02-28 15:15:56 -0500137 /** Session index in per_thread pool */
138 u32 session_index;
139
140 /** Transport specific */
141 u32 connection_index;
142
Dave Barach68b0fb02017-02-28 15:15:56 -0500143 /** Application specific */
144 u32 pid;
145
Dave Barach68b0fb02017-02-28 15:15:56 -0500146 /** stream server pool index */
147 u32 app_index;
148
Florin Coras6cf30ad2017-04-04 23:08:23 -0700149 /** Parent listener session if the result of an accept */
150 u32 listener_index;
Dave Barach1015a1e2017-05-08 19:15:03 -0400151
152 /** Opaque, pad to a 64-octet boundary */
153 u64 opaque[2];
Dave Barach68b0fb02017-02-28 15:15:56 -0500154} stream_session_t;
155
Dave Barach68b0fb02017-02-28 15:15:56 -0500156/* Forward definition */
157typedef struct _session_manager_main session_manager_main_t;
158
159typedef int
160 (session_fifo_rx_fn) (vlib_main_t * vm, vlib_node_runtime_t * node,
161 session_manager_main_t * smm,
162 session_fifo_event_t * e0, stream_session_t * s0,
163 u32 thread_index, int *n_tx_pkts);
164
Florin Corasd79b41e2017-03-04 05:37:52 -0800165extern session_fifo_rx_fn session_tx_fifo_peek_and_snd;
166extern session_fifo_rx_fn session_tx_fifo_dequeue_and_snd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500167
168struct _session_manager_main
169{
170 /** Lookup tables for established sessions and listeners */
171 clib_bihash_16_8_t v4_session_hash;
172 clib_bihash_48_8_t v6_session_hash;
173
174 /** Lookup tables for half-open sessions */
175 clib_bihash_16_8_t v4_half_open_hash;
176 clib_bihash_48_8_t v6_half_open_hash;
177
178 /** Per worker thread session pools */
179 stream_session_t **sessions;
180
181 /** Pool of listen sessions. Same type as stream sessions to ease lookups */
182 stream_session_t *listen_sessions[SESSION_N_TYPES];
183
184 /** Sparse vector to map dst port to stream server */
185 u16 *stream_server_by_dst_port[SESSION_N_TYPES];
186
187 /** per-worker enqueue epoch counters */
188 u8 *current_enqueue_epoch;
189
190 /** Per-worker thread vector of sessions to enqueue */
191 u32 **session_indices_to_enqueue_by_thread;
192
193 /** per-worker tx buffer free lists */
194 u32 **tx_buffers;
195
196 /** Per worker-thread vector of partially read events */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400197 session_fifo_event_t **free_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500198
199 /** per-worker active event vectors */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400200 session_fifo_event_t **pending_event_vector;
Dave Barach68b0fb02017-02-28 15:15:56 -0500201
202 /** vpp fifo event queue */
203 unix_shared_memory_queue_t **vpp_event_queues;
204
Dave Barach10d8cc62017-05-30 09:30:07 -0400205 /** vpp fifo event queue configured length */
206 u32 configured_event_queue_length;
207
Dave Barach68b0fb02017-02-28 15:15:56 -0500208 /** Unique segment name counter */
209 u32 unique_segment_name_counter;
210
Dave Barach68b0fb02017-02-28 15:15:56 -0500211 /** Per transport rx function that can either dequeue or peek */
Florin Corase69f4952017-03-07 10:06:24 -0800212 session_fifo_rx_fn *session_tx_fns[SESSION_N_TYPES];
Dave Barach68b0fb02017-02-28 15:15:56 -0500213
Florin Corase04c2992017-03-01 08:17:34 -0800214 u8 is_enabled;
215
Dave Barach68b0fb02017-02-28 15:15:56 -0500216 /* Convenience */
217 vlib_main_t *vlib_main;
218 vnet_main_t *vnet_main;
Florin Coras3e350af2017-03-30 02:54:28 -0700219
220#if SESSION_DBG
221 /**
222 * last event poll time by thread
223 * Debug only. Will cause false cache-line sharing as-is
224 */
225 f64 *last_event_poll_by_thread;
226#endif
227
Dave Barach68b0fb02017-02-28 15:15:56 -0500228};
229
230extern session_manager_main_t session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -0800231extern vlib_node_registration_t session_queue_node;
Dave Barach68b0fb02017-02-28 15:15:56 -0500232
233/*
234 * Session manager function
235 */
236always_inline session_manager_main_t *
237vnet_get_session_manager_main ()
238{
239 return &session_manager_main;
240}
241
Dave Barach68b0fb02017-02-28 15:15:56 -0500242/*
243 * Stream session functions
244 */
245
246stream_session_t *stream_session_lookup_listener4 (ip4_address_t * lcl,
247 u16 lcl_port, u8 proto);
248stream_session_t *stream_session_lookup4 (ip4_address_t * lcl,
249 ip4_address_t * rmt, u16 lcl_port,
250 u16 rmt_port, u8 proto,
251 u32 thread_index);
252stream_session_t *stream_session_lookup_listener6 (ip6_address_t * lcl,
253 u16 lcl_port, u8 proto);
254stream_session_t *stream_session_lookup6 (ip6_address_t * lcl,
255 ip6_address_t * rmt, u16 lcl_port,
256 u16 rmt_port, u8, u32 thread_index);
257transport_connection_t
Florin Corase04c2992017-03-01 08:17:34 -0800258 * stream_session_lookup_transport4 (ip4_address_t * lcl,
Dave Barach68b0fb02017-02-28 15:15:56 -0500259 ip4_address_t * rmt, u16 lcl_port,
260 u16 rmt_port, u8 proto,
261 u32 thread_index);
262transport_connection_t
Florin Corase04c2992017-03-01 08:17:34 -0800263 * stream_session_lookup_transport6 (ip6_address_t * lcl,
Dave Barach68b0fb02017-02-28 15:15:56 -0500264 ip6_address_t * rmt, u16 lcl_port,
265 u16 rmt_port, u8 proto,
266 u32 thread_index);
267stream_session_t *stream_session_lookup_listener (ip46_address_t * lcl,
268 u16 lcl_port, u8 proto);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700269void stream_session_table_add_for_tc (transport_connection_t * tc, u64 value);
270int stream_session_table_del_for_tc (transport_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500271
272always_inline stream_session_t *
273stream_session_get_tsi (u64 ti_and_si, u32 thread_index)
274{
275 ASSERT ((u32) (ti_and_si >> 32) == thread_index);
276 return pool_elt_at_index (session_manager_main.sessions[thread_index],
277 ti_and_si & 0xFFFFFFFFULL);
278}
279
280always_inline stream_session_t *
Florin Coras6cf30ad2017-04-04 23:08:23 -0700281stream_session_get (u32 si, u32 thread_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500282{
283 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
284}
285
286always_inline stream_session_t *
287stream_session_get_if_valid (u64 si, u32 thread_index)
288{
289 if (thread_index >= vec_len (session_manager_main.sessions))
290 return 0;
291
292 if (pool_is_free_index (session_manager_main.sessions[thread_index], si))
293 return 0;
294
295 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
296}
297
Florin Coras6cf30ad2017-04-04 23:08:23 -0700298always_inline u64
299stream_session_handle (stream_session_t * s)
300{
301 return ((u64) s->thread_index << 32) | (u64) s->session_index;
302}
303
304always_inline u32
305stream_session_index_from_handle (u64 handle)
306{
307 return handle & 0xFFFFFFFF;
308}
309
310always_inline u32
311stream_session_thread_from_handle (u64 handle)
312{
313 return handle >> 32;
314}
315
316always_inline void
317stream_session_parse_handle (u64 handle, u32 * index, u32 * thread_index)
318{
319 *index = stream_session_index_from_handle (handle);
320 *thread_index = stream_session_thread_from_handle (handle);
321}
322
323always_inline stream_session_t *
324stream_session_get_from_handle (u64 handle)
325{
326 session_manager_main_t *smm = &session_manager_main;
327 return pool_elt_at_index (smm->sessions[stream_session_thread_from_handle
328 (handle)],
329 stream_session_index_from_handle (handle));
330}
331
Dave Barach68b0fb02017-02-28 15:15:56 -0500332always_inline stream_session_t *
333stream_session_listener_get (u8 sst, u64 si)
334{
335 return pool_elt_at_index (session_manager_main.listen_sessions[sst], si);
336}
337
338always_inline u32
339stream_session_get_index (stream_session_t * s)
340{
341 if (s->session_state == SESSION_STATE_LISTENING)
342 return s - session_manager_main.listen_sessions[s->session_type];
343
344 return s - session_manager_main.sessions[s->thread_index];
345}
346
347always_inline u32
Florin Coras6792ec02017-03-13 03:49:51 -0700348stream_session_max_rx_enqueue (transport_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500349{
350 stream_session_t *s = stream_session_get (tc->s_index, tc->thread_index);
351 return svm_fifo_max_enqueue (s->server_rx_fifo);
352}
353
Florin Corase04c2992017-03-01 08:17:34 -0800354always_inline u32
Florin Coras93992a92017-05-24 18:03:56 -0700355stream_session_rx_fifo_size (transport_connection_t * tc)
Florin Corase04c2992017-03-01 08:17:34 -0800356{
357 stream_session_t *s = stream_session_get (tc->s_index, tc->thread_index);
358 return s->server_rx_fifo->nitems;
359}
360
Florin Coras93992a92017-05-24 18:03:56 -0700361u32 stream_session_tx_fifo_max_dequeue (transport_connection_t * tc);
362
Dave Barach68b0fb02017-02-28 15:15:56 -0500363int
Florin Corasf6d68ed2017-05-07 19:12:02 -0700364stream_session_enqueue_data (transport_connection_t * tc, vlib_buffer_t * b,
365 u32 offset, u8 queue_event, u8 is_in_order);
Florin Coras93992a92017-05-24 18:03:56 -0700366int
Dave Barach68b0fb02017-02-28 15:15:56 -0500367stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
368 u32 offset, u32 max_bytes);
369u32 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
370
Florin Corasc28764f2017-04-26 00:08:42 -0700371void stream_session_connect_notify (transport_connection_t * tc, u8 sst,
372 u8 is_fail);
373void stream_session_init_fifos_pointers (transport_connection_t * tc,
374 u32 rx_pointer, u32 tx_pointer);
Florin Corase69f4952017-03-07 10:06:24 -0800375
Dave Barach68b0fb02017-02-28 15:15:56 -0500376void stream_session_accept_notify (transport_connection_t * tc);
377void stream_session_disconnect_notify (transport_connection_t * tc);
378void stream_session_delete_notify (transport_connection_t * tc);
379void stream_session_reset_notify (transport_connection_t * tc);
380int
381stream_session_accept (transport_connection_t * tc, u32 listener_index,
382 u8 sst, u8 notify);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700383int
384stream_session_open (u32 app_index, session_type_t st,
385 transport_endpoint_t * tep,
386 transport_connection_t ** tc);
387int stream_session_listen (stream_session_t * s, transport_endpoint_t * tep);
388int stream_session_stop_listen (stream_session_t * s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500389void stream_session_disconnect (stream_session_t * s);
390void stream_session_cleanup (stream_session_t * s);
Florin Corasa5464812017-04-19 13:00:05 -0700391void session_send_session_evt_to_thread (u64 session_handle,
392 fifo_event_type_t evt_type,
393 u32 thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500394u8 *format_stream_session (u8 * s, va_list * args);
Dave Barach0194f1a2017-05-15 10:11:39 -0400395int
396send_session_connected_callback (u32 app_index, u32 api_context,
397 stream_session_t * s, u8 is_fail);
398
Dave Barach68b0fb02017-02-28 15:15:56 -0500399
400void session_register_transport (u8 type, const transport_proto_vft_t * vft);
401transport_proto_vft_t *session_get_transport_vft (u8 type);
402
Florin Corase04c2992017-03-01 08:17:34 -0800403clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
404
Florin Coras6cf30ad2017-04-04 23:08:23 -0700405always_inline unix_shared_memory_queue_t *
406session_manager_get_vpp_event_queue (u32 thread_index)
407{
408 return session_manager_main.vpp_event_queues[thread_index];
409}
410
411int session_manager_flush_enqueue_events (u32 thread_index);
412
413always_inline u64
414listen_session_get_handle (stream_session_t * s)
415{
416 ASSERT (s->session_state == SESSION_STATE_LISTENING);
417 return ((u64) s->session_type << 32) | s->session_index;
418}
419
420always_inline stream_session_t *
421listen_session_get_from_handle (u64 handle)
422{
423 session_manager_main_t *smm = &session_manager_main;
424 stream_session_t *s;
425 u32 type, index;
426 type = handle >> 32;
427 index = handle & 0xFFFFFFFF;
428
429 if (pool_is_free_index (smm->listen_sessions[type], index))
430 return 0;
431
432 s = pool_elt_at_index (smm->listen_sessions[type], index);
433 ASSERT (s->session_state == SESSION_STATE_LISTENING);
434 return s;
435}
436
437always_inline stream_session_t *
438listen_session_new (session_type_t type)
439{
440 stream_session_t *s;
Dave Barach1015a1e2017-05-08 19:15:03 -0400441 pool_get_aligned (session_manager_main.listen_sessions[type], s,
442 CLIB_CACHE_LINE_BYTES);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700443 memset (s, 0, sizeof (*s));
444
445 s->session_type = type;
446 s->session_state = SESSION_STATE_LISTENING;
447 s->session_index = s - session_manager_main.listen_sessions[type];
448
449 return s;
450}
451
452always_inline stream_session_t *
453listen_session_get (session_type_t type, u32 index)
454{
455 return pool_elt_at_index (session_manager_main.listen_sessions[type],
456 index);
457}
458
459always_inline void
460listen_session_del (stream_session_t * s)
461{
462 pool_put (session_manager_main.listen_sessions[s->session_type], s);
463}
464
465always_inline u8
466session_manager_is_enabled ()
467{
468 return session_manager_main.is_enabled == 1;
469}
470
Dave Barach68b0fb02017-02-28 15:15:56 -0500471#endif /* __included_session_h__ */
472
473/*
474 * fd.io coding-style-patch-verification: ON
475 *
476 * Local Variables:
477 * eval: (c-set-style "gnu")
478 * End:
479 */