session: cleanup session event types
[vpp.git] / src / vnet / session / session_types.h
1 /*
2  * Copyright (c) 2017-2019 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
16 #ifndef SRC_VNET_SESSION_SESSION_TYPES_H_
17 #define SRC_VNET_SESSION_SESSION_TYPES_H_
18
19 #include <svm/svm_fifo.h>
20 #include <vnet/session/transport_types.h>
21
22 #define SESSION_LISTENER_PREFIX         0x5FFFFFFF
23
24 #define foreach_session_endpoint_fields                         \
25   foreach_transport_endpoint_cfg_fields                         \
26   _(u8, transport_proto)                                        \
27
28 typedef struct _session_endpoint
29 {
30 #define _(type, name) type name;
31   foreach_session_endpoint_fields
32 #undef _
33 } session_endpoint_t;
34
35 typedef struct _session_endpoint_cfg
36 {
37 #define _(type, name) type name;
38   foreach_session_endpoint_fields
39 #undef _
40   u32 app_wrk_index;
41   u32 opaque;
42   u32 ns_index;
43   u8 original_tp;
44   u8 *hostname;
45 } session_endpoint_cfg_t;
46
47 #define SESSION_IP46_ZERO                       \
48 {                                               \
49     .ip6 = {                                    \
50         { 0, 0, },                              \
51     },                                          \
52 }
53
54 #define TRANSPORT_ENDPOINT_NULL                 \
55 {                                               \
56   .sw_if_index = ENDPOINT_INVALID_INDEX,        \
57   .ip = SESSION_IP46_ZERO,                      \
58   .fib_index = ENDPOINT_INVALID_INDEX,          \
59   .is_ip4 = 0,                                  \
60   .port = 0,                                    \
61 }
62 #define SESSION_ENDPOINT_NULL                   \
63 {                                               \
64   .sw_if_index = ENDPOINT_INVALID_INDEX,        \
65   .ip = SESSION_IP46_ZERO,                      \
66   .fib_index = ENDPOINT_INVALID_INDEX,          \
67   .is_ip4 = 0,                                  \
68   .port = 0,                                    \
69   .peer = TRANSPORT_ENDPOINT_NULL,              \
70   .transport_proto = 0,                         \
71 }
72 #define SESSION_ENDPOINT_CFG_NULL               \
73 {                                               \
74   .sw_if_index = ENDPOINT_INVALID_INDEX,        \
75   .ip = SESSION_IP46_ZERO,                      \
76   .fib_index = ENDPOINT_INVALID_INDEX,          \
77   .is_ip4 = 0,                                  \
78   .port = 0,                                    \
79   .peer = TRANSPORT_ENDPOINT_NULL,              \
80   .transport_proto = 0,                         \
81   .app_wrk_index = ENDPOINT_INVALID_INDEX,      \
82   .opaque = ENDPOINT_INVALID_INDEX,             \
83   .hostname = 0,                                \
84 }
85
86 #define session_endpoint_to_transport(_sep) ((transport_endpoint_t *)_sep)
87 #define session_endpoint_to_transport_cfg(_sep)         \
88   ((transport_endpoint_cfg_t *)_sep)
89
90 always_inline u8
91 session_endpoint_fib_proto (session_endpoint_t * sep)
92 {
93   return sep->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
94 }
95
96 static inline u8
97 session_endpoint_is_local (session_endpoint_t * sep)
98 {
99   return (ip_is_zero (&sep->ip, sep->is_ip4)
100           || ip_is_local_host (&sep->ip, sep->is_ip4));
101 }
102
103 static inline u8
104 session_endpoint_is_zero (session_endpoint_t * sep)
105 {
106   return ip_is_zero (&sep->ip, sep->is_ip4);
107 }
108
109 typedef u8 session_type_t;
110 typedef u64 session_handle_t;
111
112 /*
113  * Application session state
114  */
115 typedef enum
116 {
117   SESSION_STATE_CREATED,
118   SESSION_STATE_LISTENING,
119   SESSION_STATE_CONNECTING,
120   SESSION_STATE_ACCEPTING,
121   SESSION_STATE_READY,
122   SESSION_STATE_OPENED,
123   SESSION_STATE_TRANSPORT_CLOSING,
124   SESSION_STATE_CLOSING,
125   SESSION_STATE_CLOSED_WAITING,
126   SESSION_STATE_TRANSPORT_CLOSED,
127   SESSION_STATE_CLOSED,
128   SESSION_STATE_N_STATES,
129 } session_state_t;
130
131 typedef struct generic_session_
132 {
133   svm_fifo_t *rx_fifo;          /**< rx fifo */
134   svm_fifo_t *tx_fifo;          /**< tx fifo */
135   session_type_t session_type;  /**< session type */
136   volatile u8 session_state;    /**< session state */
137   u32 session_index;            /**< index in owning pool */
138 } generic_session_t;
139
140 typedef struct session_
141 {
142   /** fifo pointers. Once allocated, these do not move */
143   svm_fifo_t *rx_fifo;
144   svm_fifo_t *tx_fifo;
145
146   /** Type */
147   session_type_t session_type;
148
149   /** State */
150   volatile u8 session_state;
151
152   /** Session index in per_thread pool */
153   u32 session_index;
154
155   /** App worker pool index */
156   u32 app_wrk_index;
157
158   u8 thread_index;
159
160   /** To avoid n**2 "one event per frame" check */
161   u64 enqueue_epoch;
162
163   /** svm segment index where fifos were allocated */
164   u32 svm_segment_index;
165
166   /** Transport specific */
167   u32 connection_index;
168
169   union
170   {
171     /** Parent listener session if the result of an accept */
172     u32 listener_index;
173
174     /** Application index if a listener */
175     u32 app_index;
176   };
177
178   union
179   {
180     /** Transport app index for apps acting as transports */
181     u32 t_app_index;
182
183     /** App listener index */
184     u32 al_index;
185
186     /** Opaque, for general use */
187     u32 opaque;
188   };
189
190     CLIB_CACHE_LINE_ALIGN_MARK (pad);
191 } session_t;
192
193 always_inline session_type_t
194 session_type_from_proto_and_ip (transport_proto_t proto, u8 is_ip4)
195 {
196   return (proto << 1 | is_ip4);
197 }
198
199 always_inline transport_proto_t
200 session_type_transport_proto (session_type_t st)
201 {
202   return (st >> 1);
203 }
204
205 always_inline u8
206 session_type_is_ip4 (session_type_t st)
207 {
208   return (st & 1);
209 }
210
211 always_inline transport_proto_t
212 session_get_transport_proto (session_t * s)
213 {
214   return (s->session_type >> 1);
215 }
216
217 always_inline fib_protocol_t
218 session_get_fib_proto (session_t * s)
219 {
220   u8 is_ip4 = s->session_type & 1;
221   return (is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6);
222 }
223
224 always_inline u8
225 session_has_transport (session_t * s)
226 {
227   return (session_get_transport_proto (s) != TRANSPORT_PROTO_NONE);
228 }
229
230 static inline transport_service_type_t
231 session_transport_service_type (session_t * s)
232 {
233   transport_proto_t tp;
234   tp = session_get_transport_proto (s);
235   return transport_protocol_service_type (tp);
236 }
237
238 static inline transport_tx_fn_type_t
239 session_transport_tx_fn_type (session_t * s)
240 {
241   transport_proto_t tp;
242   tp = session_get_transport_proto (s);
243   return transport_protocol_tx_fn_type (tp);
244 }
245
246 static inline u8
247 session_tx_is_dgram (session_t * s)
248 {
249   return (session_transport_tx_fn_type (s) == TRANSPORT_TX_DGRAM);
250 }
251
252 always_inline session_handle_t
253 session_handle (session_t * s)
254 {
255   return ((u64) s->thread_index << 32) | (u64) s->session_index;
256 }
257
258 always_inline u32
259 session_index_from_handle (session_handle_t handle)
260 {
261   return handle & 0xFFFFFFFF;
262 }
263
264 always_inline u32
265 session_thread_from_handle (session_handle_t handle)
266 {
267   return handle >> 32;
268 }
269
270 always_inline void
271 session_parse_handle (session_handle_t handle, u32 * index,
272                       u32 * thread_index)
273 {
274   *index = session_index_from_handle (handle);
275   *thread_index = session_thread_from_handle (handle);
276 }
277
278 typedef enum
279 {
280   SESSION_IO_EVT_RX,
281   SESSION_IO_EVT_CT_RX,
282   SESSION_IO_EVT_TX,
283   SESSION_IO_EVT_CT_TX,
284   SESSION_IO_EVT_TX_FLUSH,
285   SESSION_IO_EVT_BUILTIN_RX,
286   SESSION_IO_EVT_BUILTIN_TX,
287   SESSION_CTRL_EVT_RPC,
288   SESSION_CTRL_EVT_CLOSE,
289   SESSION_CTRL_EVT_BOUND,
290   SESSION_CTRL_EVT_UNLISTEN_REPLY,
291   SESSION_CTRL_EVT_ACCEPTED,
292   SESSION_CTRL_EVT_ACCEPTED_REPLY,
293   SESSION_CTRL_EVT_CONNECTED,
294   SESSION_CTRL_EVT_CONNECTED_REPLY,
295   SESSION_CTRL_EVT_DISCONNECTED,
296   SESSION_CTRL_EVT_DISCONNECTED_REPLY,
297   SESSION_CTRL_EVT_RESET,
298   SESSION_CTRL_EVT_RESET_REPLY,
299   SESSION_CTRL_EVT_REQ_WORKER_UPDATE,
300   SESSION_CTRL_EVT_WORKER_UPDATE,
301   SESSION_CTRL_EVT_WORKER_UPDATE_REPLY,
302 } session_evt_type_t;
303
304 /* Deprecated and will be removed. Use types above */
305 #define FIFO_EVENT_APP_RX SESSION_IO_EVT_RX
306 #define FIFO_EVENT_APP_TX SESSION_IO_EVT_TX
307 #define FIFO_EVENT_DISCONNECT SESSION_CTRL_EVT_CLOSE
308 #define FIFO_EVENT_BUILTIN_RX SESSION_IO_EVT_BUILTIN_RX
309 #define FIFO_EVENT_BUILTIN_TX SESSION_IO_EVT_BUILTIN_TX
310
311 typedef enum
312 {
313   SESSION_MQ_IO_EVT_RING,
314   SESSION_MQ_CTRL_EVT_RING,
315   SESSION_MQ_N_RINGS
316 } session_mq_rings_e;
317
318 typedef struct
319 {
320   void *fp;
321   void *arg;
322 } session_rpc_args_t;
323
324 /* *INDENT-OFF* */
325 typedef struct
326 {
327   u8 event_type;
328   u8 postponed;
329   union
330   {
331     svm_fifo_t *fifo;
332     session_handle_t session_handle;
333     session_rpc_args_t rpc_args;
334     struct
335     {
336       u8 data[0];
337     };
338   };
339 } __clib_packed session_event_t;
340 /* *INDENT-ON* */
341
342 #define SESSION_MSG_NULL { }
343
344 typedef struct session_dgram_pre_hdr_
345 {
346   u32 data_length;
347   u32 data_offset;
348 } session_dgram_pre_hdr_t;
349
350 /* *INDENT-OFF* */
351 typedef CLIB_PACKED (struct session_dgram_header_
352 {
353   u32 data_length;
354   u32 data_offset;
355   ip46_address_t rmt_ip;
356   ip46_address_t lcl_ip;
357   u16 rmt_port;
358   u16 lcl_port;
359   u8 is_ip4;
360 }) session_dgram_hdr_t;
361 /* *INDENT-ON* */
362
363 #define SESSION_CONN_ID_LEN 37
364 #define SESSION_CONN_HDR_LEN 45
365
366 STATIC_ASSERT (sizeof (session_dgram_hdr_t) == (SESSION_CONN_ID_LEN + 8),
367                "session conn id wrong length");
368 #endif /* SRC_VNET_SESSION_SESSION_TYPES_H_ */
369
370 /*
371  * fd.io coding-style-patch-verification: ON
372  *
373  * Local Variables:
374  * eval: (c-set-style "gnu")
375  * End:
376  */