blob: c17d22e9ee0dac963c5a90b662b272ae88eab97c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * gre_interface.c: gre interfaces
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#include <vnet/vnet.h>
19#include <vnet/pg/pg.h>
20#include <vnet/gre/gre.h>
Chris Luke27fe48f2016-04-28 13:44:38 -040021#include <vnet/ip/format.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/fib/ip4_fib.h>
Ciara Loftus7eac9162016-09-30 15:47:03 +010023#include <vnet/fib/ip6_fib.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024#include <vnet/adj/adj_midchain.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010025#include <vnet/adj/adj_nbr.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010026#include <vnet/mpls/mpls.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027
Neale Ranns177bbdc2016-11-15 09:46:51 +000028static const char *gre_tunnel_type_names[] = GRE_TUNNEL_TYPE_NAMES;
29
Neale Ranns0bfe5d82016-08-25 15:29:12 +010030static inline u64
Swarup Nayak9ff647a2017-11-27 10:27:43 +053031gre4_mk_key (const ip4_address_t * src,
32 const ip4_address_t * dst, u32 out_fib_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010033{
34 // FIXME. the fib index should be part of the key
Swarup Nayak9ff647a2017-11-27 10:27:43 +053035 return ((u64) src->as_u32 << 32 | (u64) dst->as_u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010036}
37
38static u8 *
Neale Ranns177bbdc2016-11-15 09:46:51 +000039format_gre_tunnel_type (u8 * s, va_list * args)
40{
41 gre_tunnel_type_t type = va_arg (*args, gre_tunnel_type_t);
42
Swarup Nayak9ff647a2017-11-27 10:27:43 +053043 return (format (s, "%s", gre_tunnel_type_names[type]));
Neale Ranns177bbdc2016-11-15 09:46:51 +000044}
45
46static u8 *
Neale Ranns0bfe5d82016-08-25 15:29:12 +010047format_gre_tunnel (u8 * s, va_list * args)
Chris Luke27fe48f2016-04-28 13:44:38 -040048{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053049 gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
50 gre_main_t *gm = &gre_main;
Ciara Loftus7eac9162016-09-30 15:47:03 +010051 u8 is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
Chris Luke27fe48f2016-04-28 13:44:38 -040052
Ciara Loftus7eac9162016-09-30 15:47:03 +010053 if (!is_ipv6)
Swarup Nayak9ff647a2017-11-27 10:27:43 +053054 s = format (s,
55 "[%d] %U (src) %U (dst) payload %U outer_fib_index %d",
56 t - gm->tunnels,
57 format_ip4_address, &t->tunnel_src.ip4,
58 format_ip4_address, &t->tunnel_dst.fp_addr.ip4,
59 format_gre_tunnel_type, t->type, t->outer_fib_index);
Ciara Loftus7eac9162016-09-30 15:47:03 +010060 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +053061 s = format (s,
62 "[%d] %U (src) %U (dst) payload %U outer_fib_index %d",
63 t - gm->tunnels,
64 format_ip6_address, &t->tunnel_src.ip6,
65 format_ip6_address, &t->tunnel_dst.fp_addr.ip6,
66 format_gre_tunnel_type, t->type, t->outer_fib_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010067
Chris Luke27fe48f2016-04-28 13:44:38 -040068 return s;
69}
70
Neale Ranns0bfe5d82016-08-25 15:29:12 +010071static gre_tunnel_t *
Swarup Nayak9ff647a2017-11-27 10:27:43 +053072gre_tunnel_db_find (const ip46_address_t * src,
73 const ip46_address_t * dst, u32 out_fib_index, u8 is_ipv6)
Neale Ranns0bfe5d82016-08-25 15:29:12 +010074{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053075 gre_main_t *gm = &gre_main;
76 uword *p;
Ciara Loftus7eac9162016-09-30 15:47:03 +010077 u64 key4, key6[4];
Neale Ranns0bfe5d82016-08-25 15:29:12 +010078
Ciara Loftus7eac9162016-09-30 15:47:03 +010079 if (!is_ipv6)
80 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +053081 key4 = gre4_mk_key (&src->ip4, &dst->ip4, out_fib_index);
Ciara Loftus7eac9162016-09-30 15:47:03 +010082 p = hash_get (gm->tunnel_by_key4, key4);
83 }
84 else
85 {
86 key6[0] = src->ip6.as_u64[0];
87 key6[1] = src->ip6.as_u64[1];
88 key6[2] = dst->ip6.as_u64[0];
89 key6[3] = dst->ip6.as_u64[1];
90 p = hash_get_mem (gm->tunnel_by_key6, key6);
91 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +010092
93 if (NULL == p)
94 return (NULL);
95
96 return (pool_elt_at_index (gm->tunnels, p[0]));
97}
98
99static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530100gre_tunnel_db_add (const gre_tunnel_t * t)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530102 gre_main_t *gm = &gre_main;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100103 u64 key4, key6[4], *key6_copy;
104 u8 is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100105
Ciara Loftus7eac9162016-09-30 15:47:03 +0100106 if (!is_ipv6)
107 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530108 key4 = gre4_mk_key (&t->tunnel_src.ip4, &t->tunnel_dst.fp_addr.ip4,
109 t->outer_fib_index);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100110 hash_set (gm->tunnel_by_key4, key4, t - gm->tunnels);
111 }
112 else
113 {
114 key6[0] = t->tunnel_src.ip6.as_u64[0];
115 key6[1] = t->tunnel_src.ip6.as_u64[1];
116 key6[2] = t->tunnel_dst.fp_addr.ip6.as_u64[0];
117 key6[3] = t->tunnel_dst.fp_addr.ip6.as_u64[1];
118 key6_copy = clib_mem_alloc (sizeof (key6));
119 clib_memcpy (key6_copy, key6, sizeof (key6));
120 hash_set_mem (gm->tunnel_by_key6, key6_copy, t - gm->tunnels);
121 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100122}
123
124static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530125gre_tunnel_db_remove (const gre_tunnel_t * t)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100126{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530127 gre_main_t *gm = &gre_main;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100128 u64 key4, key6[4];
129 u8 is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100130
Ciara Loftus7eac9162016-09-30 15:47:03 +0100131 if (!is_ipv6)
132 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530133 key4 = gre4_mk_key (&t->tunnel_src.ip4, &t->tunnel_dst.fp_addr.ip4,
134 t->outer_fib_index);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100135 hash_unset (gm->tunnel_by_key4, key4);
136 }
137 else
138 {
139 key6[0] = t->tunnel_src.ip6.as_u64[0];
140 key6[1] = t->tunnel_src.ip6.as_u64[1];
141 key6[2] = t->tunnel_dst.fp_addr.ip6.as_u64[0];
142 key6[3] = t->tunnel_dst.fp_addr.ip6.as_u64[1];
143 hash_unset_mem (gm->tunnel_by_key6, key6);
144 }
145
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100146}
147
148static gre_tunnel_t *
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530149gre_tunnel_from_fib_node (fib_node_t * node)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100150{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530151 ASSERT (FIB_NODE_TYPE_GRE_TUNNEL == node->fn_type);
152 return ((gre_tunnel_t *) (((char *) node) -
153 STRUCT_OFFSET_OF (gre_tunnel_t, node)));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100154}
155
Neale Ranns5e575b12016-10-03 09:40:25 +0100156/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100157 * gre_tunnel_stack
158 *
159 * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
160 */
Neale Ranns5e575b12016-10-03 09:40:25 +0100161void
Neale Rannsb80c5362016-10-08 13:03:40 +0100162gre_tunnel_stack (adj_index_t ai)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530164 gre_main_t *gm = &gre_main;
165 ip_adjacency_t *adj;
166 gre_tunnel_t *gt;
167 u32 sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100168
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530169 adj = adj_get (ai);
170 sw_if_index = adj->rewrite_header.sw_if_index;
Neale Rannsb80c5362016-10-08 13:03:40 +0100171
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530172 if ((vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index) ||
173 (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
174 return;
Neale Rannsb80c5362016-10-08 13:03:40 +0100175
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530176 gt = pool_elt_at_index (gm->tunnels,
177 gm->tunnel_index_by_sw_if_index[sw_if_index]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100178
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530179 /*
180 * find the adjacency that is contributed by the FIB entry
181 * that this tunnel resovles via, and use it as the next adj
182 * in the midchain
183 */
184 if (vnet_hw_interface_get_flags (vnet_get_main (),
185 gt->hw_if_index) &
186 VNET_HW_INTERFACE_FLAG_LINK_UP)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100187 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530188 adj_nbr_midchain_stack (ai,
189 fib_entry_contribute_ip_forwarding
190 (gt->fib_entry_index));
Neale Rannsb80c5362016-10-08 13:03:40 +0100191 }
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530192 else
Neale Rannsb80c5362016-10-08 13:03:40 +0100193 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530194 adj_nbr_midchain_unstack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100195 }
196}
197
198/**
199 * @brief Call back when restacking all adjacencies on a GRE interface
200 */
201static adj_walk_rc_t
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530202gre_adj_walk_cb (adj_index_t ai, void *ctx)
Neale Rannsb80c5362016-10-08 13:03:40 +0100203{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530204 gre_tunnel_stack (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100205
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530206 return (ADJ_WALK_RC_CONTINUE);
Neale Rannsb80c5362016-10-08 13:03:40 +0100207}
208
209static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530210gre_tunnel_restack (gre_tunnel_t * gt)
Neale Rannsb80c5362016-10-08 13:03:40 +0100211{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530212 fib_protocol_t proto;
Neale Rannsb80c5362016-10-08 13:03:40 +0100213
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530214 /*
215 * walk all the adjacencies on th GRE interface and restack them
216 */
217 FOR_EACH_FIB_IP_PROTOCOL (proto)
218 {
219 adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL);
220 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100221}
222
223/**
224 * Function definition to backwalk a FIB node
225 */
226static fib_node_back_walk_rc_t
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530227gre_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100228{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530229 gre_tunnel_restack (gre_tunnel_from_fib_node (node));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100230
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530231 return (FIB_NODE_BACK_WALK_CONTINUE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100232}
233
234/**
235 * Function definition to get a FIB node from its index
236 */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530237static fib_node_t *
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100238gre_tunnel_fib_node_get (fib_node_index_t index)
239{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530240 gre_tunnel_t *gt;
241 gre_main_t *gm;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100242
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530243 gm = &gre_main;
244 gt = pool_elt_at_index (gm->tunnels, index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100245
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530246 return (&gt->node);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100247}
248
249/**
250 * Function definition to inform the FIB node that its last lock has gone.
251 */
252static void
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530253gre_tunnel_last_lock_gone (fib_node_t * node)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100254{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530255 /*
256 * The MPLS GRE tunnel is a root of the graph. As such
257 * it never has children and thus is never locked.
258 */
259 ASSERT (0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100260}
261
262/*
263 * Virtual function table registered by MPLS GRE tunnels
264 * for participation in the FIB object graph.
265 */
266const static fib_node_vft_t gre_vft = {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530267 .fnv_get = gre_tunnel_fib_node_get,
268 .fnv_last_lock = gre_tunnel_last_lock_gone,
269 .fnv_back_walk = gre_tunnel_back_walk,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100270};
271
Ciara Loftus7eac9162016-09-30 15:47:03 +0100272static int
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530273vnet_gre_tunnel_add (vnet_gre_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530275 gre_main_t *gm = &gre_main;
276 vnet_main_t *vnm = gm->vnet_main;
277 ip4_main_t *im4 = &ip4_main;
278 ip6_main_t *im6 = &ip6_main;
279 gre_tunnel_t *t;
280 vnet_hw_interface_t *hi;
Chris Luke27fe48f2016-04-28 13:44:38 -0400281 u32 hw_if_index, sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 u32 outer_fib_index;
David Hothama8cd3092016-09-19 09:55:07 -0700283 u8 address[6];
284 clib_error_t *error;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100285 u8 is_ipv6 = a->is_ipv6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
Ciara Loftus7eac9162016-09-30 15:47:03 +0100287 if (!is_ipv6)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530288 outer_fib_index = ip4_fib_index_from_table_id (a->outer_fib_id);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100289 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530290 outer_fib_index = ip6_fib_index_from_table_id (a->outer_fib_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100292 if (~0 == outer_fib_index)
293 return VNET_API_ERROR_NO_SUCH_FIB;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530295 t = gre_tunnel_db_find (&a->src, &a->dst, a->outer_fib_id, a->is_ipv6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100297 if (NULL != t)
298 return VNET_API_ERROR_INVALID_VALUE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100300 pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
301 memset (t, 0, sizeof (*t));
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530302 fib_node_init (&t->node, FIB_NODE_TYPE_GRE_TUNNEL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
Neale Ranns177bbdc2016-11-15 09:46:51 +0000304 if (a->teb)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530305 t->type = GRE_TUNNEL_TYPE_TEB;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000306 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530307 t->type = GRE_TUNNEL_TYPE_L3;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000308
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530309 if (vec_len (gm->free_gre_tunnel_hw_if_indices[t->type]) > 0)
310 {
311 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
Neale Ranns177bbdc2016-11-15 09:46:51 +0000313 hw_if_index = gm->free_gre_tunnel_hw_if_indices[t->type]
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530314 [vec_len (gm->free_gre_tunnel_hw_if_indices[t->type]) - 1];
Neale Ranns177bbdc2016-11-15 09:46:51 +0000315 _vec_len (gm->free_gre_tunnel_hw_if_indices[t->type]) -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100317 hi = vnet_get_hw_interface (vnm, hw_if_index);
318 hi->dev_instance = t - gm->tunnels;
319 hi->hw_instance = hi->dev_instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100321 /* clear old stats of freed tunnel before reuse */
322 sw_if_index = hi->sw_if_index;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530323 vnet_interface_counter_lock (im);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100324 vlib_zero_combined_counter
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530325 (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX],
326 sw_if_index);
327 vlib_zero_combined_counter (&im->combined_sw_if_counters
328 [VNET_INTERFACE_COUNTER_RX], sw_if_index);
329 vlib_zero_simple_counter (&im->sw_if_counters
330 [VNET_INTERFACE_COUNTER_DROP], sw_if_index);
331 vnet_interface_counter_unlock (im);
Neale Ranns177bbdc2016-11-15 09:46:51 +0000332 if (GRE_TUNNEL_TYPE_TEB == t->type)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530333 {
334 t->l2_tx_arc = vlib_node_add_named_next (vlib_get_main (),
335 hi->tx_node_index,
336 "adj-l2-midchain");
337 }
338 }
339 else
340 {
Neale Ranns177bbdc2016-11-15 09:46:51 +0000341 if (GRE_TUNNEL_TYPE_TEB == t->type)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530342 {
343 /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
344 memset (address, 0, sizeof (address));
345 address[0] = 0xd0;
346 address[1] = 0x0b;
347 address[2] = 0xee;
348 address[3] = 0xd0;
349 address[4] = t - gm->tunnels;
David Hothama8cd3092016-09-19 09:55:07 -0700350
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530351 error = ethernet_register_interface (vnm,
352 gre_device_teb_class.index,
353 t - gm->tunnels, address,
354 &hw_if_index, 0);
David Hothama8cd3092016-09-19 09:55:07 -0700355
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530356 if (error)
357 {
358 clib_error_report (error);
359 return VNET_API_ERROR_INVALID_REGISTRATION;
360 }
361 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns5e575b12016-10-03 09:40:25 +0100362
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530363 t->l2_tx_arc = vlib_node_add_named_next (vlib_get_main (),
364 hi->tx_node_index,
365 "adj-l2-midchain");
366 }
367 else
368 {
369 hw_if_index = vnet_register_interface (vnm,
370 gre_device_class.index,
371 t - gm->tunnels,
372 gre_hw_interface_class.index,
373 t - gm->tunnels);
374 }
David Hothama8cd3092016-09-19 09:55:07 -0700375 hi = vnet_get_hw_interface (vnm, hw_if_index);
376 sw_if_index = hi->sw_if_index;
Chris Luke27fe48f2016-04-28 13:44:38 -0400377 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100379 t->hw_if_index = hw_if_index;
380 t->outer_fib_index = outer_fib_index;
381 t->sw_if_index = sw_if_index;
Neale Rannsad422ed2016-11-02 14:20:04 +0000382 t->l2_adj_index = ADJ_INDEX_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100384 vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
385 gm->tunnel_index_by_sw_if_index[sw_if_index] = t - gm->tunnels;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Ciara Loftus7eac9162016-09-30 15:47:03 +0100387 if (!is_ipv6)
388 {
389 vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530390 hi->min_packet_bytes =
391 64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100392 }
393 else
394 {
395 vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530396 hi->min_packet_bytes =
397 64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100398 }
Chris Luke71649002016-05-06 11:51:54 -0400399
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100400 hi->per_packet_overhead_bytes =
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530401 /* preamble */ 8 + /* inter frame gap */ 12;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100403 /* Standard default gre MTU. */
404 hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100406 /*
407 * source the FIB entry for the tunnel's destination
408 * and become a child thereof. The tunnel will then get poked
409 * when the forwarding for the entry updates, and the tunnel can
410 * re-stack accordingly
411 */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100412
413 clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
414 t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
415 t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
416 t->tunnel_dst.fp_addr = a->dst;
417
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530418 gre_tunnel_db_add (t);
Chris Luke27fe48f2016-04-28 13:44:38 -0400419
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100420 t->fib_entry_index =
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530421 fib_table_entry_special_add (outer_fib_index,
422 &t->tunnel_dst,
423 FIB_SOURCE_RR, FIB_ENTRY_FLAG_NONE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100424 t->sibling_index =
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530425 fib_entry_child_add (t->fib_entry_index,
426 FIB_NODE_TYPE_GRE_TUNNEL, t - gm->tunnels);
Chris Luke27fe48f2016-04-28 13:44:38 -0400427
Neale Ranns177bbdc2016-11-15 09:46:51 +0000428 if (GRE_TUNNEL_TYPE_TEB == t->type)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530429 {
430 t->l2_adj_index = adj_nbr_add_or_lock (t->tunnel_dst.fp_proto,
431 VNET_LINK_ETHERNET,
432 &zero_addr, sw_if_index);
433 gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
434 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400435
436 if (sw_if_indexp)
437 *sw_if_indexp = sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
439 return 0;
440}
441
Ciara Loftus7eac9162016-09-30 15:47:03 +0100442static int
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530443vnet_gre_tunnel_delete (vnet_gre_add_del_tunnel_args_t * a,
444 u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100445{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530446 gre_main_t *gm = &gre_main;
447 vnet_main_t *vnm = gm->vnet_main;
448 gre_tunnel_t *t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100449 u32 sw_if_index;
450
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530451 t = gre_tunnel_db_find (&a->src, &a->dst, a->outer_fib_id, a->is_ipv6);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100452
453 if (NULL == t)
454 return VNET_API_ERROR_NO_SUCH_ENTRY;
455
456 sw_if_index = t->sw_if_index;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530457 vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100458 /* make sure tunnel is removed from l2 bd or xconnect */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530459 set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0, 0, 0, 0);
Neale Ranns177bbdc2016-11-15 09:46:51 +0000460 vec_add1 (gm->free_gre_tunnel_hw_if_indices[t->type], t->hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100461 gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
Neale Ranns177bbdc2016-11-15 09:46:51 +0000462
463 if (GRE_TUNNEL_TYPE_TEB == t->type)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530464 adj_unlock (t->l2_adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100465
Neale Rannsad422ed2016-11-02 14:20:04 +0000466 if (t->l2_adj_index != ADJ_INDEX_INVALID)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530467 adj_unlock (t->l2_adj_index);
Neale Rannsad422ed2016-11-02 14:20:04 +0000468
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530469 fib_entry_child_remove (t->fib_entry_index, t->sibling_index);
470 fib_table_entry_delete_index (t->fib_entry_index, FIB_SOURCE_RR);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100471
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530472 gre_tunnel_db_remove (t);
473 fib_node_deinit (&t->node);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100474 pool_put (gm->tunnels, t);
475
476 if (sw_if_indexp)
477 *sw_if_indexp = sw_if_index;
478
479 return 0;
480}
481
482int
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530483vnet_gre_add_del_tunnel (vnet_gre_add_del_tunnel_args_t * a,
484 u32 * sw_if_indexp)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100485{
486 if (a->is_add)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530487 return (vnet_gre_tunnel_add (a, sw_if_indexp));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530489 return (vnet_gre_tunnel_delete (a, sw_if_indexp));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100490}
491
Neale Rannsb80c5362016-10-08 13:03:40 +0100492clib_error_t *
493gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100494{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530495 gre_main_t *gm = &gre_main;
496 vnet_hw_interface_t *hi;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100497 gre_tunnel_t *t;
Neale Rannsb80c5362016-10-08 13:03:40 +0100498 u32 ti;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100499
Neale Rannsb80c5362016-10-08 13:03:40 +0100500 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100501
Neale Rannsb80c5362016-10-08 13:03:40 +0100502 if (NULL == gm->tunnel_index_by_sw_if_index ||
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530503 hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
504 return (NULL);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100505
Neale Rannsb80c5362016-10-08 13:03:40 +0100506 ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100507
Neale Rannsb80c5362016-10-08 13:03:40 +0100508 if (~0 == ti)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530509 /* not one of ours */
510 return (NULL);
Neale Rannsb80c5362016-10-08 13:03:40 +0100511
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530512 t = pool_elt_at_index (gm->tunnels, ti);
Neale Rannsb80c5362016-10-08 13:03:40 +0100513
514 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530515 vnet_hw_interface_set_flags (vnm, hw_if_index,
516 VNET_HW_INTERFACE_FLAG_LINK_UP);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100517 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530518 vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100519
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530520 gre_tunnel_restack (t);
Neale Rannsb80c5362016-10-08 13:03:40 +0100521
522 return /* no error */ 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100523}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
525static clib_error_t *
526create_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530527 unformat_input_t * input,
528 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530530 unformat_input_t _line_input, *line_input = &_line_input;
531 vnet_gre_add_del_tunnel_args_t _a, *a = &_a;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100532 ip46_address_t src, dst;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533 u32 outer_fib_id = 0;
David Hothama8cd3092016-09-19 09:55:07 -0700534 u8 teb = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535 int rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 u32 num_m_args = 0;
Chris Luke27fe48f2016-04-28 13:44:38 -0400537 u8 is_add = 1;
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100538 u32 sw_if_index;
Billy McFalla9a20e72017-02-15 11:39:12 -0500539 clib_error_t *error = NULL;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100540 u8 ipv4_set = 0;
541 u8 ipv6_set = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
543 /* Get a line of input. */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530544 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 return 0;
546
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530547 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
548 {
549 if (unformat (line_input, "del"))
550 is_add = 0;
551 else
552 if (unformat (line_input, "src %U", unformat_ip4_address, &src.ip4))
553 {
554 num_m_args++;
555 ipv4_set = 1;
556 }
557 else
558 if (unformat (line_input, "dst %U", unformat_ip4_address, &dst.ip4))
559 {
560 num_m_args++;
561 ipv4_set = 1;
562 }
563 else
564 if (unformat (line_input, "src %U", unformat_ip6_address, &src.ip6))
565 {
566 num_m_args++;
567 ipv6_set = 1;
568 }
569 else
570 if (unformat (line_input, "dst %U", unformat_ip6_address, &dst.ip6))
571 {
572 num_m_args++;
573 ipv6_set = 1;
574 }
575 else if (unformat (line_input, "outer-fib-id %d", &outer_fib_id))
576 ;
577 else if (unformat (line_input, "teb"))
578 teb = 1;
579 else
580 {
581 error = clib_error_return (0, "unknown input `%U'",
582 format_unformat_error, line_input);
583 goto done;
584 }
585 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586
587 if (num_m_args < 2)
Billy McFalla9a20e72017-02-15 11:39:12 -0500588 {
589 error = clib_error_return (0, "mandatory argument(s) missing");
590 goto done;
591 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530593 if ((ipv4_set && memcmp (&src.ip4, &dst.ip4, sizeof (src.ip4)) == 0) ||
594 (ipv6_set && memcmp (&src.ip6, &dst.ip6, sizeof (src.ip6)) == 0))
Billy McFalla9a20e72017-02-15 11:39:12 -0500595 {
596 error = clib_error_return (0, "src and dst are identical");
597 goto done;
598 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Ciara Loftus7eac9162016-09-30 15:47:03 +0100600 if (ipv4_set && ipv6_set)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530601 return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
Ciara Loftus7eac9162016-09-30 15:47:03 +0100602
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530603 if ((ipv4_set && memcmp (&dst.ip4, &zero_addr.ip4, sizeof (dst.ip4)) == 0)
604 || (ipv6_set
605 && memcmp (&dst.ip6, &zero_addr.ip6, sizeof (dst.ip6)) == 0))
Ciara Loftus7eac9162016-09-30 15:47:03 +0100606 {
607 error = clib_error_return (0, "dst address cannot be zero");
608 goto done;
609 }
610
Chris Luke27fe48f2016-04-28 13:44:38 -0400611 memset (a, 0, sizeof (*a));
Hongjun Ni11bfc2f2016-07-22 18:19:19 +0800612 a->outer_fib_id = outer_fib_id;
David Hothama8cd3092016-09-19 09:55:07 -0700613 a->teb = teb;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100614 a->is_ipv6 = ipv6_set;
615 if (!ipv6_set)
616 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530617 clib_memcpy (&a->src.ip4, &src.ip4, sizeof (src.ip4));
618 clib_memcpy (&a->dst.ip4, &dst.ip4, sizeof (dst.ip4));
Ciara Loftus7eac9162016-09-30 15:47:03 +0100619 }
620 else
621 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530622 clib_memcpy (&a->src.ip6, &src.ip6, sizeof (src.ip6));
623 clib_memcpy (&a->dst.ip6, &dst.ip6, sizeof (dst.ip6));
Ciara Loftus7eac9162016-09-30 15:47:03 +0100624 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400625
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100626 if (is_add)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530627 rv = vnet_gre_tunnel_add (a, &sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100628 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530629 rv = vnet_gre_tunnel_delete (a, &sw_if_index);
Chris Luke27fe48f2016-04-28 13:44:38 -0400630
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530631 switch (rv)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 {
633 case 0:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530634 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
635 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636 break;
637 case VNET_API_ERROR_INVALID_VALUE:
Billy McFalla9a20e72017-02-15 11:39:12 -0500638 error = clib_error_return (0, "GRE tunnel already exists...");
639 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 case VNET_API_ERROR_NO_SUCH_FIB:
Billy McFalla9a20e72017-02-15 11:39:12 -0500641 error = clib_error_return (0, "outer fib ID %d doesn't exist\n",
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530642 outer_fib_id);
Billy McFalla9a20e72017-02-15 11:39:12 -0500643 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 default:
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530645 error =
646 clib_error_return (0, "vnet_gre_add_del_tunnel returned %d", rv);
Billy McFalla9a20e72017-02-15 11:39:12 -0500647 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648 }
649
Billy McFalla9a20e72017-02-15 11:39:12 -0500650done:
651 unformat_free (line_input);
652
653 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654}
655
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530656/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
658 .path = "create gre tunnel",
Chris Luke27fe48f2016-04-28 13:44:38 -0400659 .short_help = "create gre tunnel src <addr> dst <addr> "
David Hothama8cd3092016-09-19 09:55:07 -0700660 "[outer-fib-id <fib>] [teb] [del]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 .function = create_gre_tunnel_command_fn,
662};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530663/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664
Chris Luke27fe48f2016-04-28 13:44:38 -0400665static clib_error_t *
666show_gre_tunnel_command_fn (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530667 unformat_input_t * input,
668 vlib_cli_command_t * cmd)
Chris Luke27fe48f2016-04-28 13:44:38 -0400669{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530670 gre_main_t *gm = &gre_main;
671 gre_tunnel_t *t;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100672 u32 ti = ~0;
Chris Luke27fe48f2016-04-28 13:44:38 -0400673
674 if (pool_elts (gm->tunnels) == 0)
675 vlib_cli_output (vm, "No GRE tunnels configured...");
676
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100677 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
678 {
679 if (unformat (input, "%d", &ti))
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530680 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100681 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530682 break;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100683 }
684
685 if (~0 == ti)
686 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530687 /* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100688 pool_foreach (t, gm->tunnels,
689 ({
Neale Rannsb80c5362016-10-08 13:03:40 +0100690 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100691 }));
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530692 /* *INDENT-ON* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100693 }
694 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530695 {
696 t = pool_elt_at_index (gm->tunnels, ti);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100697
Neale Rannsb80c5362016-10-08 13:03:40 +0100698 vlib_cli_output (vm, "%U", format_gre_tunnel, t);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530699 }
Chris Luke27fe48f2016-04-28 13:44:38 -0400700
701 return 0;
702}
703
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530704/* *INDENT-OFF* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400705VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
706 .path = "show gre tunnel",
707 .function = show_gre_tunnel_command_fn,
708};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530709/* *INDENT-ON* */
Chris Luke27fe48f2016-04-28 13:44:38 -0400710
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711/* force inclusion from application's main.c */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530712clib_error_t *
713gre_interface_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530715 fib_node_register_type (FIB_NODE_TYPE_GRE_TUNNEL, &gre_vft);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100716
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717 return 0;
718}
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530719
720VLIB_INIT_FUNCTION (gre_interface_init);
721
722/*
723 * fd.io coding-style-patch-verification: ON
724 *
725 * Local Variables:
726 * eval: (c-set-style "gnu")
727 * End:
728 */