blob: f2cc80bb23a461f4bf25d76d580929cffbfda819 [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
Dave Barach68b0fb02017-02-28 15:15:56 -050023/*
24 * Protocol independent transport properties associated to a session
25 */
26typedef struct _transport_connection
27{
28 ip46_address_t rmt_ip; /**< Remote IP */
29 ip46_address_t lcl_ip; /**< Local IP */
30 u16 lcl_port; /**< Local port */
31 u16 rmt_port; /**< Remote port */
Florin Coras3cbc04b2017-10-02 00:18:51 -070032 u8 proto; /**< Protocol id */
Florin Coras68810622017-07-24 17:40:28 -070033 u8 is_ip4; /**< Flag if IP4 connection */
Florin Corascea194d2017-10-02 00:18:51 -070034 u32 fib_index; /**< Network namespace */
Dave Barach68b0fb02017-02-28 15:15:56 -050035
36 u32 s_index; /**< Parent session index */
37 u32 c_index; /**< Connection index in transport pool */
Dave Barach68b0fb02017-02-28 15:15:56 -050038 u32 thread_index; /**< Worker-thread index */
39
Florin Corasf6359c82017-06-19 12:26:09 -040040 fib_node_index_t rmt_fei; /**< FIB entry index for rmt */
41 dpo_id_t rmt_dpo; /**< Forwarding DPO for rmt */
42
Florin Corase69f4952017-03-07 10:06:24 -080043#if TRANSPORT_DEBUG
Florin Coras6792ec02017-03-13 03:49:51 -070044 elog_track_t elog_track; /**< Event logging */
Florin Corasf03a59a2017-06-09 21:07:32 -070045 u32 cc_stat_tstamp; /**< CC stats timestamp */
Florin Corase69f4952017-03-07 10:06:24 -080046#endif
47
Dave Barach68b0fb02017-02-28 15:15:56 -050048 /** Macros for 'derived classes' where base is named "connection" */
49#define c_lcl_ip connection.lcl_ip
50#define c_rmt_ip connection.rmt_ip
51#define c_lcl_ip4 connection.lcl_ip.ip4
52#define c_rmt_ip4 connection.rmt_ip.ip4
53#define c_lcl_ip6 connection.lcl_ip.ip6
54#define c_rmt_ip6 connection.rmt_ip.ip6
55#define c_lcl_port connection.lcl_port
56#define c_rmt_port connection.rmt_port
Florin Coras3cbc04b2017-10-02 00:18:51 -070057#define c_proto connection.proto
Florin Corascea194d2017-10-02 00:18:51 -070058#define c_fib_index connection.fib_index
Dave Barach68b0fb02017-02-28 15:15:56 -050059#define c_s_index connection.s_index
60#define c_c_index connection.c_index
61#define c_is_ip4 connection.is_ip4
62#define c_thread_index connection.thread_index
Florin Corase69f4952017-03-07 10:06:24 -080063#define c_elog_track connection.elog_track
Florin Corasf03a59a2017-06-09 21:07:32 -070064#define c_cc_stat_tstamp connection.cc_stat_tstamp
Florin Corasf6359c82017-06-19 12:26:09 -040065#define c_rmt_fei connection.rmt_fei
66#define c_rmt_dpo connection.rmt_dpo
Dave Barach68b0fb02017-02-28 15:15:56 -050067} transport_connection_t;
68
Dave Barach2c25a622017-06-26 11:35:07 -040069typedef enum _transport_proto
70{
71 TRANSPORT_PROTO_TCP,
Florin Coras3cbc04b2017-10-02 00:18:51 -070072 TRANSPORT_PROTO_UDP,
73 TRANSPORT_N_PROTO
Dave Barach2c25a622017-06-26 11:35:07 -040074} transport_proto_t;
75
Florin Corascea194d2017-10-02 00:18:51 -070076#define foreach_transport_connection_fields \
77 _(u32, sw_if_index) /**< interface endpoint is associated with */ \
78 _(ip46_address_t, ip) /**< ip address */ \
79 _(u32, fib_index) /**< fib table endpoint is associated with */ \
80 _(u8, is_ip4) /**< 1 if ip4 */ \
81 _(u16, port) /**< port in net order */ \
82
Dave Barach68b0fb02017-02-28 15:15:56 -050083typedef struct _transport_endpoint
84{
Florin Corascea194d2017-10-02 00:18:51 -070085#define _(type, name) type name;
86 foreach_transport_connection_fields
87#undef _
Dave Barach68b0fb02017-02-28 15:15:56 -050088} transport_endpoint_t;
89
Florin Coras3cbc04b2017-10-02 00:18:51 -070090typedef clib_bihash_24_8_t transport_endpoint_table_t;
91
Florin Corascea194d2017-10-02 00:18:51 -070092#define ENDPOINT_INVALID_INDEX ((u32)~0)
93
94always_inline u8
95transport_connection_fib_proto (transport_connection_t * tc)
96{
97 return tc->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
98}
99
Florin Coras3cbc04b2017-10-02 00:18:51 -0700100always_inline u8
101transport_endpoint_fib_proto (transport_endpoint_t * tep)
102{
103 return tep->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
104}
105
106always_inline u8
107transport_is_stream (u8 proto)
108{
109 return (proto == TRANSPORT_PROTO_TCP);
110}
111
112always_inline u8
113transport_is_dgram (u8 proto)
114{
115 return (proto == TRANSPORT_PROTO_UDP);
116}
117
118int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
119int transport_alloc_local_endpoint (u8 proto, transport_endpoint_t * rmt,
120 ip46_address_t * lcl_addr,
121 u16 * lcl_port);
122void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
123void transport_init (void);
124
Dave Barach68b0fb02017-02-28 15:15:56 -0500125#endif /* VNET_VNET_URI_TRANSPORT_H_ */
126
127/*
128 * fd.io coding-style-patch-verification: ON
129 *
130 * Local Variables:
131 * eval: (c-set-style "gnu")
132 * End:
133 */