GRE tunnel key includes the FIB table
[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
28 static const char *gre_tunnel_type_names[] = GRE_TUNNEL_TYPE_NAMES;
29
30 static u8 *
31 format_gre_tunnel_type (u8 * s, va_list * args)
32 {
33   gre_tunnel_type_t type = va_arg (*args, gre_tunnel_type_t);
34
35   return (format (s, "%s", gre_tunnel_type_names[type]));
36 }
37
38 static u8 *
39 format_gre_tunnel (u8 * s, va_list * args)
40 {
41   gre_tunnel_t *t = va_arg (*args, gre_tunnel_t *);
42   gre_main_t *gm = &gre_main;
43   u8 is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
44
45   if (!is_ipv6)
46     s = format (s,
47                 "[%d] %U (src) %U (dst) payload %U outer_fib_index %d",
48                 t - gm->tunnels,
49                 format_ip4_address, &t->tunnel_src.ip4,
50                 format_ip4_address, &t->tunnel_dst.fp_addr.ip4,
51                 format_gre_tunnel_type, t->type, t->outer_fib_index);
52   else
53     s = format (s,
54                 "[%d] %U (src) %U (dst) payload %U outer_fib_index %d",
55                 t - gm->tunnels,
56                 format_ip6_address, &t->tunnel_src.ip6,
57                 format_ip6_address, &t->tunnel_dst.fp_addr.ip6,
58                 format_gre_tunnel_type, t->type, t->outer_fib_index);
59
60   return s;
61 }
62
63 static gre_tunnel_t *
64 gre_tunnel_db_find (const ip46_address_t * src,
65                     const ip46_address_t * dst,
66                     u32 out_fib_index, u8 is_ipv6, gre_tunnel_key_t * key)
67 {
68   gre_main_t *gm = &gre_main;
69   uword *p;
70
71   if (!is_ipv6)
72     {
73       gre_mk_key4 (&src->ip4, &dst->ip4, out_fib_index, &key->gtk_v4);
74       p = hash_get_mem (gm->tunnel_by_key4, &key->gtk_v4);
75     }
76   else
77     {
78       gre_mk_key6 (&src->ip6, &dst->ip6, out_fib_index, &key->gtk_v6);
79       p = hash_get_mem (gm->tunnel_by_key6, &key->gtk_v6);
80     }
81
82   if (NULL == p)
83     return (NULL);
84
85   return (pool_elt_at_index (gm->tunnels, p[0]));
86 }
87
88 static void
89 gre_tunnel_db_add (gre_tunnel_t * t, gre_tunnel_key_t * key)
90 {
91   gre_main_t *gm = &gre_main;
92
93   t->key = clib_mem_alloc (sizeof (*t->key));
94   clib_memcpy (t->key, key, sizeof (*key));
95
96   if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
97     {
98       hash_set_mem (gm->tunnel_by_key6, &t->key->gtk_v6, t - gm->tunnels);
99     }
100   else
101     {
102       hash_set_mem (gm->tunnel_by_key4, &t->key->gtk_v4, t - gm->tunnels);
103     }
104 }
105
106 static void
107 gre_tunnel_db_remove (gre_tunnel_t * t)
108 {
109   gre_main_t *gm = &gre_main;
110
111   if (t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6)
112     {
113       hash_unset_mem (gm->tunnel_by_key6, &t->key->gtk_v6);
114     }
115   else
116     {
117       hash_unset_mem (gm->tunnel_by_key4, &t->key->gtk_v4);
118     }
119
120   clib_mem_free (t->key);
121   t->key = NULL;
122 }
123
124 static gre_tunnel_t *
125 gre_tunnel_from_fib_node (fib_node_t * node)
126 {
127   ASSERT (FIB_NODE_TYPE_GRE_TUNNEL == node->fn_type);
128   return ((gre_tunnel_t *) (((char *) node) -
129                             STRUCT_OFFSET_OF (gre_tunnel_t, node)));
130 }
131
132 /**
133  * gre_tunnel_stack
134  *
135  * 'stack' (resolve the recursion for) the tunnel's midchain adjacency
136  */
137 void
138 gre_tunnel_stack (adj_index_t ai)
139 {
140   gre_main_t *gm = &gre_main;
141   ip_adjacency_t *adj;
142   gre_tunnel_t *gt;
143   u32 sw_if_index;
144
145   adj = adj_get (ai);
146   sw_if_index = adj->rewrite_header.sw_if_index;
147
148   if ((vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index) ||
149       (~0 == gm->tunnel_index_by_sw_if_index[sw_if_index]))
150     return;
151
152   gt = pool_elt_at_index (gm->tunnels,
153                           gm->tunnel_index_by_sw_if_index[sw_if_index]);
154
155   /*
156    * find the adjacency that is contributed by the FIB entry
157    * that this tunnel resovles via, and use it as the next adj
158    * in the midchain
159    */
160   if (vnet_hw_interface_get_flags (vnet_get_main (),
161                                    gt->hw_if_index) &
162       VNET_HW_INTERFACE_FLAG_LINK_UP)
163     {
164       adj_nbr_midchain_stack (ai,
165                               fib_entry_contribute_ip_forwarding
166                               (gt->fib_entry_index));
167     }
168   else
169     {
170       adj_nbr_midchain_unstack (ai);
171     }
172 }
173
174 /**
175  * @brief Call back when restacking all adjacencies on a GRE interface
176  */
177 static adj_walk_rc_t
178 gre_adj_walk_cb (adj_index_t ai, void *ctx)
179 {
180   gre_tunnel_stack (ai);
181
182   return (ADJ_WALK_RC_CONTINUE);
183 }
184
185 static void
186 gre_tunnel_restack (gre_tunnel_t * gt)
187 {
188   fib_protocol_t proto;
189
190   /*
191    * walk all the adjacencies on th GRE interface and restack them
192    */
193   FOR_EACH_FIB_IP_PROTOCOL (proto)
194   {
195     adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL);
196   }
197 }
198
199 /**
200  * Function definition to backwalk a FIB node
201  */
202 static fib_node_back_walk_rc_t
203 gre_tunnel_back_walk (fib_node_t * node, fib_node_back_walk_ctx_t * ctx)
204 {
205   gre_tunnel_restack (gre_tunnel_from_fib_node (node));
206
207   return (FIB_NODE_BACK_WALK_CONTINUE);
208 }
209
210 /**
211  * Function definition to get a FIB node from its index
212  */
213 static fib_node_t *
214 gre_tunnel_fib_node_get (fib_node_index_t index)
215 {
216   gre_tunnel_t *gt;
217   gre_main_t *gm;
218
219   gm = &gre_main;
220   gt = pool_elt_at_index (gm->tunnels, index);
221
222   return (&gt->node);
223 }
224
225 /**
226  * Function definition to inform the FIB node that its last lock has gone.
227  */
228 static void
229 gre_tunnel_last_lock_gone (fib_node_t * node)
230 {
231   /*
232    * The MPLS GRE tunnel is a root of the graph. As such
233    * it never has children and thus is never locked.
234    */
235   ASSERT (0);
236 }
237
238 /*
239  * Virtual function table registered by MPLS GRE tunnels
240  * for participation in the FIB object graph.
241  */
242 const static fib_node_vft_t gre_vft = {
243   .fnv_get = gre_tunnel_fib_node_get,
244   .fnv_last_lock = gre_tunnel_last_lock_gone,
245   .fnv_back_walk = gre_tunnel_back_walk,
246 };
247
248 static int
249 vnet_gre_tunnel_add (vnet_gre_add_del_tunnel_args_t * a, u32 * sw_if_indexp)
250 {
251   gre_main_t *gm = &gre_main;
252   vnet_main_t *vnm = gm->vnet_main;
253   ip4_main_t *im4 = &ip4_main;
254   ip6_main_t *im6 = &ip6_main;
255   gre_tunnel_t *t;
256   vnet_hw_interface_t *hi;
257   u32 hw_if_index, sw_if_index;
258   u32 outer_fib_index;
259   u8 address[6];
260   clib_error_t *error;
261   u8 is_ipv6 = a->is_ipv6;
262   gre_tunnel_key_t key;
263
264   if (!is_ipv6)
265     outer_fib_index = ip4_fib_index_from_table_id (a->outer_fib_id);
266   else
267     outer_fib_index = ip6_fib_index_from_table_id (a->outer_fib_id);
268
269   if (~0 == outer_fib_index)
270     return VNET_API_ERROR_NO_SUCH_FIB;
271
272   t =
273     gre_tunnel_db_find (&a->src, &a->dst, a->outer_fib_id, a->is_ipv6, &key);
274
275   if (NULL != t)
276     return VNET_API_ERROR_INVALID_VALUE;
277
278   pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
279   memset (t, 0, sizeof (*t));
280   fib_node_init (&t->node, FIB_NODE_TYPE_GRE_TUNNEL);
281
282   if (a->teb)
283     t->type = GRE_TUNNEL_TYPE_TEB;
284   else
285     t->type = GRE_TUNNEL_TYPE_L3;
286
287   if (vec_len (gm->free_gre_tunnel_hw_if_indices[t->type]) > 0)
288     {
289       vnet_interface_main_t *im = &vnm->interface_main;
290
291       hw_if_index = gm->free_gre_tunnel_hw_if_indices[t->type]
292         [vec_len (gm->free_gre_tunnel_hw_if_indices[t->type]) - 1];
293       _vec_len (gm->free_gre_tunnel_hw_if_indices[t->type]) -= 1;
294
295       hi = vnet_get_hw_interface (vnm, hw_if_index);
296       hi->dev_instance = t - gm->tunnels;
297       hi->hw_instance = hi->dev_instance;
298
299       /* clear old stats of freed tunnel before reuse */
300       sw_if_index = hi->sw_if_index;
301       vnet_interface_counter_lock (im);
302       vlib_zero_combined_counter
303         (&im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_TX],
304          sw_if_index);
305       vlib_zero_combined_counter (&im->combined_sw_if_counters
306                                   [VNET_INTERFACE_COUNTER_RX], sw_if_index);
307       vlib_zero_simple_counter (&im->sw_if_counters
308                                 [VNET_INTERFACE_COUNTER_DROP], sw_if_index);
309       vnet_interface_counter_unlock (im);
310       if (GRE_TUNNEL_TYPE_TEB == t->type)
311         {
312           t->l2_tx_arc = vlib_node_add_named_next (vlib_get_main (),
313                                                    hi->tx_node_index,
314                                                    "adj-l2-midchain");
315         }
316     }
317   else
318     {
319       if (GRE_TUNNEL_TYPE_TEB == t->type)
320         {
321           /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
322           memset (address, 0, sizeof (address));
323           address[0] = 0xd0;
324           address[1] = 0x0b;
325           address[2] = 0xee;
326           address[3] = 0xd0;
327           address[4] = t - gm->tunnels;
328
329           error = ethernet_register_interface (vnm,
330                                                gre_device_teb_class.index,
331                                                t - gm->tunnels, address,
332                                                &hw_if_index, 0);
333
334           if (error)
335             {
336               clib_error_report (error);
337               return VNET_API_ERROR_INVALID_REGISTRATION;
338             }
339           hi = vnet_get_hw_interface (vnm, hw_if_index);
340
341           t->l2_tx_arc = vlib_node_add_named_next (vlib_get_main (),
342                                                    hi->tx_node_index,
343                                                    "adj-l2-midchain");
344         }
345       else
346         {
347           hw_if_index = vnet_register_interface (vnm,
348                                                  gre_device_class.index,
349                                                  t - gm->tunnels,
350                                                  gre_hw_interface_class.index,
351                                                  t - gm->tunnels);
352         }
353       hi = vnet_get_hw_interface (vnm, hw_if_index);
354       sw_if_index = hi->sw_if_index;
355     }
356
357   t->hw_if_index = hw_if_index;
358   t->outer_fib_index = outer_fib_index;
359   t->sw_if_index = sw_if_index;
360   t->l2_adj_index = ADJ_INDEX_INVALID;
361
362   vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
363   gm->tunnel_index_by_sw_if_index[sw_if_index] = t - gm->tunnels;
364
365   if (!is_ipv6)
366     {
367       vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
368       hi->min_packet_bytes =
369         64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
370     }
371   else
372     {
373       vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
374       hi->min_packet_bytes =
375         64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
376     }
377
378   hi->per_packet_overhead_bytes =
379     /* preamble */ 8 + /* inter frame gap */ 12;
380
381   /* Standard default gre MTU. */
382   hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
383
384   /*
385    * source the FIB entry for the tunnel's destination
386    * and become a child thereof. The tunnel will then get poked
387    * when the forwarding for the entry updates, and the tunnel can
388    * re-stack accordingly
389    */
390
391   clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
392   t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
393   t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
394   t->tunnel_dst.fp_addr = a->dst;
395
396   gre_tunnel_db_add (t, &key);
397
398   t->fib_entry_index =
399     fib_table_entry_special_add (outer_fib_index,
400                                  &t->tunnel_dst,
401                                  FIB_SOURCE_RR, FIB_ENTRY_FLAG_NONE);
402   t->sibling_index =
403     fib_entry_child_add (t->fib_entry_index,
404                          FIB_NODE_TYPE_GRE_TUNNEL, t - gm->tunnels);
405
406   if (GRE_TUNNEL_TYPE_TEB == t->type)
407     {
408       t->l2_adj_index = adj_nbr_add_or_lock (t->tunnel_dst.fp_proto,
409                                              VNET_LINK_ETHERNET,
410                                              &zero_addr, sw_if_index);
411       gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
412     }
413
414   if (sw_if_indexp)
415     *sw_if_indexp = sw_if_index;
416
417   return 0;
418 }
419
420 static int
421 vnet_gre_tunnel_delete (vnet_gre_add_del_tunnel_args_t * a,
422                         u32 * sw_if_indexp)
423 {
424   gre_main_t *gm = &gre_main;
425   vnet_main_t *vnm = gm->vnet_main;
426   gre_tunnel_t *t;
427   gre_tunnel_key_t key;
428   u32 sw_if_index;
429
430   t =
431     gre_tunnel_db_find (&a->src, &a->dst, a->outer_fib_id, a->is_ipv6, &key);
432
433   if (NULL == t)
434     return VNET_API_ERROR_NO_SUCH_ENTRY;
435
436   sw_if_index = t->sw_if_index;
437   vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
438   /* make sure tunnel is removed from l2 bd or xconnect */
439   set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0, 0, 0, 0);
440   vec_add1 (gm->free_gre_tunnel_hw_if_indices[t->type], t->hw_if_index);
441   gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
442
443   if (GRE_TUNNEL_TYPE_TEB == t->type)
444     adj_unlock (t->l2_adj_index);
445
446   if (t->l2_adj_index != ADJ_INDEX_INVALID)
447     adj_unlock (t->l2_adj_index);
448
449   fib_entry_child_remove (t->fib_entry_index, t->sibling_index);
450   fib_table_entry_delete_index (t->fib_entry_index, FIB_SOURCE_RR);
451
452   gre_tunnel_db_remove (t);
453   fib_node_deinit (&t->node);
454   pool_put (gm->tunnels, t);
455
456   if (sw_if_indexp)
457     *sw_if_indexp = sw_if_index;
458
459   return 0;
460 }
461
462 int
463 vnet_gre_add_del_tunnel (vnet_gre_add_del_tunnel_args_t * a,
464                          u32 * sw_if_indexp)
465 {
466   if (a->is_add)
467     return (vnet_gre_tunnel_add (a, sw_if_indexp));
468   else
469     return (vnet_gre_tunnel_delete (a, sw_if_indexp));
470 }
471
472 clib_error_t *
473 gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
474 {
475   gre_main_t *gm = &gre_main;
476   vnet_hw_interface_t *hi;
477   gre_tunnel_t *t;
478   u32 ti;
479
480   hi = vnet_get_hw_interface (vnm, hw_if_index);
481
482   if (NULL == gm->tunnel_index_by_sw_if_index ||
483       hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
484     return (NULL);
485
486   ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
487
488   if (~0 == ti)
489     /* not one of ours */
490     return (NULL);
491
492   t = pool_elt_at_index (gm->tunnels, ti);
493
494   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
495     vnet_hw_interface_set_flags (vnm, hw_if_index,
496                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
497   else
498     vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
499
500   gre_tunnel_restack (t);
501
502   return /* no error */ 0;
503 }
504
505 static clib_error_t *
506 create_gre_tunnel_command_fn (vlib_main_t * vm,
507                               unformat_input_t * input,
508                               vlib_cli_command_t * cmd)
509 {
510   unformat_input_t _line_input, *line_input = &_line_input;
511   vnet_gre_add_del_tunnel_args_t _a, *a = &_a;
512   ip46_address_t src, dst;
513   u32 outer_fib_id = 0;
514   u8 teb = 0;
515   int rv;
516   u32 num_m_args = 0;
517   u8 is_add = 1;
518   u32 sw_if_index;
519   clib_error_t *error = NULL;
520   u8 ipv4_set = 0;
521   u8 ipv6_set = 0;
522
523   /* Get a line of input. */
524   if (!unformat_user (input, unformat_line_input, line_input))
525     return 0;
526
527   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
528     {
529       if (unformat (line_input, "del"))
530         is_add = 0;
531       else
532         if (unformat (line_input, "src %U", unformat_ip4_address, &src.ip4))
533         {
534           num_m_args++;
535           ipv4_set = 1;
536         }
537       else
538         if (unformat (line_input, "dst %U", unformat_ip4_address, &dst.ip4))
539         {
540           num_m_args++;
541           ipv4_set = 1;
542         }
543       else
544         if (unformat (line_input, "src %U", unformat_ip6_address, &src.ip6))
545         {
546           num_m_args++;
547           ipv6_set = 1;
548         }
549       else
550         if (unformat (line_input, "dst %U", unformat_ip6_address, &dst.ip6))
551         {
552           num_m_args++;
553           ipv6_set = 1;
554         }
555       else if (unformat (line_input, "outer-fib-id %d", &outer_fib_id))
556         ;
557       else if (unformat (line_input, "teb"))
558         teb = 1;
559       else
560         {
561           error = clib_error_return (0, "unknown input `%U'",
562                                      format_unformat_error, line_input);
563           goto done;
564         }
565     }
566
567   if (num_m_args < 2)
568     {
569       error = clib_error_return (0, "mandatory argument(s) missing");
570       goto done;
571     }
572
573   if ((ipv4_set && memcmp (&src.ip4, &dst.ip4, sizeof (src.ip4)) == 0) ||
574       (ipv6_set && memcmp (&src.ip6, &dst.ip6, sizeof (src.ip6)) == 0))
575     {
576       error = clib_error_return (0, "src and dst are identical");
577       goto done;
578     }
579
580   if (ipv4_set && ipv6_set)
581     return clib_error_return (0, "both IPv4 and IPv6 addresses specified");
582
583   if ((ipv4_set && memcmp (&dst.ip4, &zero_addr.ip4, sizeof (dst.ip4)) == 0)
584       || (ipv6_set
585           && memcmp (&dst.ip6, &zero_addr.ip6, sizeof (dst.ip6)) == 0))
586     {
587       error = clib_error_return (0, "dst address cannot be zero");
588       goto done;
589     }
590
591   memset (a, 0, sizeof (*a));
592   a->outer_fib_id = outer_fib_id;
593   a->teb = teb;
594   a->is_ipv6 = ipv6_set;
595   if (!ipv6_set)
596     {
597       clib_memcpy (&a->src.ip4, &src.ip4, sizeof (src.ip4));
598       clib_memcpy (&a->dst.ip4, &dst.ip4, sizeof (dst.ip4));
599     }
600   else
601     {
602       clib_memcpy (&a->src.ip6, &src.ip6, sizeof (src.ip6));
603       clib_memcpy (&a->dst.ip6, &dst.ip6, sizeof (dst.ip6));
604     }
605
606   if (is_add)
607     rv = vnet_gre_tunnel_add (a, &sw_if_index);
608   else
609     rv = vnet_gre_tunnel_delete (a, &sw_if_index);
610
611   switch (rv)
612     {
613     case 0:
614       vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
615                        vnet_get_main (), sw_if_index);
616       break;
617     case VNET_API_ERROR_INVALID_VALUE:
618       error = clib_error_return (0, "GRE tunnel already exists...");
619       goto done;
620     case VNET_API_ERROR_NO_SUCH_FIB:
621       error = clib_error_return (0, "outer fib ID %d doesn't exist\n",
622                                  outer_fib_id);
623       goto done;
624     default:
625       error =
626         clib_error_return (0, "vnet_gre_add_del_tunnel returned %d", rv);
627       goto done;
628     }
629
630 done:
631   unformat_free (line_input);
632
633   return error;
634 }
635
636 /* *INDENT-OFF* */
637 VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
638   .path = "create gre tunnel",
639   .short_help = "create gre tunnel src <addr> dst <addr> "
640                 "[outer-fib-id <fib>] [teb] [del]",
641   .function = create_gre_tunnel_command_fn,
642 };
643 /* *INDENT-ON* */
644
645 static clib_error_t *
646 show_gre_tunnel_command_fn (vlib_main_t * vm,
647                             unformat_input_t * input,
648                             vlib_cli_command_t * cmd)
649 {
650   gre_main_t *gm = &gre_main;
651   gre_tunnel_t *t;
652   u32 ti = ~0;
653
654   if (pool_elts (gm->tunnels) == 0)
655     vlib_cli_output (vm, "No GRE tunnels configured...");
656
657   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
658     {
659       if (unformat (input, "%d", &ti))
660         ;
661       else
662         break;
663     }
664
665   if (~0 == ti)
666     {
667       /* *INDENT-OFF* */
668       pool_foreach (t, gm->tunnels,
669       ({
670           vlib_cli_output (vm, "%U", format_gre_tunnel, t);
671       }));
672       /* *INDENT-ON* */
673     }
674   else
675     {
676       t = pool_elt_at_index (gm->tunnels, ti);
677
678       vlib_cli_output (vm, "%U", format_gre_tunnel, t);
679     }
680
681   return 0;
682 }
683
684 /* *INDENT-OFF* */
685 VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
686     .path = "show gre tunnel",
687     .function = show_gre_tunnel_command_fn,
688 };
689 /* *INDENT-ON* */
690
691 /* force inclusion from application's main.c */
692 clib_error_t *
693 gre_interface_init (vlib_main_t * vm)
694 {
695   fib_node_register_type (FIB_NODE_TYPE_GRE_TUNNEL, &gre_vft);
696
697   return 0;
698 }
699
700 VLIB_INIT_FUNCTION (gre_interface_init);
701
702 /*
703  * fd.io coding-style-patch-verification: ON
704  *
705  * Local Variables:
706  * eval: (c-set-style "gnu")
707  * End:
708  */