Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [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 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 15 | #ifndef __included_udp_h__ |
| 16 | #define __included_udp_h__ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 17 | |
| 18 | #include <vnet/vnet.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 19 | #include <vnet/udp/udp_packet.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 20 | #include <vnet/ip/ip.h> |
| 21 | #include <vnet/ip/ip4.h> |
| 22 | #include <vnet/ip/ip4_packet.h> |
| 23 | #include <vnet/pg/pg.h> |
| 24 | #include <vnet/ip/format.h> |
| 25 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 26 | #include <vnet/ip/ip.h> |
| 27 | #include <vnet/session/transport.h> |
| 28 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 29 | typedef enum |
| 30 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 31 | #define udp_error(n,s) UDP_ERROR_##n, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 32 | #include <vnet/udp/udp_error.def> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 33 | #undef udp_error |
| 34 | UDP_N_ERROR, |
| 35 | } udp_error_t; |
| 36 | |
Florin Coras | 9c4ec6f | 2020-04-01 02:50:13 +0000 | [diff] [blame] | 37 | #define foreach_udp_connection_flag \ |
| 38 | _(CONNECTED, "CONNECTED") /**< connected mode */ \ |
| 39 | _(OWNS_PORT, "OWNS_PORT") /**< port belong to conn (UDPC) */ \ |
| 40 | _(CLOSING, "CLOSING") /**< conn closed with data */ \ |
| 41 | _(LISTEN, "LISTEN") /**< conn is listening */ \ |
Florin Coras | d85666f | 2020-04-03 00:58:48 +0000 | [diff] [blame] | 42 | _(MIGRATED, "MIGRATED") /**< cloned to another thread */ \ |
Florin Coras | 9c4ec6f | 2020-04-01 02:50:13 +0000 | [diff] [blame] | 43 | |
| 44 | enum udp_conn_flags_bits |
Florin Coras | c754239 | 2019-07-22 08:08:43 -0700 | [diff] [blame] | 45 | { |
Florin Coras | 9c4ec6f | 2020-04-01 02:50:13 +0000 | [diff] [blame] | 46 | #define _(sym, str) UDP_CONN_F_BIT_##sym, |
| 47 | foreach_udp_connection_flag |
| 48 | #undef _ |
| 49 | UDP_CONN_N_FLAGS |
| 50 | }; |
| 51 | |
| 52 | typedef enum udp_conn_flags_ |
| 53 | { |
| 54 | #define _(sym, str) UDP_CONN_F_##sym = 1 << UDP_CONN_F_BIT_##sym, |
| 55 | foreach_udp_connection_flag |
| 56 | #undef _ |
Florin Coras | c754239 | 2019-07-22 08:08:43 -0700 | [diff] [blame] | 57 | } udp_conn_flags_t; |
| 58 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 59 | typedef struct |
| 60 | { |
Dave Barach | eb987d3 | 2018-05-03 08:26:39 -0400 | [diff] [blame] | 61 | /** Required for pool_get_aligned */ |
| 62 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 63 | transport_connection_t connection; /**< must be first */ |
| 64 | clib_spinlock_t rx_lock; /**< rx fifo lock */ |
Florin Coras | c754239 | 2019-07-22 08:08:43 -0700 | [diff] [blame] | 65 | u8 flags; /**< connection flags */ |
Florin Coras | ba78e23 | 2020-04-06 21:28:59 +0000 | [diff] [blame] | 66 | u16 mss; /**< connection mss */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 67 | } udp_connection_t; |
| 68 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | #define foreach_udp4_dst_port \ |
Dave Barach | 6545716 | 2017-10-10 17:53:14 -0400 | [diff] [blame] | 70 | _ (53, dns) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | _ (67, dhcp_to_server) \ |
| 72 | _ (68, dhcp_to_client) \ |
| 73 | _ (500, ikev2) \ |
Hongjun Ni | ef486b1 | 2017-04-12 19:21:16 +0800 | [diff] [blame] | 74 | _ (2152, GTPU) \ |
Klement Sekera | aeeac3b | 2017-02-14 07:11:52 +0100 | [diff] [blame] | 75 | _ (3784, bfd4) \ |
| 76 | _ (3785, bfd_echo4) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 77 | _ (4341, lisp_gpe) \ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 78 | _ (4342, lisp_cp) \ |
Klement Sekera | 4b089f2 | 2018-04-17 18:04:57 +0200 | [diff] [blame] | 79 | _ (4500, ipsec) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 80 | _ (4739, ipfix) \ |
| 81 | _ (4789, vxlan) \ |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 82 | _ (4789, vxlan6) \ |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 83 | _ (48879, vxlan_gbp) \ |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 84 | _ (4790, VXLAN_GPE) \ |
Marco Varlese | b598f1d | 2017-09-19 14:25:28 +0200 | [diff] [blame] | 85 | _ (6633, vpath_3) \ |
Dave Barach | 6545716 | 2017-10-10 17:53:14 -0400 | [diff] [blame] | 86 | _ (6081, geneve) \ |
| 87 | _ (53053, dns_reply) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | |
| 89 | |
| 90 | #define foreach_udp6_dst_port \ |
Dave Barach | 6545716 | 2017-10-10 17:53:14 -0400 | [diff] [blame] | 91 | _ (53, dns6) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | _ (547, dhcpv6_to_server) \ |
| 93 | _ (546, dhcpv6_to_client) \ |
Hongjun Ni | ef486b1 | 2017-04-12 19:21:16 +0800 | [diff] [blame] | 94 | _ (2152, GTPU6) \ |
Klement Sekera | aeeac3b | 2017-02-14 07:11:52 +0100 | [diff] [blame] | 95 | _ (3784, bfd6) \ |
| 96 | _ (3785, bfd_echo6) \ |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 97 | _ (4341, lisp_gpe6) \ |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 98 | _ (4342, lisp_cp6) \ |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 99 | _ (48879, vxlan6_gbp) \ |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 100 | _ (4790, VXLAN6_GPE) \ |
Marco Varlese | b598f1d | 2017-09-19 14:25:28 +0200 | [diff] [blame] | 101 | _ (6633, vpath6_3) \ |
Dave Barach | 6545716 | 2017-10-10 17:53:14 -0400 | [diff] [blame] | 102 | _ (6081, geneve6) \ |
Neale Ranns | 9128637 | 2017-12-05 13:24:04 -0800 | [diff] [blame] | 103 | _ (8138, BIER) \ |
Dave Barach | 6545716 | 2017-10-10 17:53:14 -0400 | [diff] [blame] | 104 | _ (53053, dns_reply6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 106 | typedef enum |
| 107 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | #define _(n,f) UDP_DST_PORT_##f = n, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 109 | foreach_udp4_dst_port foreach_udp6_dst_port |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | #undef _ |
| 111 | } udp_dst_port_t; |
| 112 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 113 | typedef enum |
| 114 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | #define _(n,f) UDP6_DST_PORT_##f = n, |
| 116 | foreach_udp6_dst_port |
| 117 | #undef _ |
| 118 | } udp6_dst_port_t; |
| 119 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 120 | typedef struct |
| 121 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 122 | /* Name (a c string). */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 123 | char *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | |
Florin Coras | a039620 | 2020-04-01 00:11:16 +0000 | [diff] [blame] | 125 | /* Port number in host byte order. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | udp_dst_port_t dst_port; |
| 127 | |
| 128 | /* Node which handles this type. */ |
| 129 | u32 node_index; |
| 130 | |
| 131 | /* Next index for this type. */ |
| 132 | u32 next_index; |
Kingwel Xie | 4af4709 | 2018-10-26 23:42:15 -0400 | [diff] [blame] | 133 | |
Florin Coras | a039620 | 2020-04-01 00:11:16 +0000 | [diff] [blame] | 134 | /* UDP sessions refcount (not tunnels) */ |
| 135 | u32 n_connections; |
| 136 | |
Kingwel Xie | 4af4709 | 2018-10-26 23:42:15 -0400 | [diff] [blame] | 137 | /* Parser for packet generator edits for this protocol */ |
| 138 | unformat_function_t *unformat_pg_edit; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | } udp_dst_port_info_t; |
| 140 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 141 | typedef enum |
| 142 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | UDP_IP6 = 0, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 144 | UDP_IP4, /* the code is full of is_ip4... */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | N_UDP_AF, |
| 146 | } udp_af_t; |
| 147 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 148 | typedef struct |
| 149 | { |
| 150 | udp_dst_port_info_t *dst_port_infos[N_UDP_AF]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
| 152 | /* Hash tables mapping name/protocol to protocol info index. */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 153 | uword *dst_port_info_by_name[N_UDP_AF]; |
| 154 | uword *dst_port_info_by_dst_port[N_UDP_AF]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | |
Damjan Marion | 615fc61 | 2017-04-03 14:56:08 +0200 | [diff] [blame] | 156 | /* Sparse vector mapping udp dst_port in network byte order |
| 157 | to next index. */ |
| 158 | u16 *next_by_dst_port4; |
| 159 | u16 *next_by_dst_port6; |
| 160 | u8 punt_unknown4; |
| 161 | u8 punt_unknown6; |
| 162 | |
Florin Coras | a039620 | 2020-04-01 00:11:16 +0000 | [diff] [blame] | 163 | /* Udp local to input arc index */ |
| 164 | u32 local_to_input_edge[N_UDP_AF]; |
| 165 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 166 | /* |
| 167 | * Per-worker thread udp connection pools used with session layer |
| 168 | */ |
| 169 | udp_connection_t **connections; |
| 170 | u32 *connection_peekers; |
| 171 | clib_spinlock_t *peekers_readers_locks; |
| 172 | clib_spinlock_t *peekers_write_locks; |
| 173 | udp_connection_t *listener_pool; |
| 174 | |
Florin Coras | ba78e23 | 2020-04-06 21:28:59 +0000 | [diff] [blame] | 175 | u16 default_mtu; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 176 | } udp_main_t; |
| 177 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 178 | extern udp_main_t udp_main; |
| 179 | extern vlib_node_registration_t udp4_input_node; |
| 180 | extern vlib_node_registration_t udp6_input_node; |
Filip Tehlar | 2c49ffe | 2019-03-06 07:16:08 -0800 | [diff] [blame] | 181 | extern vlib_node_registration_t udp4_local_node; |
| 182 | extern vlib_node_registration_t udp6_local_node; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 183 | |
| 184 | always_inline udp_connection_t * |
| 185 | udp_connection_get (u32 conn_index, u32 thread_index) |
| 186 | { |
| 187 | if (pool_is_free_index (udp_main.connections[thread_index], conn_index)) |
| 188 | return 0; |
| 189 | return pool_elt_at_index (udp_main.connections[thread_index], conn_index); |
| 190 | } |
| 191 | |
| 192 | always_inline udp_connection_t * |
| 193 | udp_listener_get (u32 conn_index) |
| 194 | { |
| 195 | return pool_elt_at_index (udp_main.listener_pool, conn_index); |
| 196 | } |
| 197 | |
| 198 | always_inline udp_main_t * |
| 199 | vnet_get_udp_main () |
| 200 | { |
| 201 | return &udp_main; |
| 202 | } |
| 203 | |
| 204 | always_inline udp_connection_t * |
| 205 | udp_get_connection_from_transport (transport_connection_t * tc) |
| 206 | { |
| 207 | return ((udp_connection_t *) tc); |
| 208 | } |
| 209 | |
| 210 | always_inline u32 |
| 211 | udp_connection_index (udp_connection_t * uc) |
| 212 | { |
| 213 | return (uc - udp_main.connections[uc->c_thread_index]); |
| 214 | } |
| 215 | |
| 216 | udp_connection_t *udp_connection_alloc (u32 thread_index); |
| 217 | |
| 218 | /** |
| 219 | * Acquires a lock that blocks a connection pool from expanding. |
| 220 | */ |
| 221 | always_inline void |
| 222 | udp_pool_add_peeker (u32 thread_index) |
| 223 | { |
| 224 | if (thread_index != vlib_get_thread_index ()) |
| 225 | return; |
| 226 | clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]); |
| 227 | udp_main.connection_peekers[thread_index] += 1; |
| 228 | if (udp_main.connection_peekers[thread_index] == 1) |
| 229 | clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]); |
| 230 | clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks |
| 231 | [thread_index]); |
| 232 | } |
| 233 | |
| 234 | always_inline void |
| 235 | udp_pool_remove_peeker (u32 thread_index) |
| 236 | { |
| 237 | if (thread_index != vlib_get_thread_index ()) |
| 238 | return; |
| 239 | ASSERT (udp_main.connection_peekers[thread_index] > 0); |
| 240 | clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]); |
| 241 | udp_main.connection_peekers[thread_index] -= 1; |
| 242 | if (udp_main.connection_peekers[thread_index] == 0) |
| 243 | clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks |
| 244 | [thread_index]); |
| 245 | clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks |
| 246 | [thread_index]); |
| 247 | } |
| 248 | |
| 249 | always_inline udp_connection_t * |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 250 | udp_connection_clone_safe (u32 connection_index, u32 thread_index) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 251 | { |
| 252 | udp_connection_t *old_c, *new_c; |
| 253 | u32 current_thread_index = vlib_get_thread_index (); |
| 254 | new_c = udp_connection_alloc (current_thread_index); |
| 255 | |
| 256 | /* If during the memcpy pool is reallocated AND the memory allocator |
| 257 | * decides to give the old chunk of memory to somebody in a hurry to |
| 258 | * scribble something on it, we have a problem. So add this thread as |
| 259 | * a session pool peeker. |
| 260 | */ |
| 261 | udp_pool_add_peeker (thread_index); |
| 262 | old_c = udp_main.connections[thread_index] + connection_index; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 263 | clib_memcpy_fast (new_c, old_c, sizeof (*new_c)); |
Florin Coras | d85666f | 2020-04-03 00:58:48 +0000 | [diff] [blame] | 264 | old_c->flags |= UDP_CONN_F_MIGRATED; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 265 | udp_pool_remove_peeker (thread_index); |
| 266 | new_c->c_thread_index = current_thread_index; |
| 267 | new_c->c_c_index = udp_connection_index (new_c); |
Nathan Skrzypczak | 161638f | 2019-05-13 16:25:50 +0200 | [diff] [blame] | 268 | new_c->c_fib_index = old_c->c_fib_index; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 269 | return new_c; |
| 270 | } |
| 271 | |
| 272 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 273 | always_inline udp_dst_port_info_t * |
| 274 | udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4) |
| 275 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 276 | uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 277 | return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0; |
| 278 | } |
| 279 | |
| 280 | format_function_t format_udp_header; |
| 281 | format_function_t format_udp_rx_trace; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 282 | unformat_function_t unformat_udp_header; |
| 283 | |
Florin Coras | a039620 | 2020-04-01 00:11:16 +0000 | [diff] [blame] | 284 | void udp_add_dst_port (udp_main_t * um, udp_dst_port_t dst_port, |
| 285 | char *dst_port_name, u8 is_ip4); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 286 | void udp_register_dst_port (vlib_main_t * vm, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 287 | udp_dst_port_t dst_port, |
| 288 | u32 node_index, u8 is_ip4); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 289 | void udp_unregister_dst_port (vlib_main_t * vm, |
| 290 | udp_dst_port_t dst_port, u8 is_ip4); |
Pavel Kotucek | e88865d | 2018-11-28 07:42:11 +0100 | [diff] [blame] | 291 | bool udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 292 | |
Florin Coras | a039620 | 2020-04-01 00:11:16 +0000 | [diff] [blame] | 293 | void udp_connection_share_port (u16 lcl_port, u8 is_ip4); |
| 294 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 295 | void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add); |
Alexander Popovsky (apopovsk) | 740bcdb | 2016-11-15 15:36:23 -0800 | [diff] [blame] | 296 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 297 | always_inline void * |
| 298 | vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum) |
| 299 | { |
| 300 | udp_header_t *uh; |
shubing guo | 4547893 | 2018-08-30 11:09:49 +0800 | [diff] [blame] | 301 | u16 udp_len = sizeof (udp_header_t) + b->current_length; |
| 302 | if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID)) |
| 303 | udp_len += b->total_length_not_including_first_buffer; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 304 | |
| 305 | uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t)); |
| 306 | uh->src_port = sp; |
| 307 | uh->dst_port = dp; |
| 308 | uh->checksum = 0; |
shubing guo | 4547893 | 2018-08-30 11:09:49 +0800 | [diff] [blame] | 309 | uh->length = clib_host_to_net_u16 (udp_len); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 310 | if (offload_csum) |
Florin Coras | ab57edb | 2020-04-07 03:46:07 +0000 | [diff] [blame^] | 311 | b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM; |
| 312 | vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data; |
| 313 | b->flags |= VNET_BUFFER_F_L4_HDR_OFFSET_VALID; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 314 | return uh; |
| 315 | } |
| 316 | |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 317 | always_inline void |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 318 | ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 319 | { |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 320 | u16 new_l0; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 321 | udp_header_t *udp0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 323 | if (is_ip4) |
| 324 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 325 | ip4_header_t *ip0; |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 326 | ip_csum_t sum0; |
| 327 | u16 old_l0 = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 328 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 329 | ip0 = vlib_buffer_get_current (b0); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 330 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 331 | /* fix the <bleep>ing outer-IP checksum */ |
| 332 | sum0 = ip0->checksum; |
| 333 | /* old_l0 always 0, see the rewrite setup */ |
| 334 | new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 335 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 336 | sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t, |
| 337 | length /* changed member */ ); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 338 | ip0->checksum = ip_csum_fold (sum0); |
| 339 | ip0->length = new_l0; |
| 340 | |
| 341 | /* Fix UDP length */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 342 | udp0 = (udp_header_t *) (ip0 + 1); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 343 | new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 344 | - sizeof (*ip0)); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 345 | udp0->length = new_l0; |
| 346 | } |
| 347 | else |
| 348 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 349 | ip6_header_t *ip0; |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 350 | int bogus0; |
| 351 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 352 | ip0 = vlib_buffer_get_current (b0); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 353 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 354 | new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 355 | - sizeof (*ip0)); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 356 | ip0->payload_length = new_l0; |
| 357 | |
| 358 | /* Fix UDP length */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 359 | udp0 = (udp_header_t *) (ip0 + 1); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 360 | udp0->length = new_l0; |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 361 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 362 | udp0->checksum = |
| 363 | ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0); |
| 364 | ASSERT (bogus0 == 0); |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 365 | |
| 366 | if (udp0->checksum == 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 367 | udp0->checksum = 0xffff; |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 368 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 369 | } |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 370 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 371 | always_inline void |
| 372 | ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 373 | u8 is_ip4) |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 374 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 375 | vlib_buffer_advance (b0, -ec_len); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 376 | |
| 377 | if (is_ip4) |
| 378 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 379 | ip4_header_t *ip0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 380 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 381 | ip0 = vlib_buffer_get_current (b0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 382 | |
| 383 | /* Apply the encap string. */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 384 | clib_memcpy_fast (ip0, ec0, ec_len); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 385 | ip_udp_fixup_one (vm, b0, 1); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 386 | } |
| 387 | else |
| 388 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 389 | ip6_header_t *ip0; |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 390 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 391 | ip0 = vlib_buffer_get_current (b0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 392 | |
| 393 | /* Apply the encap string. */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 394 | clib_memcpy_fast (ip0, ec0, ec_len); |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 395 | ip_udp_fixup_one (vm, b0, 0); |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 396 | } |
| 397 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 398 | |
| 399 | always_inline void |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 400 | ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1, |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 401 | u8 * ec0, u8 * ec1, word ec_len, u8 is_v4) |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 402 | { |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 403 | u16 new_l0, new_l1; |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 404 | udp_header_t *udp0, *udp1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 405 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 406 | ASSERT (_vec_len (ec0) == _vec_len (ec1)); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 407 | |
| 408 | vlib_buffer_advance (b0, -ec_len); |
| 409 | vlib_buffer_advance (b1, -ec_len); |
| 410 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 411 | if (is_v4) |
| 412 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 413 | ip4_header_t *ip0, *ip1; |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 414 | ip_csum_t sum0, sum1; |
| 415 | u16 old_l0 = 0, old_l1 = 0; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 416 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 417 | ip0 = vlib_buffer_get_current (b0); |
| 418 | ip1 = vlib_buffer_get_current (b1); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 419 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 420 | /* Apply the encap string */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 421 | clib_memcpy_fast (ip0, ec0, ec_len); |
| 422 | clib_memcpy_fast (ip1, ec1, ec_len); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 423 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 424 | /* fix the <bleep>ing outer-IP checksum */ |
| 425 | sum0 = ip0->checksum; |
| 426 | sum1 = ip1->checksum; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 427 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 428 | /* old_l0 always 0, see the rewrite setup */ |
| 429 | new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)); |
| 430 | new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 431 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 432 | sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t, |
| 433 | length /* changed member */ ); |
| 434 | sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t, |
| 435 | length /* changed member */ ); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 436 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 437 | ip0->checksum = ip_csum_fold (sum0); |
| 438 | ip1->checksum = ip_csum_fold (sum1); |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 439 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 440 | ip0->length = new_l0; |
| 441 | ip1->length = new_l1; |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 442 | |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 443 | /* Fix UDP length */ |
| 444 | udp0 = (udp_header_t *) (ip0 + 1); |
| 445 | udp1 = (udp_header_t *) (ip1 + 1); |
| 446 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 447 | new_l0 = |
| 448 | clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) - |
| 449 | sizeof (*ip0)); |
| 450 | new_l1 = |
| 451 | clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) - |
| 452 | sizeof (*ip1)); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 453 | udp0->length = new_l0; |
| 454 | udp1->length = new_l1; |
| 455 | } |
| 456 | else |
| 457 | { |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 458 | ip6_header_t *ip0, *ip1; |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 459 | int bogus0, bogus1; |
| 460 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 461 | ip0 = vlib_buffer_get_current (b0); |
| 462 | ip1 = vlib_buffer_get_current (b1); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 463 | |
| 464 | /* Apply the encap string. */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 465 | clib_memcpy_fast (ip0, ec0, ec_len); |
| 466 | clib_memcpy_fast (ip1, ec1, ec_len); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 467 | |
| 468 | new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 469 | - sizeof (*ip0)); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 470 | new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 471 | - sizeof (*ip1)); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 472 | ip0->payload_length = new_l0; |
| 473 | ip1->payload_length = new_l1; |
| 474 | |
| 475 | /* Fix UDP length */ |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 476 | udp0 = (udp_header_t *) (ip0 + 1); |
| 477 | udp1 = (udp_header_t *) (ip1 + 1); |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 478 | |
| 479 | udp0->length = new_l0; |
| 480 | udp1->length = new_l1; |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 481 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 482 | udp0->checksum = |
| 483 | ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0); |
| 484 | udp1->checksum = |
| 485 | ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1); |
| 486 | ASSERT (bogus0 == 0); |
| 487 | ASSERT (bogus1 == 0); |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 488 | |
| 489 | if (udp0->checksum == 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 490 | udp0->checksum = 0xffff; |
Florin Coras | 210bfc8 | 2016-04-29 16:04:33 +0200 | [diff] [blame] | 491 | if (udp1->checksum == 0) |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 492 | udp1->checksum = 0xffff; |
Florin Coras | 02655bd | 2016-04-26 00:17:24 +0200 | [diff] [blame] | 493 | } |
Florin Coras | e127a7e | 2016-02-18 22:20:01 +0100 | [diff] [blame] | 494 | } |
| 495 | |
Dave Barach | d7cb1b5 | 2016-12-09 09:52:16 -0500 | [diff] [blame] | 496 | /* |
| 497 | * fd.io coding-style-patch-verification: ON |
| 498 | * |
| 499 | * Local Variables: |
| 500 | * eval: (c-set-style "gnu") |
| 501 | * End: |
| 502 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 503 | |
| 504 | #endif /* __included_udp_h__ */ |