blob: 952f97d9ac3326d3af5294e2696ebc95f9147182 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 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_H_
17#define VNET_VNET_URI_TRANSPORT_H_
18
19#include <vnet/vnet.h>
20#include <vnet/ip/ip.h>
Florin Corase69f4952017-03-07 10:06:24 -080021#include <vnet/tcp/tcp_debug.h>
Florin Coras04e53442017-07-16 17:12:15 -070022
Florin Corasd67f1122018-05-21 17:47:40 -070023typedef struct _transport_stats
24{
25 u64 tx_bytes;
26} transport_stats_t;
27
28typedef struct _spacer
29{
30 u64 bucket;
31 u32 max_burst_size;
32 f32 tokens_per_period;
33 u64 last_update;
34} spacer_t;
35
Florin Corasde9a8492018-10-24 22:18:58 -070036/*
37 * Protocol independent transport properties associated to a session
38 */
Dave Barach68b0fb02017-02-28 15:15:56 -050039typedef struct _transport_connection
40{
Florin Coras371ca502018-02-21 12:07:41 -080041 /** Connection ID */
42 union
43 {
44 /*
45 * Network connection ID tuple
46 */
47 struct
48 {
49 ip46_address_t rmt_ip; /**< Remote IP */
50 ip46_address_t lcl_ip; /**< Local IP */
Florin Coras371ca502018-02-21 12:07:41 -080051 u16 rmt_port; /**< Remote port */
Florin Coras7fb0fe12018-04-09 09:24:52 -070052 u16 lcl_port; /**< Local port */
Florin Coras371ca502018-02-21 12:07:41 -080053 u8 is_ip4; /**< Flag if IP4 connection */
Florin Coras7fb0fe12018-04-09 09:24:52 -070054 u8 proto; /**< Protocol id */
Florin Coras371ca502018-02-21 12:07:41 -080055 u32 fib_index; /**< Network namespace */
56 };
57 /*
58 * Opaque connection ID
59 */
60 u8 opaque_conn_id[42];
61 };
Dave Barach68b0fb02017-02-28 15:15:56 -050062
63 u32 s_index; /**< Parent session index */
64 u32 c_index; /**< Connection index in transport pool */
Dave Barach68b0fb02017-02-28 15:15:56 -050065 u32 thread_index; /**< Worker-thread index */
66
Florin Coras371ca502018-02-21 12:07:41 -080067 /*fib_node_index_t rmt_fei;
68 dpo_id_t rmt_dpo; */
Florin Corasf6359c82017-06-19 12:26:09 -040069
Florin Corasd67f1122018-05-21 17:47:40 -070070 u8 flags; /**< Transport specific flags */
71 transport_stats_t stats; /**< Transport connection stats */
72 spacer_t pacer; /**< Simple transport pacer */
73
Florin Corase69f4952017-03-07 10:06:24 -080074#if TRANSPORT_DEBUG
Florin Coras6792ec02017-03-13 03:49:51 -070075 elog_track_t elog_track; /**< Event logging */
Florin Corasf03a59a2017-06-09 21:07:32 -070076 u32 cc_stat_tstamp; /**< CC stats timestamp */
Florin Corase69f4952017-03-07 10:06:24 -080077#endif
78
Dave Barach68b0fb02017-02-28 15:15:56 -050079 /** Macros for 'derived classes' where base is named "connection" */
80#define c_lcl_ip connection.lcl_ip
81#define c_rmt_ip connection.rmt_ip
82#define c_lcl_ip4 connection.lcl_ip.ip4
83#define c_rmt_ip4 connection.rmt_ip.ip4
84#define c_lcl_ip6 connection.lcl_ip.ip6
85#define c_rmt_ip6 connection.rmt_ip.ip6
86#define c_lcl_port connection.lcl_port
87#define c_rmt_port connection.rmt_port
Florin Coras3cbc04b2017-10-02 00:18:51 -070088#define c_proto connection.proto
Florin Corascea194d2017-10-02 00:18:51 -070089#define c_fib_index connection.fib_index
Dave Barach68b0fb02017-02-28 15:15:56 -050090#define c_s_index connection.s_index
91#define c_c_index connection.c_index
92#define c_is_ip4 connection.is_ip4
93#define c_thread_index connection.thread_index
Florin Corase69f4952017-03-07 10:06:24 -080094#define c_elog_track connection.elog_track
Florin Corasf03a59a2017-06-09 21:07:32 -070095#define c_cc_stat_tstamp connection.cc_stat_tstamp
Florin Corasf6359c82017-06-19 12:26:09 -040096#define c_rmt_fei connection.rmt_fei
97#define c_rmt_dpo connection.rmt_dpo
Florin Coras371ca502018-02-21 12:07:41 -080098#define c_opaque_id connection.opaque_conn_id
Florin Corasd67f1122018-05-21 17:47:40 -070099#define c_stats connection.stats
100#define c_pacer connection.pacer
101#define c_flags connection.flags
Dave Barach68b0fb02017-02-28 15:15:56 -0500102} transport_connection_t;
103
Florin Corasd67f1122018-05-21 17:47:40 -0700104#define TRANSPORT_CONNECTION_F_IS_TX_PACED 1 << 0
105
Dave Barach2c25a622017-06-26 11:35:07 -0400106typedef enum _transport_proto
107{
108 TRANSPORT_PROTO_TCP,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700109 TRANSPORT_PROTO_UDP,
Marco Varlese191a5942017-10-30 18:17:21 +0100110 TRANSPORT_PROTO_SCTP,
Florin Corasf8f516a2018-02-08 15:10:09 -0800111 TRANSPORT_PROTO_NONE,
Florin Coras371ca502018-02-21 12:07:41 -0800112 TRANSPORT_PROTO_TLS,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700113 TRANSPORT_PROTO_UDPC,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700114 TRANSPORT_N_PROTO
Dave Barach2c25a622017-06-26 11:35:07 -0400115} transport_proto_t;
116
Florin Coras1c710452017-10-17 00:03:13 -0700117u8 *format_transport_proto (u8 * s, va_list * args);
Florin Coras561af9b2017-12-09 10:19:43 -0800118u8 *format_transport_proto_short (u8 * s, va_list * args);
Florin Corasde9a8492018-10-24 22:18:58 -0700119u8 *format_transport_connection (u8 * s, va_list * args);
120u8 *format_transport_listen_connection (u8 * s, va_list * args);
121u8 *format_transport_half_open_connection (u8 * s, va_list * args);
122
Florin Coras1c710452017-10-17 00:03:13 -0700123uword unformat_transport_proto (unformat_input_t * input, va_list * args);
124
Florin Coras5665ced2018-10-25 18:03:45 -0700125#define foreach_transport_endpoint_fields \
126 _(ip46_address_t, ip) /**< ip address in net order */ \
Florin Corascea194d2017-10-02 00:18:51 -0700127 _(u16, port) /**< port in net order */ \
Florin Coras5665ced2018-10-25 18:03:45 -0700128 _(u8, is_ip4) /**< set if ip4 */ \
129 _(u32, sw_if_index) /**< interface endpoint is associated with */ \
130 _(u32, fib_index) /**< fib table endpoint is associated with */ \
Florin Corascea194d2017-10-02 00:18:51 -0700131
Florin Coras5665ced2018-10-25 18:03:45 -0700132typedef struct transport_endpoint_
Dave Barach68b0fb02017-02-28 15:15:56 -0500133{
Florin Corascea194d2017-10-02 00:18:51 -0700134#define _(type, name) type name;
Florin Coras5665ced2018-10-25 18:03:45 -0700135 foreach_transport_endpoint_fields
Florin Corascea194d2017-10-02 00:18:51 -0700136#undef _
Dave Barach68b0fb02017-02-28 15:15:56 -0500137} transport_endpoint_t;
138
Florin Coras5665ced2018-10-25 18:03:45 -0700139#define foreach_transport_endpoint_cfg_fields \
140 foreach_transport_endpoint_fields \
141 _(transport_endpoint_t, peer) \
142
143typedef struct transport_endpoint_pair_
144{
145#define _(type, name) type name;
146 foreach_transport_endpoint_cfg_fields
147#undef _
148} transport_endpoint_cfg_t;
149
Florin Coras3cbc04b2017-10-02 00:18:51 -0700150typedef clib_bihash_24_8_t transport_endpoint_table_t;
151
Florin Corascea194d2017-10-02 00:18:51 -0700152#define ENDPOINT_INVALID_INDEX ((u32)~0)
153
154always_inline u8
155transport_connection_fib_proto (transport_connection_t * tc)
156{
157 return tc->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
158}
159
Florin Coras3cbc04b2017-10-02 00:18:51 -0700160always_inline u8
161transport_endpoint_fib_proto (transport_endpoint_t * tep)
162{
163 return tep->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
164}
165
Florin Coras3cbc04b2017-10-02 00:18:51 -0700166int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700167int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700168 ip46_address_t * lcl_addr,
169 u16 * lcl_port);
170void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras40903ac2018-06-10 14:41:23 -0700171u8 transport_protocol_is_cl (transport_proto_t tp);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700172void transport_init (void);
173
Dave Barach68b0fb02017-02-28 15:15:56 -0500174#endif /* VNET_VNET_URI_TRANSPORT_H_ */
175
176/*
177 * fd.io coding-style-patch-verification: ON
178 *
179 * Local Variables:
180 * eval: (c-set-style "gnu")
181 * End:
182 */