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