blob: 46e5ce2cdd09e444649f9cd9517b4976143888f4 [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>
20#include <vlibmemory/api.h>
21#include <vppinfra/sparse_vec.h>
22#include <svm/svm_fifo_segment.h>
23
24#define HALF_OPEN_LOOKUP_INVALID_VALUE ((u64)~0)
25#define INVALID_INDEX ((u32)~0)
26
27/* TODO decide how much since we have pre-data as well */
28#define MAX_HDRS_LEN 100 /* Max number of bytes for headers */
29
30typedef enum
31{
32 FIFO_EVENT_SERVER_RX,
33 FIFO_EVENT_SERVER_TX,
34 FIFO_EVENT_TIMEOUT,
35 FIFO_EVENT_SERVER_EXIT,
36} fifo_event_type_t;
37
38#define foreach_session_input_error \
39_(NO_SESSION, "No session drops") \
40_(NO_LISTENER, "No listener for dst port drops") \
41_(ENQUEUED, "Packets pushed into rx fifo") \
42_(NOT_READY, "Session not ready packets") \
43_(FIFO_FULL, "Packets dropped for lack of rx fifo space") \
44_(EVENT_FIFO_FULL, "Events not sent for lack of event fifo space") \
45_(API_QUEUE_FULL, "Sessions not created for lack of API queue space") \
46_(NEW_SEG_NO_SPACE, "Created segment, couldn't allocate a fifo pair") \
47_(NO_SPACE, "Couldn't allocate a fifo pair")
48
49typedef enum
50{
51#define _(sym,str) SESSION_ERROR_##sym,
52 foreach_session_input_error
53#undef _
54 SESSION_N_ERROR,
55} session_error_t;
56
57/* Event queue input node static next indices */
58typedef enum
59{
60 SESSION_QUEUE_NEXT_DROP,
61 SESSION_QUEUE_NEXT_TCP_IP4_OUTPUT,
62 SESSION_QUEUE_NEXT_IP4_LOOKUP,
63 SESSION_QUEUE_NEXT_TCP_IP6_OUTPUT,
64 SESSION_QUEUE_NEXT_IP6_LOOKUP,
65 SESSION_QUEUE_N_NEXT,
66} session_queue_next_t;
67
68#define foreach_session_type \
69 _(IP4_TCP, ip4_tcp) \
70 _(IP4_UDP, ip4_udp) \
71 _(IP6_TCP, ip6_tcp) \
72 _(IP6_UDP, ip6_udp)
73
74typedef enum
75{
76#define _(A, a) SESSION_TYPE_##A,
77 foreach_session_type
78#undef _
79 SESSION_N_TYPES,
80} session_type_t;
81
82/*
83 * Application session state
84 */
85typedef enum
86{
87 SESSION_STATE_LISTENING,
88 SESSION_STATE_CONNECTING,
89 SESSION_STATE_READY,
90 SESSION_STATE_CLOSED,
91 SESSION_STATE_N_STATES,
92} stream_session_state_t;
93
94typedef CLIB_PACKED (struct
95 {
96 svm_fifo_t * fifo;
97 u8 event_type;
98 /* $$$$ for event logging */
99 u16 event_id;
100 u32 enqueue_length;
101 }) session_fifo_event_t;
102
103typedef struct _stream_session_t
104{
105 /** Type */
106 u8 session_type;
107
108 /** State */
109 u8 session_state;
110
111 /** Session index in per_thread pool */
112 u32 session_index;
113
114 /** Transport specific */
115 u32 connection_index;
116
117 u8 thread_index;
118
119 /** Application specific */
120 u32 pid;
121
122 /** fifo pointers. Once allocated, these do not move */
123 svm_fifo_t *server_rx_fifo;
124 svm_fifo_t *server_tx_fifo;
125
126 /** To avoid n**2 "one event per frame" check */
127 u8 enqueue_epoch;
128
129 /** used during unbind processing */
130 u8 is_deleted;
131
132 /** stream server pool index */
133 u32 app_index;
134
135 /** svm segment index */
136 u32 server_segment_index;
137} stream_session_t;
138
139typedef struct _session_manager
140{
141 /** segments mapped by this server */
142 u32 *segment_indices;
143
144 /** Session fifo sizes. They are provided for binds and take default
145 * values for connects */
146 u32 rx_fifo_size;
147 u32 tx_fifo_size;
148
149 /** Configured additional segment size */
150 u32 add_segment_size;
151
152 /** Flag that indicates if additional segments should be created */
153 u8 add_segment;
154} session_manager_t;
155
156/* 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
165extern session_fifo_rx_fn session_fifo_rx_peek;
166extern session_fifo_rx_fn session_fifo_rx_dequeue;
167
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 */
197 session_fifo_event_t **evts_partially_read;
198
199 /** per-worker active event vectors */
200 session_fifo_event_t **fifo_events;
201
202 /** vpp fifo event queue */
203 unix_shared_memory_queue_t **vpp_event_queues;
204
205 /** Unique segment name counter */
206 u32 unique_segment_name_counter;
207
208 /* Connection manager used by incoming connects */
209 u32 connect_manager_index[SESSION_N_TYPES];
210
211 session_manager_t *session_managers;
212
213 /** Per transport rx function that can either dequeue or peek */
214 session_fifo_rx_fn *session_rx_fns[SESSION_N_TYPES];
215
Florin Corase04c2992017-03-01 08:17:34 -0800216 u8 is_enabled;
217
Dave Barach68b0fb02017-02-28 15:15:56 -0500218 /* Convenience */
219 vlib_main_t *vlib_main;
220 vnet_main_t *vnet_main;
221};
222
223extern session_manager_main_t session_manager_main;
Florin Corase04c2992017-03-01 08:17:34 -0800224extern vlib_node_registration_t session_queue_node;
Dave Barach68b0fb02017-02-28 15:15:56 -0500225
226/*
227 * Session manager function
228 */
229always_inline session_manager_main_t *
230vnet_get_session_manager_main ()
231{
232 return &session_manager_main;
233}
234
235always_inline session_manager_t *
236session_manager_get (u32 index)
237{
238 return pool_elt_at_index (session_manager_main.session_managers, index);
239}
240
241always_inline unix_shared_memory_queue_t *
242session_manager_get_vpp_event_queue (u32 thread_index)
243{
244 return session_manager_main.vpp_event_queues[thread_index];
245}
246
247always_inline session_manager_t *
248connects_session_manager_get (session_manager_main_t * smm,
249 session_type_t session_type)
250{
251 return pool_elt_at_index (smm->session_managers,
252 smm->connect_manager_index[session_type]);
253}
254
255void session_manager_get_segment_info (u32 index, u8 ** name, u32 * size);
256int session_manager_flush_enqueue_events (u32 thread_index);
257int
258session_manager_add_first_segment (session_manager_main_t * smm,
259 session_manager_t * sm, u32 segment_size,
260 u8 ** segment_name);
261void
262session_manager_del (session_manager_main_t * smm, session_manager_t * sm);
263void
264connects_session_manager_init (session_manager_main_t * smm, u8 session_type);
265
266/*
267 * Stream session functions
268 */
269
270stream_session_t *stream_session_lookup_listener4 (ip4_address_t * lcl,
271 u16 lcl_port, u8 proto);
272stream_session_t *stream_session_lookup4 (ip4_address_t * lcl,
273 ip4_address_t * rmt, u16 lcl_port,
274 u16 rmt_port, u8 proto,
275 u32 thread_index);
276stream_session_t *stream_session_lookup_listener6 (ip6_address_t * lcl,
277 u16 lcl_port, u8 proto);
278stream_session_t *stream_session_lookup6 (ip6_address_t * lcl,
279 ip6_address_t * rmt, u16 lcl_port,
280 u16 rmt_port, u8, u32 thread_index);
281transport_connection_t
Florin Corase04c2992017-03-01 08:17:34 -0800282 * stream_session_lookup_transport4 (ip4_address_t * lcl,
Dave Barach68b0fb02017-02-28 15:15:56 -0500283 ip4_address_t * rmt, u16 lcl_port,
284 u16 rmt_port, u8 proto,
285 u32 thread_index);
286transport_connection_t
Florin Corase04c2992017-03-01 08:17:34 -0800287 * stream_session_lookup_transport6 (ip6_address_t * lcl,
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 ip6_address_t * rmt, u16 lcl_port,
289 u16 rmt_port, u8 proto,
290 u32 thread_index);
291stream_session_t *stream_session_lookup_listener (ip46_address_t * lcl,
292 u16 lcl_port, u8 proto);
293
294always_inline stream_session_t *
295stream_session_get_tsi (u64 ti_and_si, u32 thread_index)
296{
297 ASSERT ((u32) (ti_and_si >> 32) == thread_index);
298 return pool_elt_at_index (session_manager_main.sessions[thread_index],
299 ti_and_si & 0xFFFFFFFFULL);
300}
301
302always_inline stream_session_t *
303stream_session_get (u64 si, u32 thread_index)
304{
305 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
306}
307
308always_inline stream_session_t *
309stream_session_get_if_valid (u64 si, u32 thread_index)
310{
311 if (thread_index >= vec_len (session_manager_main.sessions))
312 return 0;
313
314 if (pool_is_free_index (session_manager_main.sessions[thread_index], si))
315 return 0;
316
317 return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
318}
319
320always_inline stream_session_t *
321stream_session_listener_get (u8 sst, u64 si)
322{
323 return pool_elt_at_index (session_manager_main.listen_sessions[sst], si);
324}
325
326always_inline u32
327stream_session_get_index (stream_session_t * s)
328{
329 if (s->session_state == SESSION_STATE_LISTENING)
330 return s - session_manager_main.listen_sessions[s->session_type];
331
332 return s - session_manager_main.sessions[s->thread_index];
333}
334
335always_inline u32
336stream_session_max_enqueue (transport_connection_t * tc)
337{
338 stream_session_t *s = stream_session_get (tc->s_index, tc->thread_index);
339 return svm_fifo_max_enqueue (s->server_rx_fifo);
340}
341
Florin Corase04c2992017-03-01 08:17:34 -0800342always_inline u32
343stream_session_fifo_size (transport_connection_t * tc)
344{
345 stream_session_t *s = stream_session_get (tc->s_index, tc->thread_index);
346 return s->server_rx_fifo->nitems;
347}
348
349
Dave Barach68b0fb02017-02-28 15:15:56 -0500350int
351stream_session_enqueue_data (transport_connection_t * tc, u8 * data, u16 len,
352 u8 queue_event);
353u32
354stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
355 u32 offset, u32 max_bytes);
356u32 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
357
358void
359stream_session_connect_notify (transport_connection_t * tc, u8 sst,
360 u8 is_fail);
361void stream_session_accept_notify (transport_connection_t * tc);
362void stream_session_disconnect_notify (transport_connection_t * tc);
363void stream_session_delete_notify (transport_connection_t * tc);
364void stream_session_reset_notify (transport_connection_t * tc);
365int
366stream_session_accept (transport_connection_t * tc, u32 listener_index,
367 u8 sst, u8 notify);
Florin Corase04c2992017-03-01 08:17:34 -0800368int stream_session_open (u8 sst, ip46_address_t * addr,
369 u16 port_host_byte_order, u32 api_client_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500370void stream_session_disconnect (stream_session_t * s);
371void stream_session_cleanup (stream_session_t * s);
372int
373stream_session_start_listen (u32 server_index, ip46_address_t * ip, u16 port);
374void stream_session_stop_listen (u32 server_index);
375
376u8 *format_stream_session (u8 * s, va_list * args);
377
378void session_register_transport (u8 type, const transport_proto_vft_t * vft);
379transport_proto_vft_t *session_get_transport_vft (u8 type);
380
Florin Corase04c2992017-03-01 08:17:34 -0800381clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
382
Dave Barach68b0fb02017-02-28 15:15:56 -0500383#endif /* __included_session_h__ */
384
385/*
386 * fd.io coding-style-patch-verification: ON
387 *
388 * Local Variables:
389 * eval: (c-set-style "gnu")
390 * End:
391 */