tunnel: Common types for IP tunnels
[vpp.git] / src / vnet / gre / interface.c
1 /*
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>
21 #include <vnet/ip/format.h>
22 #include <vnet/fib/ip4_fib.h>
23 #include <vnet/fib/ip6_fib.h>
24 #include <vnet/adj/adj_midchain.h>
25 #include <vnet/adj/adj_nbr.h>
26 #include <vnet/mpls/mpls.h>
27 #include <vnet/l2/l2_input.h>
28 #include <vnet/nhrp/nhrp.h>
29
30 u8 *
31 format_gre_tunnel_type (u8 * s, va_list * args)
32 {
33   gre_tunnel_type_t type = va_arg (*args, int);
34
35   switch (type)
36     {
37 #define _(n, v) case GRE_TUNNEL_TYPE_##n:       \
38       s = format (s, "%s", v);                  \
39       break;
40       foreach_gre_tunnel_type
41 #undef _
42     }
43
44   return (s);
45 }
46
47 static u8 *
48 format_gre_tunnel (u8 * s, va_list * args)
49 {
50   gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
51
52   s = format (s, "[%d] instance %d src %U dst %U fib-idx %d sw-if-idx %d ",
53               t->dev_instance, t->user_instance,
54               format_ip46_address, &t->tunnel_src, IP46_TYPE_ANY,
55               format_ip46_address, &t->tunnel_dst.fp_addr, IP46_TYPE_ANY,
56               t->outer_fib_index, t->sw_if_index);
57
58   s = format (s, "payload %U ", format_gre_tunnel_type, t->type);
59   s = format (s, "%U ", format_tunnel_mode, t->mode);
60
61   if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
62     s = format (s, "session %d ", t->session_id);
63
64   if (t->type != GRE_TUNNEL_TYPE_L3)
65     s = format (s, "l2-adj-idx %d ", t->l2_adj_index);
66
67   return s;
68 }
69
70 static gre_tunnel_t *
71 gre_tunnel_db_find (const vnet_gre_tunnel_add_del_args_t * a,
72                     u32 outer_fib_index, gre_tunnel_key_t * key)
73 {
74   gre_main_t *gm = &gre_main;
75   uword *p;
76
77   if (!a->is_ipv6)
78     {
79       gre_mk_key4 (a->src.ip4, a->dst.ip4, outer_fib_index,
80                    a->type, a->mode, a->session_id, &key->gtk_v4);
81       p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
82     }
83   else
84     {
85       gre_mk_key6 (&a->src.ip6, &a->dst.ip6, outer_fib_index,
86                    a->type, a->mode, a->session_id, &key->gtk_v6);
87       p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6);
88     }
89
90   if (NULL == p)
91     return (NULL);
92
93   return (pool_elt_at_index (gm->tunnels, p[0]));
94 }
95
96 static void
97 gre_tunnel_db_add (gre_tunnel_t * t, gre_tunnel_key_t * key)
98 {
99   gre_main_t *gm = &gre_main;
100
101   if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
102     {
103       hash_set_mem_alloc (&gm->tunnel_by_key6, &key->gtk_v6, t->dev_instance);
104     }
105   else
106     {
107       hash_set_mem_alloc (&gm->tunnel_by_key4, &key->gtk_v4, t->dev_instance);
108     }
109 }
110
111 static void
112 gre_tunnel_db_remove (gre_tunnel_t * t, gre_tunnel_key_t * key)
113 {
114   gre_main_t *gm = &gre_main;
115
116   if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
117     {
118       hash_unset_mem_free (&gm->tunnel_by_key6, &key->gtk_v6);
119     }
120   else
121     {
122       hash_unset_mem_free (&gm->tunnel_by_key4, &key->gtk_v4);
123     }
124 }
125
126 /**
127  * gre_tunnel_stack
128  *
129  * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
130  */
131 void
132 gre_tunnel_stack (adj_index_t ai)
133 {
134   gre_main_t *gm = &gre_main;
135   ip_adjacency_t *adj;
136   gre_tunnel_t *gt;
137   u32 sw_if_index;
138
139   adj = adj_get (ai);
140   sw_if_index = adj->rewrite_header.sw_if_index;
141
142   if ((vec_len (gm->tunnel_index_by_sw_if_index) <= sw_if_index) ||
143       (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
144     return;
145
146   gt = pool_elt_at_index (gm->tunnels,
147                           gm->tunnel_index_by_sw_if_index[sw_if_index]);
148
149   if ((vnet_hw_interface_get_flags (vnet_get_main (), gt->hw_if_index) &
150        VNET_HW_INTERFACE_FLAG_LINK_UP) == 0)
151     {
152       adj_midchain_delegate_unstack (ai);
153     }
154   else
155     {
156       adj_midchain_delegate_stack (ai, gt->outer_fib_index, &gt->tunnel_dst);
157     }
158 }
159
160 /**
161  * @brief Call back when restacking all adjacencies on a GRE interface
162  */
163 static adj_walk_rc_t
164 gre_adj_walk_cb (adj_index_t ai, void *ctx)
165 {
166   gre_tunnel_stack (ai);
167
168   return (ADJ_WALK_RC_CONTINUE);
169 }
170
171 static void
172 gre_tunnel_restack (gre_tunnel_t * gt)
173 {
174   fib_protocol_t proto;
175
176   /*
177    * walk all the adjacencies on th GRE interface and restack them
178    */
179   FOR_EACH_FIB_IP_PROTOCOL (proto)
180   {
181     adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL);
182   }
183 }
184
185 static void
186 gre_nhrp_mk_key (const gre_tunnel_t * t,
187                  const nhrp_entry_t * ne, gre_tunnel_key_t * key)
188 {
189   const fib_prefix_t *nh;
190
191   nh = nhrp_entry_get_nh (ne);
192
193   /* construct the key using mode P2P so it can be found in the DP */
194   if (FIB_PROTOCOL_IP4 == nh->fp_proto)
195     gre_mk_key4 (t->tunnel_src.ip4,
196                  nh->fp_addr.ip4,
197                  nhrp_entry_get_fib_index (ne),
198                  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v4);
199   else
200     gre_mk_key6 (&t->tunnel_src.ip6,
201                  &nh->fp_addr.ip6,
202                  nhrp_entry_get_fib_index (ne),
203                  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v6);
204 }
205
206 static void
207 gre_nhrp_entry_added (const nhrp_entry_t * ne)
208 {
209   gre_main_t *gm = &gre_main;
210   gre_tunnel_key_t key;
211   gre_tunnel_t *t;
212   u32 sw_if_index;
213   u32 t_idx;
214
215   sw_if_index = nhrp_entry_get_sw_if_index (ne);
216   if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
217     return;
218
219   t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
220
221   if (INDEX_INVALID == t_idx)
222     return;
223
224   t = pool_elt_at_index (gm->tunnels, t_idx);
225
226   gre_nhrp_mk_key (t, ne, &key);
227   gre_tunnel_db_add (t, &key);
228 }
229
230 static void
231 gre_nhrp_entry_deleted (const nhrp_entry_t * ne)
232 {
233   gre_main_t *gm = &gre_main;
234   gre_tunnel_key_t key;
235   gre_tunnel_t *t;
236   u32 sw_if_index;
237   u32 t_idx;
238
239   sw_if_index = nhrp_entry_get_sw_if_index (ne);
240   if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
241     return;
242
243   t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
244
245   if (INDEX_INVALID == t_idx)
246     return;
247
248   t = pool_elt_at_index (gm->tunnels, t_idx);
249
250   gre_nhrp_mk_key (t, ne, &key);
251   gre_tunnel_db_remove (t, &key);
252 }
253
254 static walk_rc_t
255 gre_tunnel_delete_nhrp_walk (index_t nei, void *ctx)
256 {
257   gre_tunnel_t *t = ctx;
258   gre_tunnel_key_t key;
259
260   gre_nhrp_mk_key (t, nhrp_entry_get (nei), &key);
261   gre_tunnel_db_remove (t, &key);
262
263   return (WALK_CONTINUE);
264 }
265
266 static walk_rc_t
267 gre_tunnel_add_nhrp_walk (index_t nei, void *ctx)
268 {
269   gre_tunnel_t *t = ctx;
270   gre_tunnel_key_t key;
271
272   gre_nhrp_mk_key (t, nhrp_entry_get (nei), &key);
273   gre_tunnel_db_add (t, &key);
274
275   return (WALK_CONTINUE);
276 }
277
278 static int
279 vnet_gre_tunnel_add (vnet_gre_tunnel_add_del_args_t * a,
280                      u32 outer_fib_index, u32 * sw_if_indexp)
281 {
282   gre_main_t *gm = &gre_main;
283   vnet_main_t *vnm = gm->vnet_main;
284   ip4_main_t *im4 = &ip4_main;
285   ip6_main_t *im6 = &ip6_main;
286   gre_tunnel_t *t;
287   vnet_hw_interface_t *hi;
288   u32 hw_if_index, sw_if_index;
289   clib_error_t *error;
290   u8 is_ipv6 = a->is_ipv6;
291   gre_tunnel_key_t key;
292
293   t = gre_tunnel_db_find (a, outer_fib_index, &key);
294   if (NULL != t)
295     return VNET_API_ERROR_IF_ALREADY_EXISTS;
296
297   pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
298   clib_memset (t, 0, sizeof (*t));
299
300   /* Reconcile the real dev_instance and a possible requested instance */
301   u32 t_idx = t - gm->tunnels;  /* tunnel index (or instance) */
302   u32 u_idx = a->instance;      /* user specified instance */
303   if (u_idx == ~0)
304     u_idx = t_idx;
305   if (hash_get (gm->instance_used, u_idx))
306     {
307       pool_put (gm->tunnels, t);
308       return VNET_API_ERROR_INSTANCE_IN_USE;
309     }
310   hash_set (gm->instance_used, u_idx, 1);
311
312   t->dev_instance = t_idx;      /* actual */
313   t->user_instance = u_idx;     /* name */
314
315   t->type = a->type;
316   t->mode = a->mode;
317   if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
318     t->session_id = a->session_id;
319
320   if (t->type == GRE_TUNNEL_TYPE_L3)
321     {
322       if (t->mode == TUNNEL_MODE_P2P)
323         hw_if_index =
324           vnet_register_interface (vnm, gre_device_class.index, t_idx,
325                                    gre_hw_interface_class.index, t_idx);
326       else
327         hw_if_index =
328           vnet_register_interface (vnm, gre_device_class.index, t_idx,
329                                    mgre_hw_interface_class.index, t_idx);
330     }
331   else
332     {
333       /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
334       u8 address[6] =
335         { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
336       error =
337         ethernet_register_interface (vnm, gre_device_class.index, t_idx,
338                                      address, &hw_if_index, 0);
339       if (error)
340         {
341           clib_error_report (error);
342           return VNET_API_ERROR_INVALID_REGISTRATION;
343         }
344     }
345
346   /* Set GRE tunnel interface output node (not used for L3 payload) */
347   vnet_set_interface_output_node (vnm, hw_if_index, gre_encap_node.index);
348
349   hi = vnet_get_hw_interface (vnm, hw_if_index);
350   sw_if_index = hi->sw_if_index;
351
352   t->hw_if_index = hw_if_index;
353   t->outer_fib_index = outer_fib_index;
354   t->sw_if_index = sw_if_index;
355   t->l2_adj_index = ADJ_INDEX_INVALID;
356
357   vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
358   gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx;
359
360   if (!is_ipv6)
361     {
362       vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
363       hi->min_packet_bytes =
364         64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
365     }
366   else
367     {
368       vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
369       hi->min_packet_bytes =
370         64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
371     }
372
373   /* Standard default gre MTU. */
374   vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
375
376   /*
377    * source the FIB entry for the tunnel's destination
378    * and become a child thereof. The tunnel will then get poked
379    * when the forwarding for the entry updates, and the tunnel can
380    * re-stack accordingly
381    */
382
383   clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
384   t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
385   t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
386   t->tunnel_dst.fp_addr = a->dst;
387
388   gre_tunnel_db_add (t, &key);
389
390   if (t->mode == TUNNEL_MODE_MP)
391     nhrp_walk_itf (t->sw_if_index, gre_tunnel_add_nhrp_walk, t);
392
393   if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
394     {
395       gre_sn_key_t skey;
396       gre_sn_t *gre_sn;
397
398       gre_mk_sn_key (t, &skey);
399       gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
400       if (gre_sn != NULL)
401         {
402           gre_sn->ref_count++;
403           t->gre_sn = gre_sn;
404         }
405       else
406         {
407           gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
408           gre_sn->seq_num = 0;
409           gre_sn->ref_count = 1;
410           t->gre_sn = gre_sn;
411           hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
412         }
413     }
414
415   if (t->type != GRE_TUNNEL_TYPE_L3)
416     {
417       t->l2_adj_index = adj_nbr_add_or_lock
418         (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index);
419       gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
420     }
421
422   if (sw_if_indexp)
423     *sw_if_indexp = sw_if_index;
424
425   /* register gre46-input nodes */
426   ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
427   ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
428
429   return 0;
430 }
431
432 static int
433 vnet_gre_tunnel_delete (vnet_gre_tunnel_add_del_args_t * a,
434                         u32 outer_fib_index, u32 * sw_if_indexp)
435 {
436   gre_main_t *gm = &gre_main;
437   vnet_main_t *vnm = gm->vnet_main;
438   gre_tunnel_t *t;
439   gre_tunnel_key_t key;
440   u32 sw_if_index;
441
442   t = gre_tunnel_db_find (a, outer_fib_index, &key);
443   if (NULL == t)
444     return VNET_API_ERROR_NO_SUCH_ENTRY;
445
446   if (t->mode == TUNNEL_MODE_MP)
447     nhrp_walk_itf (t->sw_if_index, gre_tunnel_delete_nhrp_walk, t);
448
449   sw_if_index = t->sw_if_index;
450   vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
451
452   /* make sure tunnel is removed from l2 bd or xconnect */
453   set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
454                    L2_BD_PORT_TYPE_NORMAL, 0, 0);
455   gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
456
457   if (t->type == GRE_TUNNEL_TYPE_L3)
458     vnet_delete_hw_interface (vnm, t->hw_if_index);
459   else
460     ethernet_delete_interface (vnm, t->hw_if_index);
461
462   if (t->l2_adj_index != ADJ_INDEX_INVALID)
463     {
464       adj_midchain_delegate_unstack (t->l2_adj_index);
465       adj_unlock (t->l2_adj_index);
466     }
467
468   ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
469   if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
470     {
471       gre_sn_key_t skey;
472       gre_mk_sn_key (t, &skey);
473       hash_unset_mem_free (&gm->seq_num_by_key, &skey);
474       clib_mem_free (t->gre_sn);
475     }
476
477   hash_unset (gm->instance_used, t->user_instance);
478   gre_tunnel_db_remove (t, &key);
479   pool_put (gm->tunnels, t);
480
481   if (sw_if_indexp)
482     *sw_if_indexp = sw_if_index;
483
484   return 0;
485 }
486
487 int
488 vnet_gre_tunnel_add_del (vnet_gre_tunnel_add_del_args_t * a,
489                          u32 * sw_if_indexp)
490 {
491   u32 outer_fib_index;
492
493   if (!a->is_ipv6)
494     outer_fib_index = ip4_fib_index_from_table_id (a->outer_table_id);
495   else
496     outer_fib_index = ip6_fib_index_from_table_id (a->outer_table_id);
497
498   if (~0 == outer_fib_index)
499     return VNET_API_ERROR_NO_SUCH_FIB;
500
501   if (a->session_id > GTK_SESSION_ID_MAX)
502     return VNET_API_ERROR_INVALID_SESSION_ID;
503
504   if (a->mode == TUNNEL_MODE_MP && !ip46_address_is_zero (&a->dst))
505     return (VNET_API_ERROR_INVALID_DST_ADDRESS);
506
507   if (a->is_add)
508     return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
509   else
510     return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
511 }
512
513 clib_error_t *
514 gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
515 {
516   gre_main_t *gm = &gre_main;
517   vnet_hw_interface_t *hi;
518   gre_tunnel_t *t;
519   u32 ti;
520
521   hi = vnet_get_hw_interface (vnm, hw_if_index);
522
523   if (NULL == gm->tunnel_index_by_sw_if_index ||
524       hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
525     return (NULL);
526
527   ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
528
529   if (~0 == ti)
530     /* not one of ours */
531     return (NULL);
532
533   t = pool_elt_at_index (gm->tunnels, ti);
534
535   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
536     vnet_hw_interface_set_flags (vnm, hw_if_index,
537                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
538   else
539     vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
540
541   gre_tunnel_restack (t);
542
543   return /* no error */ 0;
544 }
545
546 static clib_error_t *
547 create_gre_tunnel_command_fn (vlib_main_t * vm,
548                               unformat_input_t * input,
549                               vlib_cli_command_t * cmd)
550 {
551   unformat_input_t _line_input, *line_input = &_line_input;
552   vnet_gre_tunnel_add_del_args_t _a, *a = &_a;
553   ip46_address_t src = ip46_address_initializer, dst =
554     ip46_address_initializer;
555   u32 instance = ~0;
556   u32 outer_table_id = 0;
557   gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
558   tunnel_mode_t t_mode = TUNNEL_MODE_P2P;
559   u32 session_id = 0;
560   int rv;
561   u8 is_add = 1;
562   u32 sw_if_index;
563   clib_error_t *error = NULL;
564
565   /* Get a line of input. */
566   if (!unformat_user (input, unformat_line_input, line_input))
567     return 0;
568
569   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
570     {
571       if (unformat (line_input, "del"))
572         is_add = 0;
573       else if (unformat (line_input, "instance %d", &instance))
574         ;
575       else if (unformat (line_input, "src %U", unformat_ip46_address, &src))
576         ;
577       else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst))
578         ;
579       else if (unformat (line_input, "outer-table-id %d", &outer_table_id))
580         ;
581       else if (unformat (line_input, "multipoint"))
582         t_mode = TUNNEL_MODE_MP;
583       else if (unformat (line_input, "teb"))
584         t_type = GRE_TUNNEL_TYPE_TEB;
585       else if (unformat (line_input, "erspan %d", &session_id))
586         t_type = GRE_TUNNEL_TYPE_ERSPAN;
587       else
588         {
589           error = clib_error_return (0, "unknown input `%U'",
590                                      format_unformat_error, line_input);
591           goto done;
592         }
593     }
594
595   if (ip46_address_is_equal (&src, &dst))
596     {
597       error = clib_error_return (0, "src and dst are identical");
598       goto done;
599     }
600
601   if (t_mode != TUNNEL_MODE_MP && ip46_address_is_zero (&dst))
602     {
603       error = clib_error_return (0, "destination address not specified");
604       goto done;
605     }
606
607   if (ip46_address_is_zero (&src))
608     {
609       error = clib_error_return (0, "source address not specified");
610       goto done;
611     }
612
613   if (ip46_address_is_ip4 (&src) != ip46_address_is_ip4 (&dst))
614     {
615       error =
616         clib_error_return (0, "src and dst address must be the same AF");
617       goto done;
618     }
619
620   clib_memset (a, 0, sizeof (*a));
621   a->is_add = is_add;
622   a->outer_table_id = outer_table_id;
623   a->type = t_type;
624   a->mode = t_mode;
625   a->session_id = session_id;
626   a->is_ipv6 = !ip46_address_is_ip4 (&src);
627   a->instance = instance;
628   clib_memcpy (&a->src, &src, sizeof (a->src));
629   clib_memcpy (&a->dst, &dst, sizeof (a->dst));
630
631   rv = vnet_gre_tunnel_add_del (a, &sw_if_index);
632
633   switch (rv)
634     {
635     case 0:
636       vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
637                        vnet_get_main (), sw_if_index);
638       break;
639     case VNET_API_ERROR_IF_ALREADY_EXISTS:
640       error = clib_error_return (0, "GRE tunnel already exists...");
641       goto done;
642     case VNET_API_ERROR_NO_SUCH_FIB:
643       error = clib_error_return (0, "outer table ID %d doesn't exist\n",
644                                  outer_table_id);
645       goto done;
646     case VNET_API_ERROR_NO_SUCH_ENTRY:
647       error = clib_error_return (0, "GRE tunnel doesn't exist");
648       goto done;
649     case VNET_API_ERROR_INVALID_SESSION_ID:
650       error = clib_error_return (0, "session ID %d out of range\n",
651                                  session_id);
652       goto done;
653     case VNET_API_ERROR_INSTANCE_IN_USE:
654       error = clib_error_return (0, "Instance is in use");
655       goto done;
656     default:
657       error =
658         clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv);
659       goto done;
660     }
661
662 done:
663   unformat_free (line_input);
664
665   return error;
666 }
667
668 /* *INDENT-OFF* */
669 VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
670   .path = "create gre tunnel",
671   .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
672                 "[outer-fib-id <fib>] [teb | erspan <session-id>] [del]",
673   .function = create_gre_tunnel_command_fn,
674 };
675 /* *INDENT-ON* */
676
677 static clib_error_t *
678 show_gre_tunnel_command_fn (vlib_main_t * vm,
679                             unformat_input_t * input,
680                             vlib_cli_command_t * cmd)
681 {
682   gre_main_t *gm = &gre_main;
683   gre_tunnel_t *t;
684   u32 ti = ~0;
685
686   if (pool_elts (gm->tunnels) == 0)
687     vlib_cli_output (vm, "No GRE tunnels configured...");
688
689   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
690     {
691       if (unformat (input, "%d", &ti))
692         ;
693       else
694         break;
695     }
696
697   if (~0 == ti)
698     {
699       /* *INDENT-OFF* */
700       pool_foreach (t, gm->tunnels,
701       ({
702           vlib_cli_output (vm, "%U", format_gre_tunnel, t);
703       }));
704       /* *INDENT-ON* */
705     }
706   else
707     {
708       t = pool_elt_at_index (gm->tunnels, ti);
709
710       vlib_cli_output (vm, "%U", format_gre_tunnel, t);
711     }
712
713   return 0;
714 }
715
716 /* *INDENT-OFF* */
717 VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
718     .path = "show gre tunnel",
719     .function = show_gre_tunnel_command_fn,
720 };
721 /* *INDENT-ON* */
722
723 const static nhrp_vft_t gre_nhrp_vft = {
724   .nv_added = gre_nhrp_entry_added,
725   .nv_deleted = gre_nhrp_entry_deleted,
726 };
727
728 /* force inclusion from application's main.c */
729 clib_error_t *
730 gre_interface_init (vlib_main_t * vm)
731 {
732   nhrp_register (&gre_nhrp_vft);
733
734   return (NULL);
735 }
736
737 VLIB_INIT_FUNCTION (gre_interface_init);
738
739 /*
740  * fd.io coding-style-patch-verification: ON
741  *
742  * Local Variables:
743  * eval: (c-set-style "gnu")
744  * End:
745  */