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