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