Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 1 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | #include <vppinfra/error.h> |
| 17 | #include <vppinfra/hash.h> |
| 18 | #include <vnet/vnet.h> |
| 19 | #include <vnet/ip/ip.h> |
| 20 | #include <vnet/ethernet/ethernet.h> |
| 21 | #include <vnet/vxlan/vxlan.h> |
| 22 | |
| 23 | /* Statistics (not all errors) */ |
| 24 | #define foreach_vxlan_encap_error \ |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 25 | _(ENCAPSULATED, "good packets encapsulated") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 26 | |
| 27 | static char * vxlan_encap_error_strings[] = { |
| 28 | #define _(sym,string) string, |
| 29 | foreach_vxlan_encap_error |
| 30 | #undef _ |
| 31 | }; |
| 32 | |
| 33 | typedef enum { |
| 34 | #define _(sym,str) VXLAN_ENCAP_ERROR_##sym, |
| 35 | foreach_vxlan_encap_error |
| 36 | #undef _ |
| 37 | VXLAN_ENCAP_N_ERROR, |
| 38 | } vxlan_encap_error_t; |
| 39 | |
| 40 | typedef enum { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 41 | VXLAN_ENCAP_NEXT_DROP, |
| 42 | VXLAN_ENCAP_N_NEXT, |
| 43 | } vxlan_encap_next_t; |
| 44 | |
| 45 | typedef struct { |
| 46 | u32 tunnel_index; |
| 47 | u32 vni; |
| 48 | } vxlan_encap_trace_t; |
| 49 | |
| 50 | u8 * format_vxlan_encap_trace (u8 * s, va_list * args) |
| 51 | { |
| 52 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 53 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 54 | vxlan_encap_trace_t * t |
| 55 | = va_arg (*args, vxlan_encap_trace_t *); |
| 56 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 57 | s = format (s, "VXLAN encap to vxlan_tunnel%d vni %d", |
| 58 | t->tunnel_index, t->vni); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | return s; |
| 60 | } |
| 61 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 62 | always_inline uword |
| 63 | vxlan_encap_inline (vlib_main_t * vm, |
| 64 | vlib_node_runtime_t * node, |
| 65 | vlib_frame_t * from_frame, |
John Lo | f4215a6 | 2017-09-18 00:20:05 -0400 | [diff] [blame] | 66 | u8 is_ip4, u8 csum_offload) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 67 | { |
| 68 | u32 n_left_from, next_index, * from, * to_next; |
| 69 | vxlan_main_t * vxm = &vxlan_main; |
| 70 | vnet_main_t * vnm = vxm->vnet_main; |
| 71 | vnet_interface_main_t * im = &vnm->interface_main; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 72 | vlib_combined_counter_main_t * tx_counter = |
| 73 | im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_TX; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | u32 pkts_encapsulated = 0; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 75 | u32 thread_index = vlib_get_thread_index(); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | u32 stats_sw_if_index, stats_n_packets, stats_n_bytes; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 77 | u32 sw_if_index0 = 0, sw_if_index1 = 0; |
| 78 | u32 next0 = 0, next1 = 0; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 79 | vxlan_tunnel_t * t0 = NULL, * t1 = NULL; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 80 | index_t dpoi_idx0 = INDEX_INVALID, dpoi_idx1 = INDEX_INVALID; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | |
| 82 | from = vlib_frame_vector_args (from_frame); |
| 83 | n_left_from = from_frame->n_vectors; |
| 84 | |
| 85 | next_index = node->cached_next_index; |
| 86 | stats_sw_if_index = node->runtime_data[0]; |
| 87 | stats_n_packets = stats_n_bytes = 0; |
| 88 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 89 | STATIC_ASSERT_SIZEOF(ip6_vxlan_header_t, 56); |
| 90 | STATIC_ASSERT_SIZEOF(ip4_vxlan_header_t, 36); |
| 91 | |
| 92 | word const underlay_hdr_len = is_ip4 ? |
| 93 | sizeof(ip4_vxlan_header_t) : sizeof(ip6_vxlan_header_t); |
| 94 | u16 const l3_len = is_ip4 ? sizeof(ip4_header_t) : sizeof(ip6_header_t); |
| 95 | u32 const csum_flags = is_ip4 ? |
| 96 | VNET_BUFFER_F_OFFLOAD_IP_CKSUM | VNET_BUFFER_F_IS_IP4 | |
| 97 | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM : |
| 98 | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM; |
| 99 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | while (n_left_from > 0) |
| 101 | { |
| 102 | u32 n_left_to_next; |
| 103 | |
| 104 | vlib_get_next_frame (vm, node, next_index, |
| 105 | to_next, n_left_to_next); |
| 106 | |
| 107 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 108 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | /* Prefetch next iteration. */ |
| 110 | { |
| 111 | vlib_buffer_t * p2, * p3; |
| 112 | |
| 113 | p2 = vlib_get_buffer (vm, from[2]); |
| 114 | p3 = vlib_get_buffer (vm, from[3]); |
| 115 | |
| 116 | vlib_prefetch_buffer_header (p2, LOAD); |
| 117 | vlib_prefetch_buffer_header (p3, LOAD); |
| 118 | |
| 119 | CLIB_PREFETCH (p2->data, 2*CLIB_CACHE_LINE_BYTES, LOAD); |
| 120 | CLIB_PREFETCH (p3->data, 2*CLIB_CACHE_LINE_BYTES, LOAD); |
| 121 | } |
| 122 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 123 | u32 bi0 = from[0]; |
| 124 | u32 bi1 = from[1]; |
| 125 | |
| 126 | vlib_buffer_t * b0 = vlib_get_buffer (vm, bi0); |
| 127 | vlib_buffer_t * b1 = vlib_get_buffer (vm, bi1); |
| 128 | u32 flow_hash0 = vnet_l2_compute_flow_hash (b0); |
| 129 | u32 flow_hash1 = vnet_l2_compute_flow_hash (b1); |
| 130 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | to_next[0] = bi0; |
| 132 | to_next[1] = bi1; |
| 133 | from += 2; |
| 134 | to_next += 2; |
| 135 | n_left_to_next -= 2; |
| 136 | n_left_from -= 2; |
| 137 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 138 | /* Get next node index and adj index from tunnel next_dpo */ |
| 139 | if (sw_if_index0 != vnet_buffer(b0)->sw_if_index[VLIB_TX]) |
| 140 | { |
| 141 | sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_TX]; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 142 | vnet_hw_interface_t *hi0 = |
| 143 | vnet_get_sup_hw_interface (vnm, sw_if_index0); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 144 | t0 = &vxm->tunnels[hi0->dev_instance]; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 145 | /* Note: change to always set next0 if it may set to drop */ |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 146 | next0 = t0->next_dpo.dpoi_next_node; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 147 | dpoi_idx0 = t0->next_dpo.dpoi_index; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 148 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 149 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 150 | /* Get next node index and adj index from tunnel next_dpo */ |
| 151 | if (sw_if_index1 != vnet_buffer(b1)->sw_if_index[VLIB_TX]) |
| 152 | { |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 153 | if (sw_if_index0 == vnet_buffer(b1)->sw_if_index[VLIB_TX]) |
| 154 | { |
| 155 | sw_if_index1 = sw_if_index0; |
| 156 | t1 = t0; |
| 157 | next1 = next0; |
| 158 | dpoi_idx1 = dpoi_idx0; |
| 159 | } |
| 160 | else |
| 161 | { |
| 162 | sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_TX]; |
| 163 | vnet_hw_interface_t *hi1 = |
| 164 | vnet_get_sup_hw_interface (vnm, sw_if_index1); |
| 165 | t1 = &vxm->tunnels[hi1->dev_instance]; |
| 166 | /* Note: change to always set next1 if it may set to drop */ |
| 167 | next1 = t1->next_dpo.dpoi_next_node; |
| 168 | dpoi_idx1 = t1->next_dpo.dpoi_index; |
| 169 | } |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 170 | } |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 171 | |
| 172 | vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpoi_idx0; |
| 173 | vnet_buffer(b1)->ip.adj_index[VLIB_TX] = dpoi_idx1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 175 | ASSERT(vec_len(t0->rewrite) == underlay_hdr_len); |
| 176 | ASSERT(vec_len(t1->rewrite) == underlay_hdr_len); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 178 | vlib_buffer_advance (b0, -underlay_hdr_len); |
| 179 | vlib_buffer_advance (b1, -underlay_hdr_len); |
| 180 | |
| 181 | u32 len0 = vlib_buffer_length_in_chain (vm, b0); |
| 182 | u32 len1 = vlib_buffer_length_in_chain (vm, b1); |
| 183 | u16 payload_l0 = clib_host_to_net_u16 (len0 - l3_len); |
| 184 | u16 payload_l1 = clib_host_to_net_u16 (len1 - l3_len); |
| 185 | |
| 186 | ip4_header_t * ip4_0, * ip4_1; |
| 187 | ip6_header_t * ip6_0, * ip6_1; |
| 188 | udp_header_t * udp0, * udp1; |
| 189 | u8 * l3_0, * l3_1; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 190 | if (is_ip4) |
| 191 | { |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 192 | ip4_vxlan_header_t * hdr0 = vlib_buffer_get_current(b0); |
| 193 | ip4_vxlan_header_t * rewrite0 = (void *)t0->rewrite; |
| 194 | ip4_vxlan_header_t * hdr1 = vlib_buffer_get_current(b1); |
| 195 | ip4_vxlan_header_t * rewrite1 = (void *)t1->rewrite; |
| 196 | *hdr0 = *rewrite0; |
| 197 | *hdr1 = *rewrite1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 199 | /* Fix the IP4 checksum and length */ |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 200 | ip4_0 = &hdr0->ip4; |
| 201 | ip4_1 = &hdr1->ip4; |
| 202 | ip4_0->length = clib_host_to_net_u16 (len0); |
| 203 | ip4_1->length = clib_host_to_net_u16 (len1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 204 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 205 | l3_0 = (u8 *)ip4_0; |
| 206 | l3_1 = (u8 *)ip4_1; |
| 207 | udp0 = &hdr0->udp; |
| 208 | udp1 = &hdr1->udp; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 209 | } |
| 210 | else /* ipv6 */ |
| 211 | { |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 212 | ip6_vxlan_header_t * hdr0 = vlib_buffer_get_current(b0); |
| 213 | ip6_vxlan_header_t * rewrite0 = (void *) t0->rewrite; |
| 214 | ip6_vxlan_header_t * hdr1 = vlib_buffer_get_current(b0); |
| 215 | ip6_vxlan_header_t * rewrite1 = (void *) t1->rewrite; |
| 216 | *hdr0 = *rewrite0; |
| 217 | *hdr1 = *rewrite1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 219 | /* Fix IP6 payload length */ |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 220 | ip6_0 = &hdr0->ip6; |
| 221 | ip6_1 = &hdr1->ip6; |
| 222 | ip6_0->payload_length = payload_l0; |
| 223 | ip6_1->payload_length = payload_l1; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 224 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 225 | l3_0 = (u8 *)ip6_0; |
| 226 | l3_1 = (u8 *)ip6_1; |
| 227 | udp0 = &hdr0->udp; |
| 228 | udp1 = &hdr1->udp; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 229 | } |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 230 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 231 | /* Fix UDP length and set source port */ |
| 232 | udp0->length = payload_l0; |
| 233 | udp0->src_port = flow_hash0; |
| 234 | udp1->length = payload_l1; |
| 235 | udp1->src_port = flow_hash1; |
| 236 | |
| 237 | if (csum_offload) |
| 238 | { |
| 239 | b0->flags |= csum_flags; |
| 240 | vnet_buffer (b0)->l3_hdr_offset = l3_0 - b0->data; |
| 241 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) udp0 - b0->data; |
| 242 | b1->flags |= csum_flags; |
| 243 | vnet_buffer (b1)->l3_hdr_offset = l3_1 - b1->data; |
| 244 | vnet_buffer (b1)->l4_hdr_offset = (u8 *) udp1 - b1->data; |
| 245 | } |
| 246 | /* IPv4 UDP checksum only if checksum offload is used */ |
| 247 | else if (is_ip4) |
| 248 | { |
| 249 | ip_csum_t sum0 = ip4_0->checksum; |
| 250 | sum0 = ip_csum_update (sum0, 0, ip4_0->length, ip4_header_t, |
| 251 | length /* changed member */); |
| 252 | ip4_0->checksum = ip_csum_fold (sum0); |
| 253 | ip_csum_t sum1 = ip4_1->checksum; |
| 254 | sum1 = ip_csum_update (sum1, 0, ip4_1->length, ip4_header_t, |
| 255 | length /* changed member */); |
| 256 | ip4_1->checksum = ip_csum_fold (sum1); |
| 257 | } |
| 258 | /* IPv6 UDP checksum is mandatory */ |
| 259 | else |
| 260 | { |
| 261 | int bogus = 0; |
| 262 | |
| 263 | udp0->checksum = ip6_tcp_udp_icmp_compute_checksum |
| 264 | (vm, b0, ip6_0, &bogus); |
| 265 | ASSERT(bogus == 0); |
| 266 | if (udp0->checksum == 0) |
| 267 | udp0->checksum = 0xffff; |
| 268 | udp1->checksum = ip6_tcp_udp_icmp_compute_checksum |
| 269 | (vm, b1, ip6_1, &bogus); |
| 270 | ASSERT(bogus == 0); |
| 271 | if (udp1->checksum == 0) |
| 272 | udp1->checksum = 0xffff; |
| 273 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 274 | |
| 275 | /* Batch stats increment on the same vxlan tunnel so counter is not |
| 276 | incremented per packet. Note stats are still incremented for deleted |
| 277 | and admin-down tunnel where packets are dropped. It is not worthwhile |
| 278 | to check for this rare case and affect normal path performance. */ |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 279 | if (sw_if_index0 == sw_if_index1) |
| 280 | { |
| 281 | if (PREDICT_FALSE(sw_if_index0 != stats_sw_if_index)) |
| 282 | { |
| 283 | if (stats_n_packets) |
| 284 | { |
| 285 | vlib_increment_combined_counter (tx_counter, thread_index, |
| 286 | stats_sw_if_index, stats_n_packets, stats_n_bytes); |
| 287 | stats_n_packets = stats_n_bytes = 0; |
| 288 | } |
| 289 | stats_sw_if_index = sw_if_index0; |
| 290 | } |
| 291 | stats_n_packets += 2; |
| 292 | stats_n_bytes += len0 + len1; |
| 293 | } |
| 294 | else |
| 295 | { |
| 296 | vlib_increment_combined_counter (tx_counter, thread_index, |
| 297 | sw_if_index0, 1, len0); |
| 298 | vlib_increment_combined_counter (tx_counter, thread_index, |
| 299 | sw_if_index1, 1, len1); |
| 300 | } |
| 301 | pkts_encapsulated += 2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | |
| 303 | if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 304 | { |
| 305 | vxlan_encap_trace_t *tr = |
| 306 | vlib_add_trace (vm, node, b0, sizeof (*tr)); |
| 307 | tr->tunnel_index = t0 - vxm->tunnels; |
| 308 | tr->vni = t0->vni; |
| 309 | } |
| 310 | |
| 311 | if (PREDICT_FALSE(b1->flags & VLIB_BUFFER_IS_TRACED)) |
| 312 | { |
| 313 | vxlan_encap_trace_t *tr = |
| 314 | vlib_add_trace (vm, node, b1, sizeof (*tr)); |
| 315 | tr->tunnel_index = t1 - vxm->tunnels; |
| 316 | tr->vni = t1->vni; |
| 317 | } |
| 318 | |
| 319 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 320 | to_next, n_left_to_next, |
| 321 | bi0, bi1, next0, next1); |
| 322 | } |
| 323 | |
| 324 | while (n_left_from > 0 && n_left_to_next > 0) |
| 325 | { |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 326 | u32 bi0 = from[0]; |
| 327 | vlib_buffer_t * b0 = vlib_get_buffer (vm, bi0); |
| 328 | u32 flow_hash0 = vnet_l2_compute_flow_hash(b0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 329 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | to_next[0] = bi0; |
| 331 | from += 1; |
| 332 | to_next += 1; |
| 333 | n_left_from -= 1; |
| 334 | n_left_to_next -= 1; |
| 335 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 336 | /* Get next node index and adj index from tunnel next_dpo */ |
| 337 | if (sw_if_index0 != vnet_buffer(b0)->sw_if_index[VLIB_TX]) |
| 338 | { |
| 339 | sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_TX]; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 340 | vnet_hw_interface_t *hi0 = |
| 341 | vnet_get_sup_hw_interface (vnm, sw_if_index0); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 342 | t0 = &vxm->tunnels[hi0->dev_instance]; |
| 343 | /* Note: change to always set next0 if it may be set to drop */ |
| 344 | next0 = t0->next_dpo.dpoi_next_node; |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 345 | dpoi_idx0 = t0->next_dpo.dpoi_index; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 346 | } |
John Lo | 25d417f | 2018-02-15 15:47:53 -0500 | [diff] [blame^] | 347 | vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpoi_idx0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 348 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 349 | ASSERT(vec_len(t0->rewrite) == underlay_hdr_len); |
| 350 | vlib_buffer_advance (b0, -underlay_hdr_len); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 352 | u32 len0 = vlib_buffer_length_in_chain (vm, b0); |
| 353 | u16 payload_l0 = clib_host_to_net_u16 (len0 - l3_len); |
| 354 | |
| 355 | udp_header_t * udp0; |
| 356 | ip4_header_t * ip4_0; |
| 357 | ip6_header_t * ip6_0; |
| 358 | u8 * l3_0; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 359 | if (is_ip4) |
| 360 | { |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 361 | ip4_vxlan_header_t * rewrite = (void *)t0->rewrite; |
| 362 | ip4_vxlan_header_t * hdr = vlib_buffer_get_current(b0); |
| 363 | *hdr = *rewrite; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 364 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 365 | /* Fix the IP4 checksum and length */ |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 366 | ip4_0 = &hdr->ip4; |
| 367 | ip4_0->length = clib_host_to_net_u16 (len0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 369 | l3_0 = (u8*)ip4_0; |
| 370 | udp0 = &hdr->udp; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 371 | } |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 372 | else /* ip6 path */ |
| 373 | { |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 374 | ip6_vxlan_header_t * hdr = vlib_buffer_get_current(b0); |
| 375 | ip6_vxlan_header_t * rewrite = (void *) t0->rewrite; |
| 376 | *hdr = *rewrite; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 377 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 378 | /* Fix IP6 payload length */ |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 379 | ip6_0 = &hdr->ip6; |
| 380 | ip6_0->payload_length = payload_l0; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 381 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 382 | l3_0 = (u8 *)ip6_0; |
| 383 | udp0 = &hdr->udp; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 384 | } |
| 385 | |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 386 | /* Fix UDP length and set source port */ |
| 387 | udp0->length = payload_l0; |
| 388 | udp0->src_port = flow_hash0; |
| 389 | |
| 390 | if (csum_offload) |
| 391 | { |
| 392 | b0->flags |= csum_flags; |
| 393 | vnet_buffer (b0)->l3_hdr_offset = l3_0 - b0->data; |
| 394 | vnet_buffer (b0)->l4_hdr_offset = (u8 *) udp0 - b0->data; |
| 395 | } |
| 396 | /* IPv4 UDP checksum only if checksum offload is used */ |
| 397 | else if (is_ip4) |
| 398 | { |
| 399 | ip_csum_t sum0 = ip4_0->checksum; |
| 400 | sum0 = ip_csum_update (sum0, 0, ip4_0->length, ip4_header_t, |
| 401 | length /* changed member */); |
| 402 | ip4_0->checksum = ip_csum_fold (sum0); |
| 403 | } |
| 404 | /* IPv6 UDP checksum is mandatory */ |
| 405 | else |
| 406 | { |
| 407 | int bogus = 0; |
| 408 | |
| 409 | udp0->checksum = ip6_tcp_udp_icmp_compute_checksum |
| 410 | (vm, b0, ip6_0, &bogus); |
| 411 | ASSERT(bogus == 0); |
| 412 | if (udp0->checksum == 0) |
| 413 | udp0->checksum = 0xffff; |
| 414 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 415 | |
| 416 | /* Batch stats increment on the same vxlan tunnel so counter is not |
| 417 | incremented per packet. Note stats are still incremented for deleted |
| 418 | and admin-down tunnel where packets are dropped. It is not worthwhile |
| 419 | to check for this rare case and affect normal path performance. */ |
| 420 | if (PREDICT_FALSE (sw_if_index0 != stats_sw_if_index)) |
| 421 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 422 | if (stats_n_packets) |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 423 | { |
| 424 | vlib_increment_combined_counter (tx_counter, thread_index, |
| 425 | stats_sw_if_index, stats_n_packets, stats_n_bytes); |
| 426 | stats_n_bytes = stats_n_packets = 0; |
| 427 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 428 | stats_sw_if_index = sw_if_index0; |
| 429 | } |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 430 | stats_n_packets += 1; |
| 431 | stats_n_bytes += len0; |
| 432 | pkts_encapsulated ++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 433 | |
| 434 | if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 435 | { |
| 436 | vxlan_encap_trace_t *tr = |
| 437 | vlib_add_trace (vm, node, b0, sizeof (*tr)); |
| 438 | tr->tunnel_index = t0 - vxm->tunnels; |
| 439 | tr->vni = t0->vni; |
| 440 | } |
| 441 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 442 | to_next, n_left_to_next, |
| 443 | bi0, next0); |
| 444 | } |
| 445 | |
| 446 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 447 | } |
| 448 | |
| 449 | /* Do we still need this now that tunnel tx stats is kept? */ |
| 450 | vlib_node_increment_counter (vm, node->node_index, |
| 451 | VXLAN_ENCAP_ERROR_ENCAPSULATED, |
| 452 | pkts_encapsulated); |
| 453 | |
| 454 | /* Increment any remaining batch stats */ |
| 455 | if (stats_n_packets) |
| 456 | { |
Eyal Bari | 3ce0b08 | 2018-01-17 12:06:32 +0200 | [diff] [blame] | 457 | vlib_increment_combined_counter (tx_counter, thread_index, |
| 458 | stats_sw_if_index, stats_n_packets, stats_n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 459 | node->runtime_data[0] = stats_sw_if_index; |
| 460 | } |
| 461 | |
| 462 | return from_frame->n_vectors; |
| 463 | } |
| 464 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 465 | static uword |
| 466 | vxlan4_encap (vlib_main_t * vm, |
| 467 | vlib_node_runtime_t * node, |
| 468 | vlib_frame_t * from_frame) |
| 469 | { |
John Lo | f4215a6 | 2017-09-18 00:20:05 -0400 | [diff] [blame] | 470 | /* Disable chksum offload as setup overhead in tx node is not worthwhile |
| 471 | for ip4 header checksum only, unless udp checksum is also required */ |
| 472 | return vxlan_encap_inline (vm, node, from_frame, /* is_ip4 */ 1, |
| 473 | /* csum_offload */ 0); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | static uword |
| 477 | vxlan6_encap (vlib_main_t * vm, |
| 478 | vlib_node_runtime_t * node, |
| 479 | vlib_frame_t * from_frame) |
| 480 | { |
John Lo | f4215a6 | 2017-09-18 00:20:05 -0400 | [diff] [blame] | 481 | /* Enable checksum offload for ip6 as udp checksum is mandatory, */ |
| 482 | return vxlan_encap_inline (vm, node, from_frame, /* is_ip4 */ 0, |
| 483 | /* csum_offload */ 1); |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | VLIB_REGISTER_NODE (vxlan4_encap_node) = { |
| 487 | .function = vxlan4_encap, |
| 488 | .name = "vxlan4-encap", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 489 | .vector_size = sizeof (u32), |
| 490 | .format_trace = format_vxlan_encap_trace, |
| 491 | .type = VLIB_NODE_TYPE_INTERNAL, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 492 | .n_errors = ARRAY_LEN(vxlan_encap_error_strings), |
| 493 | .error_strings = vxlan_encap_error_strings, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 494 | .n_next_nodes = VXLAN_ENCAP_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 495 | .next_nodes = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | [VXLAN_ENCAP_NEXT_DROP] = "error-drop", |
| 497 | }, |
| 498 | }; |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 499 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 500 | VLIB_NODE_FUNCTION_MULTIARCH (vxlan4_encap_node, vxlan4_encap) |
| 501 | |
| 502 | VLIB_REGISTER_NODE (vxlan6_encap_node) = { |
| 503 | .function = vxlan6_encap, |
| 504 | .name = "vxlan6-encap", |
| 505 | .vector_size = sizeof (u32), |
| 506 | .format_trace = format_vxlan_encap_trace, |
| 507 | .type = VLIB_NODE_TYPE_INTERNAL, |
| 508 | .n_errors = ARRAY_LEN(vxlan_encap_error_strings), |
| 509 | .error_strings = vxlan_encap_error_strings, |
| 510 | .n_next_nodes = VXLAN_ENCAP_N_NEXT, |
| 511 | .next_nodes = { |
| 512 | [VXLAN_ENCAP_NEXT_DROP] = "error-drop", |
| 513 | }, |
| 514 | }; |
| 515 | |
| 516 | VLIB_NODE_FUNCTION_MULTIARCH (vxlan6_encap_node, vxlan6_encap) |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 517 | |