blob: e246827c1563f1d25c6c103152fc01a37111e4ab [file] [log] [blame]
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -07001/*
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)d46cca12016-08-25 11:21:39 -070015/**
16 * @file
17 * @brief VXLAN GPE definitions
18 *
19*/
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070020#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 Zavaritsky27518c22020-02-27 15:54:58 +000027#include <vnet/ip/vtep.h>
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070028#include <vnet/l2/l2_input.h>
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080029#include <vnet/l2/l2_output.h>
30#include <vnet/l2/l2_bd.h>
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070031#include <vnet/ethernet/ethernet.h>
32#include <vnet/vxlan-gpe/vxlan_gpe_packet.h>
33#include <vnet/ip/ip4_packet.h>
Hongjun Nidf921cc2016-05-25 01:16:19 +080034#include <vnet/ip/ip6_packet.h>
Florin Corasb040f982020-10-20 14:59:43 -070035#include <vnet/udp/udp_packet.h>
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080036#include <vnet/dpo/dpo.h>
37#include <vnet/adj/adj_types.h>
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070038
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070039/**
40 * @brief VXLAN GPE header struct
41 *
42 */
sharath reddy6f8273a2017-12-11 11:31:31 +053043/* *INDENT-OFF* */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070044typedef CLIB_PACKED (struct {
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070045 /** 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)94b14422016-05-05 18:16:50 -070051}) ip4_vxlan_gpe_header_t;
sharath reddy6f8273a2017-12-11 11:31:31 +053052/* *INDENT-ON* */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070053
sharath reddy6f8273a2017-12-11 11:31:31 +053054/* *INDENT-OFF* */
Hongjun Nidf921cc2016-05-25 01:16:19 +080055typedef CLIB_PACKED (struct {
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070056 /** 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 Nidf921cc2016-05-25 01:16:19 +080062}) ip6_vxlan_gpe_header_t;
sharath reddy6f8273a2017-12-11 11:31:31 +053063/* *INDENT-ON* */
Hongjun Nidf921cc2016-05-25 01:16:19 +080064
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070065/**
66 * @brief Key struct for IPv4 VXLAN GPE tunnel.
67 * Key fields: local remote, vni
68 * all fields in NET byte order
69 * VNI shifted 8 bits
70 */
sharath reddy6f8273a2017-12-11 11:31:31 +053071/* *INDENT-OFF* */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070072typedef CLIB_PACKED(struct {
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070073 union {
74 struct {
75 u32 local;
76 u32 remote;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070077
78 u32 vni;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070079 u32 pad;
80 };
81 u64 as_u64[2];
82 };
Hongjun Nidf921cc2016-05-25 01:16:19 +080083}) vxlan4_gpe_tunnel_key_t;
sharath reddy6f8273a2017-12-11 11:31:31 +053084/* *INDENT-ON* */
Hongjun Nidf921cc2016-05-25 01:16:19 +080085
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070086/**
87 * @brief Key struct for IPv6 VXLAN GPE tunnel.
88 * Key fields: local remote, vni
89 * all fields in NET byte order
90 * VNI shifted 8 bits
91 */
sharath reddy6f8273a2017-12-11 11:31:31 +053092/* *INDENT-OFF* */
Hongjun Nidf921cc2016-05-25 01:16:19 +080093typedef CLIB_PACKED(struct {
Hongjun Nidf921cc2016-05-25 01:16:19 +080094 ip6_address_t local;
95 ip6_address_t remote;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -070096 u32 vni;
Hongjun Nidf921cc2016-05-25 01:16:19 +080097}) vxlan6_gpe_tunnel_key_t;
sharath reddy6f8273a2017-12-11 11:31:31 +053098/* *INDENT-ON* */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -070099
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700100/**
101 * @brief Struct for VXLAN GPE tunnel
102 */
sharath reddy6f8273a2017-12-11 11:31:31 +0530103typedef struct
104{
Dave Baracheb987d32018-05-03 08:26:39 -0400105 /* Required for pool_get_aligned */
106 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
107
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700108 /** Rewrite string. $$$$ embed vnet_rewrite header */
sharath reddy6f8273a2017-12-11 11:31:31 +0530109 u8 *rewrite;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700110
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700111 /** encapsulated protocol */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700112 u8 protocol;
113
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800114 /* FIB DPO for IP forwarding of VXLAN-GPE encap packet */
sharath reddy6f8273a2017-12-11 11:31:31 +0530115 dpo_id_t next_dpo;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700116 /** tunnel local address */
Hongjun Nidf921cc2016-05-25 01:16:19 +0800117 ip46_address_t local;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700118 /** tunnel remote address */
Hongjun Nidf921cc2016-05-25 01:16:19 +0800119 ip46_address_t remote;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700120
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800121 /* mcast packet output intfc index (used only if dst is mcast) */
122 u32 mcast_sw_if_index;
sharath reddy6f8273a2017-12-11 11:31:31 +0530123
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700124 /** FIB indices - tunnel partner lookup here */
125 u32 encap_fib_index;
126 /** FIB indices - inner IP packet lookup here */
127 u32 decap_fib_index;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700128
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700129 /** VXLAN GPE VNI in HOST byte order, shifted left 8 bits */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700130 u32 vni;
131
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700132 /** vnet intfc hw_if_index */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700133 u32 hw_if_index;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700134 /** vnet intfc sw_if_index */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700135 u32 sw_if_index;
136
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700137 /** flags */
Hongjun Nidf921cc2016-05-25 01:16:19 +0800138 u32 flags;
Vengada Govindan6d403a02016-10-12 05:54:09 -0700139
140 /** rewrite size for dynamic plugins like iOAM */
sharath reddy6f8273a2017-12-11 11:31:31 +0530141 u8 rewrite_size;
Vengada Govindan6d403a02016-10-12 05:54:09 -0700142
143 /** Next node after VxLAN-GPE encap */
144 uword encap_next_node;
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800145
146 /**
147 * Linkage into the FIB object graph
148 */
149 fib_node_t node;
150
151 /*
152 * The FIB entry for (depending on VXLAN-GPE tunnel is unicast or mcast)
153 * sending unicast VXLAN-GPE encap packets or receiving mcast VXLAN-GPE packets
154 */
155 fib_node_index_t fib_entry_index;
156 adj_index_t mcast_adj_index;
157
158 /**
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700159 * The tunnel is a child of the FIB entry for its destination. This is
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800160 * so it receives updates when the forwarding information for that entry
161 * changes.
162 * The tunnels sibling index on the FIB entry's dependency list.
163 */
164 u32 sibling_index;
165
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700166} vxlan_gpe_tunnel_t;
167
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700168/** Flags for vxlan_gpe_tunnel_t */
Hongjun Nidf921cc2016-05-25 01:16:19 +0800169#define VXLAN_GPE_TUNNEL_IS_IPV4 1
170
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700171/** next nodes for VXLAN GPE input */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700172#define foreach_vxlan_gpe_input_next \
173_(DROP, "error-drop") \
174_(IP4_INPUT, "ip4-input") \
175_(IP6_INPUT, "ip6-input") \
Gabriel Ganne7e665d62017-11-17 09:18:53 +0100176_(L2_INPUT, "l2-input")
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700177
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700178/** struct for next nodes for VXLAN GPE input */
sharath reddy6f8273a2017-12-11 11:31:31 +0530179typedef enum
180{
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700181#define _(s,n) VXLAN_GPE_INPUT_NEXT_##s,
182 foreach_vxlan_gpe_input_next
183#undef _
sharath reddy6f8273a2017-12-11 11:31:31 +0530184 VXLAN_GPE_INPUT_N_NEXT,
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700185} vxlan_gpe_input_next_t;
186
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700187/** struct for VXLAN GPE errors */
sharath reddy6f8273a2017-12-11 11:31:31 +0530188typedef enum
189{
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700190#define vxlan_gpe_error(n,s) VXLAN_GPE_ERROR_##n,
191#include <vnet/vxlan-gpe/vxlan_gpe_error.def>
192#undef vxlan_gpe_error
193 VXLAN_GPE_N_ERROR,
194} vxlan_gpe_input_error_t;
195
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700196/** Struct for VXLAN GPE node state */
sharath reddy6f8273a2017-12-11 11:31:31 +0530197typedef struct
198{
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700199 /** vector of encap tunnel instances */
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700200 vxlan_gpe_tunnel_t *tunnels;
201
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700202 /** lookup IPv4 VXLAN GPE tunnel by key */
sharath reddy6f8273a2017-12-11 11:31:31 +0530203 uword *vxlan4_gpe_tunnel_by_key;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700204 /** lookup IPv6 VXLAN GPE tunnel by key */
sharath reddy6f8273a2017-12-11 11:31:31 +0530205 uword *vxlan6_gpe_tunnel_by_key;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700206
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800207 /* local VTEP IPs ref count used by vxlan-bypass node to check if
208 received VXLAN packet DIP matches any local VTEP address */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000209 vtep_table_t vtep_table;
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800210 /* mcast shared info */
sharath reddy6f8273a2017-12-11 11:31:31 +0530211 uword *mcast_shared; /* keyed on mcast ip46 addr */
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700212 /** Free vlib hw_if_indices */
sharath reddy6f8273a2017-12-11 11:31:31 +0530213 u32 *free_vxlan_gpe_tunnel_hw_if_indices;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700214
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700215 /** Mapping from sw_if_index to tunnel index */
sharath reddy6f8273a2017-12-11 11:31:31 +0530216 u32 *tunnel_index_by_sw_if_index;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700217
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700218 /** State convenience vlib_main_t */
sharath reddy6f8273a2017-12-11 11:31:31 +0530219 vlib_main_t *vlib_main;
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700220 /** State convenience vnet_main_t */
sharath reddy6f8273a2017-12-11 11:31:31 +0530221 vnet_main_t *vnet_main;
Vengada Govindan6d403a02016-10-12 05:54:09 -0700222
223 /** List of next nodes for the decap indexed on protocol */
224 uword decap_next_node_list[VXLAN_GPE_PROTOCOL_MAX];
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700225} vxlan_gpe_main_t;
226
Dave Wallace71612d62017-10-24 01:32:41 -0400227extern vxlan_gpe_main_t vxlan_gpe_main;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700228
229extern vlib_node_registration_t vxlan_gpe_encap_node;
Hongjun Nidf921cc2016-05-25 01:16:19 +0800230extern vlib_node_registration_t vxlan4_gpe_input_node;
231extern vlib_node_registration_t vxlan6_gpe_input_node;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700232
sharath reddy6f8273a2017-12-11 11:31:31 +0530233u8 *format_vxlan_gpe_encap_trace (u8 * s, va_list * args);
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700234
Keith Burns (alagalah)d46cca12016-08-25 11:21:39 -0700235/** Struct for VXLAN GPE add/del args */
sharath reddy6f8273a2017-12-11 11:31:31 +0530236typedef struct
237{
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700238 u8 is_add;
Hongjun Nidf921cc2016-05-25 01:16:19 +0800239 u8 is_ip6;
240 ip46_address_t local, remote;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700241 u8 protocol;
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800242 u32 mcast_sw_if_index;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700243 u32 encap_fib_index;
244 u32 decap_fib_index;
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700245 u32 vni;
246} vnet_vxlan_gpe_add_del_tunnel_args_t;
247
248
Hongjun Ni7deb1392016-06-15 22:49:23 +0800249int vnet_vxlan_gpe_add_del_tunnel
sharath reddy6f8273a2017-12-11 11:31:31 +0530250 (vnet_vxlan_gpe_add_del_tunnel_args_t * a, u32 * sw_if_indexp);
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700251
252
Vengada Govindan6d403a02016-10-12 05:54:09 -0700253int vxlan4_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size,
sharath reddy6f8273a2017-12-11 11:31:31 +0530254 u8 protocol_override, uword encap_next_node);
Vengada Govindan6d403a02016-10-12 05:54:09 -0700255int vxlan6_gpe_rewrite (vxlan_gpe_tunnel_t * t, u32 extension_size,
sharath reddy6f8273a2017-12-11 11:31:31 +0530256 u8 protocol_override, uword encap_next_node);
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700257
Vengada Govindan6d403a02016-10-12 05:54:09 -0700258/**
259 * @brief Struct for defining VXLAN GPE next nodes
260 */
sharath reddy6f8273a2017-12-11 11:31:31 +0530261typedef enum
262{
Vengada Govindan6d403a02016-10-12 05:54:09 -0700263 VXLAN_GPE_ENCAP_NEXT_IP4_LOOKUP,
264 VXLAN_GPE_ENCAP_NEXT_IP6_LOOKUP,
265 VXLAN_GPE_ENCAP_NEXT_DROP,
266 VXLAN_GPE_ENCAP_N_NEXT
267} vxlan_gpe_encap_next_t;
268
269
sharath reddy6f8273a2017-12-11 11:31:31 +0530270void vxlan_gpe_unregister_decap_protocol (u8 protocol_id,
271 uword next_node_index);
Vengada Govindan6d403a02016-10-12 05:54:09 -0700272
sharath reddy6f8273a2017-12-11 11:31:31 +0530273void vxlan_gpe_register_decap_protocol (u8 protocol_id,
274 uword next_node_index);
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700275
sharath reddy6f8273a2017-12-11 11:31:31 +0530276void vnet_int_vxlan_gpe_bypass_mode (u32 sw_if_index, u8 is_ip6,
277 u8 is_enable);
Keith Burns (alagalah)94b14422016-05-05 18:16:50 -0700278
279#endif /* included_vnet_vxlan_gpe_h */
sharath reddy6f8273a2017-12-11 11:31:31 +0530280
281/*
282 * fd.io coding-style-patch-verification: ON
283 *
284 * Local Variables:
285 * eval: (c-set-style "gnu")
286 * End:
287 */