Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 15 | /** |
| 16 | * @file |
| 17 | * @brief VXLAN GPE definitions |
| 18 | * |
| 19 | */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 20 | #ifndef included_vnet_vxlan_gpe_h |
| 21 | #define included_vnet_vxlan_gpe_h |
| 22 | |
| 23 | #include <vppinfra/error.h> |
| 24 | #include <vppinfra/hash.h> |
| 25 | #include <vnet/vnet.h> |
| 26 | #include <vnet/ip/ip.h> |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 27 | #include <vnet/ip/vtep.h> |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 28 | #include <vnet/l2/l2_input.h> |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 29 | #include <vnet/l2/l2_output.h> |
| 30 | #include <vnet/l2/l2_bd.h> |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 31 | #include <vnet/ethernet/ethernet.h> |
| 32 | #include <vnet/vxlan-gpe/vxlan_gpe_packet.h> |
| 33 | #include <vnet/ip/ip4_packet.h> |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 34 | #include <vnet/ip/ip6_packet.h> |
Florin Coras | b040f98 | 2020-10-20 14:59:43 -0700 | [diff] [blame] | 35 | #include <vnet/udp/udp_packet.h> |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 36 | #include <vnet/dpo/dpo.h> |
| 37 | #include <vnet/adj/adj_types.h> |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 38 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 39 | /** |
| 40 | * @brief VXLAN GPE header struct |
| 41 | * |
| 42 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 43 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 44 | typedef CLIB_PACKED (struct { |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 45 | /** 20 bytes */ |
| 46 | ip4_header_t ip4; |
| 47 | /** 8 bytes */ |
| 48 | udp_header_t udp; |
| 49 | /** 8 bytes */ |
| 50 | vxlan_gpe_header_t vxlan; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 51 | }) ip4_vxlan_gpe_header_t; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 52 | /* *INDENT-ON* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 53 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 54 | /* *INDENT-OFF* */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 55 | typedef CLIB_PACKED (struct { |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 56 | /** 40 bytes */ |
| 57 | ip6_header_t ip6; |
| 58 | /** 8 bytes */ |
| 59 | udp_header_t udp; |
| 60 | /** 8 bytes */ |
| 61 | vxlan_gpe_header_t vxlan; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 62 | }) ip6_vxlan_gpe_header_t; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 63 | /* *INDENT-ON* */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 64 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 65 | /** |
| 66 | * @brief Key struct for IPv4 VXLAN GPE tunnel. |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 67 | * Key fields: local remote, vni, udp-port |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 68 | * all fields in NET byte order |
| 69 | * VNI shifted 8 bits |
| 70 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 71 | /* *INDENT-OFF* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 72 | typedef CLIB_PACKED(struct { |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 73 | union { |
| 74 | struct { |
| 75 | u32 local; |
| 76 | u32 remote; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 77 | |
| 78 | u32 vni; |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 79 | u32 port; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 80 | }; |
| 81 | u64 as_u64[2]; |
| 82 | }; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 83 | }) vxlan4_gpe_tunnel_key_t; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 84 | /* *INDENT-ON* */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 85 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 86 | /** |
| 87 | * @brief Key struct for IPv6 VXLAN GPE tunnel. |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 88 | * Key fields: local remote, vni, udp-port |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 89 | * all fields in NET byte order |
| 90 | * VNI shifted 8 bits |
| 91 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 92 | /* *INDENT-OFF* */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 93 | typedef CLIB_PACKED(struct { |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 94 | ip6_address_t local; |
| 95 | ip6_address_t remote; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 96 | u32 vni; |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 97 | u32 port; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 98 | }) vxlan6_gpe_tunnel_key_t; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 99 | /* *INDENT-ON* */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 100 | |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 101 | typedef union |
| 102 | { |
| 103 | struct |
| 104 | { |
| 105 | u32 tunnel_index; |
| 106 | u16 next_index; |
| 107 | u8 error; |
| 108 | }; |
| 109 | u64 as_u64; |
| 110 | } vxlan_gpe_decap_info_t; |
| 111 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 112 | /** |
| 113 | * @brief Struct for VXLAN GPE tunnel |
| 114 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 115 | typedef struct |
| 116 | { |
Dave Barach | eb987d3 | 2018-05-03 08:26:39 -0400 | [diff] [blame] | 117 | /* Required for pool_get_aligned */ |
| 118 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
| 119 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 120 | /** Rewrite string. $$$$ embed vnet_rewrite header */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 121 | u8 *rewrite; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 122 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 123 | /** encapsulated protocol */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 124 | u8 protocol; |
| 125 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 126 | /* FIB DPO for IP forwarding of VXLAN-GPE encap packet */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 127 | dpo_id_t next_dpo; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 128 | /** tunnel local address */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 129 | ip46_address_t local; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 130 | /** tunnel remote address */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 131 | ip46_address_t remote; |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 132 | /** local udp-port **/ |
| 133 | u16 local_port; |
| 134 | /** remote udp-port **/ |
| 135 | u16 remote_port; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 136 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 137 | /* mcast packet output intfc index (used only if dst is mcast) */ |
| 138 | u32 mcast_sw_if_index; |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 139 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 140 | /** FIB indices - tunnel partner lookup here */ |
| 141 | u32 encap_fib_index; |
| 142 | /** FIB indices - inner IP packet lookup here */ |
| 143 | u32 decap_fib_index; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 144 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 145 | /** VXLAN GPE VNI in HOST byte order, shifted left 8 bits */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 146 | u32 vni; |
| 147 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 148 | /** vnet intfc hw_if_index */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 149 | u32 hw_if_index; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 150 | /** vnet intfc sw_if_index */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 151 | u32 sw_if_index; |
| 152 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 153 | /** flags */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 154 | u32 flags; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 155 | |
| 156 | /** rewrite size for dynamic plugins like iOAM */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 157 | u8 rewrite_size; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 158 | |
| 159 | /** Next node after VxLAN-GPE encap */ |
| 160 | uword encap_next_node; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 161 | |
| 162 | /** |
| 163 | * Linkage into the FIB object graph |
| 164 | */ |
| 165 | fib_node_t node; |
| 166 | |
| 167 | /* |
| 168 | * The FIB entry for (depending on VXLAN-GPE tunnel is unicast or mcast) |
| 169 | * sending unicast VXLAN-GPE encap packets or receiving mcast VXLAN-GPE packets |
| 170 | */ |
| 171 | fib_node_index_t fib_entry_index; |
| 172 | adj_index_t mcast_adj_index; |
| 173 | |
| 174 | /** |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 175 | * The tunnel is a child of the FIB entry for its destination. This is |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 176 | * so it receives updates when the forwarding information for that entry |
| 177 | * changes. |
| 178 | * The tunnels sibling index on the FIB entry's dependency list. |
| 179 | */ |
| 180 | u32 sibling_index; |
| 181 | |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 182 | } vxlan_gpe_tunnel_t; |
| 183 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 184 | /** Flags for vxlan_gpe_tunnel_t */ |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 185 | #define VXLAN_GPE_TUNNEL_IS_IPV4 1 |
| 186 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 187 | /** next nodes for VXLAN GPE input */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 188 | #define foreach_vxlan_gpe_input_next \ |
| 189 | _(DROP, "error-drop") \ |
| 190 | _(IP4_INPUT, "ip4-input") \ |
| 191 | _(IP6_INPUT, "ip6-input") \ |
Gabriel Ganne | 7e665d6 | 2017-11-17 09:18:53 +0100 | [diff] [blame] | 192 | _(L2_INPUT, "l2-input") |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 193 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 194 | /** struct for next nodes for VXLAN GPE input */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 195 | typedef enum |
| 196 | { |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 197 | #define _(s,n) VXLAN_GPE_INPUT_NEXT_##s, |
| 198 | foreach_vxlan_gpe_input_next |
| 199 | #undef _ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 200 | VXLAN_GPE_INPUT_N_NEXT, |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 201 | } vxlan_gpe_input_next_t; |
| 202 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 203 | /** struct for VXLAN GPE errors */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 204 | typedef enum |
| 205 | { |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 206 | #define vxlan_gpe_error(n,s) VXLAN_GPE_ERROR_##n, |
| 207 | #include <vnet/vxlan-gpe/vxlan_gpe_error.def> |
| 208 | #undef vxlan_gpe_error |
| 209 | VXLAN_GPE_N_ERROR, |
| 210 | } vxlan_gpe_input_error_t; |
| 211 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 212 | /** Struct for VXLAN GPE node state */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 213 | typedef struct |
| 214 | { |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 215 | /** vector of encap tunnel instances */ |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 216 | vxlan_gpe_tunnel_t *tunnels; |
| 217 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 218 | /** lookup IPv4 VXLAN GPE tunnel by key */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 219 | uword *vxlan4_gpe_tunnel_by_key; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 220 | /** lookup IPv6 VXLAN GPE tunnel by key */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 221 | uword *vxlan6_gpe_tunnel_by_key; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 222 | |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 223 | /* local VTEP IPs ref count used by vxlan-bypass node to check if |
| 224 | received VXLAN packet DIP matches any local VTEP address */ |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 225 | vtep_table_t vtep_table; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 226 | /* mcast shared info */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 227 | uword *mcast_shared; /* keyed on mcast ip46 addr */ |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 228 | /** Free vlib hw_if_indices */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 229 | u32 *free_vxlan_gpe_tunnel_hw_if_indices; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 230 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 231 | /** Mapping from sw_if_index to tunnel index */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 232 | u32 *tunnel_index_by_sw_if_index; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 233 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 234 | /** State convenience vlib_main_t */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 235 | vlib_main_t *vlib_main; |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 236 | /** State convenience vnet_main_t */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 237 | vnet_main_t *vnet_main; |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 238 | |
Junfeng Wang | 290526e | 2021-03-09 16:44:57 +0800 | [diff] [blame] | 239 | /* cache for last 8 vxlan_gpe tunnel */ |
| 240 | #ifdef CLIB_HAVE_VEC512 |
| 241 | vtep4_cache_t vtep4_u512; |
| 242 | #endif |
| 243 | |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 244 | /** List of next nodes for the decap indexed on protocol */ |
| 245 | uword decap_next_node_list[VXLAN_GPE_PROTOCOL_MAX]; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 246 | } vxlan_gpe_main_t; |
| 247 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 248 | extern vxlan_gpe_main_t vxlan_gpe_main; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 249 | |
| 250 | extern vlib_node_registration_t vxlan_gpe_encap_node; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 251 | extern vlib_node_registration_t vxlan4_gpe_input_node; |
| 252 | extern vlib_node_registration_t vxlan6_gpe_input_node; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 253 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 254 | u8 *format_vxlan_gpe_encap_trace (u8 * s, va_list * args); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 255 | |
Keith Burns (alagalah) | d46cca1 | 2016-08-25 11:21:39 -0700 | [diff] [blame] | 256 | /** Struct for VXLAN GPE add/del args */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 257 | typedef struct |
| 258 | { |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 259 | u8 is_add; |
Hongjun Ni | df921cc | 2016-05-25 01:16:19 +0800 | [diff] [blame] | 260 | u8 is_ip6; |
| 261 | ip46_address_t local, remote; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 262 | u8 protocol; |
Hongjun Ni | 8a0a0ae | 2017-05-27 20:23:09 +0800 | [diff] [blame] | 263 | u32 mcast_sw_if_index; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 264 | u32 encap_fib_index; |
| 265 | u32 decap_fib_index; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 266 | u32 vni; |
Artem Glazychev | ea96292 | 2021-05-28 19:09:14 +0700 | [diff] [blame] | 267 | u16 local_port; |
| 268 | u16 remote_port; |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 269 | } vnet_vxlan_gpe_add_del_tunnel_args_t; |
| 270 | |
| 271 | |
Hongjun Ni | 7deb139 | 2016-06-15 22:49:23 +0800 | [diff] [blame] | 272 | int vnet_vxlan_gpe_add_del_tunnel |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 273 | (vnet_vxlan_gpe_add_del_tunnel_args_t * a, u32 * sw_if_indexp); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 274 | |
| 275 | |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 276 | int vxlan4_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 277 | u8 protocol_override, uword encap_next_node); |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 278 | int vxlan6_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size, |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 279 | u8 protocol_override, uword encap_next_node); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 280 | |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 281 | /** |
| 282 | * @brief Struct for defining VXLAN GPE next nodes |
| 283 | */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 284 | typedef enum |
| 285 | { |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 286 | VXLAN_GPE_ENCAP_NEXT_IP4_LOOKUP, |
| 287 | VXLAN_GPE_ENCAP_NEXT_IP6_LOOKUP, |
| 288 | VXLAN_GPE_ENCAP_NEXT_DROP, |
| 289 | VXLAN_GPE_ENCAP_N_NEXT |
| 290 | } vxlan_gpe_encap_next_t; |
| 291 | |
| 292 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 293 | void vxlan_gpe_unregister_decap_protocol (u8 protocol_id, |
| 294 | uword next_node_index); |
Vengada Govindan | 6d403a0 | 2016-10-12 05:54:09 -0700 | [diff] [blame] | 295 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 296 | void vxlan_gpe_register_decap_protocol (u8 protocol_id, |
| 297 | uword next_node_index); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 298 | |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 299 | void vnet_int_vxlan_gpe_bypass_mode (u32 sw_if_index, u8 is_ip6, |
| 300 | u8 is_enable); |
Keith Burns (alagalah) | 94b1442 | 2016-05-05 18:16:50 -0700 | [diff] [blame] | 301 | |
| 302 | #endif /* included_vnet_vxlan_gpe_h */ |
sharath reddy | 6f8273a | 2017-12-11 11:31:31 +0530 | [diff] [blame] | 303 | |
| 304 | /* |
| 305 | * fd.io coding-style-patch-verification: ON |
| 306 | * |
| 307 | * Local Variables: |
| 308 | * eval: (c-set-style "gnu") |
| 309 | * End: |
| 310 | */ |