blob: 3c74bfd4e8e42dd8389e2b7263d6186e2d36dec5 [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>
20#include <vnet/vnet.h>
21#include <vnet/ip/ip.h>
22#include <vnet/l2/l2_input.h>
John Lo3ef822e2016-06-07 09:14:07 -040023#include <vnet/l2/l2_output.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vnet/l2/l2_bd.h>
25#include <vnet/ethernet/ethernet.h>
26#include <vnet/vxlan/vxlan_packet.h>
27#include <vnet/ip/ip4_packet.h>
Chris Luke99cb3352016-04-26 10:49:53 -040028#include <vnet/ip/ip6_packet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050029#include <vnet/udp/udp.h>
John Loc42912d2016-11-07 18:30:47 -050030#include <vnet/dpo/dpo.h>
Eyal Baric5b13602016-11-24 19:42:43 +020031#include <vnet/adj/adj_types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070032
33typedef CLIB_PACKED (struct {
34 ip4_header_t ip4; /* 20 bytes */
35 udp_header_t udp; /* 8 bytes */
36 vxlan_header_t vxlan; /* 8 bytes */
37}) ip4_vxlan_header_t;
38
Chris Luke99cb3352016-04-26 10:49:53 -040039typedef CLIB_PACKED (struct {
40 ip6_header_t ip6; /* 40 bytes */
41 udp_header_t udp; /* 8 bytes */
42 vxlan_header_t vxlan; /* 8 bytes */
43}) ip6_vxlan_header_t;
44
Ed Warnickecb9cada2015-12-08 15:45:58 -070045typedef CLIB_PACKED(struct {
46 /*
47 * Key fields: ip src and vxlan vni on incoming VXLAN packet
48 * all fields in NET byte order
49 */
50 union {
51 struct {
52 u32 src;
53 u32 vni; /* shifted left 8 bits */
54 };
55 u64 as_u64;
56 };
Chris Luke99cb3352016-04-26 10:49:53 -040057}) vxlan4_tunnel_key_t;
58
59typedef CLIB_PACKED(struct {
60 /*
61 * Key fields: ip src and vxlan vni on incoming VXLAN packet
62 * all fields in NET byte order
63 */
64 ip6_address_t src;
65 u32 vni; /* shifted left 8 bits */
66}) vxlan6_tunnel_key_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
68typedef struct {
Dave Baracheb987d32018-05-03 08:26:39 -040069 /* Required for pool_get_aligned */
70 CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
71
John Loc42912d2016-11-07 18:30:47 -050072 /* FIB DPO for IP forwarding of VXLAN encap packet */
73 dpo_id_t next_dpo;
74
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 /* vxlan VNI in HOST byte order */
76 u32 vni;
77
John Loc42912d2016-11-07 18:30:47 -050078 /* tunnel src and dst addresses */
79 ip46_address_t src;
80 ip46_address_t dst;
Chris Luke99cb3352016-04-26 10:49:53 -040081
John Lo56912c82016-12-08 16:10:02 -050082 /* mcast packet output intfc index (used only if dst is mcast) */
Eyal Baric5b13602016-11-24 19:42:43 +020083 u32 mcast_sw_if_index;
John Lo56912c82016-12-08 16:10:02 -050084
Hongjun Nibeb4bf72016-11-25 00:03:46 +080085 /* decap next index */
86 u32 decap_next_index;
Eyal Baric5b13602016-11-24 19:42:43 +020087
John Loc42912d2016-11-07 18:30:47 -050088 /* The FIB index for src/dst addresses */
89 u32 encap_fib_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
John Loc42912d2016-11-07 18:30:47 -050091 /* vnet intfc index */
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 u32 sw_if_index;
John Loc42912d2016-11-07 18:30:47 -050093 u32 hw_if_index;
Chris Luke99cb3352016-04-26 10:49:53 -040094
John Loc42912d2016-11-07 18:30:47 -050095 /**
96 * Linkage into the FIB object graph
97 */
98 fib_node_t node;
Chris Luke99cb3352016-04-26 10:49:53 -040099
Eyal Baric5b13602016-11-24 19:42:43 +0200100 /*
101 * The FIB entry for (depending on VXLAN tunnel is unicast or mcast)
102 * sending unicast VXLAN encap packets or receiving mcast VXLAN packets
103 */
John Loc42912d2016-11-07 18:30:47 -0500104 fib_node_index_t fib_entry_index;
Eyal Baric5b13602016-11-24 19:42:43 +0200105 adj_index_t mcast_adj_index;
John Loc42912d2016-11-07 18:30:47 -0500106
107 /**
108 * The tunnel is a child of the FIB entry for its desintion. This is
109 * so it receives updates when the forwarding information for that entry
110 * changes.
111 * The tunnels sibling index on the FIB entry's dependency list.
112 */
113 u32 sibling_index;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600114
115 u32 dev_instance; /* Real device instance in tunnel vector */
116 u32 user_instance; /* Instance name being shown to user */
eyal bari82e21d72018-04-26 13:14:55 +0300117
118 vnet_declare_rewrite (VLIB_BUFFER_PRE_DATA_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119} vxlan_tunnel_t;
120
121#define foreach_vxlan_input_next \
122_(DROP, "error-drop") \
John Loc42912d2016-11-07 18:30:47 -0500123_(L2_INPUT, "l2-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
125typedef enum {
126#define _(s,n) VXLAN_INPUT_NEXT_##s,
127 foreach_vxlan_input_next
128#undef _
129 VXLAN_INPUT_N_NEXT,
130} vxlan_input_next_t;
131
132typedef enum {
133#define vxlan_error(n,s) VXLAN_ERROR_##n,
134#include <vnet/vxlan/vxlan_error.def>
135#undef vxlan_error
136 VXLAN_N_ERROR,
137} vxlan_input_error_t;
138
139typedef struct {
140 /* vector of encap tunnel instances */
Eyal Barifff67c82016-12-21 12:45:47 +0200141 vxlan_tunnel_t * tunnels;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
143 /* lookup tunnel by key */
Chris Luke99cb3352016-04-26 10:49:53 -0400144 uword * vxlan4_tunnel_by_key; /* keyed on ipv4.dst + vni */
145 uword * vxlan6_tunnel_by_key; /* keyed on ipv6.dst + vni */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
Eyal Barifff67c82016-12-21 12:45:47 +0200147 /* local VTEP IPs ref count used by vxlan-bypass node to check if
148 received VXLAN packet DIP matches any local VTEP address */
John Lo37682e12016-11-30 12:51:39 -0500149 uword * vtep4; /* local ip4 VTEPs keyed on their ip4 addr */
150 uword * vtep6; /* local ip6 VTEPs keyed on their ip6 addr */
151
Eyal Bari0ded8512017-01-19 17:01:09 +0200152 /* mcast shared info */
153 uword * mcast_shared; /* keyed on mcast ip46 addr */
Eyal Barifff67c82016-12-21 12:45:47 +0200154
Dave Wallace60231f32015-12-17 21:04:30 -0500155 /* Mapping from sw_if_index to tunnel index */
156 u32 * tunnel_index_by_sw_if_index;
157
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 /* convenience */
159 vlib_main_t * vlib_main;
160 vnet_main_t * vnet_main;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600161
162 /* Record used instances */
163 uword *instance_used;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164} vxlan_main_t;
165
Dave Wallace71612d62017-10-24 01:32:41 -0400166extern vxlan_main_t vxlan_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
Chris Luke99cb3352016-04-26 10:49:53 -0400168extern vlib_node_registration_t vxlan4_input_node;
169extern vlib_node_registration_t vxlan6_input_node;
John Loc42912d2016-11-07 18:30:47 -0500170extern vlib_node_registration_t vxlan4_encap_node;
171extern vlib_node_registration_t vxlan6_encap_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172
173u8 * format_vxlan_encap_trace (u8 * s, va_list * args);
174
175typedef struct {
176 u8 is_add;
Chris Luke99cb3352016-04-26 10:49:53 -0400177
178 /* we normally use is_ip4, but since this adds to the
179 * structure, this seems less of abreaking change */
180 u8 is_ip6;
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600181 u32 instance;
Chris Luke99cb3352016-04-26 10:49:53 -0400182 ip46_address_t src, dst;
Eyal Baric5b13602016-11-24 19:42:43 +0200183 u32 mcast_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 u32 encap_fib_index;
185 u32 decap_next_index;
186 u32 vni;
187} vnet_vxlan_add_del_tunnel_args_t;
188
189int vnet_vxlan_add_del_tunnel
190(vnet_vxlan_add_del_tunnel_args_t *a, u32 * sw_if_indexp);
191
John Lo2b81eb82017-01-30 13:12:10 -0500192void vnet_int_vxlan_bypass_mode
193(u32 sw_if_index, u8 is_ip6, u8 is_enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194#endif /* included_vnet_vxlan_h */
Jon Loeliger3d460bd2018-02-01 16:36:12 -0600195
196/*
197 * Local Variables:
198 * eval: (c-set-style "gnu")
199 * End:
200 */