Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 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 Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 21 | #include <vnet/tcp/tcp_debug.h> |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 22 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | /* |
| 24 | * Protocol independent transport properties associated to a session |
| 25 | */ |
| 26 | typedef struct _transport_connection |
| 27 | { |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 28 | /** Connection ID */ |
| 29 | union |
| 30 | { |
| 31 | /* |
| 32 | * Network connection ID tuple |
| 33 | */ |
| 34 | struct |
| 35 | { |
| 36 | ip46_address_t rmt_ip; /**< Remote IP */ |
| 37 | ip46_address_t lcl_ip; /**< Local IP */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 38 | u16 rmt_port; /**< Remote port */ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 39 | u16 lcl_port; /**< Local port */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 40 | u8 is_ip4; /**< Flag if IP4 connection */ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 41 | u8 proto; /**< Protocol id */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 42 | u32 fib_index; /**< Network namespace */ |
| 43 | }; |
| 44 | /* |
| 45 | * Opaque connection ID |
| 46 | */ |
| 47 | u8 opaque_conn_id[42]; |
| 48 | }; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 49 | |
| 50 | u32 s_index; /**< Parent session index */ |
| 51 | u32 c_index; /**< Connection index in transport pool */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 52 | u32 thread_index; /**< Worker-thread index */ |
| 53 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 54 | /*fib_node_index_t rmt_fei; |
| 55 | dpo_id_t rmt_dpo; */ |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 56 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 57 | #if TRANSPORT_DEBUG |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 58 | elog_track_t elog_track; /**< Event logging */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 59 | u32 cc_stat_tstamp; /**< CC stats timestamp */ |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 60 | #endif |
| 61 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 62 | /** Macros for 'derived classes' where base is named "connection" */ |
| 63 | #define c_lcl_ip connection.lcl_ip |
| 64 | #define c_rmt_ip connection.rmt_ip |
| 65 | #define c_lcl_ip4 connection.lcl_ip.ip4 |
| 66 | #define c_rmt_ip4 connection.rmt_ip.ip4 |
| 67 | #define c_lcl_ip6 connection.lcl_ip.ip6 |
| 68 | #define c_rmt_ip6 connection.rmt_ip.ip6 |
| 69 | #define c_lcl_port connection.lcl_port |
| 70 | #define c_rmt_port connection.rmt_port |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 71 | #define c_proto connection.proto |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 72 | #define c_fib_index connection.fib_index |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 73 | #define c_s_index connection.s_index |
| 74 | #define c_c_index connection.c_index |
| 75 | #define c_is_ip4 connection.is_ip4 |
| 76 | #define c_thread_index connection.thread_index |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 77 | #define c_elog_track connection.elog_track |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 78 | #define c_cc_stat_tstamp connection.cc_stat_tstamp |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 79 | #define c_rmt_fei connection.rmt_fei |
| 80 | #define c_rmt_dpo connection.rmt_dpo |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 81 | #define c_opaque_id connection.opaque_conn_id |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 82 | } transport_connection_t; |
| 83 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 84 | typedef enum _transport_proto |
| 85 | { |
| 86 | TRANSPORT_PROTO_TCP, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 87 | TRANSPORT_PROTO_UDP, |
Marco Varlese | 191a594 | 2017-10-30 18:17:21 +0100 | [diff] [blame] | 88 | TRANSPORT_PROTO_SCTP, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 89 | TRANSPORT_PROTO_NONE, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 90 | TRANSPORT_PROTO_TLS, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 91 | TRANSPORT_PROTO_UDPC, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 92 | TRANSPORT_N_PROTO |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 93 | } transport_proto_t; |
| 94 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 95 | u8 *format_transport_proto (u8 * s, va_list * args); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 96 | u8 *format_transport_proto_short (u8 * s, va_list * args); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 97 | uword unformat_transport_proto (unformat_input_t * input, va_list * args); |
| 98 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 99 | #define foreach_transport_connection_fields \ |
| 100 | _(u32, sw_if_index) /**< interface endpoint is associated with */ \ |
| 101 | _(ip46_address_t, ip) /**< ip address */ \ |
| 102 | _(u32, fib_index) /**< fib table endpoint is associated with */ \ |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 103 | _(u8, is_ip4) /**< set if ip4 */ \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 104 | _(u16, port) /**< port in net order */ \ |
| 105 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 106 | typedef struct _transport_endpoint |
| 107 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 108 | #define _(type, name) type name; |
| 109 | foreach_transport_connection_fields |
| 110 | #undef _ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 111 | } transport_endpoint_t; |
| 112 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 113 | typedef clib_bihash_24_8_t transport_endpoint_table_t; |
| 114 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 115 | #define ENDPOINT_INVALID_INDEX ((u32)~0) |
| 116 | |
| 117 | always_inline u8 |
| 118 | transport_connection_fib_proto (transport_connection_t * tc) |
| 119 | { |
| 120 | return tc->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 121 | } |
| 122 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 123 | always_inline u8 |
| 124 | transport_endpoint_fib_proto (transport_endpoint_t * tep) |
| 125 | { |
| 126 | return tep->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 127 | } |
| 128 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 129 | int transport_alloc_local_port (u8 proto, ip46_address_t * ip); |
| 130 | int transport_alloc_local_endpoint (u8 proto, transport_endpoint_t * rmt, |
| 131 | ip46_address_t * lcl_addr, |
| 132 | u16 * lcl_port); |
| 133 | void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port); |
| 134 | void transport_init (void); |
| 135 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 136 | #endif /* VNET_VNET_URI_TRANSPORT_H_ */ |
| 137 | |
| 138 | /* |
| 139 | * fd.io coding-style-patch-verification: ON |
| 140 | * |
| 141 | * Local Variables: |
| 142 | * eval: (c-set-style "gnu") |
| 143 | * End: |
| 144 | */ |