blob: 51d5065059b6f7208a2d730b242cbdd22902e101 [file] [log] [blame]
Florin Coras04e53442017-07-16 17:12:15 -07001/*
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
16#ifndef SRC_VNET_SESSION_STREAM_SESSION_H_
17#define SRC_VNET_SESSION_STREAM_SESSION_H_
18
19#include <vnet/vnet.h>
20#include <svm/svm_fifo.h>
Florin Corascea194d2017-10-02 00:18:51 -070021#include <vnet/session/transport.h>
Florin Coras04e53442017-07-16 17:12:15 -070022
23#define foreach_session_type \
24 _(IP4_TCP, ip4_tcp) \
25 _(IP4_UDP, ip4_udp) \
26 _(IP6_TCP, ip6_tcp) \
27 _(IP6_UDP, ip6_udp)
28
29typedef enum
30{
31#define _(A, a) SESSION_TYPE_##A,
32 foreach_session_type
33#undef _
34 SESSION_N_TYPES,
35} session_type_t;
36
37/*
38 * Application session state
39 */
40typedef enum
41{
42 SESSION_STATE_LISTENING,
43 SESSION_STATE_CONNECTING,
44 SESSION_STATE_ACCEPTING,
45 SESSION_STATE_READY,
Florin Coras3cbc04b2017-10-02 00:18:51 -070046 SESSION_STATE_CONNECTING_READY,
Florin Coras04e53442017-07-16 17:12:15 -070047 SESSION_STATE_CLOSED,
48 SESSION_STATE_N_STATES,
49} stream_session_state_t;
50
51typedef struct _stream_session_t
52{
53 /** fifo pointers. Once allocated, these do not move */
54 svm_fifo_t *server_rx_fifo;
55 svm_fifo_t *server_tx_fifo;
56
57 /** Type */
58 u8 session_type;
59
60 /** State */
Florin Coras1f152cd2017-08-18 19:28:03 -070061 volatile u8 session_state;
Florin Coras04e53442017-07-16 17:12:15 -070062
63 u8 thread_index;
64
65 /** To avoid n**2 "one event per frame" check */
66 u8 enqueue_epoch;
67
Florin Coras04e53442017-07-16 17:12:15 -070068 /** svm segment index where fifos were allocated */
69 u32 svm_segment_index;
70
71 /** Session index in per_thread pool */
72 u32 session_index;
73
74 /** Transport specific */
75 u32 connection_index;
76
77 /** stream server pool index */
78 u32 app_index;
79
80 /** Parent listener session if the result of an accept */
81 u32 listener_index;
82
Florin Coras0e9c33b2017-08-14 22:33:41 -070083 CLIB_CACHE_LINE_ALIGN_MARK (pad);
Florin Coras04e53442017-07-16 17:12:15 -070084} stream_session_t;
85
Florin Corascea194d2017-10-02 00:18:51 -070086typedef struct _session_endpoint
87{
88 /*
89 * Network specific
90 */
91#define _(type, name) type name;
92 foreach_transport_connection_fields
93#undef _
94 /*
95 * Session specific
96 */
97 u8 transport_proto; /**< transport protocol for session */
98} session_endpoint_t;
99
100#define SESSION_IP46_ZERO \
101{ \
102 .ip6 = { \
103 { 0, 0, }, \
104 }, \
105}
106#define SESSION_ENDPOINT_NULL \
107{ \
108 .sw_if_index = ENDPOINT_INVALID_INDEX, \
109 .ip = SESSION_IP46_ZERO, \
110 .fib_index = ENDPOINT_INVALID_INDEX, \
111 .is_ip4 = 0, \
112 .port = 0, \
113 .transport_proto = 0, \
114}
115
116#define session_endpoint_to_transport(_sep) ((transport_endpoint_t *)_sep)
117
118always_inline u8
119session_endpoint_fib_proto (session_endpoint_t * sep)
120{
121 return sep->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
122}
123
Florin Coras04e53442017-07-16 17:12:15 -0700124#endif /* SRC_VNET_SESSION_STREAM_SESSION_H_ */
125
126/*
127 * fd.io coding-style-patch-verification: ON
128 *
129 * Local Variables:
130 * eval: (c-set-style "gnu")
131 * End:
132 */