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