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