Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 1 | /* |
| 2 | * decap.c: vxlan gbp tunnel decap packet processing |
| 3 | * |
| 4 | * Copyright (c) 2018 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
| 19 | #include <vnet/pg/pg.h> |
| 20 | #include <vnet/vxlan-gbp/vxlan_gbp.h> |
| 21 | |
| 22 | vlib_node_registration_t vxlan4_gbp_input_node; |
| 23 | vlib_node_registration_t vxlan6_gbp_input_node; |
| 24 | |
| 25 | typedef struct |
| 26 | { |
| 27 | u32 next_index; |
| 28 | u32 tunnel_index; |
| 29 | u32 error; |
| 30 | u32 vni; |
| 31 | u16 sclass; |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 32 | u8 flags; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 33 | } vxlan_gbp_rx_trace_t; |
| 34 | |
| 35 | static u8 * |
| 36 | format_vxlan_gbp_rx_trace (u8 * s, va_list * args) |
| 37 | { |
| 38 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 39 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 40 | vxlan_gbp_rx_trace_t *t = va_arg (*args, vxlan_gbp_rx_trace_t *); |
| 41 | |
| 42 | if (t->tunnel_index == ~0) |
| 43 | return format (s, |
| 44 | "VXLAN_GBP decap error - tunnel for vni %d does not exist", |
| 45 | t->vni); |
| 46 | return format (s, |
| 47 | "VXLAN_GBP decap from vxlan_gbp_tunnel%d vni %d sclass %d" |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 48 | " flags %U next %d error %d", |
| 49 | t->tunnel_index, t->vni, t->sclass, |
| 50 | format_vxlan_gbp_header_gpflags, t->flags, |
| 51 | t->next_index, t->error); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | always_inline u32 |
| 55 | buf_fib_index (vlib_buffer_t * b, u32 is_ip4) |
| 56 | { |
| 57 | u32 sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_TX]; |
| 58 | if (sw_if_index != (u32) ~ 0) |
| 59 | return sw_if_index; |
| 60 | |
| 61 | u32 *fib_index_by_sw_if_index = is_ip4 ? |
| 62 | ip4_main.fib_index_by_sw_if_index : ip6_main.fib_index_by_sw_if_index; |
| 63 | sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX]; |
| 64 | |
| 65 | return vec_elt (fib_index_by_sw_if_index, sw_if_index); |
| 66 | } |
| 67 | |
| 68 | typedef vxlan4_gbp_tunnel_key_t last_tunnel_cache4; |
| 69 | |
| 70 | always_inline vxlan_gbp_tunnel_t * |
| 71 | vxlan4_gbp_find_tunnel (vxlan_gbp_main_t * vxm, last_tunnel_cache4 * cache, |
| 72 | u32 fib_index, ip4_header_t * ip4_0, |
| 73 | vxlan_gbp_header_t * vxlan_gbp0, |
| 74 | vxlan_gbp_tunnel_t ** stats_t0) |
| 75 | { |
| 76 | /* Make sure VXLAN_GBP tunnel exist according to packet SIP and VNI */ |
| 77 | vxlan4_gbp_tunnel_key_t key4; |
| 78 | key4.key[1] = ((u64) fib_index << 32) | vxlan_gbp0->vni_reserved; |
| 79 | |
| 80 | if (PREDICT_FALSE (key4.key[1] != cache->key[1] || |
| 81 | ip4_0->src_address.as_u32 != (u32) cache->key[0])) |
| 82 | { |
| 83 | key4.key[0] = ip4_0->src_address.as_u32; |
| 84 | int rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_gbp_tunnel_by_key, |
| 85 | &key4); |
| 86 | if (PREDICT_FALSE (rv != 0)) |
| 87 | return 0; |
| 88 | |
| 89 | *cache = key4; |
| 90 | } |
| 91 | vxlan_gbp_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value); |
| 92 | |
| 93 | /* Validate VXLAN_GBP tunnel SIP against packet DIP */ |
| 94 | if (PREDICT_TRUE (ip4_0->dst_address.as_u32 == t0->src.ip4.as_u32)) |
| 95 | *stats_t0 = t0; |
| 96 | else |
| 97 | { |
| 98 | /* try multicast */ |
| 99 | if (PREDICT_TRUE (!ip4_address_is_multicast (&ip4_0->dst_address))) |
| 100 | return 0; |
| 101 | |
| 102 | key4.key[0] = ip4_0->dst_address.as_u32; |
| 103 | /* Make sure mcast VXLAN_GBP tunnel exist by packet DIP and VNI */ |
| 104 | int rv = clib_bihash_search_inline_16_8 (&vxm->vxlan4_gbp_tunnel_by_key, |
| 105 | &key4); |
| 106 | if (PREDICT_FALSE (rv != 0)) |
| 107 | return 0; |
| 108 | |
| 109 | *stats_t0 = pool_elt_at_index (vxm->tunnels, key4.value); |
| 110 | } |
| 111 | |
| 112 | return t0; |
| 113 | } |
| 114 | |
| 115 | typedef vxlan6_gbp_tunnel_key_t last_tunnel_cache6; |
| 116 | |
| 117 | always_inline vxlan_gbp_tunnel_t * |
| 118 | vxlan6_gbp_find_tunnel (vxlan_gbp_main_t * vxm, last_tunnel_cache6 * cache, |
| 119 | u32 fib_index, ip6_header_t * ip6_0, |
| 120 | vxlan_gbp_header_t * vxlan_gbp0, |
| 121 | vxlan_gbp_tunnel_t ** stats_t0) |
| 122 | { |
| 123 | /* Make sure VXLAN_GBP tunnel exist according to packet SIP and VNI */ |
| 124 | vxlan6_gbp_tunnel_key_t key6 = { |
| 125 | .key = { |
| 126 | [0] = ip6_0->src_address.as_u64[0], |
| 127 | [1] = ip6_0->src_address.as_u64[1], |
| 128 | [2] = (((u64) fib_index) << 32) | vxlan_gbp0->vni_reserved, |
| 129 | } |
| 130 | }; |
| 131 | |
| 132 | if (PREDICT_FALSE |
| 133 | (clib_bihash_key_compare_24_8 (key6.key, cache->key) == 0)) |
| 134 | { |
| 135 | int rv = clib_bihash_search_inline_24_8 (&vxm->vxlan6_gbp_tunnel_by_key, |
| 136 | &key6); |
| 137 | if (PREDICT_FALSE (rv != 0)) |
| 138 | return 0; |
| 139 | |
| 140 | *cache = key6; |
| 141 | } |
| 142 | vxlan_gbp_tunnel_t *t0 = pool_elt_at_index (vxm->tunnels, cache->value); |
| 143 | |
| 144 | /* Validate VXLAN_GBP tunnel SIP against packet DIP */ |
| 145 | if (PREDICT_TRUE (ip6_address_is_equal (&ip6_0->dst_address, &t0->src.ip6))) |
| 146 | *stats_t0 = t0; |
| 147 | else |
| 148 | { |
| 149 | /* try multicast */ |
| 150 | if (PREDICT_TRUE (!ip6_address_is_multicast (&ip6_0->dst_address))) |
| 151 | return 0; |
| 152 | |
| 153 | /* Make sure mcast VXLAN_GBP tunnel exist by packet DIP and VNI */ |
| 154 | key6.key[0] = ip6_0->dst_address.as_u64[0]; |
| 155 | key6.key[1] = ip6_0->dst_address.as_u64[1]; |
| 156 | int rv = clib_bihash_search_inline_24_8 (&vxm->vxlan6_gbp_tunnel_by_key, |
| 157 | &key6); |
| 158 | if (PREDICT_FALSE (rv != 0)) |
| 159 | return 0; |
| 160 | |
| 161 | *stats_t0 = pool_elt_at_index (vxm->tunnels, key6.value); |
| 162 | } |
| 163 | |
| 164 | return t0; |
| 165 | } |
| 166 | |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 167 | always_inline vxlan_gbp_input_next_t |
| 168 | vxlan_gbp_tunnel_get_next (const vxlan_gbp_tunnel_t * t, vlib_buffer_t * b0) |
| 169 | { |
| 170 | if (VXLAN_GBP_TUNNEL_MODE_L2 == t->mode) |
| 171 | return (VXLAN_GBP_INPUT_NEXT_L2_INPUT); |
| 172 | else |
| 173 | { |
| 174 | ethernet_header_t *e0; |
| 175 | u16 type0; |
| 176 | |
| 177 | e0 = vlib_buffer_get_current (b0); |
| 178 | vlib_buffer_advance (b0, sizeof (*e0)); |
| 179 | type0 = clib_net_to_host_u16 (e0->type); |
| 180 | switch (type0) |
| 181 | { |
| 182 | case ETHERNET_TYPE_IP4: |
| 183 | return (VXLAN_GBP_INPUT_NEXT_IP4_INPUT); |
| 184 | case ETHERNET_TYPE_IP6: |
| 185 | return (VXLAN_GBP_INPUT_NEXT_IP6_INPUT); |
| 186 | } |
| 187 | } |
| 188 | return (VXLAN_GBP_INPUT_NEXT_DROP); |
| 189 | } |
| 190 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 191 | always_inline uword |
| 192 | vxlan_gbp_input (vlib_main_t * vm, |
| 193 | vlib_node_runtime_t * node, |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 194 | vlib_frame_t * from_frame, u8 is_ip4) |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 195 | { |
| 196 | vxlan_gbp_main_t *vxm = &vxlan_gbp_main; |
| 197 | vnet_main_t *vnm = vxm->vnet_main; |
| 198 | vnet_interface_main_t *im = &vnm->interface_main; |
| 199 | vlib_combined_counter_main_t *rx_counter = |
| 200 | im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX; |
| 201 | vlib_combined_counter_main_t *drop_counter = |
| 202 | im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP; |
| 203 | last_tunnel_cache4 last4; |
| 204 | last_tunnel_cache6 last6; |
| 205 | u32 pkts_decapsulated = 0; |
| 206 | u32 thread_index = vlib_get_thread_index (); |
| 207 | |
| 208 | if (is_ip4) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 209 | clib_memset (&last4, 0xff, sizeof last4); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 210 | else |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 211 | clib_memset (&last6, 0xff, sizeof last6); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 212 | |
| 213 | u32 next_index = node->cached_next_index; |
| 214 | |
| 215 | u32 *from = vlib_frame_vector_args (from_frame); |
| 216 | u32 n_left_from = from_frame->n_vectors; |
| 217 | |
| 218 | while (n_left_from > 0) |
| 219 | { |
| 220 | u32 *to_next, n_left_to_next; |
| 221 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 222 | |
| 223 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 224 | { |
| 225 | /* Prefetch next iteration. */ |
| 226 | { |
| 227 | vlib_buffer_t *p2, *p3; |
| 228 | |
| 229 | p2 = vlib_get_buffer (vm, from[2]); |
| 230 | p3 = vlib_get_buffer (vm, from[3]); |
| 231 | |
| 232 | vlib_prefetch_buffer_header (p2, LOAD); |
| 233 | vlib_prefetch_buffer_header (p3, LOAD); |
| 234 | |
| 235 | CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 236 | CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 237 | } |
| 238 | |
| 239 | u32 bi0 = to_next[0] = from[0]; |
| 240 | u32 bi1 = to_next[1] = from[1]; |
| 241 | from += 2; |
| 242 | to_next += 2; |
| 243 | n_left_to_next -= 2; |
| 244 | n_left_from -= 2; |
| 245 | |
| 246 | vlib_buffer_t *b0, *b1; |
| 247 | b0 = vlib_get_buffer (vm, bi0); |
| 248 | b1 = vlib_get_buffer (vm, bi1); |
| 249 | |
| 250 | /* udp leaves current_data pointing at the vxlan_gbp header */ |
| 251 | void *cur0 = vlib_buffer_get_current (b0); |
| 252 | void *cur1 = vlib_buffer_get_current (b1); |
| 253 | vxlan_gbp_header_t *vxlan_gbp0 = cur0; |
| 254 | vxlan_gbp_header_t *vxlan_gbp1 = cur1; |
| 255 | |
| 256 | ip4_header_t *ip4_0, *ip4_1; |
| 257 | ip6_header_t *ip6_0, *ip6_1; |
| 258 | if (is_ip4) |
| 259 | { |
| 260 | ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t); |
| 261 | ip4_1 = cur1 - sizeof (udp_header_t) - sizeof (ip4_header_t); |
| 262 | } |
| 263 | else |
| 264 | { |
| 265 | ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t); |
| 266 | ip6_1 = cur1 - sizeof (udp_header_t) - sizeof (ip6_header_t); |
| 267 | } |
| 268 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 269 | u32 fi0 = buf_fib_index (b0, is_ip4); |
| 270 | u32 fi1 = buf_fib_index (b1, is_ip4); |
| 271 | |
| 272 | vxlan_gbp_tunnel_t *t0, *stats_t0 = 0; |
| 273 | vxlan_gbp_tunnel_t *t1, *stats_t1 = 0; |
| 274 | if (is_ip4) |
| 275 | { |
| 276 | t0 = |
| 277 | vxlan4_gbp_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan_gbp0, |
| 278 | &stats_t0); |
| 279 | t1 = |
| 280 | vxlan4_gbp_find_tunnel (vxm, &last4, fi1, ip4_1, vxlan_gbp1, |
| 281 | &stats_t1); |
| 282 | } |
| 283 | else |
| 284 | { |
| 285 | t0 = |
| 286 | vxlan6_gbp_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan_gbp0, |
| 287 | &stats_t0); |
| 288 | t1 = |
| 289 | vxlan6_gbp_find_tunnel (vxm, &last6, fi1, ip6_1, vxlan_gbp1, |
| 290 | &stats_t1); |
| 291 | } |
| 292 | |
| 293 | u32 len0 = vlib_buffer_length_in_chain (vm, b0); |
| 294 | u32 len1 = vlib_buffer_length_in_chain (vm, b1); |
| 295 | |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 296 | vxlan_gbp_input_next_t next0, next1; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 297 | u8 error0 = 0, error1 = 0; |
| 298 | u8 flags0 = vxlan_gbp_get_flags (vxlan_gbp0); |
| 299 | u8 flags1 = vxlan_gbp_get_flags (vxlan_gbp1); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 300 | /* Required to make the l2 tag push / pop code work on l2 subifs */ |
| 301 | /* pop vxlan_gbp */ |
| 302 | vlib_buffer_advance (b0, sizeof *vxlan_gbp0); |
| 303 | vlib_buffer_advance (b1, sizeof *vxlan_gbp1); |
| 304 | |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 305 | /* Validate VXLAN_GBP tunnel encap-fib index against packet */ |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 306 | if (PREDICT_FALSE |
| 307 | (t0 == 0 || flags0 != (VXLAN_GBP_FLAGS_I | VXLAN_GBP_FLAGS_G))) |
| 308 | { |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 309 | if (t0 != 0 |
| 310 | && flags0 != (VXLAN_GBP_FLAGS_I | VXLAN_GBP_FLAGS_G)) |
| 311 | { |
| 312 | error0 = VXLAN_GBP_ERROR_BAD_FLAGS; |
| 313 | vlib_increment_combined_counter |
| 314 | (drop_counter, thread_index, stats_t0->sw_if_index, 1, |
| 315 | len0); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 316 | next0 = VXLAN_GBP_INPUT_NEXT_DROP; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 317 | } |
| 318 | else |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 319 | { |
| 320 | error0 = VXLAN_GBP_ERROR_NO_SUCH_TUNNEL; |
| 321 | next0 = VXLAN_GBP_INPUT_NEXT_NO_TUNNEL; |
| 322 | } |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 323 | b0->error = node->errors[error0]; |
| 324 | } |
| 325 | else |
| 326 | { |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 327 | next0 = vxlan_gbp_tunnel_get_next (t0, b0); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 328 | |
| 329 | /* Set packet input sw_if_index to unicast VXLAN tunnel for learning */ |
| 330 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index; |
| 331 | vlib_increment_combined_counter |
| 332 | (rx_counter, thread_index, stats_t0->sw_if_index, 1, len0); |
| 333 | pkts_decapsulated++; |
| 334 | } |
| 335 | |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 336 | vnet_buffer2 (b0)->gbp.flags = vxlan_gbp_get_gpflags (vxlan_gbp0); |
| 337 | vnet_buffer2 (b0)->gbp.src_epg = vxlan_gbp_get_sclass (vxlan_gbp0); |
| 338 | |
| 339 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 340 | if (PREDICT_FALSE |
| 341 | (t1 == 0 || flags1 != (VXLAN_GBP_FLAGS_I | VXLAN_GBP_FLAGS_G))) |
| 342 | { |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 343 | if (t1 != 0 |
| 344 | && flags1 != (VXLAN_GBP_FLAGS_I | VXLAN_GBP_FLAGS_G)) |
| 345 | { |
| 346 | error1 = VXLAN_GBP_ERROR_BAD_FLAGS; |
| 347 | vlib_increment_combined_counter |
| 348 | (drop_counter, thread_index, stats_t1->sw_if_index, 1, |
| 349 | len1); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 350 | next1 = VXLAN_GBP_INPUT_NEXT_DROP; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 351 | } |
| 352 | else |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 353 | { |
| 354 | error1 = VXLAN_GBP_ERROR_NO_SUCH_TUNNEL; |
| 355 | next1 = VXLAN_GBP_INPUT_NEXT_NO_TUNNEL; |
| 356 | } |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 357 | b1->error = node->errors[error1]; |
| 358 | } |
| 359 | else |
| 360 | { |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 361 | next1 = vxlan_gbp_tunnel_get_next (t1, b1); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 362 | |
| 363 | /* Set packet input sw_if_index to unicast VXLAN_GBP tunnel for learning */ |
| 364 | vnet_buffer (b1)->sw_if_index[VLIB_RX] = t1->sw_if_index; |
| 365 | pkts_decapsulated++; |
| 366 | |
| 367 | vlib_increment_combined_counter |
| 368 | (rx_counter, thread_index, stats_t1->sw_if_index, 1, len1); |
| 369 | } |
| 370 | |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 371 | vnet_buffer2 (b1)->gbp.flags = vxlan_gbp_get_gpflags (vxlan_gbp1); |
| 372 | vnet_buffer2 (b1)->gbp.src_epg = vxlan_gbp_get_sclass (vxlan_gbp1); |
| 373 | |
| 374 | vnet_update_l2_len (b0); |
| 375 | vnet_update_l2_len (b1); |
| 376 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 377 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 378 | { |
| 379 | vxlan_gbp_rx_trace_t *tr = |
| 380 | vlib_add_trace (vm, node, b0, sizeof (*tr)); |
| 381 | tr->next_index = next0; |
| 382 | tr->error = error0; |
| 383 | tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels; |
| 384 | tr->vni = vxlan_gbp_get_vni (vxlan_gbp0); |
| 385 | tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp0); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 386 | tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp0); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 387 | } |
| 388 | if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED)) |
| 389 | { |
| 390 | vxlan_gbp_rx_trace_t *tr = |
| 391 | vlib_add_trace (vm, node, b1, sizeof (*tr)); |
| 392 | tr->next_index = next1; |
| 393 | tr->error = error1; |
| 394 | tr->tunnel_index = t1 == 0 ? ~0 : t1 - vxm->tunnels; |
| 395 | tr->vni = vxlan_gbp_get_vni (vxlan_gbp1); |
| 396 | tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp1); |
Neale Ranns | 5ecbbc1 | 2018-11-14 08:18:12 -0800 | [diff] [blame] | 397 | tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp1); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 401 | to_next, n_left_to_next, |
| 402 | bi0, bi1, next0, next1); |
| 403 | } |
| 404 | |
| 405 | while (n_left_from > 0 && n_left_to_next > 0) |
| 406 | { |
| 407 | u32 bi0 = to_next[0] = from[0]; |
| 408 | from += 1; |
| 409 | to_next += 1; |
| 410 | n_left_from -= 1; |
| 411 | n_left_to_next -= 1; |
| 412 | |
| 413 | vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0); |
| 414 | |
| 415 | /* udp leaves current_data pointing at the vxlan_gbp header */ |
| 416 | void *cur0 = vlib_buffer_get_current (b0); |
| 417 | vxlan_gbp_header_t *vxlan_gbp0 = cur0; |
| 418 | ip4_header_t *ip4_0; |
| 419 | ip6_header_t *ip6_0; |
| 420 | if (is_ip4) |
| 421 | ip4_0 = cur0 - sizeof (udp_header_t) - sizeof (ip4_header_t); |
| 422 | else |
| 423 | ip6_0 = cur0 - sizeof (udp_header_t) - sizeof (ip6_header_t); |
| 424 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 425 | u32 fi0 = buf_fib_index (b0, is_ip4); |
| 426 | |
| 427 | vxlan_gbp_tunnel_t *t0, *stats_t0 = 0; |
| 428 | if (is_ip4) |
| 429 | t0 = |
| 430 | vxlan4_gbp_find_tunnel (vxm, &last4, fi0, ip4_0, vxlan_gbp0, |
| 431 | &stats_t0); |
| 432 | else |
| 433 | t0 = |
| 434 | vxlan6_gbp_find_tunnel (vxm, &last6, fi0, ip6_0, vxlan_gbp0, |
| 435 | &stats_t0); |
| 436 | |
| 437 | uword len0 = vlib_buffer_length_in_chain (vm, b0); |
| 438 | |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 439 | vxlan_gbp_input_next_t next0; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 440 | u8 error0 = 0; |
| 441 | u8 flags0 = vxlan_gbp_get_flags (vxlan_gbp0); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 442 | |
| 443 | /* pop (ip, udp, vxlan_gbp) */ |
| 444 | vlib_buffer_advance (b0, sizeof (*vxlan_gbp0)); |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 445 | /* Validate VXLAN_GBP tunnel encap-fib index against packet */ |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 446 | if (PREDICT_FALSE |
| 447 | (t0 == 0 || flags0 != (VXLAN_GBP_FLAGS_I | VXLAN_GBP_FLAGS_G))) |
| 448 | { |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 449 | if (t0 != 0 |
| 450 | && flags0 != (VXLAN_GBP_FLAGS_I | VXLAN_GBP_FLAGS_G)) |
| 451 | { |
| 452 | error0 = VXLAN_GBP_ERROR_BAD_FLAGS; |
| 453 | vlib_increment_combined_counter |
| 454 | (drop_counter, thread_index, stats_t0->sw_if_index, 1, |
| 455 | len0); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 456 | next0 = VXLAN_GBP_INPUT_NEXT_DROP; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 457 | } |
| 458 | else |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 459 | { |
| 460 | error0 = VXLAN_GBP_ERROR_NO_SUCH_TUNNEL; |
| 461 | next0 = VXLAN_GBP_INPUT_NEXT_NO_TUNNEL; |
| 462 | } |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 463 | b0->error = node->errors[error0]; |
| 464 | } |
| 465 | else |
| 466 | { |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 467 | next0 = vxlan_gbp_tunnel_get_next (t0, b0); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 468 | /* Set packet input sw_if_index to unicast VXLAN_GBP tunnel for learning */ |
| 469 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = t0->sw_if_index; |
| 470 | pkts_decapsulated++; |
| 471 | |
| 472 | vlib_increment_combined_counter |
| 473 | (rx_counter, thread_index, stats_t0->sw_if_index, 1, len0); |
| 474 | } |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 475 | vnet_buffer2 (b0)->gbp.flags = vxlan_gbp_get_gpflags (vxlan_gbp0); |
| 476 | vnet_buffer2 (b0)->gbp.src_epg = vxlan_gbp_get_sclass (vxlan_gbp0); |
| 477 | |
| 478 | /* Required to make the l2 tag push / pop code work on l2 subifs */ |
| 479 | vnet_update_l2_len (b0); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 480 | |
| 481 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 482 | { |
| 483 | vxlan_gbp_rx_trace_t *tr |
| 484 | = vlib_add_trace (vm, node, b0, sizeof (*tr)); |
| 485 | tr->next_index = next0; |
| 486 | tr->error = error0; |
| 487 | tr->tunnel_index = t0 == 0 ? ~0 : t0 - vxm->tunnels; |
| 488 | tr->vni = vxlan_gbp_get_vni (vxlan_gbp0); |
| 489 | tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp0); |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 490 | tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp0); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 491 | } |
| 492 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 493 | to_next, n_left_to_next, |
| 494 | bi0, next0); |
| 495 | } |
| 496 | |
| 497 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 498 | } |
| 499 | /* Do we still need this now that tunnel tx stats is kept? */ |
| 500 | u32 node_idx = |
| 501 | is_ip4 ? vxlan4_gbp_input_node.index : vxlan6_gbp_input_node.index; |
| 502 | vlib_node_increment_counter (vm, node_idx, VXLAN_GBP_ERROR_DECAPSULATED, |
| 503 | pkts_decapsulated); |
| 504 | |
| 505 | return from_frame->n_vectors; |
| 506 | } |
| 507 | |
| 508 | static uword |
| 509 | vxlan4_gbp_input (vlib_main_t * vm, |
| 510 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 511 | { |
| 512 | return vxlan_gbp_input (vm, node, from_frame, /* is_ip4 */ 1); |
| 513 | } |
| 514 | |
| 515 | static uword |
| 516 | vxlan6_gbp_input (vlib_main_t * vm, |
| 517 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 518 | { |
| 519 | return vxlan_gbp_input (vm, node, from_frame, /* is_ip4 */ 0); |
| 520 | } |
| 521 | |
| 522 | static char *vxlan_gbp_error_strings[] = { |
| 523 | #define vxlan_gbp_error(n,s) s, |
| 524 | #include <vnet/vxlan-gbp/vxlan_gbp_error.def> |
| 525 | #undef vxlan_gbp_error |
| 526 | #undef _ |
| 527 | }; |
| 528 | |
| 529 | /* *INDENT-OFF* */ |
| 530 | VLIB_REGISTER_NODE (vxlan4_gbp_input_node) = |
| 531 | { |
| 532 | .function = vxlan4_gbp_input, |
| 533 | .name = "vxlan4-gbp-input", |
| 534 | .vector_size = sizeof (u32), |
| 535 | .n_errors = VXLAN_GBP_N_ERROR, |
| 536 | .error_strings = vxlan_gbp_error_strings, |
| 537 | .n_next_nodes = VXLAN_GBP_INPUT_N_NEXT, |
| 538 | .format_trace = format_vxlan_gbp_rx_trace, |
| 539 | .next_nodes = { |
| 540 | #define _(s,n) [VXLAN_GBP_INPUT_NEXT_##s] = n, |
| 541 | foreach_vxlan_gbp_input_next |
| 542 | #undef _ |
| 543 | }, |
| 544 | }; |
| 545 | VLIB_NODE_FUNCTION_MULTIARCH (vxlan4_gbp_input_node, vxlan4_gbp_input) |
| 546 | |
| 547 | VLIB_REGISTER_NODE (vxlan6_gbp_input_node) = |
| 548 | { |
| 549 | .function = vxlan6_gbp_input, |
| 550 | .name = "vxlan6-gbp-input", |
| 551 | .vector_size = sizeof (u32), |
| 552 | .n_errors = VXLAN_GBP_N_ERROR, |
| 553 | .error_strings = vxlan_gbp_error_strings, |
| 554 | .n_next_nodes = VXLAN_GBP_INPUT_N_NEXT, |
| 555 | .next_nodes = { |
| 556 | #define _(s,n) [VXLAN_GBP_INPUT_NEXT_##s] = n, |
| 557 | foreach_vxlan_gbp_input_next |
| 558 | #undef _ |
| 559 | }, |
| 560 | .format_trace = format_vxlan_gbp_rx_trace, |
| 561 | }; |
| 562 | VLIB_NODE_FUNCTION_MULTIARCH (vxlan6_gbp_input_node, vxlan6_gbp_input) |
| 563 | /* *INDENT-ON* */ |
| 564 | |
| 565 | typedef enum |
| 566 | { |
| 567 | IP_VXLAN_GBP_BYPASS_NEXT_DROP, |
| 568 | IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP, |
| 569 | IP_VXLAN_GBP_BYPASS_N_NEXT, |
| 570 | } ip_vxan_gbp_bypass_next_t; |
| 571 | |
| 572 | always_inline uword |
| 573 | ip_vxlan_gbp_bypass_inline (vlib_main_t * vm, |
| 574 | vlib_node_runtime_t * node, |
| 575 | vlib_frame_t * frame, u32 is_ip4) |
| 576 | { |
| 577 | vxlan_gbp_main_t *vxm = &vxlan_gbp_main; |
| 578 | u32 *from, *to_next, n_left_from, n_left_to_next, next_index; |
| 579 | vlib_node_runtime_t *error_node = |
| 580 | vlib_node_get_runtime (vm, ip4_input_node.index); |
| 581 | ip4_address_t addr4; /* last IPv4 address matching a local VTEP address */ |
| 582 | ip6_address_t addr6; /* last IPv6 address matching a local VTEP address */ |
| 583 | |
| 584 | from = vlib_frame_vector_args (frame); |
| 585 | n_left_from = frame->n_vectors; |
| 586 | next_index = node->cached_next_index; |
| 587 | |
| 588 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 589 | ip4_forward_next_trace (vm, node, frame, VLIB_TX); |
| 590 | |
| 591 | if (is_ip4) |
| 592 | addr4.data_u32 = ~0; |
| 593 | else |
| 594 | ip6_address_set_zero (&addr6); |
| 595 | |
| 596 | while (n_left_from > 0) |
| 597 | { |
| 598 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 599 | |
| 600 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 601 | { |
| 602 | vlib_buffer_t *b0, *b1; |
| 603 | ip4_header_t *ip40, *ip41; |
| 604 | ip6_header_t *ip60, *ip61; |
| 605 | udp_header_t *udp0, *udp1; |
| 606 | u32 bi0, ip_len0, udp_len0, flags0, next0; |
| 607 | u32 bi1, ip_len1, udp_len1, flags1, next1; |
| 608 | i32 len_diff0, len_diff1; |
| 609 | u8 error0, good_udp0, proto0; |
| 610 | u8 error1, good_udp1, proto1; |
| 611 | |
| 612 | /* Prefetch next iteration. */ |
| 613 | { |
| 614 | vlib_buffer_t *p2, *p3; |
| 615 | |
| 616 | p2 = vlib_get_buffer (vm, from[2]); |
| 617 | p3 = vlib_get_buffer (vm, from[3]); |
| 618 | |
| 619 | vlib_prefetch_buffer_header (p2, LOAD); |
| 620 | vlib_prefetch_buffer_header (p3, LOAD); |
| 621 | |
| 622 | CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 623 | CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 624 | } |
| 625 | |
| 626 | bi0 = to_next[0] = from[0]; |
| 627 | bi1 = to_next[1] = from[1]; |
| 628 | from += 2; |
| 629 | n_left_from -= 2; |
| 630 | to_next += 2; |
| 631 | n_left_to_next -= 2; |
| 632 | |
| 633 | b0 = vlib_get_buffer (vm, bi0); |
| 634 | b1 = vlib_get_buffer (vm, bi1); |
| 635 | if (is_ip4) |
| 636 | { |
| 637 | ip40 = vlib_buffer_get_current (b0); |
| 638 | ip41 = vlib_buffer_get_current (b1); |
| 639 | } |
| 640 | else |
| 641 | { |
| 642 | ip60 = vlib_buffer_get_current (b0); |
| 643 | ip61 = vlib_buffer_get_current (b1); |
| 644 | } |
| 645 | |
| 646 | /* Setup packet for next IP feature */ |
| 647 | vnet_feature_next (&next0, b0); |
| 648 | vnet_feature_next (&next1, b1); |
| 649 | |
| 650 | if (is_ip4) |
| 651 | { |
| 652 | /* Treat IP frag packets as "experimental" protocol for now |
| 653 | until support of IP frag reassembly is implemented */ |
| 654 | proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol; |
| 655 | proto1 = ip4_is_fragment (ip41) ? 0xfe : ip41->protocol; |
| 656 | } |
| 657 | else |
| 658 | { |
| 659 | proto0 = ip60->protocol; |
| 660 | proto1 = ip61->protocol; |
| 661 | } |
| 662 | |
| 663 | /* Process packet 0 */ |
| 664 | if (proto0 != IP_PROTOCOL_UDP) |
| 665 | goto exit0; /* not UDP packet */ |
| 666 | |
| 667 | if (is_ip4) |
| 668 | udp0 = ip4_next_header (ip40); |
| 669 | else |
| 670 | udp0 = ip6_next_header (ip60); |
| 671 | |
| 672 | if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp)) |
| 673 | goto exit0; /* not VXLAN_GBP packet */ |
| 674 | |
| 675 | /* Validate DIP against VTEPs */ |
| 676 | if (is_ip4) |
| 677 | { |
| 678 | if (addr4.as_u32 != ip40->dst_address.as_u32) |
| 679 | { |
| 680 | if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32)) |
| 681 | goto exit0; /* no local VTEP for VXLAN_GBP packet */ |
| 682 | addr4 = ip40->dst_address; |
| 683 | } |
| 684 | } |
| 685 | else |
| 686 | { |
| 687 | if (!ip6_address_is_equal (&addr6, &ip60->dst_address)) |
| 688 | { |
| 689 | if (!hash_get_mem (vxm->vtep6, &ip60->dst_address)) |
| 690 | goto exit0; /* no local VTEP for VXLAN_GBP packet */ |
| 691 | addr6 = ip60->dst_address; |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | flags0 = b0->flags; |
| 696 | good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 697 | |
| 698 | /* Don't verify UDP checksum for packets with explicit zero checksum. */ |
| 699 | good_udp0 |= udp0->checksum == 0; |
| 700 | |
| 701 | /* Verify UDP length */ |
| 702 | if (is_ip4) |
| 703 | ip_len0 = clib_net_to_host_u16 (ip40->length); |
| 704 | else |
| 705 | ip_len0 = clib_net_to_host_u16 (ip60->payload_length); |
| 706 | udp_len0 = clib_net_to_host_u16 (udp0->length); |
| 707 | len_diff0 = ip_len0 - udp_len0; |
| 708 | |
| 709 | /* Verify UDP checksum */ |
| 710 | if (PREDICT_FALSE (!good_udp0)) |
| 711 | { |
| 712 | if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0) |
| 713 | { |
| 714 | if (is_ip4) |
| 715 | flags0 = ip4_tcp_udp_validate_checksum (vm, b0); |
| 716 | else |
| 717 | flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0); |
| 718 | good_udp0 = |
| 719 | (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 720 | } |
| 721 | } |
| 722 | |
| 723 | if (is_ip4) |
| 724 | { |
| 725 | error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM; |
| 726 | error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH; |
| 727 | } |
| 728 | else |
| 729 | { |
| 730 | error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM; |
| 731 | error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH; |
| 732 | } |
| 733 | |
| 734 | next0 = error0 ? |
| 735 | IP_VXLAN_GBP_BYPASS_NEXT_DROP : |
| 736 | IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP; |
| 737 | b0->error = error0 ? error_node->errors[error0] : 0; |
| 738 | |
| 739 | /* vxlan-gbp-input node expect current at VXLAN_GBP header */ |
| 740 | if (is_ip4) |
| 741 | vlib_buffer_advance (b0, |
| 742 | sizeof (ip4_header_t) + |
| 743 | sizeof (udp_header_t)); |
| 744 | else |
| 745 | vlib_buffer_advance (b0, |
| 746 | sizeof (ip6_header_t) + |
| 747 | sizeof (udp_header_t)); |
| 748 | |
| 749 | exit0: |
| 750 | /* Process packet 1 */ |
| 751 | if (proto1 != IP_PROTOCOL_UDP) |
| 752 | goto exit1; /* not UDP packet */ |
| 753 | |
| 754 | if (is_ip4) |
| 755 | udp1 = ip4_next_header (ip41); |
| 756 | else |
| 757 | udp1 = ip6_next_header (ip61); |
| 758 | |
| 759 | if (udp1->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp)) |
| 760 | goto exit1; /* not VXLAN_GBP packet */ |
| 761 | |
| 762 | /* Validate DIP against VTEPs */ |
| 763 | if (is_ip4) |
| 764 | { |
| 765 | if (addr4.as_u32 != ip41->dst_address.as_u32) |
| 766 | { |
| 767 | if (!hash_get (vxm->vtep4, ip41->dst_address.as_u32)) |
| 768 | goto exit1; /* no local VTEP for VXLAN_GBP packet */ |
| 769 | addr4 = ip41->dst_address; |
| 770 | } |
| 771 | } |
| 772 | else |
| 773 | { |
| 774 | if (!ip6_address_is_equal (&addr6, &ip61->dst_address)) |
| 775 | { |
| 776 | if (!hash_get_mem (vxm->vtep6, &ip61->dst_address)) |
| 777 | goto exit1; /* no local VTEP for VXLAN_GBP packet */ |
| 778 | addr6 = ip61->dst_address; |
| 779 | } |
| 780 | } |
| 781 | |
| 782 | flags1 = b1->flags; |
| 783 | good_udp1 = (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 784 | |
| 785 | /* Don't verify UDP checksum for packets with explicit zero checksum. */ |
| 786 | good_udp1 |= udp1->checksum == 0; |
| 787 | |
| 788 | /* Verify UDP length */ |
| 789 | if (is_ip4) |
| 790 | ip_len1 = clib_net_to_host_u16 (ip41->length); |
| 791 | else |
| 792 | ip_len1 = clib_net_to_host_u16 (ip61->payload_length); |
| 793 | udp_len1 = clib_net_to_host_u16 (udp1->length); |
| 794 | len_diff1 = ip_len1 - udp_len1; |
| 795 | |
| 796 | /* Verify UDP checksum */ |
| 797 | if (PREDICT_FALSE (!good_udp1)) |
| 798 | { |
| 799 | if ((flags1 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0) |
| 800 | { |
| 801 | if (is_ip4) |
| 802 | flags1 = ip4_tcp_udp_validate_checksum (vm, b1); |
| 803 | else |
| 804 | flags1 = ip6_tcp_udp_icmp_validate_checksum (vm, b1); |
| 805 | good_udp1 = |
| 806 | (flags1 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | if (is_ip4) |
| 811 | { |
| 812 | error1 = good_udp1 ? 0 : IP4_ERROR_UDP_CHECKSUM; |
| 813 | error1 = (len_diff1 >= 0) ? error1 : IP4_ERROR_UDP_LENGTH; |
| 814 | } |
| 815 | else |
| 816 | { |
| 817 | error1 = good_udp1 ? 0 : IP6_ERROR_UDP_CHECKSUM; |
| 818 | error1 = (len_diff1 >= 0) ? error1 : IP6_ERROR_UDP_LENGTH; |
| 819 | } |
| 820 | |
| 821 | next1 = error1 ? |
| 822 | IP_VXLAN_GBP_BYPASS_NEXT_DROP : |
| 823 | IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP; |
| 824 | b1->error = error1 ? error_node->errors[error1] : 0; |
| 825 | |
| 826 | /* vxlan_gbp-input node expect current at VXLAN_GBP header */ |
| 827 | if (is_ip4) |
| 828 | vlib_buffer_advance (b1, |
| 829 | sizeof (ip4_header_t) + |
| 830 | sizeof (udp_header_t)); |
| 831 | else |
| 832 | vlib_buffer_advance (b1, |
| 833 | sizeof (ip6_header_t) + |
| 834 | sizeof (udp_header_t)); |
| 835 | |
| 836 | exit1: |
| 837 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, |
| 838 | to_next, n_left_to_next, |
| 839 | bi0, bi1, next0, next1); |
| 840 | } |
| 841 | |
| 842 | while (n_left_from > 0 && n_left_to_next > 0) |
| 843 | { |
| 844 | vlib_buffer_t *b0; |
| 845 | ip4_header_t *ip40; |
| 846 | ip6_header_t *ip60; |
| 847 | udp_header_t *udp0; |
| 848 | u32 bi0, ip_len0, udp_len0, flags0, next0; |
| 849 | i32 len_diff0; |
| 850 | u8 error0, good_udp0, proto0; |
| 851 | |
| 852 | bi0 = to_next[0] = from[0]; |
| 853 | from += 1; |
| 854 | n_left_from -= 1; |
| 855 | to_next += 1; |
| 856 | n_left_to_next -= 1; |
| 857 | |
| 858 | b0 = vlib_get_buffer (vm, bi0); |
| 859 | if (is_ip4) |
| 860 | ip40 = vlib_buffer_get_current (b0); |
| 861 | else |
| 862 | ip60 = vlib_buffer_get_current (b0); |
| 863 | |
| 864 | /* Setup packet for next IP feature */ |
| 865 | vnet_feature_next (&next0, b0); |
| 866 | |
| 867 | if (is_ip4) |
| 868 | /* Treat IP4 frag packets as "experimental" protocol for now |
| 869 | until support of IP frag reassembly is implemented */ |
| 870 | proto0 = ip4_is_fragment (ip40) ? 0xfe : ip40->protocol; |
| 871 | else |
| 872 | proto0 = ip60->protocol; |
| 873 | |
| 874 | if (proto0 != IP_PROTOCOL_UDP) |
| 875 | goto exit; /* not UDP packet */ |
| 876 | |
| 877 | if (is_ip4) |
| 878 | udp0 = ip4_next_header (ip40); |
| 879 | else |
| 880 | udp0 = ip6_next_header (ip60); |
| 881 | |
| 882 | if (udp0->dst_port != clib_host_to_net_u16 (UDP_DST_PORT_vxlan_gbp)) |
| 883 | goto exit; /* not VXLAN_GBP packet */ |
| 884 | |
| 885 | /* Validate DIP against VTEPs */ |
| 886 | if (is_ip4) |
| 887 | { |
| 888 | if (addr4.as_u32 != ip40->dst_address.as_u32) |
| 889 | { |
| 890 | if (!hash_get (vxm->vtep4, ip40->dst_address.as_u32)) |
| 891 | goto exit; /* no local VTEP for VXLAN_GBP packet */ |
| 892 | addr4 = ip40->dst_address; |
| 893 | } |
| 894 | } |
| 895 | else |
| 896 | { |
| 897 | if (!ip6_address_is_equal (&addr6, &ip60->dst_address)) |
| 898 | { |
| 899 | if (!hash_get_mem (vxm->vtep6, &ip60->dst_address)) |
| 900 | goto exit; /* no local VTEP for VXLAN_GBP packet */ |
| 901 | addr6 = ip60->dst_address; |
| 902 | } |
| 903 | } |
| 904 | |
| 905 | flags0 = b0->flags; |
| 906 | good_udp0 = (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 907 | |
| 908 | /* Don't verify UDP checksum for packets with explicit zero checksum. */ |
| 909 | good_udp0 |= udp0->checksum == 0; |
| 910 | |
| 911 | /* Verify UDP length */ |
| 912 | if (is_ip4) |
| 913 | ip_len0 = clib_net_to_host_u16 (ip40->length); |
| 914 | else |
| 915 | ip_len0 = clib_net_to_host_u16 (ip60->payload_length); |
| 916 | udp_len0 = clib_net_to_host_u16 (udp0->length); |
| 917 | len_diff0 = ip_len0 - udp_len0; |
| 918 | |
| 919 | /* Verify UDP checksum */ |
| 920 | if (PREDICT_FALSE (!good_udp0)) |
| 921 | { |
| 922 | if ((flags0 & VNET_BUFFER_F_L4_CHECKSUM_COMPUTED) == 0) |
| 923 | { |
| 924 | if (is_ip4) |
| 925 | flags0 = ip4_tcp_udp_validate_checksum (vm, b0); |
| 926 | else |
| 927 | flags0 = ip6_tcp_udp_icmp_validate_checksum (vm, b0); |
| 928 | good_udp0 = |
| 929 | (flags0 & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) != 0; |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | if (is_ip4) |
| 934 | { |
| 935 | error0 = good_udp0 ? 0 : IP4_ERROR_UDP_CHECKSUM; |
| 936 | error0 = (len_diff0 >= 0) ? error0 : IP4_ERROR_UDP_LENGTH; |
| 937 | } |
| 938 | else |
| 939 | { |
| 940 | error0 = good_udp0 ? 0 : IP6_ERROR_UDP_CHECKSUM; |
| 941 | error0 = (len_diff0 >= 0) ? error0 : IP6_ERROR_UDP_LENGTH; |
| 942 | } |
| 943 | |
| 944 | next0 = error0 ? |
| 945 | IP_VXLAN_GBP_BYPASS_NEXT_DROP : |
| 946 | IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP; |
| 947 | b0->error = error0 ? error_node->errors[error0] : 0; |
| 948 | |
| 949 | /* vxlan_gbp-input node expect current at VXLAN_GBP header */ |
| 950 | if (is_ip4) |
| 951 | vlib_buffer_advance (b0, |
| 952 | sizeof (ip4_header_t) + |
| 953 | sizeof (udp_header_t)); |
| 954 | else |
| 955 | vlib_buffer_advance (b0, |
| 956 | sizeof (ip6_header_t) + |
| 957 | sizeof (udp_header_t)); |
| 958 | |
| 959 | exit: |
| 960 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 961 | to_next, n_left_to_next, |
| 962 | bi0, next0); |
| 963 | } |
| 964 | |
| 965 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 966 | } |
| 967 | |
| 968 | return frame->n_vectors; |
| 969 | } |
| 970 | |
| 971 | static uword |
| 972 | ip4_vxlan_gbp_bypass (vlib_main_t * vm, |
| 973 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 974 | { |
| 975 | return ip_vxlan_gbp_bypass_inline (vm, node, frame, /* is_ip4 */ 1); |
| 976 | } |
| 977 | |
| 978 | /* *INDENT-OFF* */ |
| 979 | VLIB_REGISTER_NODE (ip4_vxlan_gbp_bypass_node) = |
| 980 | { |
| 981 | .function = ip4_vxlan_gbp_bypass, |
| 982 | .name = "ip4-vxlan-gbp-bypass", |
| 983 | .vector_size = sizeof (u32), |
| 984 | .n_next_nodes = IP_VXLAN_GBP_BYPASS_N_NEXT, |
| 985 | .next_nodes = { |
| 986 | [IP_VXLAN_GBP_BYPASS_NEXT_DROP] = "error-drop", |
| 987 | [IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP] = "vxlan4-gbp-input", |
| 988 | }, |
| 989 | .format_buffer = format_ip4_header, |
| 990 | .format_trace = format_ip4_forward_next_trace, |
| 991 | }; |
| 992 | |
| 993 | VLIB_NODE_FUNCTION_MULTIARCH (ip4_vxlan_gbp_bypass_node, ip4_vxlan_gbp_bypass) |
| 994 | /* *INDENT-ON* */ |
| 995 | |
| 996 | /* Dummy init function to get us linked in. */ |
| 997 | clib_error_t * |
| 998 | ip4_vxlan_gbp_bypass_init (vlib_main_t * vm) |
| 999 | { |
| 1000 | return 0; |
| 1001 | } |
| 1002 | |
| 1003 | VLIB_INIT_FUNCTION (ip4_vxlan_gbp_bypass_init); |
| 1004 | |
| 1005 | static uword |
| 1006 | ip6_vxlan_gbp_bypass (vlib_main_t * vm, |
| 1007 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 1008 | { |
| 1009 | return ip_vxlan_gbp_bypass_inline (vm, node, frame, /* is_ip4 */ 0); |
| 1010 | } |
| 1011 | |
| 1012 | /* *INDENT-OFF* */ |
| 1013 | VLIB_REGISTER_NODE (ip6_vxlan_gbp_bypass_node) = |
| 1014 | { |
| 1015 | .function = ip6_vxlan_gbp_bypass, |
| 1016 | .name = "ip6-vxlan-gbp-bypass", |
| 1017 | .vector_size = sizeof (u32), |
| 1018 | .n_next_nodes = IP_VXLAN_GBP_BYPASS_N_NEXT, |
| 1019 | .next_nodes = { |
| 1020 | [IP_VXLAN_GBP_BYPASS_NEXT_DROP] = "error-drop", |
| 1021 | [IP_VXLAN_GBP_BYPASS_NEXT_VXLAN_GBP] = "vxlan6-gbp-input", |
| 1022 | }, |
| 1023 | .format_buffer = format_ip6_header, |
| 1024 | .format_trace = format_ip6_forward_next_trace, |
| 1025 | }; |
| 1026 | |
| 1027 | VLIB_NODE_FUNCTION_MULTIARCH (ip6_vxlan_gbp_bypass_node, ip6_vxlan_gbp_bypass) |
| 1028 | /* *INDENT-ON* */ |
| 1029 | |
| 1030 | /* Dummy init function to get us linked in. */ |
| 1031 | clib_error_t * |
| 1032 | ip6_vxlan_gbp_bypass_init (vlib_main_t * vm) |
| 1033 | { |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
| 1037 | VLIB_INIT_FUNCTION (ip6_vxlan_gbp_bypass_init); |
| 1038 | |
| 1039 | /* |
| 1040 | * fd.io coding-style-patch-verification: ON |
| 1041 | * |
| 1042 | * Local Variables: |
| 1043 | * eval: (c-set-style "gnu") |
| 1044 | * End: |
| 1045 | */ |