gre: Tunnel encap/decap flags
[vpp.git] / src / vnet / gre / gre.c
1 /*
2  * gre.c: gre
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/adj/adj_midchain.h>
21 #include <vnet/tunnel/tunnel_dp.h>
22
23 extern gre_main_t gre_main;
24
25 #ifndef CLIB_MARCH_VARIANT
26 gre_main_t gre_main;
27
28 typedef struct
29 {
30   union
31   {
32     ip4_and_gre_header_t ip4_and_gre;
33     u64 as_u64[3];
34   };
35 } ip4_and_gre_union_t;
36
37 typedef struct
38 {
39   union
40   {
41     ip6_and_gre_header_t ip6_and_gre;
42     u64 as_u64[3];
43   };
44 } ip6_and_gre_union_t;
45 #endif /* CLIB_MARCH_VARIANT */
46
47
48 /* Packet trace structure */
49 typedef struct
50 {
51   /* Tunnel-id / index in tunnel vector */
52   u32 tunnel_id;
53
54   /* pkt length */
55   u32 length;
56
57   /* tunnel ip addresses */
58   ip46_address_t src;
59   ip46_address_t dst;
60 } gre_tx_trace_t;
61
62 extern u8 *format_gre_tx_trace (u8 * s, va_list * args);
63
64 #ifndef CLIB_MARCH_VARIANT
65 u8 *
66 format_gre_tx_trace (u8 * s, va_list * args)
67 {
68   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
69   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
70   gre_tx_trace_t *t = va_arg (*args, gre_tx_trace_t *);
71
72   s = format (s, "GRE: tunnel %d len %d src %U dst %U",
73               t->tunnel_id, t->length,
74               format_ip46_address, &t->src, IP46_TYPE_ANY,
75               format_ip46_address, &t->dst, IP46_TYPE_ANY);
76   return s;
77 }
78
79 u8 *
80 format_gre_protocol (u8 * s, va_list * args)
81 {
82   gre_protocol_t p = va_arg (*args, u32);
83   gre_main_t *gm = &gre_main;
84   gre_protocol_info_t *pi = gre_get_protocol_info (gm, p);
85
86   if (pi)
87     s = format (s, "%s", pi->name);
88   else
89     s = format (s, "0x%04x", p);
90
91   return s;
92 }
93
94 u8 *
95 format_gre_header_with_length (u8 * s, va_list * args)
96 {
97   gre_main_t *gm = &gre_main;
98   gre_header_t *h = va_arg (*args, gre_header_t *);
99   u32 max_header_bytes = va_arg (*args, u32);
100   gre_protocol_t p = clib_net_to_host_u16 (h->protocol);
101   u32 indent, header_bytes;
102
103   header_bytes = sizeof (h[0]);
104   if (max_header_bytes != 0 && header_bytes > max_header_bytes)
105     return format (s, "gre header truncated");
106
107   indent = format_get_indent (s);
108
109   s = format (s, "GRE %U", format_gre_protocol, p);
110
111   if (max_header_bytes != 0 && header_bytes < max_header_bytes)
112     {
113       gre_protocol_info_t *pi = gre_get_protocol_info (gm, p);
114       vlib_node_t *node = vlib_get_node (gm->vlib_main, pi->node_index);
115       if (node->format_buffer)
116         s = format (s, "\n%U%U",
117                     format_white_space, indent,
118                     node->format_buffer, (void *) (h + 1),
119                     max_header_bytes - header_bytes);
120     }
121
122   return s;
123 }
124
125 u8 *
126 format_gre_header (u8 * s, va_list * args)
127 {
128   gre_header_t *h = va_arg (*args, gre_header_t *);
129   return format (s, "%U", format_gre_header_with_length, h, 0);
130 }
131
132 /* Returns gre protocol as an int in host byte order. */
133 uword
134 unformat_gre_protocol_host_byte_order (unformat_input_t * input,
135                                        va_list * args)
136 {
137   u16 *result = va_arg (*args, u16 *);
138   gre_main_t *gm = &gre_main;
139   int i;
140
141   /* Named type. */
142   if (unformat_user (input, unformat_vlib_number_by_name,
143                      gm->protocol_info_by_name, &i))
144     {
145       gre_protocol_info_t *pi = vec_elt_at_index (gm->protocol_infos, i);
146       *result = pi->protocol;
147       return 1;
148     }
149
150   return 0;
151 }
152
153 uword
154 unformat_gre_protocol_net_byte_order (unformat_input_t * input,
155                                       va_list * args)
156 {
157   u16 *result = va_arg (*args, u16 *);
158   if (!unformat_user (input, unformat_gre_protocol_host_byte_order, result))
159     return 0;
160   *result = clib_host_to_net_u16 ((u16) * result);
161   return 1;
162 }
163
164 uword
165 unformat_gre_header (unformat_input_t * input, va_list * args)
166 {
167   u8 **result = va_arg (*args, u8 **);
168   gre_header_t _h, *h = &_h;
169   u16 p;
170
171   if (!unformat (input, "%U", unformat_gre_protocol_host_byte_order, &p))
172     return 0;
173
174   h->protocol = clib_host_to_net_u16 (p);
175
176   /* Add header to result. */
177   {
178     void *p;
179     u32 n_bytes = sizeof (h[0]);
180
181     vec_add2 (*result, p, n_bytes);
182     clib_memcpy (p, h, n_bytes);
183   }
184
185   return 1;
186 }
187
188 static int
189 gre_proto_from_vnet_link (vnet_link_t link)
190 {
191   switch (link)
192     {
193     case VNET_LINK_IP4:
194       return (GRE_PROTOCOL_ip4);
195     case VNET_LINK_IP6:
196       return (GRE_PROTOCOL_ip6);
197     case VNET_LINK_MPLS:
198       return (GRE_PROTOCOL_mpls_unicast);
199     case VNET_LINK_ETHERNET:
200       return (GRE_PROTOCOL_teb);
201     case VNET_LINK_ARP:
202       return (GRE_PROTOCOL_arp);
203     case VNET_LINK_NSH:
204       ASSERT (0);
205       break;
206     }
207   ASSERT (0);
208   return (GRE_PROTOCOL_ip4);
209 }
210
211 static u8 *
212 gre_build_rewrite (vnet_main_t * vnm,
213                    u32 sw_if_index,
214                    vnet_link_t link_type, const void *dst_address)
215 {
216   gre_main_t *gm = &gre_main;
217   const ip46_address_t *dst;
218   ip4_and_gre_header_t *h4;
219   ip6_and_gre_header_t *h6;
220   gre_header_t *gre;
221   u8 *rewrite = NULL;
222   gre_tunnel_t *t;
223   u32 ti;
224   u8 is_ipv6;
225
226   dst = dst_address;
227   ti = gm->tunnel_index_by_sw_if_index[sw_if_index];
228
229   if (~0 == ti)
230     /* not one of ours */
231     return (0);
232
233   t = pool_elt_at_index (gm->tunnels, ti);
234
235   is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
236
237   if (!is_ipv6)
238     {
239       vec_validate (rewrite, sizeof (*h4) - 1);
240       h4 = (ip4_and_gre_header_t *) rewrite;
241       gre = &h4->gre;
242       h4->ip4.ip_version_and_header_length = 0x45;
243       h4->ip4.ttl = 254;
244       h4->ip4.protocol = IP_PROTOCOL_GRE;
245       /* fixup ip4 header length and checksum after-the-fact */
246       h4->ip4.src_address.as_u32 = t->tunnel_src.ip4.as_u32;
247       h4->ip4.dst_address.as_u32 = dst->ip4.as_u32;
248       h4->ip4.checksum = ip4_header_checksum (&h4->ip4);
249     }
250   else
251     {
252       vec_validate (rewrite, sizeof (*h6) - 1);
253       h6 = (ip6_and_gre_header_t *) rewrite;
254       gre = &h6->gre;
255       h6->ip6.ip_version_traffic_class_and_flow_label =
256         clib_host_to_net_u32 (6 << 28);
257       h6->ip6.hop_limit = 255;
258       h6->ip6.protocol = IP_PROTOCOL_GRE;
259       /* fixup ip6 header length and checksum after-the-fact */
260       h6->ip6.src_address.as_u64[0] = t->tunnel_src.ip6.as_u64[0];
261       h6->ip6.src_address.as_u64[1] = t->tunnel_src.ip6.as_u64[1];
262       h6->ip6.dst_address.as_u64[0] = dst->ip6.as_u64[0];
263       h6->ip6.dst_address.as_u64[1] = dst->ip6.as_u64[1];
264     }
265
266   if (PREDICT_FALSE (t->type == GRE_TUNNEL_TYPE_ERSPAN))
267     {
268       gre->protocol = clib_host_to_net_u16 (GRE_PROTOCOL_erspan);
269       gre->flags_and_version = clib_host_to_net_u16 (GRE_FLAGS_SEQUENCE);
270     }
271   else
272     gre->protocol =
273       clib_host_to_net_u16 (gre_proto_from_vnet_link (link_type));
274
275   return (rewrite);
276 }
277
278 static void
279 gre44_fixup (vlib_main_t * vm,
280              const ip_adjacency_t * adj, vlib_buffer_t * b0, const void *data)
281 {
282   tunnel_encap_decap_flags_t flags;
283   ip4_and_gre_header_t *ip0;
284
285   ip0 = vlib_buffer_get_current (b0);
286   flags = pointer_to_uword (data);
287
288   /* Fixup the checksum and len fields in the GRE tunnel encap
289    * that was applied at the midchain node */
290   ip0->ip4.length =
291     clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
292   tunnel_encap_fixup_4o4 (flags, (ip4_header_t *) (ip0 + 1), &ip0->ip4);
293   ip0->ip4.checksum = ip4_header_checksum (&ip0->ip4);
294 }
295
296 static void
297 gre64_fixup (vlib_main_t * vm,
298              const ip_adjacency_t * adj, vlib_buffer_t * b0, const void *data)
299 {
300   tunnel_encap_decap_flags_t flags;
301   ip4_and_gre_header_t *ip0;
302
303   ip0 = vlib_buffer_get_current (b0);
304   flags = pointer_to_uword (data);
305
306   /* Fixup the checksum and len fields in the GRE tunnel encap
307    * that was applied at the midchain node */
308   ip0->ip4.length =
309     clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
310   tunnel_encap_fixup_6o4 (flags, (ip6_header_t *) (ip0 + 1), &ip0->ip4);
311   ip0->ip4.checksum = ip4_header_checksum (&ip0->ip4);
312 }
313
314 static void
315 grex4_fixup (vlib_main_t * vm,
316              const ip_adjacency_t * adj, vlib_buffer_t * b0, const void *data)
317 {
318   ip4_header_t *ip0;
319
320   ip0 = vlib_buffer_get_current (b0);
321
322   /* Fixup the checksum and len fields in the GRE tunnel encap
323    * that was applied at the midchain node */
324   ip0->length = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
325   ip0->checksum = ip4_header_checksum (ip0);
326 }
327
328 static void
329 gre46_fixup (vlib_main_t * vm,
330              const ip_adjacency_t * adj, vlib_buffer_t * b0, const void *data)
331 {
332   tunnel_encap_decap_flags_t flags;
333   ip6_and_gre_header_t *ip0;
334
335   ip0 = vlib_buffer_get_current (b0);
336   flags = pointer_to_uword (data);
337
338   /* Fixup the payload length field in the GRE tunnel encap that was applied
339    * at the midchain node */
340   ip0->ip6.payload_length =
341     clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
342                           sizeof (*ip0));
343   tunnel_encap_fixup_4o6 (flags, (ip4_header_t *) (ip0 + 1), &ip0->ip6);
344 }
345
346 static void
347 gre66_fixup (vlib_main_t * vm,
348              const ip_adjacency_t * adj, vlib_buffer_t * b0, const void *data)
349 {
350   tunnel_encap_decap_flags_t flags;
351   ip6_and_gre_header_t *ip0;
352
353   ip0 = vlib_buffer_get_current (b0);
354   flags = pointer_to_uword (data);
355
356   /* Fixup the payload length field in the GRE tunnel encap that was applied
357    * at the midchain node */
358   ip0->ip6.payload_length =
359     clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
360                           sizeof (*ip0));
361   tunnel_encap_fixup_6o6 (flags, (ip6_header_t *) (ip0 + 1), &ip0->ip6);
362 }
363
364 static void
365 grex6_fixup (vlib_main_t * vm,
366              const ip_adjacency_t * adj, vlib_buffer_t * b0, const void *data)
367 {
368   ip6_header_t *ip0;
369
370   ip0 = vlib_buffer_get_current (b0);
371
372   /* Fixup the payload length field in the GRE tunnel encap that was applied
373    * at the midchain node */
374   ip0->payload_length =
375     clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
376                           sizeof (*ip0));
377 }
378
379 /**
380  * return the appropriate fixup function given the overlay (link-type) and
381  * underlay (fproto) combination
382  */
383 static adj_midchain_fixup_t
384 gre_get_fixup (fib_protocol_t fproto, vnet_link_t lt)
385 {
386   if (fproto == FIB_PROTOCOL_IP6 && lt == VNET_LINK_IP6)
387     return (gre66_fixup);
388   if (fproto == FIB_PROTOCOL_IP6 && lt == VNET_LINK_IP4)
389     return (gre46_fixup);
390   if (fproto == FIB_PROTOCOL_IP4 && lt == VNET_LINK_IP6)
391     return (gre64_fixup);
392   if (fproto == FIB_PROTOCOL_IP4 && lt == VNET_LINK_IP4)
393     return (gre44_fixup);
394   if (fproto == FIB_PROTOCOL_IP6 && lt == VNET_LINK_ETHERNET)
395     return (grex6_fixup);
396   if (fproto == FIB_PROTOCOL_IP4 && lt == VNET_LINK_ETHERNET)
397     return (grex4_fixup);
398
399   ASSERT (0);
400   return (gre44_fixup);
401 }
402
403 void
404 gre_update_adj (vnet_main_t * vnm, u32 sw_if_index, adj_index_t ai)
405 {
406   gre_main_t *gm = &gre_main;
407   gre_tunnel_t *t;
408   adj_flags_t af;
409   u32 ti;
410
411   ti = gm->tunnel_index_by_sw_if_index[sw_if_index];
412   t = pool_elt_at_index (gm->tunnels, ti);
413   af = ADJ_FLAG_MIDCHAIN_IP_STACK;
414
415   if (VNET_LINK_ETHERNET == adj_get_link_type (ai))
416     af |= ADJ_FLAG_MIDCHAIN_NO_COUNT;
417
418   adj_nbr_midchain_update_rewrite
419     (ai, gre_get_fixup (t->tunnel_dst.fp_proto,
420                         adj_get_link_type (ai)),
421      uword_to_pointer (t->flags, void *), af,
422      gre_build_rewrite (vnm, sw_if_index, adj_get_link_type (ai),
423                         &t->tunnel_dst.fp_addr));
424
425   gre_tunnel_stack (ai);
426 }
427
428 adj_walk_rc_t
429 mgre_mk_complete_walk (adj_index_t ai, void *data)
430 {
431   mgre_walk_ctx_t *ctx = data;
432
433   adj_nbr_midchain_update_rewrite
434     (ai, gre_get_fixup (ctx->t->tunnel_dst.fp_proto,
435                         adj_get_link_type (ai)),
436      uword_to_pointer (ctx->t->flags, void *),
437      ADJ_FLAG_MIDCHAIN_IP_STACK,
438      gre_build_rewrite (vnet_get_main (),
439                         ctx->t->sw_if_index,
440                         adj_get_link_type (ai),
441                         &nhrp_entry_get_nh (ctx->ne)->fp_addr));
442
443   nhrp_entry_adj_stack (ctx->ne, ai);
444
445   return (ADJ_WALK_RC_CONTINUE);
446 }
447
448 adj_walk_rc_t
449 mgre_mk_incomplete_walk (adj_index_t ai, void *data)
450 {
451   gre_tunnel_t *t = data;
452
453   adj_nbr_midchain_update_rewrite (ai, gre_get_fixup (t->tunnel_dst.fp_proto,
454                                                       adj_get_link_type (ai)),
455                                    NULL, ADJ_FLAG_NONE, NULL);
456
457   adj_midchain_delegate_unstack (ai);
458
459   return (ADJ_WALK_RC_CONTINUE);
460 }
461
462 void
463 mgre_update_adj (vnet_main_t * vnm, u32 sw_if_index, adj_index_t ai)
464 {
465   gre_main_t *gm = &gre_main;
466   ip_adjacency_t *adj;
467   nhrp_entry_t *ne;
468   gre_tunnel_t *t;
469   u32 ti;
470
471   adj = adj_get (ai);
472   ti = gm->tunnel_index_by_sw_if_index[sw_if_index];
473   t = pool_elt_at_index (gm->tunnels, ti);
474
475   ne = nhrp_entry_find (sw_if_index, &adj->sub_type.nbr.next_hop);
476
477   if (NULL == ne)
478     // no NHRP entry to provide the next-hop
479     return;
480
481   mgre_walk_ctx_t ctx = {
482     .t = t,
483     .ne = ne
484   };
485   adj_nbr_walk_nh (sw_if_index,
486                    adj->ia_nh_proto,
487                    &adj->sub_type.nbr.next_hop, mgre_mk_complete_walk, &ctx);
488 }
489 #endif /* CLIB_MARCH_VARIANT */
490
491 typedef enum
492 {
493   GRE_ENCAP_NEXT_L2_MIDCHAIN,
494   GRE_ENCAP_N_NEXT,
495 } gre_encap_next_t;
496
497 /**
498  * @brief TX function. Only called for L2 payload including TEB or ERSPAN.
499  *        L3 traffic uses the adj-midchains.
500  */
501 VLIB_NODE_FN (gre_encap_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
502                                vlib_frame_t * frame)
503 {
504   gre_main_t *gm = &gre_main;
505   u32 *from, n_left_from;
506   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
507   u32 sw_if_index[2] = { ~0, ~0 };
508   const gre_tunnel_t *gt[2] = { 0 };
509   adj_index_t adj_index[2] = { ADJ_INDEX_INVALID, ADJ_INDEX_INVALID };
510
511   from = vlib_frame_vector_args (frame);
512   n_left_from = frame->n_vectors;
513   vlib_get_buffers (vm, from, bufs, n_left_from);
514
515   while (n_left_from >= 2)
516     {
517
518       if (PREDICT_FALSE
519           (sw_if_index[0] != vnet_buffer (b[0])->sw_if_index[VLIB_TX]))
520         {
521           const vnet_hw_interface_t *hi;
522           sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
523           hi = vnet_get_sup_hw_interface (gm->vnet_main, sw_if_index[0]);
524           gt[0] = &gm->tunnels[hi->dev_instance];
525           adj_index[0] = gt[0]->l2_adj_index;
526         }
527       if (PREDICT_FALSE
528           (sw_if_index[1] != vnet_buffer (b[1])->sw_if_index[VLIB_TX]))
529         {
530           const vnet_hw_interface_t *hi;
531           sw_if_index[1] = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
532           hi = vnet_get_sup_hw_interface (gm->vnet_main, sw_if_index[1]);
533           gt[1] = &gm->tunnels[hi->dev_instance];
534           adj_index[1] = gt[1]->l2_adj_index;
535         }
536
537       vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = adj_index[0];
538       vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = adj_index[1];
539
540       if (PREDICT_FALSE (gt[0]->type == GRE_TUNNEL_TYPE_ERSPAN))
541         {
542           /* Encap GRE seq# and ERSPAN type II header */
543           erspan_t2_t *h0;
544           u32 seq_num;
545           u64 hdr;
546           vlib_buffer_advance (b[0], -sizeof (erspan_t2_t));
547           h0 = vlib_buffer_get_current (b[0]);
548           seq_num = clib_atomic_fetch_add (&gt[0]->gre_sn->seq_num, 1);
549           hdr = clib_host_to_net_u64 (ERSPAN_HDR2);
550           h0->seq_num = clib_host_to_net_u32 (seq_num);
551           h0->t2_u64 = hdr;
552           h0->t2.cos_en_t_session |= clib_host_to_net_u16 (gt[0]->session_id);
553         }
554       if (PREDICT_FALSE (gt[1]->type == GRE_TUNNEL_TYPE_ERSPAN))
555         {
556           /* Encap GRE seq# and ERSPAN type II header */
557           erspan_t2_t *h0;
558           u32 seq_num;
559           u64 hdr;
560           vlib_buffer_advance (b[1], -sizeof (erspan_t2_t));
561           h0 = vlib_buffer_get_current (b[1]);
562           seq_num = clib_atomic_fetch_add (&gt[1]->gre_sn->seq_num, 1);
563           hdr = clib_host_to_net_u64 (ERSPAN_HDR2);
564           h0->seq_num = clib_host_to_net_u32 (seq_num);
565           h0->t2_u64 = hdr;
566           h0->t2.cos_en_t_session |= clib_host_to_net_u16 (gt[1]->session_id);
567         }
568
569       if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
570         {
571           gre_tx_trace_t *tr = vlib_add_trace (vm, node,
572                                                b[0], sizeof (*tr));
573           tr->tunnel_id = gt[0] - gm->tunnels;
574           tr->src = gt[0]->tunnel_src;
575           tr->dst = gt[0]->tunnel_dst.fp_addr;
576           tr->length = vlib_buffer_length_in_chain (vm, b[0]);
577         }
578       if (PREDICT_FALSE (b[1]->flags & VLIB_BUFFER_IS_TRACED))
579         {
580           gre_tx_trace_t *tr = vlib_add_trace (vm, node,
581                                                b[1], sizeof (*tr));
582           tr->tunnel_id = gt[1] - gm->tunnels;
583           tr->src = gt[1]->tunnel_src;
584           tr->dst = gt[1]->tunnel_dst.fp_addr;
585           tr->length = vlib_buffer_length_in_chain (vm, b[1]);
586         }
587
588       b += 2;
589       n_left_from -= 2;
590     }
591
592   while (n_left_from >= 1)
593     {
594
595       if (PREDICT_FALSE
596           (sw_if_index[0] != vnet_buffer (b[0])->sw_if_index[VLIB_TX]))
597         {
598           const vnet_hw_interface_t *hi;
599           sw_if_index[0] = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
600           hi = vnet_get_sup_hw_interface (gm->vnet_main, sw_if_index[0]);
601           gt[0] = &gm->tunnels[hi->dev_instance];
602           adj_index[0] = gt[0]->l2_adj_index;
603         }
604
605       vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = adj_index[0];
606
607       if (PREDICT_FALSE (gt[0]->type == GRE_TUNNEL_TYPE_ERSPAN))
608         {
609           /* Encap GRE seq# and ERSPAN type II header */
610           erspan_t2_t *h0;
611           u32 seq_num;
612           u64 hdr;
613           vlib_buffer_advance (b[0], -sizeof (erspan_t2_t));
614           h0 = vlib_buffer_get_current (b[0]);
615           seq_num = clib_atomic_fetch_add (&gt[0]->gre_sn->seq_num, 1);
616           hdr = clib_host_to_net_u64 (ERSPAN_HDR2);
617           h0->seq_num = clib_host_to_net_u32 (seq_num);
618           h0->t2_u64 = hdr;
619           h0->t2.cos_en_t_session |= clib_host_to_net_u16 (gt[0]->session_id);
620         }
621
622       if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
623         {
624           gre_tx_trace_t *tr = vlib_add_trace (vm, node,
625                                                b[0], sizeof (*tr));
626           tr->tunnel_id = gt[0] - gm->tunnels;
627           tr->src = gt[0]->tunnel_src;
628           tr->dst = gt[0]->tunnel_dst.fp_addr;
629           tr->length = vlib_buffer_length_in_chain (vm, b[0]);
630         }
631
632       b += 1;
633       n_left_from -= 1;
634     }
635
636   vlib_buffer_enqueue_to_single_next (vm, node, from,
637                                       GRE_ENCAP_NEXT_L2_MIDCHAIN,
638                                       frame->n_vectors);
639
640   vlib_node_increment_counter (vm, node->node_index,
641                                GRE_ERROR_PKTS_ENCAP, frame->n_vectors);
642
643   return frame->n_vectors;
644 }
645
646 static char *gre_error_strings[] = {
647 #define gre_error(n,s) s,
648 #include "error.def"
649 #undef gre_error
650 };
651
652 /* *INDENT-OFF* */
653 VLIB_REGISTER_NODE (gre_encap_node) =
654 {
655   .name = "gre-encap",
656   .vector_size = sizeof (u32),
657   .format_trace = format_gre_tx_trace,
658   .type = VLIB_NODE_TYPE_INTERNAL,
659   .n_errors = GRE_N_ERROR,
660   .error_strings = gre_error_strings,
661   .n_next_nodes = GRE_ENCAP_N_NEXT,
662   .next_nodes = {
663     [GRE_ENCAP_NEXT_L2_MIDCHAIN] = "adj-l2-midchain",
664   },
665 };
666 /* *INDENT-ON* */
667
668 #ifndef CLIB_MARCH_VARIANT
669 static u8 *
670 format_gre_tunnel_name (u8 * s, va_list * args)
671 {
672   u32 dev_instance = va_arg (*args, u32);
673   gre_main_t *gm = &gre_main;
674   gre_tunnel_t *t;
675
676   if (dev_instance >= vec_len (gm->tunnels))
677     return format (s, "<improperly-referenced>");
678
679   t = pool_elt_at_index (gm->tunnels, dev_instance);
680   return format (s, "gre%d", t->user_instance);
681 }
682
683 static u8 *
684 format_gre_device (u8 * s, va_list * args)
685 {
686   u32 dev_instance = va_arg (*args, u32);
687   CLIB_UNUSED (int verbose) = va_arg (*args, int);
688
689   s = format (s, "GRE tunnel: id %d\n", dev_instance);
690   return s;
691 }
692
693 static int
694 gre_tunnel_desc (u32 sw_if_index,
695                  ip46_address_t * src, ip46_address_t * dst, u8 * is_l2)
696 {
697   gre_main_t *gm = &gre_main;
698   gre_tunnel_t *t;
699   u32 ti;
700
701   ti = gm->tunnel_index_by_sw_if_index[sw_if_index];
702
703   if (~0 == ti)
704     /* not one of ours */
705     return -1;
706
707   t = pool_elt_at_index (gm->tunnels, ti);
708
709   *src = t->tunnel_src;
710   *dst = t->tunnel_dst.fp_addr;
711   *is_l2 = t->type == GRE_TUNNEL_TYPE_TEB;
712
713   return (0);
714 }
715
716 /* *INDENT-OFF* */
717 VNET_DEVICE_CLASS (gre_device_class) = {
718   .name = "GRE tunnel device",
719   .format_device_name = format_gre_tunnel_name,
720   .format_device = format_gre_device,
721   .format_tx_trace = format_gre_tx_trace,
722   .admin_up_down_function = gre_interface_admin_up_down,
723   .ip_tun_desc = gre_tunnel_desc,
724 #ifdef SOON
725   .clear counter = 0;
726 #endif
727 };
728
729 VNET_HW_INTERFACE_CLASS (gre_hw_interface_class) = {
730   .name = "GRE",
731   .format_header = format_gre_header_with_length,
732   .unformat_header = unformat_gre_header,
733   .build_rewrite = gre_build_rewrite,
734   .update_adjacency = gre_update_adj,
735   .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
736 };
737
738 VNET_HW_INTERFACE_CLASS (mgre_hw_interface_class) = {
739   .name = "mGRE",
740   .format_header = format_gre_header_with_length,
741   .unformat_header = unformat_gre_header,
742   .build_rewrite = gre_build_rewrite,
743   .update_adjacency = mgre_update_adj,
744   .flags = VNET_HW_INTERFACE_CLASS_FLAG_NBMA,
745 };
746 /* *INDENT-ON* */
747 #endif /* CLIB_MARCH_VARIANT */
748
749 static void
750 add_protocol (gre_main_t * gm, gre_protocol_t protocol, char *protocol_name)
751 {
752   gre_protocol_info_t *pi;
753   u32 i;
754
755   vec_add2 (gm->protocol_infos, pi, 1);
756   i = pi - gm->protocol_infos;
757
758   pi->name = protocol_name;
759   pi->protocol = protocol;
760   pi->next_index = pi->node_index = ~0;
761
762   hash_set (gm->protocol_info_by_protocol, protocol, i);
763   hash_set_mem (gm->protocol_info_by_name, pi->name, i);
764 }
765
766 static clib_error_t *
767 gre_init (vlib_main_t * vm)
768 {
769   gre_main_t *gm = &gre_main;
770   clib_error_t *error;
771   ip_main_t *im = &ip_main;
772   ip_protocol_info_t *pi;
773
774   clib_memset (gm, 0, sizeof (gm[0]));
775   gm->vlib_main = vm;
776   gm->vnet_main = vnet_get_main ();
777
778   if ((error = vlib_call_init_function (vm, ip_main_init)))
779     return error;
780
781   if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
782     return error;
783
784   if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
785     return error;
786
787   /* Set up the ip packet generator */
788   pi = ip_get_protocol_info (im, IP_PROTOCOL_GRE);
789   pi->format_header = format_gre_header;
790   pi->unformat_pg_edit = unformat_pg_gre_header;
791
792   gm->protocol_info_by_name = hash_create_string (0, sizeof (uword));
793   gm->protocol_info_by_protocol = hash_create (0, sizeof (uword));
794   gm->tunnel_by_key4 =
795     hash_create_mem (0, sizeof (gre_tunnel_key4_t), sizeof (uword));
796   gm->tunnel_by_key6 =
797     hash_create_mem (0, sizeof (gre_tunnel_key6_t), sizeof (uword));
798   gm->seq_num_by_key =
799     hash_create_mem (0, sizeof (gre_sn_key_t), sizeof (uword));
800
801 #define _(n,s) add_protocol (gm, GRE_PROTOCOL_##s, #s);
802   foreach_gre_protocol
803 #undef _
804     return vlib_call_init_function (vm, gre_input_init);
805 }
806
807 VLIB_INIT_FUNCTION (gre_init);
808
809 /*
810  * fd.io coding-style-patch-verification: ON
811  *
812  * Local Variables:
813  * eval: (c-set-style "gnu")
814  * End:
815  */