Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | /** @file |
| 17 | udp state machine, etc. |
| 18 | */ |
| 19 | |
| 20 | #include <vnet/udp/udp.h> |
| 21 | #include <vnet/session/session.h> |
| 22 | #include <vnet/dpo/load_balance.h> |
| 23 | #include <vnet/fib/ip4_fib.h> |
| 24 | |
Filip Tehlar | 2c49ffe | 2019-03-06 07:16:08 -0800 | [diff] [blame] | 25 | udp_main_t udp_main; |
| 26 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 27 | udp_connection_t * |
| 28 | udp_connection_alloc (u32 thread_index) |
| 29 | { |
| 30 | udp_main_t *um = &udp_main; |
| 31 | udp_connection_t *uc; |
| 32 | u32 will_expand = 0; |
| 33 | pool_get_aligned_will_expand (um->connections[thread_index], will_expand, |
| 34 | CLIB_CACHE_LINE_BYTES); |
| 35 | |
| 36 | if (PREDICT_FALSE (will_expand)) |
| 37 | { |
| 38 | clib_spinlock_lock_if_init (&udp_main.peekers_write_locks |
| 39 | [thread_index]); |
| 40 | pool_get_aligned (udp_main.connections[thread_index], uc, |
| 41 | CLIB_CACHE_LINE_BYTES); |
| 42 | clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks |
| 43 | [thread_index]); |
| 44 | } |
| 45 | else |
| 46 | { |
| 47 | pool_get_aligned (um->connections[thread_index], uc, |
| 48 | CLIB_CACHE_LINE_BYTES); |
| 49 | } |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 50 | clib_memset (uc, 0, sizeof (*uc)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 51 | uc->c_c_index = uc - um->connections[thread_index]; |
| 52 | uc->c_thread_index = thread_index; |
| 53 | uc->c_proto = TRANSPORT_PROTO_UDP; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 54 | clib_spinlock_init (&uc->rx_lock); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 55 | return uc; |
| 56 | } |
| 57 | |
| 58 | void |
| 59 | udp_connection_free (udp_connection_t * uc) |
| 60 | { |
| 61 | pool_put (udp_main.connections[uc->c_thread_index], uc); |
| 62 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 63 | clib_memset (uc, 0xFA, sizeof (*uc)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 64 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 65 | |
| 66 | u32 |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 67 | udp_session_bind (u32 session_index, transport_endpoint_t * lcl) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 68 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 69 | udp_main_t *um = vnet_get_udp_main (); |
| 70 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 71 | udp_connection_t *listener; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 72 | u32 node_index; |
| 73 | void *iface_ip; |
| 74 | udp_dst_port_info_t *pi; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 75 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 76 | pi = udp_get_dst_port_info (um, lcl->port, lcl->is_ip4); |
| 77 | if (pi) |
| 78 | return -1; |
| 79 | |
| 80 | pool_get (um->listener_pool, listener); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 81 | clib_memset (listener, 0, sizeof (udp_connection_t)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 82 | |
Florin Coras | 0e49568 | 2017-09-19 22:27:18 -0700 | [diff] [blame] | 83 | listener->c_lcl_port = lcl->port; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 84 | listener->c_c_index = listener - um->listener_pool; |
| 85 | |
| 86 | /* If we are provided a sw_if_index, bind using one of its ips */ |
| 87 | if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX) |
| 88 | { |
| 89 | if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index, |
| 90 | lcl->is_ip4))) |
| 91 | ip_set (&lcl->ip, iface_ip, lcl->is_ip4); |
| 92 | } |
| 93 | ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4); |
| 94 | listener->c_is_ip4 = lcl->is_ip4; |
| 95 | listener->c_proto = TRANSPORT_PROTO_UDP; |
| 96 | listener->c_s_index = session_index; |
| 97 | listener->c_fib_index = lcl->fib_index; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 98 | clib_spinlock_init (&listener->rx_lock); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 99 | |
| 100 | node_index = lcl->is_ip4 ? udp4_input_node.index : udp6_input_node.index; |
| 101 | udp_register_dst_port (vm, clib_net_to_host_u16 (lcl->port), node_index, |
| 102 | 1 /* is_ipv4 */ ); |
| 103 | return listener->c_c_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | u32 |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 107 | udp_session_unbind (u32 listener_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 108 | { |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 109 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 110 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 111 | udp_connection_t *listener; |
| 112 | listener = udp_listener_get (listener_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 113 | udp_unregister_dst_port (vm, clib_net_to_host_u16 (listener->c_lcl_port), |
| 114 | listener->c_is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 115 | return 0; |
| 116 | } |
| 117 | |
| 118 | transport_connection_t * |
| 119 | udp_session_get_listener (u32 listener_index) |
| 120 | { |
| 121 | udp_connection_t *us; |
| 122 | |
| 123 | us = udp_listener_get (listener_index); |
| 124 | return &us->connection; |
| 125 | } |
| 126 | |
| 127 | u32 |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 128 | udp_push_header (transport_connection_t * tc, vlib_buffer_t * b) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 129 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 130 | udp_connection_t *uc; |
| 131 | vlib_main_t *vm = vlib_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 132 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 133 | uc = udp_get_connection_from_transport (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 134 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 135 | vlib_buffer_push_udp (b, uc->c_lcl_port, uc->c_rmt_port, 1); |
| 136 | if (tc->is_ip4) |
| 137 | vlib_buffer_push_ip4 (vm, b, &uc->c_lcl_ip4, &uc->c_rmt_ip4, |
| 138 | IP_PROTOCOL_UDP, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 139 | else |
| 140 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 141 | ip6_header_t *ih; |
| 142 | ih = vlib_buffer_push_ip6 (vm, b, &uc->c_lcl_ip6, &uc->c_rmt_ip6, |
| 143 | IP_PROTOCOL_UDP); |
| 144 | vnet_buffer (b)->l3_hdr_offset = (u8 *) ih - b->data; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 145 | } |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 146 | vnet_buffer (b)->sw_if_index[VLIB_RX] = 0; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 147 | vnet_buffer (b)->sw_if_index[VLIB_TX] = uc->c_fib_index; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 148 | b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED; |
| 149 | |
| 150 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | transport_connection_t * |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 154 | udp_session_get (u32 connection_index, u32 thread_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 155 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 156 | udp_connection_t *uc; |
| 157 | uc = udp_connection_get (connection_index, thread_index); |
| 158 | if (uc) |
| 159 | return &uc->connection; |
| 160 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | void |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 164 | udp_session_close (u32 connection_index, u32 thread_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 165 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 166 | vlib_main_t *vm = vlib_get_main (); |
| 167 | udp_connection_t *uc; |
| 168 | uc = udp_connection_get (connection_index, thread_index); |
| 169 | if (uc) |
| 170 | { |
| 171 | udp_unregister_dst_port (vm, clib_net_to_host_u16 (uc->c_lcl_port), |
| 172 | uc->c_is_ip4); |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 173 | session_transport_delete_notify (&uc->connection); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 174 | udp_connection_free (uc); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | void |
| 179 | udp_session_cleanup (u32 connection_index, u32 thread_index) |
| 180 | { |
| 181 | udp_connection_t *uc; |
| 182 | uc = udp_connection_get (connection_index, thread_index); |
| 183 | if (uc) |
| 184 | udp_connection_free (uc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | u8 * |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 188 | format_udp_connection_id (u8 * s, va_list * args) |
| 189 | { |
| 190 | udp_connection_t *uc = va_arg (*args, udp_connection_t *); |
| 191 | if (!uc) |
| 192 | return s; |
| 193 | if (uc->c_is_ip4) |
| 194 | s = format (s, "[#%d][%s] %U:%d->%U:%d", uc->c_thread_index, "U", |
| 195 | format_ip4_address, &uc->c_lcl_ip4, |
| 196 | clib_net_to_host_u16 (uc->c_lcl_port), format_ip4_address, |
| 197 | &uc->c_rmt_ip4, clib_net_to_host_u16 (uc->c_rmt_port)); |
| 198 | else |
| 199 | s = format (s, "[#%d][%s] %U:%d->%U:%d", uc->c_thread_index, "U", |
| 200 | format_ip6_address, &uc->c_lcl_ip6, |
| 201 | clib_net_to_host_u16 (uc->c_lcl_port), format_ip6_address, |
| 202 | &uc->c_rmt_ip6, clib_net_to_host_u16 (uc->c_rmt_port)); |
| 203 | return s; |
| 204 | } |
| 205 | |
| 206 | u8 * |
| 207 | format_udp_connection (u8 * s, va_list * args) |
| 208 | { |
| 209 | udp_connection_t *uc = va_arg (*args, udp_connection_t *); |
| 210 | u32 verbose = va_arg (*args, u32); |
| 211 | if (!uc) |
| 212 | return s; |
| 213 | s = format (s, "%-50U", format_udp_connection_id, uc); |
| 214 | if (verbose) |
| 215 | { |
| 216 | if (verbose == 1) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 217 | s = format (s, "%-15s\n", "-"); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 218 | else |
| 219 | s = format (s, "\n"); |
| 220 | } |
| 221 | return s; |
| 222 | } |
| 223 | |
| 224 | u8 * |
| 225 | format_udp_session (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 226 | { |
| 227 | u32 uci = va_arg (*args, u32); |
| 228 | u32 thread_index = va_arg (*args, u32); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 229 | u32 verbose = va_arg (*args, u32); |
| 230 | udp_connection_t *uc; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 231 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 232 | uc = udp_connection_get (uci, thread_index); |
| 233 | return format (s, "%U", format_udp_connection, uc, verbose); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | u8 * |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 237 | format_udp_half_open_session (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 238 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 239 | clib_warning ("BUG"); |
| 240 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | u8 * |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 244 | format_udp_listener_session (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 245 | { |
| 246 | u32 tci = va_arg (*args, u32); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 247 | udp_connection_t *uc = udp_listener_get (tci); |
| 248 | return format (s, "%U", format_udp_connection, uc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | u16 |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 252 | udp_send_mss (transport_connection_t * t) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 253 | { |
| 254 | /* TODO figure out MTU of output interface */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 255 | return 1460; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | u32 |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 259 | udp_send_space (transport_connection_t * t) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 260 | { |
| 261 | /* No constraint on TX window */ |
| 262 | return ~0; |
| 263 | } |
| 264 | |
| 265 | int |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 266 | udp_open_connection (transport_endpoint_cfg_t * rmt) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 267 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 268 | udp_main_t *um = vnet_get_udp_main (); |
| 269 | vlib_main_t *vm = vlib_get_main (); |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 270 | u32 thread_index = vm->thread_index; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 271 | udp_connection_t *uc; |
| 272 | ip46_address_t lcl_addr; |
| 273 | u32 node_index; |
| 274 | u16 lcl_port; |
| 275 | |
| 276 | if (transport_alloc_local_endpoint (TRANSPORT_PROTO_UDP, rmt, &lcl_addr, |
| 277 | &lcl_port)) |
| 278 | return -1; |
| 279 | |
| 280 | while (udp_get_dst_port_info (um, lcl_port, rmt->is_ip4)) |
| 281 | { |
| 282 | lcl_port = transport_alloc_local_port (TRANSPORT_PROTO_UDP, &lcl_addr); |
| 283 | if (lcl_port < 1) |
| 284 | { |
| 285 | clib_warning ("Failed to allocate src port"); |
| 286 | return -1; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | node_index = rmt->is_ip4 ? udp4_input_node.index : udp6_input_node.index; |
| 291 | udp_register_dst_port (vm, lcl_port, node_index, 1 /* is_ipv4 */ ); |
| 292 | |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 293 | /* We don't poll main thread if we have workers */ |
| 294 | if (vlib_num_workers ()) |
| 295 | thread_index = 1; |
| 296 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 297 | uc = udp_connection_alloc (thread_index); |
| 298 | ip_copy (&uc->c_rmt_ip, &rmt->ip, rmt->is_ip4); |
| 299 | ip_copy (&uc->c_lcl_ip, &lcl_addr, rmt->is_ip4); |
| 300 | uc->c_rmt_port = rmt->port; |
| 301 | uc->c_lcl_port = clib_host_to_net_u16 (lcl_port); |
| 302 | uc->c_is_ip4 = rmt->is_ip4; |
| 303 | uc->c_proto = TRANSPORT_PROTO_UDP; |
| 304 | uc->c_fib_index = rmt->fib_index; |
| 305 | |
| 306 | return uc->c_c_index; |
| 307 | } |
| 308 | |
| 309 | transport_connection_t * |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 310 | udp_session_get_half_open (u32 conn_index) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 311 | { |
| 312 | udp_connection_t *uc; |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 313 | u32 thread_index; |
| 314 | |
| 315 | /* We don't poll main thread if we have workers */ |
| 316 | thread_index = vlib_num_workers ()? 1 : 0; |
| 317 | uc = udp_connection_get (conn_index, thread_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 318 | return &uc->connection; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | /* *INDENT-OFF* */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 322 | const static transport_proto_vft_t udp_proto = { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 323 | .start_listen = udp_session_bind, |
| 324 | .connect = udp_open_connection, |
| 325 | .stop_listen = udp_session_unbind, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 326 | .push_header = udp_push_header, |
| 327 | .get_connection = udp_session_get, |
| 328 | .get_listener = udp_session_get_listener, |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 329 | .get_half_open = udp_session_get_half_open, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 330 | .close = udp_session_close, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 331 | .cleanup = udp_session_cleanup, |
| 332 | .send_mss = udp_send_mss, |
| 333 | .send_space = udp_send_space, |
| 334 | .format_connection = format_udp_session, |
| 335 | .format_half_open = format_udp_half_open_session, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 336 | .format_listener = format_udp_listener_session, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 337 | .tx_type = TRANSPORT_TX_DGRAM, |
| 338 | .service_type = TRANSPORT_SERVICE_CL, |
| 339 | }; |
| 340 | /* *INDENT-ON* */ |
| 341 | |
| 342 | |
| 343 | int |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 344 | udpc_connection_open (transport_endpoint_cfg_t * rmt) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 345 | { |
| 346 | udp_connection_t *uc; |
Aloys Augustin | 8e58499 | 2019-04-24 13:21:43 +0200 | [diff] [blame^] | 347 | /* Reproduce the logic of udp_open_connection to find the correct thread */ |
| 348 | u32 thread_index = vlib_num_workers ()? 1 : vlib_get_main ()->thread_index; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 349 | u32 uc_index; |
| 350 | uc_index = udp_open_connection (rmt); |
Aloys Augustin | 8e58499 | 2019-04-24 13:21:43 +0200 | [diff] [blame^] | 351 | uc = udp_connection_get (uc_index, thread_index); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 352 | uc->is_connected = 1; |
| 353 | return uc_index; |
| 354 | } |
| 355 | |
| 356 | u32 |
| 357 | udpc_connection_listen (u32 session_index, transport_endpoint_t * lcl) |
| 358 | { |
| 359 | udp_connection_t *listener; |
| 360 | u32 li; |
| 361 | li = udp_session_bind (session_index, lcl); |
| 362 | listener = udp_listener_get (li); |
| 363 | listener->is_connected = 1; |
| 364 | return li; |
| 365 | } |
| 366 | |
| 367 | /* *INDENT-OFF* */ |
| 368 | const static transport_proto_vft_t udpc_proto = { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 369 | .start_listen = udpc_connection_listen, |
| 370 | .stop_listen = udp_session_unbind, |
| 371 | .connect = udpc_connection_open, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 372 | .push_header = udp_push_header, |
| 373 | .get_connection = udp_session_get, |
| 374 | .get_listener = udp_session_get_listener, |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 375 | .get_half_open = udp_session_get_half_open, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 376 | .close = udp_session_close, |
| 377 | .cleanup = udp_session_cleanup, |
| 378 | .send_mss = udp_send_mss, |
| 379 | .send_space = udp_send_space, |
| 380 | .format_connection = format_udp_session, |
| 381 | .format_half_open = format_udp_half_open_session, |
| 382 | .format_listener = format_udp_listener_session, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 383 | .tx_type = TRANSPORT_TX_DEQUEUE, |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 384 | .service_type = TRANSPORT_SERVICE_CL, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 385 | }; |
| 386 | /* *INDENT-ON* */ |
| 387 | |
| 388 | static clib_error_t * |
| 389 | udp_init (vlib_main_t * vm) |
| 390 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 391 | udp_main_t *um = vnet_get_udp_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 392 | ip_main_t *im = &ip_main; |
| 393 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
| 394 | u32 num_threads; |
| 395 | clib_error_t *error = 0; |
| 396 | ip_protocol_info_t *pi; |
Florin Coras | 29ca16f | 2017-11-02 18:14:17 -0400 | [diff] [blame] | 397 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 398 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 399 | if ((error = vlib_call_init_function (vm, ip_main_init))) |
| 400 | return error; |
| 401 | if ((error = vlib_call_init_function (vm, ip4_lookup_init))) |
| 402 | return error; |
| 403 | if ((error = vlib_call_init_function (vm, ip6_lookup_init))) |
| 404 | return error; |
| 405 | |
| 406 | /* |
| 407 | * Registrations |
| 408 | */ |
| 409 | |
| 410 | /* IP registration */ |
| 411 | pi = ip_get_protocol_info (im, IP_PROTOCOL_UDP); |
| 412 | if (pi == 0) |
| 413 | return clib_error_return (0, "UDP protocol info AWOL"); |
| 414 | pi->format_header = format_udp_header; |
| 415 | pi->unformat_pg_edit = unformat_pg_udp_header; |
| 416 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 417 | /* Register as transport with URI */ |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 418 | transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto, |
| 419 | FIB_PROTOCOL_IP4, ip4_lookup_node.index); |
| 420 | transport_register_protocol (TRANSPORT_PROTO_UDP, &udp_proto, |
| 421 | FIB_PROTOCOL_IP6, ip6_lookup_node.index); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 422 | transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto, |
| 423 | FIB_PROTOCOL_IP4, ip4_lookup_node.index); |
| 424 | transport_register_protocol (TRANSPORT_PROTO_UDPC, &udpc_proto, |
| 425 | FIB_PROTOCOL_IP6, ip6_lookup_node.index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 426 | |
| 427 | /* |
| 428 | * Initialize data structures |
| 429 | */ |
| 430 | |
| 431 | num_threads = 1 /* main thread */ + tm->n_threads; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 432 | vec_validate (um->connections, num_threads - 1); |
| 433 | vec_validate (um->connection_peekers, num_threads - 1); |
| 434 | vec_validate (um->peekers_readers_locks, num_threads - 1); |
| 435 | vec_validate (um->peekers_write_locks, num_threads - 1); |
Florin Coras | 29ca16f | 2017-11-02 18:14:17 -0400 | [diff] [blame] | 436 | |
| 437 | if (num_threads > 1) |
| 438 | for (i = 0; i < num_threads; i++) |
| 439 | { |
| 440 | clib_spinlock_init (&um->peekers_readers_locks[i]); |
| 441 | clib_spinlock_init (&um->peekers_write_locks[i]); |
| 442 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 443 | return error; |
| 444 | } |
| 445 | |
| 446 | VLIB_INIT_FUNCTION (udp_init); |
| 447 | |
Pavel Kotucek | e88865d | 2018-11-28 07:42:11 +0100 | [diff] [blame] | 448 | static clib_error_t * |
| 449 | show_udp_punt_fn (vlib_main_t * vm, unformat_input_t * input, |
| 450 | vlib_cli_command_t * cmd_arg) |
| 451 | { |
| 452 | udp_main_t *um = vnet_get_udp_main (); |
| 453 | |
| 454 | clib_error_t *error = NULL; |
| 455 | |
| 456 | if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 457 | return clib_error_return (0, "unknown input `%U'", format_unformat_error, |
| 458 | input); |
| 459 | |
| 460 | udp_dst_port_info_t *port_info; |
| 461 | if (um->punt_unknown4) |
| 462 | { |
| 463 | vlib_cli_output (vm, "IPv4 UDP punt: enabled"); |
| 464 | } |
| 465 | else |
| 466 | { |
| 467 | u8 *s = NULL; |
| 468 | vec_foreach (port_info, um->dst_port_infos[UDP_IP4]) |
| 469 | { |
| 470 | if (udp_is_valid_dst_port (port_info->dst_port, 1)) |
| 471 | { |
| 472 | s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port); |
| 473 | } |
| 474 | } |
| 475 | s = format (s, "%c", 0); |
| 476 | vlib_cli_output (vm, "IPV4 UDP ports punt : %s", s); |
| 477 | } |
| 478 | |
| 479 | if (um->punt_unknown6) |
| 480 | { |
| 481 | vlib_cli_output (vm, "IPv6 UDP punt: enabled"); |
| 482 | } |
| 483 | else |
| 484 | { |
| 485 | u8 *s = NULL; |
| 486 | vec_foreach (port_info, um->dst_port_infos[UDP_IP6]) |
| 487 | { |
| 488 | if (udp_is_valid_dst_port (port_info->dst_port, 01)) |
| 489 | { |
| 490 | s = format (s, (!s) ? "%d" : ", %d", port_info->dst_port); |
| 491 | } |
| 492 | } |
| 493 | s = format (s, "%c", 0); |
| 494 | vlib_cli_output (vm, "IPV6 UDP ports punt : %s", s); |
| 495 | } |
| 496 | |
| 497 | return (error); |
| 498 | } |
| 499 | /* *INDENT-OFF* */ |
| 500 | VLIB_CLI_COMMAND (show_tcp_punt_command, static) = |
| 501 | { |
| 502 | .path = "show udp punt", |
| 503 | .short_help = "show udp punt [ipv4|ipv6]", |
| 504 | .function = show_udp_punt_fn, |
| 505 | }; |
| 506 | /* *INDENT-ON* */ |
| 507 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 508 | /* |
| 509 | * fd.io coding-style-patch-verification: ON |
| 510 | * |
| 511 | * Local Variables: |
| 512 | * eval: (c-set-style "gnu") |
| 513 | * End: |
| 514 | */ |