blob: 772c9d77c93141966073609006facccccd012149 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -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 */
15#ifndef included_vnet_vxlan_h
16#define included_vnet_vxlan_h
17
18#include <vppinfra/error.h>
19#include <vppinfra/hash.h>
Eyal Baridd47eca2018-07-08 08:15:56 +030020#include <vppinfra/bihash_16_8.h>
Eyal Bari0fa56782018-06-04 12:25:05 +030021#include <vppinfra/bihash_24_8.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022#include <vnet/vnet.h>
23#include <vnet/ip/ip.h>
Nick Zavaritsky27518c22020-02-27 15:54:58 +000024#include <vnet/ip/vtep.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <vnet/l2/l2_input.h>
John Lo3ef822e2016-06-07 09:14:07 -040026#include <vnet/l2/l2_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#include <vnet/l2/l2_bd.h>
28#include <vnet/ethernet/ethernet.h>
29#include <vnet/vxlan/vxlan_packet.h>
30#include <vnet/ip/ip4_packet.h>
Chris Luke99cb3352016-04-26 10:49:53 -040031#include <vnet/ip/ip6_packet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050032#include <vnet/udp/udp.h>
John Loc42912d2016-11-07 18:30:47 -050033#include <vnet/dpo/dpo.h>
Eyal Baric5b13602016-11-24 19:42:43 +020034#include <vnet/adj/adj_types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070035
Eyal Bari0fa56782018-06-04 12:25:05 +030036/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070037typedef CLIB_PACKED (struct {
Eyal Bari0fa56782018-06-04 12:25:05 +030038 ip4_header_t ip4; /* 20 bytes */
39 udp_header_t udp; /* 8 bytes */
40 vxlan_header_t vxlan; /* 8 bytes */
Ed Warnickecb9cada2015-12-08 15:45:58 -070041}) ip4_vxlan_header_t;
42
Chris Luke99cb3352016-04-26 10:49:53 -040043typedef CLIB_PACKED (struct {
Eyal Bari0fa56782018-06-04 12:25:05 +030044 ip6_header_t ip6; /* 40 bytes */
45 udp_header_t udp; /* 8 bytes */
46 vxlan_header_t vxlan; /* 8 bytes */
Chris Luke99cb3352016-04-26 10:49:53 -040047}) ip6_vxlan_header_t;
Eyal Baridd47eca2018-07-08 08:15:56 +030048/* *INDENT-ON* */
Chris Luke99cb3352016-04-26 10:49:53 -040049
Eyal Baridd47eca2018-07-08 08:15:56 +030050/*
51* Key fields: remote ip, vni on incoming VXLAN packet
52* all fields in NET byte order
53*/
54typedef clib_bihash_kv_16_8_t vxlan4_tunnel_key_t;
Chris Luke99cb3352016-04-26 10:49:53 -040055
Eyal Bari0fa56782018-06-04 12:25:05 +030056/*
57* Key fields: remote ip, vni and fib index on incoming VXLAN packet
58* ip, vni fields in NET byte order
59* fib index field in host byte order
60*/
Eyal Baridd47eca2018-07-08 08:15:56 +030061typedef clib_bihash_kv_24_8_t vxlan6_tunnel_key_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Eyal Bariefd9cf32018-10-02 12:23:06 +030063typedef union
64{
65 struct
66 {
67 u32 sw_if_index; /* unicast - input interface / mcast - stats interface */
68 union
69 {
70 struct /* unicast action */
71 {
72 u16 next_index;
73 u8 error;
74 };
75 ip4_address_t local_ip; /* used as dst ip for mcast pkts to assign them to unicast tunnel */
76 };
77 };
78 u64 as_u64;
79} vxlan_decap_info_t;
80
Eyal Bari0fa56782018-06-04 12:25:05 +030081typedef struct
82{
Dave Baracheb987d32018-05-03 08:26:39 -040083 /* Required for pool_get_aligned */
Eyal Bari0fa56782018-06-04 12:25:05 +030084 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Dave Baracheb987d32018-05-03 08:26:39 -040085
John Loc42912d2016-11-07 18:30:47 -050086 /* FIB DPO for IP forwarding of VXLAN encap packet */
Eyal Bari0fa56782018-06-04 12:25:05 +030087 dpo_id_t next_dpo;
John Loc42912d2016-11-07 18:30:47 -050088
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 /* vxlan VNI in HOST byte order */
90 u32 vni;
91
John Loc42912d2016-11-07 18:30:47 -050092 /* tunnel src and dst addresses */
93 ip46_address_t src;
94 ip46_address_t dst;
Chris Luke99cb3352016-04-26 10:49:53 -040095
John Lo56912c82016-12-08 16:10:02 -050096 /* mcast packet output intfc index (used only if dst is mcast) */
Eyal Baric5b13602016-11-24 19:42:43 +020097 u32 mcast_sw_if_index;
John Lo56912c82016-12-08 16:10:02 -050098
Hongjun Nibeb4bf72016-11-25 00:03:46 +080099 /* decap next index */
Eyal Baria5679e82018-08-26 15:20:07 +0300100 u16 decap_next_index;
Eyal Baric5b13602016-11-24 19:42:43 +0200101
John Loc42912d2016-11-07 18:30:47 -0500102 /* The FIB index for src/dst addresses */
103 u32 encap_fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
John Loc42912d2016-11-07 18:30:47 -0500105 /* vnet intfc index */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 u32 sw_if_index;
John Loc42912d2016-11-07 18:30:47 -0500107 u32 hw_if_index;
Chris Luke99cb3352016-04-26 10:49:53 -0400108
John Loc42912d2016-11-07 18:30:47 -0500109 /**
110 * Linkage into the FIB object graph
111 */
112 fib_node_t node;
Chris Luke99cb3352016-04-26 10:49:53 -0400113
Eyal Baric5b13602016-11-24 19:42:43 +0200114 /*
115 * The FIB entry for (depending on VXLAN tunnel is unicast or mcast)
116 * sending unicast VXLAN encap packets or receiving mcast VXLAN packets
117 */
John Loc42912d2016-11-07 18:30:47 -0500118 fib_node_index_t fib_entry_index;
Eyal Baric5b13602016-11-24 19:42:43 +0200119 adj_index_t mcast_adj_index;
John Loc42912d2016-11-07 18:30:47 -0500120
121 /**
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700122 * The tunnel is a child of the FIB entry for its destination. This is
John Loc42912d2016-11-07 18:30:47 -0500123 * so it receives updates when the forwarding information for that entry
124 * changes.
125 * The tunnels sibling index on the FIB entry's dependency list.
126 */
127 u32 sibling_index;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600128
Eyal Bari0fa56782018-06-04 12:25:05 +0300129 u32 flow_index; /* infra flow index */
130 u32 dev_instance; /* Real device instance in tunnel vector */
131 u32 user_instance; /* Instance name being shown to user */
eyal bari82e21d72018-04-26 13:14:55 +0300132
Klement Sekera7dbf9a12019-11-21 10:31:03 +0000133 VNET_DECLARE_REWRITE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134} vxlan_tunnel_t;
135
136#define foreach_vxlan_input_next \
137_(DROP, "error-drop") \
John Loc42912d2016-11-07 18:30:47 -0500138_(L2_INPUT, "l2-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
Eyal Bari0fa56782018-06-04 12:25:05 +0300140typedef enum
141{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142#define _(s,n) VXLAN_INPUT_NEXT_##s,
143 foreach_vxlan_input_next
144#undef _
Eyal Bari0fa56782018-06-04 12:25:05 +0300145 VXLAN_INPUT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146} vxlan_input_next_t;
147
Eyal Bari0fa56782018-06-04 12:25:05 +0300148typedef enum
149{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150#define vxlan_error(n,s) VXLAN_ERROR_##n,
151#include <vnet/vxlan/vxlan_error.def>
152#undef vxlan_error
153 VXLAN_N_ERROR,
154} vxlan_input_error_t;
155
Eyal Bari0fa56782018-06-04 12:25:05 +0300156typedef struct
157{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 /* vector of encap tunnel instances */
Eyal Bari0fa56782018-06-04 12:25:05 +0300159 vxlan_tunnel_t *tunnels;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
161 /* lookup tunnel by key */
Eyal Baridd47eca2018-07-08 08:15:56 +0300162 clib_bihash_16_8_t vxlan4_tunnel_by_key; /* keyed on ipv4.dst + fib + vni */
163 clib_bihash_24_8_t vxlan6_tunnel_by_key; /* keyed on ipv6.dst + fib + vni */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Eyal Barifff67c82016-12-21 12:45:47 +0200165 /* local VTEP IPs ref count used by vxlan-bypass node to check if
166 received VXLAN packet DIP matches any local VTEP address */
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000167 vtep_table_t vtep_table;
John Lo37682e12016-11-30 12:51:39 -0500168
Eyal Bari0ded8512017-01-19 17:01:09 +0200169 /* mcast shared info */
Eyal Bari0fa56782018-06-04 12:25:05 +0300170 uword *mcast_shared; /* keyed on mcast ip46 addr */
Eyal Barifff67c82016-12-21 12:45:47 +0200171
Dave Wallace60231f32015-12-17 21:04:30 -0500172 /* Mapping from sw_if_index to tunnel index */
Eyal Bari0fa56782018-06-04 12:25:05 +0300173 u32 *tunnel_index_by_sw_if_index;
Dave Wallace60231f32015-12-17 21:04:30 -0500174
Jon Loeligere3034cd2019-01-03 12:56:02 -0600175 /* graph node state */
176 uword *bm_ip4_bypass_enabled_by_sw_if;
177 uword *bm_ip6_bypass_enabled_by_sw_if;
178
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 /* convenience */
Eyal Bari0fa56782018-06-04 12:25:05 +0300180 vlib_main_t *vlib_main;
181 vnet_main_t *vnet_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600182
183 /* Record used instances */
184 uword *instance_used;
eyal bariaf86a482018-04-17 11:20:27 +0300185 u32 flow_id_start;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186} vxlan_main_t;
187
Dave Wallace71612d62017-10-24 01:32:41 -0400188extern vxlan_main_t vxlan_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
Chris Luke99cb3352016-04-26 10:49:53 -0400190extern vlib_node_registration_t vxlan4_input_node;
191extern vlib_node_registration_t vxlan6_input_node;
John Loc42912d2016-11-07 18:30:47 -0500192extern vlib_node_registration_t vxlan4_encap_node;
193extern vlib_node_registration_t vxlan6_encap_node;
eyal bariaf86a482018-04-17 11:20:27 +0300194extern vlib_node_registration_t vxlan4_flow_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Eyal Bari0fa56782018-06-04 12:25:05 +0300196u8 *format_vxlan_encap_trace (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
Eyal Bari0fa56782018-06-04 12:25:05 +0300198typedef struct
199{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200 u8 is_add;
Chris Luke99cb3352016-04-26 10:49:53 -0400201
202 /* we normally use is_ip4, but since this adds to the
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700203 * structure, this seems less of a breaking change */
Chris Luke99cb3352016-04-26 10:49:53 -0400204 u8 is_ip6;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600205 u32 instance;
Chris Luke99cb3352016-04-26 10:49:53 -0400206 ip46_address_t src, dst;
Eyal Baric5b13602016-11-24 19:42:43 +0200207 u32 mcast_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 u32 encap_fib_index;
209 u32 decap_next_index;
210 u32 vni;
211} vnet_vxlan_add_del_tunnel_args_t;
212
Eyal Bari0fa56782018-06-04 12:25:05 +0300213int vnet_vxlan_add_del_tunnel
214 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Eyal Bari0fa56782018-06-04 12:25:05 +0300216void vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable);
eyal bariaf86a482018-04-17 11:20:27 +0300217
Eyal Bari0fa56782018-06-04 12:25:05 +0300218int vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_imdex, int is_add);
eyal bariaf86a482018-04-17 11:20:27 +0300219
220u32 vnet_vxlan_get_tunnel_index (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221#endif /* included_vnet_vxlan_h */
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600222
223/*
Eyal Bari0fa56782018-06-04 12:25:05 +0300224 * fd.io coding-style-patch-verification: ON
225 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600226 * Local Variables:
227 * eval: (c-set-style "gnu")
228 * End:
229 */