blob: e5f788bee08538ab1d094efe1704a396794b6518 [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>
21#include <vppinfra/bihash_16_8.h>
22#include <vppinfra/bihash_48_8.h>
Florin Corase69f4952017-03-07 10:06:24 -080023#include <vnet/tcp/tcp_debug.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024/*
25 * Protocol independent transport properties associated to a session
26 */
27typedef struct _transport_connection
28{
29 ip46_address_t rmt_ip; /**< Remote IP */
30 ip46_address_t lcl_ip; /**< Local IP */
31 u16 lcl_port; /**< Local port */
32 u16 rmt_port; /**< Remote port */
Florin Coras6cf30ad2017-04-04 23:08:23 -070033 u8 proto; /**< Transport protocol id (also session type) */
Dave Barach68b0fb02017-02-28 15:15:56 -050034
35 u32 s_index; /**< Parent session index */
36 u32 c_index; /**< Connection index in transport pool */
37 u8 is_ip4; /**< Flag if IP4 connection */
38 u32 thread_index; /**< Worker-thread index */
39
Florin Corase69f4952017-03-07 10:06:24 -080040#if TRANSPORT_DEBUG
Florin Coras6792ec02017-03-13 03:49:51 -070041 elog_track_t elog_track; /**< Event logging */
Florin Corase69f4952017-03-07 10:06:24 -080042#endif
43
Dave Barach68b0fb02017-02-28 15:15:56 -050044 /** Macros for 'derived classes' where base is named "connection" */
45#define c_lcl_ip connection.lcl_ip
46#define c_rmt_ip connection.rmt_ip
47#define c_lcl_ip4 connection.lcl_ip.ip4
48#define c_rmt_ip4 connection.rmt_ip.ip4
49#define c_lcl_ip6 connection.lcl_ip.ip6
50#define c_rmt_ip6 connection.rmt_ip.ip6
51#define c_lcl_port connection.lcl_port
52#define c_rmt_port connection.rmt_port
53#define c_proto connection.proto
54#define c_state connection.state
55#define c_s_index connection.s_index
56#define c_c_index connection.c_index
57#define c_is_ip4 connection.is_ip4
58#define c_thread_index connection.thread_index
Florin Corase69f4952017-03-07 10:06:24 -080059#define c_elog_track connection.elog_track
Dave Barach68b0fb02017-02-28 15:15:56 -050060} transport_connection_t;
61
62/*
63 * Transport protocol virtual function table
64 */
65typedef struct _transport_proto_vft
66{
67 /*
68 * Setup
69 */
Florin Corase69f4952017-03-07 10:06:24 -080070 u32 (*bind) (u32, ip46_address_t *, u16);
71 u32 (*unbind) (u32);
Dave Barach68b0fb02017-02-28 15:15:56 -050072 int (*open) (ip46_address_t * addr, u16 port_host_byte_order);
73 void (*close) (u32 conn_index, u32 thread_index);
74 void (*cleanup) (u32 conn_index, u32 thread_index);
75
76 /*
77 * Transmission
78 */
79 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
80 u16 (*send_mss) (transport_connection_t * tc);
81 u32 (*send_space) (transport_connection_t * tc);
Florin Corasd79b41e2017-03-04 05:37:52 -080082 u32 (*tx_fifo_offset) (transport_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -050083
84 /*
85 * Connection retrieval
86 */
87 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
88 transport_connection_t *(*get_listener) (u32 conn_index);
89 transport_connection_t *(*get_half_open) (u32 conn_index);
90
91 /*
92 * Format
93 */
94 u8 *(*format_connection) (u8 * s, va_list * args);
95 u8 *(*format_listener) (u8 * s, va_list * args);
96 u8 *(*format_half_open) (u8 * s, va_list * args);
Dave Barach68b0fb02017-02-28 15:15:56 -050097} transport_proto_vft_t;
98
Florin Corasd79b41e2017-03-04 05:37:52 -080099/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500100/* 16 octets */
Florin Corasd79b41e2017-03-04 05:37:52 -0800101typedef CLIB_PACKED (struct {
102 union
103 {
104 struct
105 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700106 ip4_address_t src;
107 ip4_address_t dst;
Florin Corasd79b41e2017-03-04 05:37:52 -0800108 u16 src_port;
109 u16 dst_port;
110 /* align by making this 4 octets even though its a 1-bit field
111 * NOTE: avoid key overlap with other transports that use 5 tuples for
112 * session identification.
113 */
114 u32 proto;
115 };
116 u64 as_u64[2];
117 };
118}) v4_connection_key_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500119
Florin Corasd79b41e2017-03-04 05:37:52 -0800120typedef CLIB_PACKED (struct {
121 union
122 {
123 struct
124 {
125 /* 48 octets */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700126 ip6_address_t src;
127 ip6_address_t dst;
Florin Corasd79b41e2017-03-04 05:37:52 -0800128 u16 src_port;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700129 u16 dst_port;
130 u32 proto;
Clement Durandda7567c2017-05-04 08:33:55 +0200131 u64 unused;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700132 };
133 u64 as_u64[6];
Florin Corasd79b41e2017-03-04 05:37:52 -0800134 };
135}) v6_connection_key_t;
136/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500137
138typedef clib_bihash_kv_16_8_t session_kv4_t;
139typedef clib_bihash_kv_48_8_t session_kv6_t;
140
141always_inline void
142make_v4_ss_kv (session_kv4_t * kv, ip4_address_t * lcl, ip4_address_t * rmt,
143 u16 lcl_port, u16 rmt_port, u8 proto)
144{
Clement Durandda7567c2017-05-04 08:33:55 +0200145 v4_connection_key_t *key = (v4_connection_key_t *) kv->key;
Dave Barach68b0fb02017-02-28 15:15:56 -0500146
Clement Durandda7567c2017-05-04 08:33:55 +0200147 key->src.as_u32 = lcl->as_u32;
148 key->dst.as_u32 = rmt->as_u32;
149 key->src_port = lcl_port;
150 key->dst_port = rmt_port;
151 key->proto = proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500152
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 kv->value = ~0ULL;
154}
155
156always_inline void
157make_v4_listener_kv (session_kv4_t * kv, ip4_address_t * lcl, u16 lcl_port,
158 u8 proto)
159{
Clement Durandda7567c2017-05-04 08:33:55 +0200160 v4_connection_key_t *key = (v4_connection_key_t *) kv->key;
Dave Barach68b0fb02017-02-28 15:15:56 -0500161
Clement Durandda7567c2017-05-04 08:33:55 +0200162 key->src.as_u32 = lcl->as_u32;
163 key->dst.as_u32 = 0;
164 key->src_port = lcl_port;
165 key->dst_port = 0;
166 key->proto = proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500167
Dave Barach68b0fb02017-02-28 15:15:56 -0500168 kv->value = ~0ULL;
169}
170
171always_inline void
172make_v4_ss_kv_from_tc (session_kv4_t * kv, transport_connection_t * t)
173{
174 return make_v4_ss_kv (kv, &t->lcl_ip.ip4, &t->rmt_ip.ip4, t->lcl_port,
175 t->rmt_port, t->proto);
176}
177
178always_inline void
179make_v6_ss_kv (session_kv6_t * kv, ip6_address_t * lcl, ip6_address_t * rmt,
180 u16 lcl_port, u16 rmt_port, u8 proto)
181{
Clement Durandda7567c2017-05-04 08:33:55 +0200182 v6_connection_key_t *key = (v6_connection_key_t *) kv->key;
Dave Barach68b0fb02017-02-28 15:15:56 -0500183
Clement Durandda7567c2017-05-04 08:33:55 +0200184 key->src.as_u64[0] = lcl->as_u64[0];
185 key->src.as_u64[1] = lcl->as_u64[1];
186 key->dst.as_u64[0] = rmt->as_u64[0];
187 key->dst.as_u64[1] = rmt->as_u64[1];
188 key->src_port = lcl_port;
189 key->dst_port = rmt_port;
190 key->proto = proto;
191 key->unused = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500192
Dave Barach68b0fb02017-02-28 15:15:56 -0500193 kv->value = ~0ULL;
194}
195
196always_inline void
197make_v6_listener_kv (session_kv6_t * kv, ip6_address_t * lcl, u16 lcl_port,
198 u8 proto)
199{
Clement Durandda7567c2017-05-04 08:33:55 +0200200 v6_connection_key_t *key = (v6_connection_key_t *) kv->key;
Dave Barach68b0fb02017-02-28 15:15:56 -0500201
Clement Durandda7567c2017-05-04 08:33:55 +0200202 key->src.as_u64[0] = lcl->as_u64[0];
203 key->src.as_u64[1] = lcl->as_u64[1];
204 key->dst.as_u64[0] = 0;
205 key->dst.as_u64[1] = 0;
206 key->src_port = lcl_port;
207 key->dst_port = 0;
208 key->proto = proto;
209 key->unused = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500210
Dave Barach68b0fb02017-02-28 15:15:56 -0500211 kv->value = ~0ULL;
212}
213
214always_inline void
215make_v6_ss_kv_from_tc (session_kv6_t * kv, transport_connection_t * t)
216{
217 make_v6_ss_kv (kv, &t->lcl_ip.ip6, &t->rmt_ip.ip6, t->lcl_port,
218 t->rmt_port, t->proto);
219}
220
221typedef struct _transport_endpoint
222{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700223 ip46_address_t ip; /** ip address */
224 u16 port; /** port in host order */
225 u8 is_ip4; /** 1 if ip4 */
226 u32 vrf; /** fib table the endpoint is associated with */
Dave Barach68b0fb02017-02-28 15:15:56 -0500227} transport_endpoint_t;
228
229typedef clib_bihash_24_8_t transport_endpoint_table_t;
230
231#define TRANSPORT_ENDPOINT_INVALID_INDEX ((u32)~0)
232
233u32
234transport_endpoint_lookup (transport_endpoint_table_t * ht,
235 ip46_address_t * ip, u16 port);
236void transport_endpoint_table_add (transport_endpoint_table_t * ht,
237 transport_endpoint_t * te, u32 value);
238void transport_endpoint_table_del (transport_endpoint_table_t * ht,
239 transport_endpoint_t * te);
240
241#endif /* VNET_VNET_URI_TRANSPORT_H_ */
242
243/*
244 * fd.io coding-style-patch-verification: ON
245 *
246 * Local Variables:
247 * eval: (c-set-style "gnu")
248 * End:
249 */