blob: 21b7650f454e7c136f9829095548a286a8f36846 [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 Bari0fa56782018-06-04 12:25:05 +030020#include <vppinfra/bihash_24_8.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021#include <vnet/vnet.h>
22#include <vnet/ip/ip.h>
23#include <vnet/l2/l2_input.h>
John Lo3ef822e2016-06-07 09:14:07 -040024#include <vnet/l2/l2_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <vnet/l2/l2_bd.h>
26#include <vnet/ethernet/ethernet.h>
27#include <vnet/vxlan/vxlan_packet.h>
28#include <vnet/ip/ip4_packet.h>
Chris Luke99cb3352016-04-26 10:49:53 -040029#include <vnet/ip/ip6_packet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050030#include <vnet/udp/udp.h>
John Loc42912d2016-11-07 18:30:47 -050031#include <vnet/dpo/dpo.h>
Eyal Baric5b13602016-11-24 19:42:43 +020032#include <vnet/adj/adj_types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070033
Eyal Bari0fa56782018-06-04 12:25:05 +030034/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070035typedef CLIB_PACKED (struct {
Eyal Bari0fa56782018-06-04 12:25:05 +030036 ip4_header_t ip4; /* 20 bytes */
37 udp_header_t udp; /* 8 bytes */
38 vxlan_header_t vxlan; /* 8 bytes */
Ed Warnickecb9cada2015-12-08 15:45:58 -070039}) ip4_vxlan_header_t;
40
Chris Luke99cb3352016-04-26 10:49:53 -040041typedef CLIB_PACKED (struct {
Eyal Bari0fa56782018-06-04 12:25:05 +030042 ip6_header_t ip6; /* 40 bytes */
43 udp_header_t udp; /* 8 bytes */
44 vxlan_header_t vxlan; /* 8 bytes */
Chris Luke99cb3352016-04-26 10:49:53 -040045}) ip6_vxlan_header_t;
46
Eyal Bari0fa56782018-06-04 12:25:05 +030047typedef CLIB_PACKED (union {
48 /*
49 * Key fields: remote ip, vni on incoming VXLAN packet
50 * all fields in NET byte order
51 */
52 struct
53 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 u32 src;
Eyal Bari0fa56782018-06-04 12:25:05 +030055 u32 vni; /* shifted left 8 bits */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056 };
Eyal Bari0fa56782018-06-04 12:25:05 +030057 u64 as_u64;
Chris Luke99cb3352016-04-26 10:49:53 -040058}) vxlan4_tunnel_key_t;
59
Eyal Bari0fa56782018-06-04 12:25:05 +030060/*
61* Key fields: remote ip, vni and fib index on incoming VXLAN packet
62* ip, vni fields in NET byte order
63* fib index field in host byte order
64*/
65typedef BVT (clib_bihash_kv) vxlan6_tunnel_key_t;
66/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Eyal Bari0fa56782018-06-04 12:25:05 +030068typedef struct
69{
Dave Baracheb987d32018-05-03 08:26:39 -040070 /* Required for pool_get_aligned */
Eyal Bari0fa56782018-06-04 12:25:05 +030071 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Dave Baracheb987d32018-05-03 08:26:39 -040072
John Loc42912d2016-11-07 18:30:47 -050073 /* FIB DPO for IP forwarding of VXLAN encap packet */
Eyal Bari0fa56782018-06-04 12:25:05 +030074 dpo_id_t next_dpo;
John Loc42912d2016-11-07 18:30:47 -050075
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 /* vxlan VNI in HOST byte order */
77 u32 vni;
78
John Loc42912d2016-11-07 18:30:47 -050079 /* tunnel src and dst addresses */
80 ip46_address_t src;
81 ip46_address_t dst;
Chris Luke99cb3352016-04-26 10:49:53 -040082
John Lo56912c82016-12-08 16:10:02 -050083 /* mcast packet output intfc index (used only if dst is mcast) */
Eyal Baric5b13602016-11-24 19:42:43 +020084 u32 mcast_sw_if_index;
John Lo56912c82016-12-08 16:10:02 -050085
Hongjun Nibeb4bf72016-11-25 00:03:46 +080086 /* decap next index */
87 u32 decap_next_index;
Eyal Baric5b13602016-11-24 19:42:43 +020088
John Loc42912d2016-11-07 18:30:47 -050089 /* The FIB index for src/dst addresses */
90 u32 encap_fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
John Loc42912d2016-11-07 18:30:47 -050092 /* vnet intfc index */
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 u32 sw_if_index;
John Loc42912d2016-11-07 18:30:47 -050094 u32 hw_if_index;
Chris Luke99cb3352016-04-26 10:49:53 -040095
John Loc42912d2016-11-07 18:30:47 -050096 /**
97 * Linkage into the FIB object graph
98 */
99 fib_node_t node;
Chris Luke99cb3352016-04-26 10:49:53 -0400100
Eyal Baric5b13602016-11-24 19:42:43 +0200101 /*
102 * The FIB entry for (depending on VXLAN tunnel is unicast or mcast)
103 * sending unicast VXLAN encap packets or receiving mcast VXLAN packets
104 */
John Loc42912d2016-11-07 18:30:47 -0500105 fib_node_index_t fib_entry_index;
Eyal Baric5b13602016-11-24 19:42:43 +0200106 adj_index_t mcast_adj_index;
John Loc42912d2016-11-07 18:30:47 -0500107
108 /**
109 * The tunnel is a child of the FIB entry for its desintion. This is
110 * so it receives updates when the forwarding information for that entry
111 * changes.
112 * The tunnels sibling index on the FIB entry's dependency list.
113 */
114 u32 sibling_index;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600115
Eyal Bari0fa56782018-06-04 12:25:05 +0300116 u32 flow_index; /* infra flow index */
117 u32 dev_instance; /* Real device instance in tunnel vector */
118 u32 user_instance; /* Instance name being shown to user */
eyal bari82e21d72018-04-26 13:14:55 +0300119
Eyal Bari0fa56782018-06-04 12:25:05 +0300120 vnet_declare_rewrite (VLIB_BUFFER_PRE_DATA_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121} vxlan_tunnel_t;
122
123#define foreach_vxlan_input_next \
124_(DROP, "error-drop") \
John Loc42912d2016-11-07 18:30:47 -0500125_(L2_INPUT, "l2-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Eyal Bari0fa56782018-06-04 12:25:05 +0300127typedef enum
128{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129#define _(s,n) VXLAN_INPUT_NEXT_##s,
130 foreach_vxlan_input_next
131#undef _
Eyal Bari0fa56782018-06-04 12:25:05 +0300132 VXLAN_INPUT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133} vxlan_input_next_t;
134
Eyal Bari0fa56782018-06-04 12:25:05 +0300135typedef enum
136{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137#define vxlan_error(n,s) VXLAN_ERROR_##n,
138#include <vnet/vxlan/vxlan_error.def>
139#undef vxlan_error
140 VXLAN_N_ERROR,
141} vxlan_input_error_t;
142
Eyal Bari0fa56782018-06-04 12:25:05 +0300143typedef struct
144{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 /* vector of encap tunnel instances */
Eyal Bari0fa56782018-06-04 12:25:05 +0300146 vxlan_tunnel_t *tunnels;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 /* lookup tunnel by key */
Eyal Bari0fa56782018-06-04 12:25:05 +0300149 uword *vxlan4_tunnel_by_key; /* keyed on ipv4.dst + vni */
150 BVT (clib_bihash) vxlan6_tunnel_by_key; /* keyed on ipv6.dst + fib + vni */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Eyal Barifff67c82016-12-21 12:45:47 +0200152 /* local VTEP IPs ref count used by vxlan-bypass node to check if
153 received VXLAN packet DIP matches any local VTEP address */
Eyal Bari0fa56782018-06-04 12:25:05 +0300154 uword *vtep4; /* local ip4 VTEPs keyed on their ip4 addr */
155 uword *vtep6; /* local ip6 VTEPs keyed on their ip6 addr */
John Lo37682e12016-11-30 12:51:39 -0500156
Eyal Bari0ded8512017-01-19 17:01:09 +0200157 /* mcast shared info */
Eyal Bari0fa56782018-06-04 12:25:05 +0300158 uword *mcast_shared; /* keyed on mcast ip46 addr */
Eyal Barifff67c82016-12-21 12:45:47 +0200159
Dave Wallace60231f32015-12-17 21:04:30 -0500160 /* Mapping from sw_if_index to tunnel index */
Eyal Bari0fa56782018-06-04 12:25:05 +0300161 u32 *tunnel_index_by_sw_if_index;
Dave Wallace60231f32015-12-17 21:04:30 -0500162
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 /* convenience */
Eyal Bari0fa56782018-06-04 12:25:05 +0300164 vlib_main_t *vlib_main;
165 vnet_main_t *vnet_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600166
167 /* Record used instances */
168 uword *instance_used;
eyal bariaf86a482018-04-17 11:20:27 +0300169 u32 flow_id_start;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170} vxlan_main_t;
171
Dave Wallace71612d62017-10-24 01:32:41 -0400172extern vxlan_main_t vxlan_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
Chris Luke99cb3352016-04-26 10:49:53 -0400174extern vlib_node_registration_t vxlan4_input_node;
175extern vlib_node_registration_t vxlan6_input_node;
John Loc42912d2016-11-07 18:30:47 -0500176extern vlib_node_registration_t vxlan4_encap_node;
177extern vlib_node_registration_t vxlan6_encap_node;
eyal bariaf86a482018-04-17 11:20:27 +0300178extern vlib_node_registration_t vxlan4_flow_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Eyal Bari0fa56782018-06-04 12:25:05 +0300180u8 *format_vxlan_encap_trace (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Eyal Bari0fa56782018-06-04 12:25:05 +0300182typedef struct
183{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 u8 is_add;
Chris Luke99cb3352016-04-26 10:49:53 -0400185
186 /* we normally use is_ip4, but since this adds to the
187 * structure, this seems less of abreaking change */
188 u8 is_ip6;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600189 u32 instance;
Chris Luke99cb3352016-04-26 10:49:53 -0400190 ip46_address_t src, dst;
Eyal Baric5b13602016-11-24 19:42:43 +0200191 u32 mcast_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 u32 encap_fib_index;
193 u32 decap_next_index;
194 u32 vni;
195} vnet_vxlan_add_del_tunnel_args_t;
196
Eyal Bari0fa56782018-06-04 12:25:05 +0300197int vnet_vxlan_add_del_tunnel
198 (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199
Eyal Bari0fa56782018-06-04 12:25:05 +0300200void vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable);
eyal bariaf86a482018-04-17 11:20:27 +0300201
Eyal Bari0fa56782018-06-04 12:25:05 +0300202int vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_imdex, int is_add);
eyal bariaf86a482018-04-17 11:20:27 +0300203
204u32 vnet_vxlan_get_tunnel_index (u32 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205#endif /* included_vnet_vxlan_h */
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600206
207/*
Eyal Bari0fa56782018-06-04 12:25:05 +0300208 * fd.io coding-style-patch-verification: ON
209 *
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600210 * Local Variables:
211 * eval: (c-set-style "gnu")
212 * End:
213 */