VPP-659 TCP improvements
[vpp.git] / src / vnet / session / session.h
1 /*
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
30 typedef 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
49 typedef 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 */
58 typedef 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
74 typedef 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  */
85 typedef 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
94 typedef 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
103 typedef struct _stream_session_t
104 {
105   /** fifo pointers. Once allocated, these do not move */
106   svm_fifo_t *server_rx_fifo;
107   svm_fifo_t *server_tx_fifo;
108
109   /** Type */
110   u8 session_type;
111
112   /** State */
113   u8 session_state;
114
115   u8 thread_index;
116
117   /** used during unbind processing */
118   u8 is_deleted;
119
120   /** To avoid n**2 "one event per frame" check */
121   u8 enqueue_epoch;
122
123   /** Session index in per_thread pool */
124   u32 session_index;
125
126   /** Transport specific */
127   u32 connection_index;
128
129   /** Application specific */
130   u32 pid;
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
139 typedef 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 */
157 typedef struct _session_manager_main session_manager_main_t;
158
159 typedef 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
165 extern session_fifo_rx_fn session_tx_fifo_peek_and_snd;
166 extern session_fifo_rx_fn session_tx_fifo_dequeue_and_snd;
167
168 struct _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
216   u8 is_enabled;
217
218   /* Convenience */
219   vlib_main_t *vlib_main;
220   vnet_main_t *vnet_main;
221 };
222
223 extern session_manager_main_t session_manager_main;
224 extern vlib_node_registration_t session_queue_node;
225
226 /*
227  * Session manager function
228  */
229 always_inline session_manager_main_t *
230 vnet_get_session_manager_main ()
231 {
232   return &session_manager_main;
233 }
234
235 always_inline session_manager_t *
236 session_manager_get (u32 index)
237 {
238   return pool_elt_at_index (session_manager_main.session_managers, index);
239 }
240
241 always_inline unix_shared_memory_queue_t *
242 session_manager_get_vpp_event_queue (u32 thread_index)
243 {
244   return session_manager_main.vpp_event_queues[thread_index];
245 }
246
247 always_inline session_manager_t *
248 connects_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
255 void session_manager_get_segment_info (u32 index, u8 ** name, u32 * size);
256 int session_manager_flush_enqueue_events (u32 thread_index);
257 int
258 session_manager_add_first_segment (session_manager_main_t * smm,
259                                    session_manager_t * sm, u32 segment_size,
260                                    u8 ** segment_name);
261 void
262 session_manager_del (session_manager_main_t * smm, session_manager_t * sm);
263 void
264 connects_session_manager_init (session_manager_main_t * smm, u8 session_type);
265
266 /*
267  * Stream session functions
268  */
269
270 stream_session_t *stream_session_lookup_listener4 (ip4_address_t * lcl,
271                                                    u16 lcl_port, u8 proto);
272 stream_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);
276 stream_session_t *stream_session_lookup_listener6 (ip6_address_t * lcl,
277                                                    u16 lcl_port, u8 proto);
278 stream_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);
281 transport_connection_t
282   * stream_session_lookup_transport4 (ip4_address_t * lcl,
283                                       ip4_address_t * rmt, u16 lcl_port,
284                                       u16 rmt_port, u8 proto,
285                                       u32 thread_index);
286 transport_connection_t
287   * stream_session_lookup_transport6 (ip6_address_t * lcl,
288                                       ip6_address_t * rmt, u16 lcl_port,
289                                       u16 rmt_port, u8 proto,
290                                       u32 thread_index);
291 stream_session_t *stream_session_lookup_listener (ip46_address_t * lcl,
292                                                   u16 lcl_port, u8 proto);
293
294 always_inline stream_session_t *
295 stream_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
302 always_inline stream_session_t *
303 stream_session_get (u64 si, u32 thread_index)
304 {
305   return pool_elt_at_index (session_manager_main.sessions[thread_index], si);
306 }
307
308 always_inline stream_session_t *
309 stream_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
320 always_inline stream_session_t *
321 stream_session_listener_get (u8 sst, u64 si)
322 {
323   return pool_elt_at_index (session_manager_main.listen_sessions[sst], si);
324 }
325
326 always_inline u32
327 stream_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
335 always_inline u32
336 stream_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
342 always_inline u32
343 stream_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
350 int
351 stream_session_enqueue_data (transport_connection_t * tc, u8 * data, u16 len,
352                              u8 queue_event);
353 u32
354 stream_session_peek_bytes (transport_connection_t * tc, u8 * buffer,
355                            u32 offset, u32 max_bytes);
356 u32 stream_session_dequeue_drop (transport_connection_t * tc, u32 max_bytes);
357
358 void
359 stream_session_connect_notify (transport_connection_t * tc, u8 sst,
360                                u8 is_fail);
361 void stream_session_accept_notify (transport_connection_t * tc);
362 void stream_session_disconnect_notify (transport_connection_t * tc);
363 void stream_session_delete_notify (transport_connection_t * tc);
364 void stream_session_reset_notify (transport_connection_t * tc);
365 int
366 stream_session_accept (transport_connection_t * tc, u32 listener_index,
367                        u8 sst, u8 notify);
368 int stream_session_open (u8 sst, ip46_address_t * addr,
369                          u16 port_host_byte_order, u32 api_client_index);
370 void stream_session_disconnect (stream_session_t * s);
371 void stream_session_cleanup (stream_session_t * s);
372 int
373 stream_session_start_listen (u32 server_index, ip46_address_t * ip, u16 port);
374 void stream_session_stop_listen (u32 server_index);
375
376 u8 *format_stream_session (u8 * s, va_list * args);
377
378 void session_register_transport (u8 type, const transport_proto_vft_t * vft);
379 transport_proto_vft_t *session_get_transport_vft (u8 type);
380
381 clib_error_t *vnet_session_enable_disable (vlib_main_t * vm, u8 is_en);
382
383 #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  */