30dfa3057b1ae4662b0bc213e75c3b5466a19d5e
[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         return (adj_nbr_walk (gt->sw_if_index, proto, gre_adj_walk_cb, NULL));
229       case TUNNEL_MODE_MP:
230         return (adj_nbr_walk (gt->sw_if_index, proto, mgre_adj_walk_cb, NULL));
231       }
232   }
233 }
234
235 static void
236 gre_teib_mk_key (const gre_tunnel_t * t,
237                  const teib_entry_t * ne, gre_tunnel_key_t * key)
238 {
239   const fib_prefix_t *nh;
240
241   nh = teib_entry_get_nh (ne);
242
243   /* construct the key using mode P2P so it can be found in the DP */
244   if (FIB_PROTOCOL_IP4 == nh->fp_proto)
245     gre_mk_key4 (t->tunnel_src.ip4,
246                  nh->fp_addr.ip4,
247                  teib_entry_get_fib_index (ne),
248                  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v4);
249   else
250     gre_mk_key6 (&t->tunnel_src.ip6,
251                  &nh->fp_addr.ip6,
252                  teib_entry_get_fib_index (ne),
253                  t->type, TUNNEL_MODE_P2P, 0, &key->gtk_v6);
254 }
255
256 /**
257  * An TEIB entry has been added
258  */
259 static void
260 gre_teib_entry_added (const teib_entry_t * ne)
261 {
262   gre_main_t *gm = &gre_main;
263   const ip_address_t *nh;
264   gre_tunnel_key_t key;
265   gre_tunnel_t *t;
266   u32 sw_if_index;
267   u32 t_idx;
268
269   sw_if_index = teib_entry_get_sw_if_index (ne);
270   if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
271     return;
272
273   t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
274
275   if (INDEX_INVALID == t_idx)
276     return;
277
278   /* entry has been added on an interface for which there is a GRE tunnel */
279   t = pool_elt_at_index (gm->tunnels, t_idx);
280
281   if (t->mode != TUNNEL_MODE_MP)
282     return;
283
284   /* the next-hop (underlay) of the NHRP entry will form part of the key for
285    * ingress lookup to match packets to this interface */
286   gre_teib_mk_key (t, ne, &key);
287   gre_tunnel_db_add (t, &key);
288
289   /* update the rewrites for each of the adjacencies for this peer (overlay)
290    * using  the next-hop (underlay) */
291   mgre_walk_ctx_t ctx = {
292     .t = t,
293     .ne = ne
294   };
295   nh = teib_entry_get_peer (ne);
296   adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne),
297                    (AF_IP4 == ip_addr_version (nh) ?
298                     FIB_PROTOCOL_IP4 :
299                     FIB_PROTOCOL_IP6),
300                    &ip_addr_46 (nh), mgre_mk_complete_walk, &ctx);
301 }
302
303 static void
304 gre_teib_entry_deleted (const teib_entry_t * ne)
305 {
306   gre_main_t *gm = &gre_main;
307   const ip_address_t *nh;
308   gre_tunnel_key_t key;
309   gre_tunnel_t *t;
310   u32 sw_if_index;
311   u32 t_idx;
312
313   sw_if_index = teib_entry_get_sw_if_index (ne);
314   if (vec_len (gm->tunnel_index_by_sw_if_index) < sw_if_index)
315     return;
316
317   t_idx = gm->tunnel_index_by_sw_if_index[sw_if_index];
318
319   if (INDEX_INVALID == t_idx)
320     return;
321
322   t = pool_elt_at_index (gm->tunnels, t_idx);
323
324   /* remove the next-hop as an ingress lookup key */
325   gre_teib_mk_key (t, ne, &key);
326   gre_tunnel_db_remove (t, &key);
327
328   nh = teib_entry_get_peer (ne);
329
330   /* make all the adjacencies incomplete */
331   adj_nbr_walk_nh (teib_entry_get_sw_if_index (ne),
332                    (AF_IP4 == ip_addr_version (nh) ?
333                     FIB_PROTOCOL_IP4 :
334                     FIB_PROTOCOL_IP6),
335                    &ip_addr_46 (nh), mgre_mk_incomplete_walk, t);
336 }
337
338 static walk_rc_t
339 gre_tunnel_delete_teib_walk (index_t nei, void *ctx)
340 {
341   gre_tunnel_t *t = ctx;
342   gre_tunnel_key_t key;
343
344   gre_teib_mk_key (t, teib_entry_get (nei), &key);
345   gre_tunnel_db_remove (t, &key);
346
347   return (WALK_CONTINUE);
348 }
349
350 static walk_rc_t
351 gre_tunnel_add_teib_walk (index_t nei, void *ctx)
352 {
353   gre_tunnel_t *t = ctx;
354   gre_tunnel_key_t key;
355
356   gre_teib_mk_key (t, teib_entry_get (nei), &key);
357   gre_tunnel_db_add (t, &key);
358
359   return (WALK_CONTINUE);
360 }
361
362 static int
363 vnet_gre_tunnel_add (vnet_gre_tunnel_add_del_args_t * a,
364                      u32 outer_fib_index, u32 * sw_if_indexp)
365 {
366   gre_main_t *gm = &gre_main;
367   vnet_main_t *vnm = gm->vnet_main;
368   ip4_main_t *im4 = &ip4_main;
369   ip6_main_t *im6 = &ip6_main;
370   gre_tunnel_t *t;
371   vnet_hw_interface_t *hi;
372   u32 hw_if_index, sw_if_index;
373   clib_error_t *error;
374   u8 is_ipv6 = a->is_ipv6;
375   gre_tunnel_key_t key;
376
377   t = gre_tunnel_db_find (a, outer_fib_index, &key);
378   if (NULL != t)
379     return VNET_API_ERROR_IF_ALREADY_EXISTS;
380
381   pool_get_aligned (gm->tunnels, t, CLIB_CACHE_LINE_BYTES);
382   clib_memset (t, 0, sizeof (*t));
383
384   /* Reconcile the real dev_instance and a possible requested instance */
385   u32 t_idx = t - gm->tunnels;  /* tunnel index (or instance) */
386   u32 u_idx = a->instance;      /* user specified instance */
387   if (u_idx == ~0)
388     u_idx = t_idx;
389   if (hash_get (gm->instance_used, u_idx))
390     {
391       pool_put (gm->tunnels, t);
392       return VNET_API_ERROR_INSTANCE_IN_USE;
393     }
394   hash_set (gm->instance_used, u_idx, 1);
395
396   t->dev_instance = t_idx;      /* actual */
397   t->user_instance = u_idx;     /* name */
398
399   t->type = a->type;
400   t->mode = a->mode;
401   t->flags = a->flags;
402   if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
403     t->session_id = a->session_id;
404
405   if (t->type == GRE_TUNNEL_TYPE_L3)
406     {
407       if (t->mode == TUNNEL_MODE_P2P)
408         hw_if_index =
409           vnet_register_interface (vnm, gre_device_class.index, t_idx,
410                                    gre_hw_interface_class.index, t_idx);
411       else
412         hw_if_index =
413           vnet_register_interface (vnm, gre_device_class.index, t_idx,
414                                    mgre_hw_interface_class.index, t_idx);
415     }
416   else
417     {
418       /* Default MAC address (d00b:eed0:0000 + sw_if_index) */
419       u8 address[6] =
420         { 0xd0, 0x0b, 0xee, 0xd0, (u8) (t_idx >> 8), (u8) t_idx };
421       error =
422         ethernet_register_interface (vnm, gre_device_class.index, t_idx,
423                                      address, &hw_if_index, 0);
424       if (error)
425         {
426           clib_error_report (error);
427           return VNET_API_ERROR_INVALID_REGISTRATION;
428         }
429     }
430
431   /* Set GRE tunnel interface output node (not used for L3 payload) */
432   if (GRE_TUNNEL_TYPE_ERSPAN == t->type)
433     vnet_set_interface_output_node (vnm, hw_if_index,
434                                     gre_erspan_encap_node.index);
435   else
436     vnet_set_interface_output_node (vnm, hw_if_index,
437                                     gre_teb_encap_node.index);
438
439   hi = vnet_get_hw_interface (vnm, hw_if_index);
440   sw_if_index = hi->sw_if_index;
441
442   t->hw_if_index = hw_if_index;
443   t->outer_fib_index = outer_fib_index;
444   t->sw_if_index = sw_if_index;
445   t->l2_adj_index = ADJ_INDEX_INVALID;
446
447   vec_validate_init_empty (gm->tunnel_index_by_sw_if_index, sw_if_index, ~0);
448   gm->tunnel_index_by_sw_if_index[sw_if_index] = t_idx;
449
450   if (!is_ipv6)
451     {
452       vec_validate (im4->fib_index_by_sw_if_index, sw_if_index);
453       hi->min_packet_bytes =
454         64 + sizeof (gre_header_t) + sizeof (ip4_header_t);
455     }
456   else
457     {
458       vec_validate (im6->fib_index_by_sw_if_index, sw_if_index);
459       hi->min_packet_bytes =
460         64 + sizeof (gre_header_t) + sizeof (ip6_header_t);
461     }
462
463   /* Standard default gre MTU. */
464   vnet_sw_interface_set_mtu (vnm, sw_if_index, 9000);
465
466   /*
467    * source the FIB entry for the tunnel's destination
468    * and become a child thereof. The tunnel will then get poked
469    * when the forwarding for the entry updates, and the tunnel can
470    * re-stack accordingly
471    */
472
473   clib_memcpy (&t->tunnel_src, &a->src, sizeof (t->tunnel_src));
474   t->tunnel_dst.fp_len = !is_ipv6 ? 32 : 128;
475   t->tunnel_dst.fp_proto = !is_ipv6 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
476   t->tunnel_dst.fp_addr = a->dst;
477
478   gre_tunnel_db_add (t, &key);
479
480   if (t->mode == TUNNEL_MODE_MP)
481     teib_walk_itf (t->sw_if_index, gre_tunnel_add_teib_walk, t);
482
483   if (t->type == GRE_TUNNEL_TYPE_ERSPAN)
484     {
485       gre_sn_key_t skey;
486       gre_sn_t *gre_sn;
487
488       gre_mk_sn_key (t, &skey);
489       gre_sn = (gre_sn_t *) hash_get_mem (gm->seq_num_by_key, &skey);
490       if (gre_sn != NULL)
491         {
492           gre_sn->ref_count++;
493           t->gre_sn = gre_sn;
494         }
495       else
496         {
497           gre_sn = clib_mem_alloc (sizeof (gre_sn_t));
498           gre_sn->seq_num = 0;
499           gre_sn->ref_count = 1;
500           t->gre_sn = gre_sn;
501           hash_set_mem_alloc (&gm->seq_num_by_key, &skey, (uword) gre_sn);
502         }
503     }
504
505   if (t->type != GRE_TUNNEL_TYPE_L3)
506     {
507       t->l2_adj_index = adj_nbr_add_or_lock
508         (t->tunnel_dst.fp_proto, VNET_LINK_ETHERNET, &zero_addr, sw_if_index);
509       gre_update_adj (vnm, t->sw_if_index, t->l2_adj_index);
510     }
511
512   if (sw_if_indexp)
513     *sw_if_indexp = sw_if_index;
514
515   /* register gre46-input nodes */
516   ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
517   ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
518
519   return 0;
520 }
521
522 static int
523 vnet_gre_tunnel_delete (vnet_gre_tunnel_add_del_args_t * a,
524                         u32 outer_fib_index, u32 * sw_if_indexp)
525 {
526   gre_main_t *gm = &gre_main;
527   vnet_main_t *vnm = gm->vnet_main;
528   gre_tunnel_t *t;
529   gre_tunnel_key_t key;
530   u32 sw_if_index;
531
532   t = gre_tunnel_db_find (a, outer_fib_index, &key);
533   if (NULL == t)
534     return VNET_API_ERROR_NO_SUCH_ENTRY;
535
536   if (t->mode == TUNNEL_MODE_MP)
537     teib_walk_itf (t->sw_if_index, gre_tunnel_delete_teib_walk, t);
538
539   sw_if_index = t->sw_if_index;
540   vnet_sw_interface_set_flags (vnm, sw_if_index, 0 /* down */ );
541
542   /* make sure tunnel is removed from l2 bd or xconnect */
543   set_int_l2_mode (gm->vlib_main, vnm, MODE_L3, sw_if_index, 0,
544                    L2_BD_PORT_TYPE_NORMAL, 0, 0);
545   gm->tunnel_index_by_sw_if_index[sw_if_index] = ~0;
546
547   if (t->type == GRE_TUNNEL_TYPE_L3)
548     vnet_delete_hw_interface (vnm, t->hw_if_index);
549   else
550     ethernet_delete_interface (vnm, t->hw_if_index);
551
552   if (t->l2_adj_index != ADJ_INDEX_INVALID)
553     {
554       adj_midchain_delegate_unstack (t->l2_adj_index);
555       adj_unlock (t->l2_adj_index);
556     }
557
558   ASSERT ((t->type != GRE_TUNNEL_TYPE_ERSPAN) || (t->gre_sn != NULL));
559   if ((t->type == GRE_TUNNEL_TYPE_ERSPAN) && (t->gre_sn->ref_count-- == 1))
560     {
561       gre_sn_key_t skey;
562       gre_mk_sn_key (t, &skey);
563       hash_unset_mem_free (&gm->seq_num_by_key, &skey);
564       clib_mem_free (t->gre_sn);
565     }
566
567   hash_unset (gm->instance_used, t->user_instance);
568   gre_tunnel_db_remove (t, &key);
569   pool_put (gm->tunnels, t);
570
571   if (sw_if_indexp)
572     *sw_if_indexp = sw_if_index;
573
574   return 0;
575 }
576
577 int
578 vnet_gre_tunnel_add_del (vnet_gre_tunnel_add_del_args_t * a,
579                          u32 * sw_if_indexp)
580 {
581   u32 outer_fib_index;
582
583   outer_fib_index = fib_table_find ((a->is_ipv6 ?
584                                      FIB_PROTOCOL_IP6 :
585                                      FIB_PROTOCOL_IP4), a->outer_table_id);
586
587   if (~0 == outer_fib_index)
588     return VNET_API_ERROR_NO_SUCH_FIB;
589
590   if (a->session_id > GTK_SESSION_ID_MAX)
591     return VNET_API_ERROR_INVALID_SESSION_ID;
592
593   if (a->mode == TUNNEL_MODE_MP && !ip46_address_is_zero (&a->dst))
594     return (VNET_API_ERROR_INVALID_DST_ADDRESS);
595
596   if (a->is_add)
597     return (vnet_gre_tunnel_add (a, outer_fib_index, sw_if_indexp));
598   else
599     return (vnet_gre_tunnel_delete (a, outer_fib_index, sw_if_indexp));
600 }
601
602 clib_error_t *
603 gre_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
604 {
605   gre_main_t *gm = &gre_main;
606   vnet_hw_interface_t *hi;
607   gre_tunnel_t *t;
608   u32 ti;
609
610   hi = vnet_get_hw_interface (vnm, hw_if_index);
611
612   if (NULL == gm->tunnel_index_by_sw_if_index ||
613       hi->sw_if_index >= vec_len (gm->tunnel_index_by_sw_if_index))
614     return (NULL);
615
616   ti = gm->tunnel_index_by_sw_if_index[hi->sw_if_index];
617
618   if (~0 == ti)
619     /* not one of ours */
620     return (NULL);
621
622   t = pool_elt_at_index (gm->tunnels, ti);
623
624   if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
625     vnet_hw_interface_set_flags (vnm, hw_if_index,
626                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
627   else
628     vnet_hw_interface_set_flags (vnm, hw_if_index, 0 /* down */ );
629
630   gre_tunnel_restack (t);
631
632   return /* no error */ 0;
633 }
634
635 static clib_error_t *
636 create_gre_tunnel_command_fn (vlib_main_t * vm,
637                               unformat_input_t * input,
638                               vlib_cli_command_t * cmd)
639 {
640   unformat_input_t _line_input, *line_input = &_line_input;
641   vnet_gre_tunnel_add_del_args_t _a, *a = &_a;
642   ip46_address_t src = ip46_address_initializer, dst =
643     ip46_address_initializer;
644   u32 instance = ~0;
645   u32 outer_table_id = 0;
646   gre_tunnel_type_t t_type = GRE_TUNNEL_TYPE_L3;
647   tunnel_mode_t t_mode = TUNNEL_MODE_P2P;
648   tunnel_encap_decap_flags_t flags = TUNNEL_ENCAP_DECAP_FLAG_NONE;
649   u32 session_id = 0;
650   int rv;
651   u8 is_add = 1;
652   u32 sw_if_index;
653   clib_error_t *error = NULL;
654
655   /* Get a line of input. */
656   if (!unformat_user (input, unformat_line_input, line_input))
657     return 0;
658
659   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
660     {
661       if (unformat (line_input, "del"))
662         is_add = 0;
663       else if (unformat (line_input, "instance %d", &instance))
664         ;
665       else if (unformat (line_input, "src %U", unformat_ip46_address, &src))
666         ;
667       else if (unformat (line_input, "dst %U", unformat_ip46_address, &dst))
668         ;
669       else if (unformat (line_input, "outer-table-id %d", &outer_table_id))
670         ;
671       else if (unformat (line_input, "multipoint"))
672         t_mode = TUNNEL_MODE_MP;
673       else if (unformat (line_input, "teb"))
674         t_type = GRE_TUNNEL_TYPE_TEB;
675       else if (unformat (line_input, "erspan %d", &session_id))
676         t_type = GRE_TUNNEL_TYPE_ERSPAN;
677       else
678         if (unformat
679             (line_input, "flags %U", unformat_tunnel_encap_decap_flags,
680              &flags))
681         ;
682       else
683         {
684           error = clib_error_return (0, "unknown input `%U'",
685                                      format_unformat_error, line_input);
686           goto done;
687         }
688     }
689
690   if (ip46_address_is_equal (&src, &dst))
691     {
692       error = clib_error_return (0, "src and dst are identical");
693       goto done;
694     }
695
696   if (t_mode != TUNNEL_MODE_MP && ip46_address_is_zero (&dst))
697     {
698       error = clib_error_return (0, "destination address not specified");
699       goto done;
700     }
701
702   if (ip46_address_is_zero (&src))
703     {
704       error = clib_error_return (0, "source address not specified");
705       goto done;
706     }
707
708   if (ip46_address_is_ip4 (&src) != ip46_address_is_ip4 (&dst))
709     {
710       error =
711         clib_error_return (0, "src and dst address must be the same AF");
712       goto done;
713     }
714
715   clib_memset (a, 0, sizeof (*a));
716   a->is_add = is_add;
717   a->outer_table_id = outer_table_id;
718   a->type = t_type;
719   a->mode = t_mode;
720   a->session_id = session_id;
721   a->is_ipv6 = !ip46_address_is_ip4 (&src);
722   a->instance = instance;
723   a->flags = flags;
724   clib_memcpy (&a->src, &src, sizeof (a->src));
725   clib_memcpy (&a->dst, &dst, sizeof (a->dst));
726
727   rv = vnet_gre_tunnel_add_del (a, &sw_if_index);
728
729   switch (rv)
730     {
731     case 0:
732       vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
733                        vnet_get_main (), sw_if_index);
734       break;
735     case VNET_API_ERROR_IF_ALREADY_EXISTS:
736       error = clib_error_return (0, "GRE tunnel already exists...");
737       goto done;
738     case VNET_API_ERROR_NO_SUCH_FIB:
739       error = clib_error_return (0, "outer table ID %d doesn't exist\n",
740                                  outer_table_id);
741       goto done;
742     case VNET_API_ERROR_NO_SUCH_ENTRY:
743       error = clib_error_return (0, "GRE tunnel doesn't exist");
744       goto done;
745     case VNET_API_ERROR_INVALID_SESSION_ID:
746       error = clib_error_return (0, "session ID %d out of range\n",
747                                  session_id);
748       goto done;
749     case VNET_API_ERROR_INSTANCE_IN_USE:
750       error = clib_error_return (0, "Instance is in use");
751       goto done;
752     default:
753       error =
754         clib_error_return (0, "vnet_gre_tunnel_add_del returned %d", rv);
755       goto done;
756     }
757
758 done:
759   unformat_free (line_input);
760
761   return error;
762 }
763
764 /* *INDENT-OFF* */
765 VLIB_CLI_COMMAND (create_gre_tunnel_command, static) = {
766   .path = "create gre tunnel",
767   .short_help = "create gre tunnel src <addr> dst <addr> [instance <n>] "
768                 "[outer-fib-id <fib>] [teb | erspan <session-id>] [del] "
769                 "[multipoint]",
770   .function = create_gre_tunnel_command_fn,
771 };
772 /* *INDENT-ON* */
773
774 static clib_error_t *
775 show_gre_tunnel_command_fn (vlib_main_t * vm,
776                             unformat_input_t * input,
777                             vlib_cli_command_t * cmd)
778 {
779   gre_main_t *gm = &gre_main;
780   gre_tunnel_t *t;
781   u32 ti = ~0;
782
783   if (pool_elts (gm->tunnels) == 0)
784     vlib_cli_output (vm, "No GRE tunnels configured...");
785
786   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
787     {
788       if (unformat (input, "%d", &ti))
789         ;
790       else
791         break;
792     }
793
794   if (~0 == ti)
795     {
796       /* *INDENT-OFF* */
797       pool_foreach (t, gm->tunnels)
798        {
799           vlib_cli_output (vm, "%U", format_gre_tunnel, t);
800       }
801       /* *INDENT-ON* */
802     }
803   else
804     {
805       t = pool_elt_at_index (gm->tunnels, ti);
806
807       vlib_cli_output (vm, "%U", format_gre_tunnel, t);
808     }
809
810   return 0;
811 }
812
813 /* *INDENT-OFF* */
814 VLIB_CLI_COMMAND (show_gre_tunnel_command, static) = {
815     .path = "show gre tunnel",
816     .function = show_gre_tunnel_command_fn,
817 };
818 /* *INDENT-ON* */
819
820 const static teib_vft_t gre_teib_vft = {
821   .nv_added = gre_teib_entry_added,
822   .nv_deleted = gre_teib_entry_deleted,
823 };
824
825 /* force inclusion from application's main.c */
826 clib_error_t *
827 gre_interface_init (vlib_main_t * vm)
828 {
829   teib_register (&gre_teib_vft);
830
831   return (NULL);
832 }
833
834 VLIB_INIT_FUNCTION (gre_interface_init);
835
836 /*
837  * fd.io coding-style-patch-verification: ON
838  *
839  * Local Variables:
840  * eval: (c-set-style "gnu")
841  * End:
842  */