e15c6bbb76f4e21cd9bcb27d99f828ad1feaeccb
[vpp.git] / src / vnet / session / transport_types.h
1 /*
2  * Copyright (c) 2016-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 VNET_VNET_URI_TRANSPORT_TYPES_H_
17 #define VNET_VNET_URI_TRANSPORT_TYPES_H_
18
19 #include <vnet/vnet.h>
20 #include <vnet/ip/ip.h>
21 #include <vnet/tcp/tcp_debug.h>
22
23 #define TRANSPORT_MAX_HDRS_LEN    100   /* Max number of bytes for headers */
24
25 typedef enum transport_dequeue_type_
26 {
27   TRANSPORT_TX_PEEK,            /**< reliable transport protos */
28   TRANSPORT_TX_DEQUEUE,         /**< unreliable transport protos */
29   TRANSPORT_TX_INTERNAL,        /**< apps acting as transports */
30   TRANSPORT_TX_DGRAM,           /**< datagram mode */
31   TRANSPORT_TX_N_FNS
32 } transport_tx_fn_type_t;
33
34 typedef enum transport_service_type_
35 {
36   TRANSPORT_SERVICE_VC,         /**< virtual circuit service */
37   TRANSPORT_SERVICE_CL,         /**< connectionless service */
38   TRANSPORT_SERVICE_APP,        /**< app transport service */
39   TRANSPORT_N_SERVICES
40 } transport_service_type_t;
41
42 typedef enum transport_connection_flags_
43 {
44   TRANSPORT_CONNECTION_F_IS_TX_PACED = 1 << 0,
45   TRANSPORT_CONNECTION_F_NO_LOOKUP = 1 << 1, /**< Don't register connection in lookup
46                                                   Does not apply to local apps and
47                                                   transports using the network layer (udp/tcp) */
48 } transport_connection_flags_t;
49
50 typedef struct _transport_stats
51 {
52   u64 tx_bytes;
53 } transport_stats_t;
54
55 typedef struct _spacer
56 {
57   u64 bucket;
58   u32 max_burst_size;
59   f32 tokens_per_period;
60   u64 last_update;
61 } spacer_t;
62
63 /*
64  * Protocol independent transport properties associated to a session
65  */
66 typedef struct _transport_connection
67 {
68   /** Connection ID */
69   union
70   {
71     /*
72      * Network connection ID tuple
73      */
74     struct
75     {
76       ip46_address_t rmt_ip;    /**< Remote IP */
77       ip46_address_t lcl_ip;    /**< Local IP */
78       u16 rmt_port;             /**< Remote port */
79       u16 lcl_port;             /**< Local port */
80       u8 is_ip4;                /**< Flag if IP4 connection */
81       u8 proto;                 /**< Protocol id */
82       u32 fib_index;            /**< Network namespace */
83     };
84     /*
85      * Opaque connection ID
86      */
87     u8 opaque_conn_id[42];
88   };
89
90   u32 s_index;                  /**< Parent session index */
91   u32 c_index;                  /**< Connection index in transport pool */
92   u32 thread_index;             /**< Worker-thread index */
93
94   /*fib_node_index_t rmt_fei;
95      dpo_id_t rmt_dpo; */
96
97   u8 flags;                     /**< Transport specific flags */
98   transport_stats_t stats;      /**< Transport connection stats */
99   spacer_t pacer;               /**< Simple transport pacer */
100
101 #if TRANSPORT_DEBUG
102   elog_track_t elog_track;      /**< Event logging */
103   u32 cc_stat_tstamp;           /**< CC stats timestamp */
104 #endif
105
106   /** Macros for 'derived classes' where base is named "connection" */
107 #define c_lcl_ip connection.lcl_ip
108 #define c_rmt_ip connection.rmt_ip
109 #define c_lcl_ip4 connection.lcl_ip.ip4
110 #define c_rmt_ip4 connection.rmt_ip.ip4
111 #define c_lcl_ip6 connection.lcl_ip.ip6
112 #define c_rmt_ip6 connection.rmt_ip.ip6
113 #define c_lcl_port connection.lcl_port
114 #define c_rmt_port connection.rmt_port
115 #define c_proto connection.proto
116 #define c_fib_index connection.fib_index
117 #define c_s_index connection.s_index
118 #define c_c_index connection.c_index
119 #define c_is_ip4 connection.is_ip4
120 #define c_thread_index connection.thread_index
121 #define c_elog_track connection.elog_track
122 #define c_cc_stat_tstamp connection.cc_stat_tstamp
123 #define c_rmt_fei connection.rmt_fei
124 #define c_rmt_dpo connection.rmt_dpo
125 #define c_opaque_id connection.opaque_conn_id
126 #define c_stats connection.stats
127 #define c_pacer connection.pacer
128 #define c_flags connection.flags
129 } transport_connection_t;
130
131 typedef enum _transport_proto
132 {
133   TRANSPORT_PROTO_TCP,
134   TRANSPORT_PROTO_UDP,
135   TRANSPORT_PROTO_SCTP,
136   TRANSPORT_PROTO_NONE,
137   TRANSPORT_PROTO_TLS,
138   TRANSPORT_PROTO_UDPC,
139   TRANSPORT_PROTO_QUIC,
140   TRANSPORT_N_PROTO
141 } transport_proto_t;
142
143 u8 *format_transport_proto (u8 * s, va_list * args);
144 u8 *format_transport_proto_short (u8 * s, va_list * args);
145 u8 *format_transport_connection (u8 * s, va_list * args);
146 u8 *format_transport_listen_connection (u8 * s, va_list * args);
147 u8 *format_transport_half_open_connection (u8 * s, va_list * args);
148
149 uword unformat_transport_proto (unformat_input_t * input, va_list * args);
150
151 #define foreach_transport_endpoint_fields                               \
152   _(ip46_address_t, ip) /**< ip address in net order */                 \
153   _(u16, port)          /**< port in net order */                       \
154   _(u8, is_ip4)         /**< set if ip4 */                              \
155   _(u32, sw_if_index)   /**< interface endpoint is associated with  */  \
156   _(u32, fib_index)     /**< fib table endpoint is associated with */   \
157
158 typedef struct transport_endpoint_
159 {
160 #define _(type, name) type name;
161   foreach_transport_endpoint_fields
162 #undef _
163 } transport_endpoint_t;
164
165 #define foreach_transport_endpoint_cfg_fields                           \
166   foreach_transport_endpoint_fields                                     \
167   _(transport_endpoint_t, peer)                                         \
168
169 typedef struct transport_endpoint_pair_
170 {
171 #define _(type, name) type name;
172   foreach_transport_endpoint_cfg_fields
173 #undef _
174 } transport_endpoint_cfg_t;
175
176 typedef clib_bihash_24_8_t transport_endpoint_table_t;
177
178 #define ENDPOINT_INVALID_INDEX ((u32)~0)
179
180 always_inline u8
181 transport_connection_fib_proto (transport_connection_t * tc)
182 {
183   return tc->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
184 }
185
186 always_inline u8
187 transport_endpoint_fib_proto (transport_endpoint_t * tep)
188 {
189   return tep->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
190 }
191
192 u8 transport_protocol_is_cl (transport_proto_t tp);
193 u8 transport_half_open_has_fifos (transport_proto_t tp);
194 transport_service_type_t transport_protocol_service_type (transport_proto_t);
195 transport_tx_fn_type_t transport_protocol_tx_fn_type (transport_proto_t tp);
196
197 #endif /* VNET_VNET_URI_TRANSPORT_TYPES_H_ */
198
199 /*
200  * fd.io coding-style-patch-verification: ON
201  *
202  * Local Variables:
203  * eval: (c-set-style "gnu")
204  * End:
205  */