blob: ea085bf0fa162cc403cd1e7b557a3cc939b252f9 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * gre.h: types/functions for gre.
3 *
4 * Copyright (c) 2012 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef included_gre_h
19#define included_gre_h
20
21#include <vnet/vnet.h>
22#include <vnet/gre/packet.h>
23#include <vnet/ip/ip.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vnet/ip/format.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010025#include <vnet/adj/adj_types.h>
Neale Ranns59ff9182019-12-29 23:55:18 +000026#include <vnet/tunnel/tunnel.h>
Neale Ranns03ce4622020-02-03 10:55:09 +000027#include <vnet/teib/teib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Damjan Marionb8abf872016-03-14 20:02:35 +010029extern vnet_hw_interface_class_t gre_hw_interface_class;
Neale Ranns5f8f6172019-04-18 10:23:56 +000030extern vnet_hw_interface_class_t mgre_hw_interface_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Swarup Nayak9ff647a2017-11-27 10:27:43 +053032typedef enum
33{
Ed Warnickecb9cada2015-12-08 15:45:58 -070034#define gre_error(n,s) GRE_ERROR_##n,
35#include <vnet/gre/error.def>
36#undef gre_error
37 GRE_N_ERROR,
38} gre_error_t;
39
Neale Ranns177bbdc2016-11-15 09:46:51 +000040/**
Neale Ranns5f8f6172019-04-18 10:23:56 +000041 * L3: GRE (i.e. this tunnel is in L3 mode)
42 * TEB: Transparent Ethernet Bridging - the tunnel is in L2 mode
43 * ERSPAN: type 2 - the tunnel is for port mirror SPAN output. Each tunnel is
44 * associated with a session ID and expected to be used for encap
45 * and output of mirrored packet from a L2 network only. There is
46 * no support for receiving ERSPAN packets from a GRE ERSPAN tunnel
47 */
48#define foreach_gre_tunnel_type \
49 _(L3, "L3") \
50 _(TEB, "TEB") \
51 _(ERSPAN, "ERSPAN") \
52
53/**
John Loa43ccae2018-02-13 17:15:23 -050054 * @brief The GRE tunnel type
55 */
56typedef enum gre_tunnel_type_t_
57{
Neale Ranns5f8f6172019-04-18 10:23:56 +000058#define _(n, s) GRE_TUNNEL_TYPE_##n,
59 foreach_gre_tunnel_type
60#undef _
61} __clib_packed gre_tunnel_type_t;
John Loa43ccae2018-02-13 17:15:23 -050062
Neale Ranns5f8f6172019-04-18 10:23:56 +000063extern u8 *format_gre_tunnel_type (u8 * s, va_list * args);
Neale Ranns5a8844b2019-04-16 07:15:35 +000064
John Loa43ccae2018-02-13 17:15:23 -050065
66/**
Neale Ranns177bbdc2016-11-15 09:46:51 +000067 * A GRE payload protocol registration
68 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +053069typedef struct
70{
Neale Ranns177bbdc2016-11-15 09:46:51 +000071 /** Name (a c string). */
Swarup Nayak9ff647a2017-11-27 10:27:43 +053072 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070073
Neale Ranns177bbdc2016-11-15 09:46:51 +000074 /** GRE protocol type in host byte order. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070075 gre_protocol_t protocol;
76
John Loa43ccae2018-02-13 17:15:23 -050077 /** GRE tunnel type */
78 gre_tunnel_type_t tunnel_type;
79
Neale Ranns177bbdc2016-11-15 09:46:51 +000080 /** Node which handles this type. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 u32 node_index;
82
Neale Ranns177bbdc2016-11-15 09:46:51 +000083 /** Next index for this type. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070084 u32 next_index;
85} gre_protocol_info_t;
86
Neale Ranns177bbdc2016-11-15 09:46:51 +000087/**
Neale Ranns4c16d802019-12-17 20:15:03 +000088 * Elements of the GRE key that are common for v6 and v6 addresses
89 */
90typedef struct gre_tunnel_key_common_t_
91{
92 union
93 {
94 struct
95 {
96 u32 fib_index;
97 u16 session_id;
98 gre_tunnel_type_t type;
Neale Ranns59ff9182019-12-29 23:55:18 +000099 tunnel_mode_t mode;
Neale Ranns4c16d802019-12-17 20:15:03 +0000100 };
101 u64 as_u64;
102 };
103} gre_tunnel_key_common_t;
104
105STATIC_ASSERT_SIZEOF (gre_tunnel_key_common_t, sizeof (u64));
106
107/**
Neale Ranns33ce60d2017-12-14 08:51:32 -0800108 * @brief Key for a IPv4 GRE Tunnel
109 */
110typedef struct gre_tunnel_key4_t_
111{
112 /**
113 * Source and destination IP addresses
114 */
115 union
116 {
117 struct
118 {
119 ip4_address_t gtk_src;
120 ip4_address_t gtk_dst;
121 };
122 u64 gtk_as_u64;
123 };
124
Neale Ranns4c16d802019-12-17 20:15:03 +0000125 /** address independent attributes */
126 gre_tunnel_key_common_t gtk_common;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800127} __attribute__ ((packed)) gre_tunnel_key4_t;
128
Neale Ranns4c16d802019-12-17 20:15:03 +0000129STATIC_ASSERT_SIZEOF (gre_tunnel_key4_t, 2 * sizeof (u64));
130
Neale Ranns33ce60d2017-12-14 08:51:32 -0800131/**
132 * @brief Key for a IPv6 GRE Tunnel
133 * We use a different type so that the V4 key hash is as small as possible
134 */
135typedef struct gre_tunnel_key6_t_
136{
137 /**
138 * Source and destination IP addresses
139 */
140 ip6_address_t gtk_src;
141 ip6_address_t gtk_dst;
142
Neale Ranns4c16d802019-12-17 20:15:03 +0000143 /** address independent attributes */
144 gre_tunnel_key_common_t gtk_common;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800145} __attribute__ ((packed)) gre_tunnel_key6_t;
146
Neale Ranns4c16d802019-12-17 20:15:03 +0000147STATIC_ASSERT_SIZEOF (gre_tunnel_key6_t, 5 * sizeof (u64));
John Loa43ccae2018-02-13 17:15:23 -0500148
Neale Ranns33ce60d2017-12-14 08:51:32 -0800149/**
150 * Union of the two possible key types
151 */
152typedef union gre_tunnel_key_t_
153{
154 gre_tunnel_key4_t gtk_v4;
155 gre_tunnel_key6_t gtk_v6;
156} gre_tunnel_key_t;
157
158/**
Neale Ranns4c16d802019-12-17 20:15:03 +0000159 * The session ID is only a 10 bit value
160 */
161#define GTK_SESSION_ID_MAX (0x3ff)
162
163/**
John Loa43ccae2018-02-13 17:15:23 -0500164 * Used for GRE header seq number generation for ERSPAN encap
165 */
166typedef struct
167{
168 u32 seq_num;
169 u32 ref_count;
170} gre_sn_t;
171
172/**
173 * Hash key for GRE header seq number generation for ERSPAN encap
174 */
175typedef struct
176{
177 ip46_address_t src;
178 ip46_address_t dst;
179 u32 fib_index;
180} gre_sn_key_t;
181
182/**
Neale Ranns177bbdc2016-11-15 09:46:51 +0000183 * @brief A representation of a GRE tunnel
184 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530185typedef struct
186{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100187 /**
Dave Baracheb987d32018-05-03 08:26:39 -0400188 * Required for pool_get_aligned
189 */
190 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
191
192 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100193 * The tunnel's source/local address
194 */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100195 ip46_address_t tunnel_src;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100196 /**
197 * The tunnel's destination/remote address
198 */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100199 fib_prefix_t tunnel_dst;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100200 /**
201 * The FIB in which the src.dst address are present
202 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 u32 outer_fib_index;
204 u32 hw_if_index;
Chris Luke27fe48f2016-04-28 13:44:38 -0400205 u32 sw_if_index;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000206 gre_tunnel_type_t type;
Neale Ranns59ff9182019-12-29 23:55:18 +0000207 tunnel_mode_t mode;
Neale Rannse5b94dd2019-12-31 05:13:14 +0000208 tunnel_encap_decap_flags_t flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100209
210 /**
Neale Rannsb80c5362016-10-08 13:03:40 +0100211 * an L2 tunnel always rquires an L2 midchain. cache here for DP.
212 */
213 adj_index_t l2_adj_index;
John Loa43ccae2018-02-13 17:15:23 -0500214
215 /**
216 * ERSPAN type 2 session ID, least significant 10 bits of u16
217 */
218 u16 session_id;
219
220 /**
221 * GRE header sequence number (SN) used for ERSPAN type 2 header, must be
222 * bumped automically to be thread safe. As multiple GRE tunnels are created
223 * for the same fib-idx/DIP/SIP with different ERSPAN session number, they all
224 * share the same SN which is kept per FIB/DIP/SIP, as specified by RFC2890.
225 */
226 gre_sn_t *gre_sn;
227
228
229 u32 dev_instance; /* Real device instance in tunnel vector */
230 u32 user_instance; /* Instance name being shown to user */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231} gre_tunnel_t;
232
John Loa43ccae2018-02-13 17:15:23 -0500233typedef struct
234{
235 u8 next_index;
236 u8 tunnel_type;
237} next_info_t;
238
Neale Ranns177bbdc2016-11-15 09:46:51 +0000239/**
240 * @brief GRE related global data
241 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530242typedef struct
243{
Neale Ranns177bbdc2016-11-15 09:46:51 +0000244 /**
245 * pool of tunnel instances
246 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 gre_tunnel_t *tunnels;
248
Neale Ranns177bbdc2016-11-15 09:46:51 +0000249 /**
250 * GRE payload protocol registrations
251 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530252 gre_protocol_info_t *protocol_infos;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
Neale Ranns177bbdc2016-11-15 09:46:51 +0000254 /**
255 * Hash tables mapping name/protocol to protocol info index.
256 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530257 uword *protocol_info_by_name, *protocol_info_by_protocol;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100258
Neale Ranns177bbdc2016-11-15 09:46:51 +0000259 /**
John Loa43ccae2018-02-13 17:15:23 -0500260 * Hash mapping to tunnels with ipv4 src/dst addr
Neale Ranns177bbdc2016-11-15 09:46:51 +0000261 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530262 uword *tunnel_by_key4;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100263
264 /**
John Loa43ccae2018-02-13 17:15:23 -0500265 * Hash mapping to tunnels with ipv6 src/dst addr
Neale Ranns33ce60d2017-12-14 08:51:32 -0800266 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530267 uword *tunnel_by_key6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268
Neale Ranns177bbdc2016-11-15 09:46:51 +0000269 /**
John Loa43ccae2018-02-13 17:15:23 -0500270 * Hash mapping tunnel src/dst addr and fib-idx to sequence number
Neale Ranns177bbdc2016-11-15 09:46:51 +0000271 */
John Loa43ccae2018-02-13 17:15:23 -0500272 uword *seq_num_by_key;
Chris Luke27fe48f2016-04-28 13:44:38 -0400273
Neale Ranns177bbdc2016-11-15 09:46:51 +0000274 /**
275 * Mapping from sw_if_index to tunnel index
276 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530277 u32 *tunnel_index_by_sw_if_index;
Chris Luke27fe48f2016-04-28 13:44:38 -0400278
Damjan Marion63d5bae2017-04-04 01:28:26 +0200279 /* Sparse vector mapping gre protocol in network byte order
280 to next index. */
John Loa43ccae2018-02-13 17:15:23 -0500281 next_info_t *next_by_protocol;
Damjan Marion63d5bae2017-04-04 01:28:26 +0200282
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 /* convenience */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530284 vlib_main_t *vlib_main;
285 vnet_main_t *vnet_main;
John Loa43ccae2018-02-13 17:15:23 -0500286
287 /* Record used instances */
288 uword *instance_used;
Neale Ranns119c0d72020-11-26 13:12:37 +0000289
290 u16 msg_id_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291} gre_main_t;
292
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100293/**
294 * @brief IPv4 and GRE header.
Neale Ranns177bbdc2016-11-15 09:46:51 +0000295 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530296/* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100297typedef CLIB_PACKED (struct {
298 ip4_header_t ip4;
299 gre_header_t gre;
300}) ip4_and_gre_header_t;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530301/* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100302
Ciara Loftus7eac9162016-09-30 15:47:03 +0100303/**
304 * @brief IPv6 and GRE header.
305 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530306/* *INDENT-OFF* */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100307typedef CLIB_PACKED (struct {
308 ip6_header_t ip6;
309 gre_header_t gre;
310}) ip6_and_gre_header_t;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530311/* *INDENT-ON* */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100312
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313always_inline gre_protocol_info_t *
314gre_get_protocol_info (gre_main_t * em, gre_protocol_t protocol)
315{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530316 uword *p = hash_get (em->protocol_info_by_protocol, protocol);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 return p ? vec_elt_at_index (em->protocol_infos, p[0]) : 0;
318}
319
Dave Wallace71612d62017-10-24 01:32:41 -0400320extern gre_main_t gre_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530322extern clib_error_t *gre_interface_admin_up_down (vnet_main_t * vnm,
323 u32 hw_if_index, u32 flags);
Neale Rannsb80c5362016-10-08 13:03:40 +0100324
325extern void gre_tunnel_stack (adj_index_t ai);
326extern void gre_update_adj (vnet_main_t * vnm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530327 u32 sw_if_index, adj_index_t ai);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
Neale Ranns14053c92019-12-29 23:55:18 +0000329typedef struct mgre_walk_ctx_t_
330{
331 const gre_tunnel_t *t;
Neale Ranns03ce4622020-02-03 10:55:09 +0000332 const teib_entry_t *ne;
Neale Ranns14053c92019-12-29 23:55:18 +0000333} mgre_walk_ctx_t;
334
335adj_walk_rc_t mgre_mk_complete_walk (adj_index_t ai, void *data);
336adj_walk_rc_t mgre_mk_incomplete_walk (adj_index_t ai, void *data);
337
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338format_function_t format_gre_protocol;
339format_function_t format_gre_header;
340format_function_t format_gre_header_with_length;
341
Ciara Loftus7eac9162016-09-30 15:47:03 +0100342extern vlib_node_registration_t gre4_input_node;
343extern vlib_node_registration_t gre6_input_node;
Neale Ranns07bbaef2020-04-09 07:34:08 -0400344extern vlib_node_registration_t gre_erspan_encap_node;
345extern vlib_node_registration_t gre_teb_encap_node;
Damjan Marionb8abf872016-03-14 20:02:35 +0100346extern vnet_device_class_t gre_device_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
348/* Parse gre protocol as 0xXXXX or protocol name.
349 In either host or network byte order. */
350unformat_function_t unformat_gre_protocol_host_byte_order;
351unformat_function_t unformat_gre_protocol_net_byte_order;
352
353/* Parse gre header. */
354unformat_function_t unformat_gre_header;
355unformat_function_t unformat_pg_gre_header;
356
357void
John Loa43ccae2018-02-13 17:15:23 -0500358gre_register_input_protocol (vlib_main_t * vm, gre_protocol_t protocol,
359 u32 node_index, gre_tunnel_type_t tunnel_type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
361/* manually added to the interface output node in gre.c */
362#define GRE_OUTPUT_NEXT_LOOKUP 1
363
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530364typedef struct
365{
Chris Luke27fe48f2016-04-28 13:44:38 -0400366 u8 is_add;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000367 gre_tunnel_type_t type;
Neale Ranns59ff9182019-12-29 23:55:18 +0000368 tunnel_mode_t mode;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100369 u8 is_ipv6;
John Loa43ccae2018-02-13 17:15:23 -0500370 u32 instance;
371 ip46_address_t src, dst;
Neale Ranns5f8f6172019-04-18 10:23:56 +0000372 u32 outer_table_id;
John Loa43ccae2018-02-13 17:15:23 -0500373 u16 session_id;
Neale Rannse5b94dd2019-12-31 05:13:14 +0000374 tunnel_encap_decap_flags_t flags;
Neale Ranns5a8844b2019-04-16 07:15:35 +0000375} vnet_gre_tunnel_add_del_args_t;
Chris Luke27fe48f2016-04-28 13:44:38 -0400376
Neale Ranns5a8844b2019-04-16 07:15:35 +0000377extern int vnet_gre_tunnel_add_del (vnet_gre_tunnel_add_del_args_t * a,
378 u32 * sw_if_indexp);
Chris Luke27fe48f2016-04-28 13:44:38 -0400379
Neale Ranns33ce60d2017-12-14 08:51:32 -0800380static inline void
John Loa43ccae2018-02-13 17:15:23 -0500381gre_mk_key4 (ip4_address_t src,
382 ip4_address_t dst,
Neale Ranns4c16d802019-12-17 20:15:03 +0000383 u32 fib_index,
384 gre_tunnel_type_t ttype,
Neale Ranns59ff9182019-12-29 23:55:18 +0000385 tunnel_mode_t tmode, u16 session_id, gre_tunnel_key4_t * key)
Neale Ranns33ce60d2017-12-14 08:51:32 -0800386{
John Loa43ccae2018-02-13 17:15:23 -0500387 key->gtk_src = src;
388 key->gtk_dst = dst;
Neale Ranns4c16d802019-12-17 20:15:03 +0000389 key->gtk_common.type = ttype;
390 key->gtk_common.mode = tmode;
391 key->gtk_common.fib_index = fib_index;
392 key->gtk_common.session_id = session_id;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800393}
394
395static inline int
396gre_match_key4 (const gre_tunnel_key4_t * key1,
397 const gre_tunnel_key4_t * key2)
398{
399 return ((key1->gtk_as_u64 == key2->gtk_as_u64) &&
Neale Ranns4c16d802019-12-17 20:15:03 +0000400 (key1->gtk_common.as_u64 == key2->gtk_common.as_u64));
Neale Ranns33ce60d2017-12-14 08:51:32 -0800401}
402
403static inline void
404gre_mk_key6 (const ip6_address_t * src,
405 const ip6_address_t * dst,
Neale Ranns4c16d802019-12-17 20:15:03 +0000406 u32 fib_index,
407 gre_tunnel_type_t ttype,
Neale Ranns59ff9182019-12-29 23:55:18 +0000408 tunnel_mode_t tmode, u16 session_id, gre_tunnel_key6_t * key)
Neale Ranns33ce60d2017-12-14 08:51:32 -0800409{
410 key->gtk_src = *src;
411 key->gtk_dst = *dst;
Neale Ranns4c16d802019-12-17 20:15:03 +0000412 key->gtk_common.type = ttype;
413 key->gtk_common.mode = tmode;
414 key->gtk_common.fib_index = fib_index;
415 key->gtk_common.session_id = session_id;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800416}
417
418static inline int
419gre_match_key6 (const gre_tunnel_key6_t * key1,
420 const gre_tunnel_key6_t * key2)
421{
Neale Ranns4c16d802019-12-17 20:15:03 +0000422 return (ip6_address_is_equal (&key1->gtk_src, &key2->gtk_src) &&
423 ip6_address_is_equal (&key1->gtk_dst, &key2->gtk_dst) &&
424 (key1->gtk_common.as_u64 == key2->gtk_common.as_u64));
John Loa43ccae2018-02-13 17:15:23 -0500425}
426
427static inline void
428gre_mk_sn_key (const gre_tunnel_t * gt, gre_sn_key_t * key)
429{
430 key->src = gt->tunnel_src;
431 key->dst = gt->tunnel_dst.fp_addr;
432 key->fib_index = gt->outer_fib_index;
Neale Ranns33ce60d2017-12-14 08:51:32 -0800433}
434
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435#endif /* included_gre_h */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530436
437/*
438 * fd.io coding-style-patch-verification: ON
439 *
440 * Local Variables:
441 * eval: (c-set-style "gnu")
442 * End:
443 */