FD.io VPP  v18.10-32-g1161dda
Vector Packet Processing
gre.h
Go to the documentation of this file.
1 /*
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>
24 #include <vnet/pg/pg.h>
25 #include <vnet/ip/format.h>
26 #include <vnet/adj/adj_types.h>
27 
29 
30 typedef enum
31 {
32 #define gre_error(n,s) GRE_ERROR_##n,
33 #include <vnet/gre/error.def>
34 #undef gre_error
36 } gre_error_t;
37 
38 /**
39  * @brief The GRE tunnel type
40  */
41 typedef enum gre_tunnel_type_t_
42 {
43  /**
44  * L3 GRE (i.e. this tunnel is in L3 mode)
45  */
47  /**
48  * Transparent Ethernet Bridging - the tunnel is in L2 mode
49  */
51  /**
52  * ERSPAN type 2 - the tunnel is for port mirror SPAN output. Each tunnel is
53  * associated with a session ID and expected to be used for encap and output
54  * of mirrored packet from a L2 network only. There is no support for
55  * receiving ERSPAN packets from a GRE ERSPAN tunnel in VPP.
56  */
58 
61 
62 #define GRE_TUNNEL_TYPE_NAMES { \
63  [GRE_TUNNEL_TYPE_L3] = "L3", \
64  [GRE_TUNNEL_TYPE_TEB] = "TEB", \
65  [GRE_TUNNEL_TYPE_ERSPAN] = "ERSPAN", \
66 }
67 
68 /**
69  * A GRE payload protocol registration
70  */
71 typedef struct
72 {
73  /** Name (a c string). */
74  char *name;
75 
76  /** GRE protocol type in host byte order. */
78 
79  /** GRE tunnel type */
80  gre_tunnel_type_t tunnel_type;
81 
82  /** Node which handles this type. */
84 
85  /** Next index for this type. */
88 
89 /**
90  * @brief Key for a IPv4 GRE Tunnel
91  */
92 typedef struct gre_tunnel_key4_t_
93 {
94  /**
95  * Source and destination IP addresses
96  */
97  union
98  {
99  struct
100  {
103  };
105  };
106 
107  /**
108  * FIB table index, ERSPAN session ID and tunnel type in u32 bit fields:
109  * - The FIB table index the src,dst addresses are in, top 20 bits
110  * - The Session ID for ERSPAN tunnel type and 0 otherwise, next 10 bits
111  * - Tunnel type, bottom 2 bits
112  */
114 } __attribute__ ((packed)) gre_tunnel_key4_t;
115 
116 /**
117  * @brief Key for a IPv6 GRE Tunnel
118  * We use a different type so that the V4 key hash is as small as possible
119  */
120 typedef struct gre_tunnel_key6_t_
121 {
122  /**
123  * Source and destination IP addresses
124  */
127 
128  /**
129  * FIB table index, ERSPAN session ID and tunnel type in u32 bit fields:
130  * - The FIB table index the src,dst addresses are in, top 20 bits
131  * - The Session ID for ERSPAN tunnel type and 0 otherwise, next 10 bits
132  * - Tunnel type, bottom 2 bits
133  */
135 } __attribute__ ((packed)) gre_tunnel_key6_t;
136 
137 #define GTK_FIB_INDEX_SHIFT 12
138 #define GTK_FIB_INDEX_MASK 0xfffff000
139 #define GTK_TYPE_SHIFT 0
140 #define GTK_TYPE_MASK 0x3
141 #define GTK_SESSION_ID_SHIFT 2
142 #define GTK_SESSION_ID_MASK 0xffc
143 #define GTK_SESSION_ID_MAX (GTK_SESSION_ID_MASK >> GTK_SESSION_ID_SHIFT)
144 
145 /**
146  * Union of the two possible key types
147  */
148 typedef union gre_tunnel_key_t_
149 {
151  gre_tunnel_key6_t gtk_v6;
153 
154 /**
155  * Used for GRE header seq number generation for ERSPAN encap
156  */
157 typedef struct
158 {
161 } gre_sn_t;
162 
163 /**
164  * Hash key for GRE header seq number generation for ERSPAN encap
165  */
166 typedef struct
167 {
168  ip46_address_t src;
169  ip46_address_t dst;
171 } gre_sn_key_t;
172 
173 /**
174  * @brief A representation of a GRE tunnel
175  */
176 typedef struct
177 {
178  /**
179  * Required for pool_get_aligned
180  */
181  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
182 
183  /**
184  * Linkage into the FIB object graph
185  */
187 
188  /**
189  * The hash table's key stored in separate memory since the tunnel_t
190  * memory can realloc.
191  */
193 
194  /**
195  * The tunnel's source/local address
196  */
197  ip46_address_t tunnel_src;
198  /**
199  * The tunnel's destination/remote address
200  */
202  /**
203  * The FIB in which the src.dst address are present
204  */
208  gre_tunnel_type_t type;
209 
210  /**
211  * The FIB entry sourced by the tunnel for its destination prefix
212  */
214 
215  /**
216  * The tunnel is a child of the FIB entry for its desintion. This is
217  * so it receives updates when the forwarding information for that entry
218  * changes.
219  * The tunnels sibling index on the FIB entry's dependency list.
220  */
222 
223  /**
224  * an L2 tunnel always rquires an L2 midchain. cache here for DP.
225  */
227 
228  /**
229  * ERSPAN type 2 session ID, least significant 10 bits of u16
230  */
232 
233  /**
234  * GRE header sequence number (SN) used for ERSPAN type 2 header, must be
235  * bumped automically to be thread safe. As multiple GRE tunnels are created
236  * for the same fib-idx/DIP/SIP with different ERSPAN session number, they all
237  * share the same SN which is kept per FIB/DIP/SIP, as specified by RFC2890.
238  */
240 
241 
242  u32 dev_instance; /* Real device instance in tunnel vector */
243  u32 user_instance; /* Instance name being shown to user */
244 } gre_tunnel_t;
245 
246 typedef struct
247 {
250 } next_info_t;
251 
252 /**
253  * @brief GRE related global data
254  */
255 typedef struct
256 {
257  /**
258  * pool of tunnel instances
259  */
261 
262  /**
263  * GRE payload protocol registrations
264  */
266 
267  /**
268  * Hash tables mapping name/protocol to protocol info index.
269  */
270  uword *protocol_info_by_name, *protocol_info_by_protocol;
271 
272  /**
273  * Hash mapping to tunnels with ipv4 src/dst addr
274  */
276 
277  /**
278  * Hash mapping to tunnels with ipv6 src/dst addr
279  */
281 
282  /**
283  * Hash mapping tunnel src/dst addr and fib-idx to sequence number
284  */
286 
287  /**
288  * Mapping from sw_if_index to tunnel index
289  */
291 
292  /* Sparse vector mapping gre protocol in network byte order
293  to next index. */
295 
296  /* convenience */
299 
300  /* Record used instances */
302 } gre_main_t;
303 
304 /**
305  * @brief IPv4 and GRE header.
306  */
307 /* *INDENT-OFF* */
308 typedef CLIB_PACKED (struct {
309  ip4_header_t ip4;
310  gre_header_t gre;
311 }) ip4_and_gre_header_t;
312 /* *INDENT-ON* */
313 
314 /**
315  * @brief IPv6 and GRE header.
316  */
317 /* *INDENT-OFF* */
318 typedef CLIB_PACKED (struct {
319  ip6_header_t ip6;
320  gre_header_t gre;
321 }) ip6_and_gre_header_t;
322 /* *INDENT-ON* */
323 
326 {
327  uword *p = hash_get (em->protocol_info_by_protocol, protocol);
328  return p ? vec_elt_at_index (em->protocol_infos, p[0]) : 0;
329 }
330 
331 extern gre_main_t gre_main;
332 
334  u32 hw_if_index, u32 flags);
335 
336 extern void gre_tunnel_stack (adj_index_t ai);
337 extern void gre_update_adj (vnet_main_t * vnm,
338  u32 sw_if_index, adj_index_t ai);
339 
343 
348 
349 /* Parse gre protocol as 0xXXXX or protocol name.
350  In either host or network byte order. */
353 
354 /* Parse gre header. */
357 
358 void
360  u32 node_index, gre_tunnel_type_t tunnel_type);
361 
362 /* manually added to the interface output node in gre.c */
363 #define GRE_OUTPUT_NEXT_LOOKUP 1
364 
365 typedef struct
366 {
371  ip46_address_t src, dst;
375 
377  (vnet_gre_add_del_tunnel_args_t * a, u32 * sw_if_indexp);
378 
379 static inline void
382  u32 fib_index, u8 ttype, u16 session_id, gre_tunnel_key4_t * key)
383 {
384  key->gtk_src = src;
385  key->gtk_dst = dst;
386  key->gtk_fidx_ssid_type = ttype |
387  (fib_index << GTK_FIB_INDEX_SHIFT) | (session_id << GTK_SESSION_ID_SHIFT);
388 }
389 
390 static inline int
392  const gre_tunnel_key4_t * key2)
393 {
394  return ((key1->gtk_as_u64 == key2->gtk_as_u64) &&
395  (key1->gtk_fidx_ssid_type == key2->gtk_fidx_ssid_type));
396 }
397 
398 static inline void
400  const ip6_address_t * dst,
401  u32 fib_index, u8 ttype, u16 session_id, gre_tunnel_key6_t * key)
402 {
403  key->gtk_src = *src;
404  key->gtk_dst = *dst;
405  key->gtk_fidx_ssid_type = ttype |
406  (fib_index << GTK_FIB_INDEX_SHIFT) | (session_id << GTK_SESSION_ID_SHIFT);
407 }
408 
409 static inline int
410 gre_match_key6 (const gre_tunnel_key6_t * key1,
411  const gre_tunnel_key6_t * key2)
412 {
413  return ((key1->gtk_src.as_u64[0] == key2->gtk_src.as_u64[0]) &&
414  (key1->gtk_src.as_u64[1] == key2->gtk_src.as_u64[1]) &&
415  (key1->gtk_dst.as_u64[0] == key2->gtk_dst.as_u64[0]) &&
416  (key1->gtk_dst.as_u64[1] == key2->gtk_dst.as_u64[1]) &&
417  (key1->gtk_fidx_ssid_type == key2->gtk_fidx_ssid_type));
418 }
419 
420 static inline void
422 {
423  key->src = gt->tunnel_src;
424  key->dst = gt->tunnel_dst.fp_addr;
425  key->fib_index = gt->outer_fib_index;
426 }
427 
428 #endif /* included_gre_h */
429 
430 /*
431  * fd.io coding-style-patch-verification: ON
432  *
433  * Local Variables:
434  * eval: (c-set-style "gnu")
435  * End:
436  */
vnet_main_t * vnet_main
Definition: gre.h:298
uword * seq_num_by_key
Hash mapping tunnel src/dst addr and fib-idx to sequence number.
Definition: gre.h:285
vlib_node_registration_t gre_encap_node
(constructor) VLIB_REGISTER_NODE (gre_encap_node)
Definition: gre.c:511
uword( unformat_function_t)(unformat_input_t *input, va_list *args)
Definition: format.h:232
vlib_node_registration_t gre4_input_node
(constructor) VLIB_REGISTER_NODE (gre4_input_node)
Definition: node.c:575
uword * tunnel_by_key6
Hash mapping to tunnels with ipv6 src/dst addr.
Definition: gre.h:280
GRE related global data.
Definition: gre.h:255
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
vl_api_address_t src
Definition: vxlan_gbp.api:33
format_function_t format_gre_header_with_length
Definition: gre.h:342
ip4_address_t gtk_dst
Definition: gre.h:102
fib_node_index_t fib_entry_index
The FIB entry sourced by the tunnel for its destination prefix.
Definition: gre.h:213
u32 hw_if_index
Definition: gre.h:206
Key for a IPv6 GRE Tunnel We use a different type so that the V4 key hash is as small as possible...
Definition: gre.h:120
typedef CLIB_PACKED(struct{ip4_header_t ip4;gre_header_t gre;}) ip4_and_gre_header_t
IPv4 and GRE header.
a
Definition: bitmap.h:538
Transparent Ethernet Bridging - the tunnel is in L2 mode.
Definition: gre.h:50
uword * protocol_info_by_protocol
Definition: gre.h:270
u64 as_u64[2]
Definition: ip6_packet.h:51
unsigned long u64
Definition: types.h:89
#define GTK_SESSION_ID_SHIFT
Definition: gre.h:141
gre_protocol_t protocol
GRE protocol type in host byte order.
Definition: gre.h:77
char * name
Name (a c string).
Definition: gre.h:74
A GRE payload protocol registration.
Definition: gre.h:71
u32 outer_fib_index
The FIB in which the src.dst address are present.
Definition: gre.h:205
gre_tunnel_type_t_
The GRE tunnel type.
Definition: gre.h:41
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
u32 gtk_fidx_ssid_type
FIB table index, ERSPAN session ID and tunnel type in u32 bit fields:
Definition: gre.h:134
struct _vnet_device_class vnet_device_class_t
unsigned char u8
Definition: types.h:56
ip4_address_t gtk_src
Definition: gre.h:101
u32 * tunnel_index_by_sw_if_index
Mapping from sw_if_index to tunnel index.
Definition: gre.h:290
u64 gtk_as_u64
Definition: gre.h:104
u32 seq_num
Definition: gre.h:159
u32 sibling_index
The tunnel is a child of the FIB entry for its desintion.
Definition: gre.h:221
Hash key for GRE header seq number generation for ERSPAN encap.
Definition: gre.h:166
enum gre_tunnel_type_t_ gre_tunnel_type_t
The GRE tunnel type.
u32 sw_if_index
Definition: gre.h:207
u32 gtk_fidx_ssid_type
FIB table index, ERSPAN session ID and tunnel type in u32 bit fields:
Definition: gre.h:113
u32 dev_instance
Definition: gre.h:242
ip6_address_t gtk_dst
Definition: gre.h:126
#define always_inline
Definition: clib.h:94
void gre_tunnel_stack(adj_index_t ai)
gre_tunnel_stack
Definition: interface.c:129
gre_tunnel_type_t tunnel_type
GRE tunnel type.
Definition: gre.h:80
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Aggregrate type for a prefix.
Definition: fib_types.h:203
unsigned int u32
Definition: types.h:88
adj_index_t l2_adj_index
an L2 tunnel always rquires an L2 midchain.
Definition: gre.h:226
unformat_function_t unformat_gre_header
Definition: gre.h:355
ip46_address_t tunnel_src
The tunnel&#39;s source/local address.
Definition: gre.h:197
#define hash_get(h, key)
Definition: hash.h:249
uword * tunnel_by_key4
Hash mapping to tunnels with ipv4 src/dst addr.
Definition: gre.h:275
A representation of a GRE tunnel.
Definition: gre.h:176
uword * instance_used
Definition: gre.h:301
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:226
ip6_address_t gtk_src
Source and destination IP addresses.
Definition: gre.h:125
unformat_function_t unformat_gre_protocol_net_byte_order
Definition: gre.h:352
unsigned short u16
Definition: types.h:57
static int gre_match_key4(const gre_tunnel_key4_t *key1, const gre_tunnel_key4_t *key2)
Definition: gre.h:391
gre_tunnel_key4_t gtk_v4
Definition: gre.h:150
u32 node_index
Node which handles this type.
Definition: gre.h:83
void gre_register_input_protocol(vlib_main_t *vm, gre_protocol_t protocol, u32 node_index, gre_tunnel_type_t tunnel_type)
Definition: node.c:624
static int gre_match_key6(const gre_tunnel_key6_t *key1, const gre_tunnel_key6_t *key2)
Definition: gre.h:410
An node in the FIB graph.
Definition: fib_node.h:289
Key for a IPv4 GRE Tunnel.
Definition: gre.h:92
union gre_tunnel_key_t_ gre_tunnel_key_t
Union of the two possible key types.
gre_tunnel_type_t type
Definition: gre.h:208
vlib_main_t * vm
Definition: buffer.c:294
vl_api_address_t dst
Definition: vxlan_gbp.api:34
gre_sn_t * gre_sn
GRE header sequence number (SN) used for ERSPAN type 2 header, must be bumped automically to be threa...
Definition: gre.h:239
gre_tunnel_key6_t gtk_v6
Definition: gre.h:151
u8 tunnel_type
Definition: gre.h:249
format_function_t format_gre_protocol
Definition: gre.h:340
ip46_address_t src
Definition: gre.h:168
gre_protocol_t
Definition: packet.h:30
#define GTK_FIB_INDEX_SHIFT
Definition: gre.h:137
static void gre_mk_key4(ip4_address_t src, ip4_address_t dst, u32 fib_index, u8 ttype, u16 session_id, gre_tunnel_key4_t *key)
Definition: gre.h:380
ip46_address_t dst
Definition: gre.h:169
Used for GRE header seq number generation for ERSPAN encap.
Definition: gre.h:157
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
u32 next_index
Next index for this type.
Definition: gre.h:86
void gre_update_adj(vnet_main_t *vnm, u32 sw_if_index, adj_index_t ai)
Definition: gre.c:300
gre_tunnel_t * tunnels
pool of tunnel instances
Definition: gre.h:260
u32 fib_index
Definition: gre.h:170
gre_main_t gre_main
Definition: gre.c:22
next_info_t * next_by_protocol
Definition: gre.h:294
Union of the two possible key types.
Definition: gre.h:148
vnet_hw_interface_class_t gre_hw_interface_class
u32 user_instance
Definition: gre.h:243
static void gre_mk_key6(const ip6_address_t *src, const ip6_address_t *dst, u32 fib_index, u8 ttype, u16 session_id, gre_tunnel_key6_t *key)
Definition: gre.h:399
fib_node_t node
Linkage into the FIB object graph.
Definition: gre.h:186
struct _vlib_node_registration vlib_node_registration_t
vnet_device_class_t gre_device_class
clib_error_t * gre_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:485
int vnet_gre_add_del_tunnel(vnet_gre_add_del_tunnel_args_t *a, u32 *sw_if_indexp)
Definition: interface.c:462
ERSPAN type 2 - the tunnel is for port mirror SPAN output.
Definition: gre.h:57
struct _vnet_hw_interface_class vnet_hw_interface_class_t
L3 GRE (i.e.
Definition: gre.h:46
u64 uword
Definition: types.h:112
u32 ref_count
Definition: gre.h:160
unformat_function_t unformat_pg_gre_header
Definition: gre.h:356
u8 next_index
Definition: gre.h:248
gre_tunnel_key_t * key
The hash table&#39;s key stored in separate memory since the tunnel_t memory can realloc.
Definition: gre.h:192
vlib_node_registration_t gre6_input_node
(constructor) VLIB_REGISTER_NODE (gre6_input_node)
Definition: node.c:596
unformat_function_t unformat_gre_protocol_host_byte_order
Definition: gre.h:351
fib_prefix_t tunnel_dst
The tunnel&#39;s destination/remote address.
Definition: gre.h:201
static gre_protocol_info_t * gre_get_protocol_info(gre_main_t *em, gre_protocol_t protocol)
Definition: gre.h:325
gre_protocol_info_t * protocol_infos
GRE payload protocol registrations.
Definition: gre.h:265
vlib_main_t * vlib_main
Definition: gre.h:297
format_function_t format_gre_header
Definition: gre.h:341
u16 session_id
ERSPAN type 2 session ID, least significant 10 bits of u16.
Definition: gre.h:231
static void gre_mk_sn_key(const gre_tunnel_t *gt, gre_sn_key_t *key)
Definition: gre.h:421
ip46_address_t src
Definition: gre.h:371
gre_error_t
Definition: gre.h:30