[aarch64] Fixes CLI crashes on dpaa2 platform.
[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
22 gre_main_t gre_main;
23
24 typedef struct {
25   union {
26     ip4_and_gre_header_t ip4_and_gre;
27     u64 as_u64[3];
28   };
29 } ip4_and_gre_union_t;
30
31 typedef struct {
32   union {
33     ip6_and_gre_header_t ip6_and_gre;
34     u64 as_u64[3];
35   };
36 } ip6_and_gre_union_t;
37
38
39 /* Packet trace structure */
40 typedef struct {
41   /* Tunnel-id / index in tunnel vector */
42   u32 tunnel_id;
43
44   /* pkt length */
45   u32 length;
46
47   /* tunnel ip addresses */
48   ip46_address_t src;
49   ip46_address_t dst;
50 } gre_tx_trace_t;
51
52 u8 * format_gre_tx_trace (u8 * s, va_list * args)
53 {
54   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
55   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
56   gre_tx_trace_t * t = va_arg (*args, gre_tx_trace_t *);
57
58   s = format (s, "GRE: tunnel %d len %d src %U dst %U",
59               t->tunnel_id, clib_net_to_host_u16 (t->length),
60               format_ip46_address, &t->src, IP46_TYPE_ANY,
61               format_ip46_address, &t->dst, IP46_TYPE_ANY);
62   return s;
63 }
64
65 u8 * format_gre_protocol (u8 * s, va_list * args)
66 {
67   gre_protocol_t p = va_arg (*args, u32);
68   gre_main_t * gm = &gre_main;
69   gre_protocol_info_t * pi = gre_get_protocol_info (gm, p);
70
71   if (pi)
72     s = format (s, "%s", pi->name);
73   else
74     s = format (s, "0x%04x", p);
75
76   return s;
77 }
78
79 u8 * format_gre_header_with_length (u8 * s, va_list * args)
80 {
81   gre_main_t * gm = &gre_main;
82   gre_header_t * h = va_arg (*args, gre_header_t *);
83   u32 max_header_bytes = va_arg (*args, u32);
84   gre_protocol_t p = clib_net_to_host_u16 (h->protocol);
85   u32 indent, header_bytes;
86
87   header_bytes = sizeof (h[0]);
88   if (max_header_bytes != 0 && header_bytes > max_header_bytes)
89     return format (s, "gre header truncated");
90
91   indent = format_get_indent (s);
92
93   s = format (s, "GRE %U", format_gre_protocol, p);
94
95   if (max_header_bytes != 0 && header_bytes > max_header_bytes)
96     {
97       gre_protocol_info_t * pi = gre_get_protocol_info (gm, p);
98       vlib_node_t * node = vlib_get_node (gm->vlib_main, pi->node_index);
99       if (node->format_buffer)
100         s = format (s, "\n%U%U",
101                     format_white_space, indent,
102                     node->format_buffer, (void *) (h + 1),
103                     max_header_bytes - header_bytes);
104     }
105
106   return s;
107 }
108
109 u8 * format_gre_header (u8 * s, va_list * args)
110 {
111   gre_header_t * h = va_arg (*args, gre_header_t *);
112   return format (s, "%U", format_gre_header_with_length, h, 0);
113 }
114
115 /* Returns gre protocol as an int in host byte order. */
116 uword
117 unformat_gre_protocol_host_byte_order (unformat_input_t * input,
118                                        va_list * args)
119 {
120   u16 * result = va_arg (*args, u16 *);
121   gre_main_t * gm = &gre_main;
122   int i;
123
124   /* Named type. */
125   if (unformat_user (input, unformat_vlib_number_by_name,
126                      gm->protocol_info_by_name, &i))
127     {
128       gre_protocol_info_t * pi = vec_elt_at_index (gm->protocol_infos, i);
129       *result = pi->protocol;
130       return 1;
131     }
132
133   return 0;
134 }
135
136 uword
137 unformat_gre_protocol_net_byte_order (unformat_input_t * input,
138                                       va_list * args)
139 {
140   u16 * result = va_arg (*args, u16 *);
141   if (! unformat_user (input, unformat_gre_protocol_host_byte_order, result))
142     return 0;
143   *result = clib_host_to_net_u16 ((u16) *result);
144   return 1;
145 }
146
147 uword
148 unformat_gre_header (unformat_input_t * input, va_list * args)
149 {
150   u8 ** result = va_arg (*args, u8 **);
151   gre_header_t _h, * h = &_h;
152   u16 p;
153
154   if (! unformat (input, "%U",
155                   unformat_gre_protocol_host_byte_order, &p))
156     return 0;
157
158   h->protocol = clib_host_to_net_u16 (p);
159
160   /* Add header to result. */
161   {
162     void * p;
163     u32 n_bytes = sizeof (h[0]);
164
165     vec_add2 (*result, p, n_bytes);
166     clib_memcpy (p, h, n_bytes);
167   }
168
169   return 1;
170 }
171
172 static int
173 gre_proto_from_vnet_link (vnet_link_t link)
174 {
175     switch (link)
176     {
177     case VNET_LINK_IP4:
178         return (GRE_PROTOCOL_ip4);
179     case VNET_LINK_IP6:
180         return (GRE_PROTOCOL_ip6);
181     case VNET_LINK_MPLS:
182         return (GRE_PROTOCOL_mpls_unicast);
183     case VNET_LINK_ETHERNET:
184         return (GRE_PROTOCOL_teb);
185     case VNET_LINK_ARP:
186         return (GRE_PROTOCOL_arp);
187     case VNET_LINK_NSH:
188         ASSERT(0);
189         break;
190     }
191     ASSERT(0);
192     return (GRE_PROTOCOL_ip4);
193 }
194
195 static u8*
196 gre_build_rewrite (vnet_main_t * vnm,
197                    u32 sw_if_index,
198                    vnet_link_t link_type,
199                    const void *dst_address)
200 {
201   gre_main_t * gm = &gre_main;
202   ip4_and_gre_header_t * h4;
203   ip6_and_gre_header_t * h6;
204   u8* rewrite = NULL;
205   gre_tunnel_t *t;
206   u32 ti;
207   u8 is_ipv6;
208
209   ti = gm->tunnel_index_by_sw_if_index[sw_if_index];
210
211   if (~0 == ti)
212       /* not one of ours */
213       return (0);
214
215   t = pool_elt_at_index(gm->tunnels, ti);
216
217   is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
218
219   if (!is_ipv6)
220     {
221       vec_validate(rewrite, sizeof(*h4)-1);
222       h4 = (ip4_and_gre_header_t*)rewrite;
223       h4->gre.protocol = clib_host_to_net_u16(gre_proto_from_vnet_link(link_type));
224
225       h4->ip4.ip_version_and_header_length = 0x45;
226       h4->ip4.ttl = 254;
227       h4->ip4.protocol = IP_PROTOCOL_GRE;
228       /* fixup ip4 header length and checksum after-the-fact */
229       h4->ip4.src_address.as_u32 = t->tunnel_src.ip4.as_u32;
230       h4->ip4.dst_address.as_u32 = t->tunnel_dst.fp_addr.ip4.as_u32;
231       h4->ip4.checksum = ip4_header_checksum (&h4->ip4);
232     }
233   else
234     {
235       vec_validate(rewrite, sizeof(*h6)-1);
236       h6 = (ip6_and_gre_header_t*)rewrite;
237       h6->gre.protocol = clib_host_to_net_u16(gre_proto_from_vnet_link(link_type));
238
239       h6->ip6.ip_version_traffic_class_and_flow_label = clib_host_to_net_u32(6 << 28);
240       h6->ip6.hop_limit = 255;
241       h6->ip6.protocol = IP_PROTOCOL_GRE;
242       /* fixup ip6 header length and checksum after-the-fact */
243       h6->ip6.src_address.as_u64[0] = t->tunnel_src.ip6.as_u64[0];
244       h6->ip6.src_address.as_u64[1] = t->tunnel_src.ip6.as_u64[1];
245       h6->ip6.dst_address.as_u64[0] = t->tunnel_dst.fp_addr.ip6.as_u64[0];
246       h6->ip6.dst_address.as_u64[1] = t->tunnel_dst.fp_addr.ip6.as_u64[1];
247     }
248
249   return (rewrite);
250 }
251
252 #define is_v4_packet(_h) ((*(u8*) _h) & 0xF0) == 0x40
253
254 void
255 gre4_fixup (vlib_main_t *vm,
256            ip_adjacency_t *adj,
257            vlib_buffer_t *b0)
258 {
259     ip4_header_t * ip0;
260
261     ip0 = vlib_buffer_get_current (b0);
262
263     /* Fixup the checksum and len fields in the GRE tunnel encap
264      * that was applied at the midchain node */
265     ip0->length = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
266     ip0->checksum = ip4_header_checksum (ip0);
267 }
268
269 void
270 gre6_fixup (vlib_main_t *vm,
271            ip_adjacency_t *adj,
272            vlib_buffer_t *b0)
273 {
274     ip6_header_t * ip0;
275
276     ip0 = vlib_buffer_get_current (b0);
277
278     /* Fixup the payload length field in the GRE tunnel encap that was applied
279      * at the midchain node */
280     ip0->payload_length =
281         clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0))
282         - sizeof(*ip0);
283 }
284
285 void
286 gre_update_adj (vnet_main_t * vnm,
287                 u32 sw_if_index,
288                 adj_index_t ai)
289 {
290     gre_main_t * gm = &gre_main;
291     gre_tunnel_t *t;
292     u32 ti;
293     u8 is_ipv6;
294
295     ti = gm->tunnel_index_by_sw_if_index[sw_if_index];
296     t = pool_elt_at_index(gm->tunnels, ti);
297     is_ipv6 = t->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
298
299     adj_nbr_midchain_update_rewrite (ai, !is_ipv6 ? gre4_fixup : gre6_fixup,
300                                      (VNET_LINK_ETHERNET == adj_get_link_type (ai) ?
301                                       ADJ_FLAG_MIDCHAIN_NO_COUNT :
302                                       ADJ_FLAG_NONE),
303                                      gre_build_rewrite(vnm, sw_if_index,
304                                                        adj_get_link_type(ai),
305                                                        NULL));
306
307     gre_tunnel_stack(ai);
308 }
309
310 /**
311  * @brief TX function. Only called L2. L3 traffic uses the adj-midchains
312  */
313 static uword
314 gre_interface_tx_inline (vlib_main_t * vm,
315                          vlib_node_runtime_t * node,
316                          vlib_frame_t * frame)
317 {
318   gre_main_t * gm = &gre_main;
319   u32 next_index;
320   u32 * from, * to_next, n_left_from, n_left_to_next;
321   vnet_interface_output_runtime_t * rd = (void *) node->runtime_data;
322   const gre_tunnel_t *gt = pool_elt_at_index (gm->tunnels, rd->dev_instance);
323   u8 is_ipv6 = gt->tunnel_dst.fp_proto == FIB_PROTOCOL_IP6 ? 1 : 0;
324
325   /* Vector of buffer / pkt indices we're supposed to process */
326   from = vlib_frame_vector_args (frame);
327
328   /* Number of buffers / pkts */
329   n_left_from = frame->n_vectors;
330
331   /* Speculatively send the first buffer to the last disposition we used */
332   next_index = node->cached_next_index;
333
334   while (n_left_from > 0)
335     {
336       /* set up to enqueue to our disposition with index = next_index */
337       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
338
339       /*
340        * FIXME DUAL LOOP
341        */
342
343       while (n_left_from > 0 && n_left_to_next > 0)
344         {
345           vlib_buffer_t * b0;
346           u32 bi0;
347
348           bi0 = from[0];
349           to_next[0] = bi0;
350           from += 1;
351           to_next += 1;
352           n_left_from -= 1;
353           n_left_to_next -= 1;
354
355           b0 = vlib_get_buffer(vm, bi0);
356
357           vnet_buffer(b0)->ip.adj_index[VLIB_TX] = gt->l2_adj_index;
358
359           if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
360             {
361               gre_tx_trace_t *tr = vlib_add_trace (vm, node,
362                                                    b0, sizeof (*tr));
363           tr->tunnel_id = gt - gm->tunnels;
364           tr->src = gt->tunnel_src;
365           tr->dst = gt->tunnel_src;
366           tr->length = vlib_buffer_length_in_chain (vm, b0);
367             }
368
369           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
370                                            to_next, n_left_to_next,
371                                            bi0, gt->l2_tx_arc);
372         }
373
374       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
375     }
376
377   vlib_node_increment_counter (vm, !is_ipv6 ? gre4_input_node.index :
378                    gre6_input_node.index,
379                                GRE_ERROR_PKTS_ENCAP, frame->n_vectors);
380
381   return frame->n_vectors;
382 }
383
384 static uword
385 gre_interface_tx (vlib_main_t * vm,
386                   vlib_node_runtime_t * node,
387                   vlib_frame_t * frame)
388 {
389     return (gre_interface_tx_inline (vm, node, frame));
390 }
391
392 static uword
393 gre_teb_interface_tx (vlib_main_t * vm,
394                       vlib_node_runtime_t * node,
395                       vlib_frame_t * frame)
396 {
397     return (gre_interface_tx_inline (vm, node, frame));
398 }
399
400 static u8 * format_gre_tunnel_name (u8 * s, va_list * args)
401 {
402   u32 dev_instance = va_arg (*args, u32);
403   return format (s, "gre%d", dev_instance);
404 }
405
406 static u8 * format_gre_tunnel_teb_name (u8 * s, va_list * args)
407 {
408   u32 dev_instance = va_arg (*args, u32);
409   return format (s, "teb-gre%d", dev_instance);
410 }
411
412 static u8 * format_gre_device (u8 * s, va_list * args)
413 {
414   u32 dev_instance = va_arg (*args, u32);
415   CLIB_UNUSED (int verbose) = va_arg (*args, int);
416
417   s = format (s, "GRE tunnel: id %d\n", dev_instance);
418   return s;
419 }
420
421 VNET_DEVICE_CLASS (gre_device_class) = {
422   .name = "GRE tunnel device",
423   .format_device_name = format_gre_tunnel_name,
424   .format_device = format_gre_device,
425   .format_tx_trace = format_gre_tx_trace,
426   .tx_function = gre_interface_tx,
427   .admin_up_down_function = gre_interface_admin_up_down,
428 #ifdef SOON
429   .clear counter = 0;
430 #endif
431 };
432
433 VLIB_DEVICE_TX_FUNCTION_MULTIARCH (gre_device_class,
434                                    gre_interface_tx)
435
436 VNET_DEVICE_CLASS (gre_device_teb_class) = {
437   .name = "GRE TEB tunnel device",
438   .format_device_name = format_gre_tunnel_teb_name,
439   .format_device = format_gre_device,
440   .format_tx_trace = format_gre_tx_trace,
441   .tx_function = gre_teb_interface_tx,
442   .admin_up_down_function = gre_interface_admin_up_down,
443 #ifdef SOON
444   .clear counter = 0;
445 #endif
446 };
447
448 VLIB_DEVICE_TX_FUNCTION_MULTIARCH (gre_device_teb_class,
449                                    gre_teb_interface_tx)
450
451 VNET_HW_INTERFACE_CLASS (gre_hw_interface_class) = {
452   .name = "GRE",
453   .format_header = format_gre_header_with_length,
454   .unformat_header = unformat_gre_header,
455   .build_rewrite = gre_build_rewrite,
456   .update_adjacency = gre_update_adj,
457   .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P,
458 };
459
460 static void add_protocol (gre_main_t * gm,
461                           gre_protocol_t protocol,
462                           char * protocol_name)
463 {
464   gre_protocol_info_t * pi;
465   u32 i;
466
467   vec_add2 (gm->protocol_infos, pi, 1);
468   i = pi - gm->protocol_infos;
469
470   pi->name = protocol_name;
471   pi->protocol = protocol;
472   pi->next_index = pi->node_index = ~0;
473
474   hash_set (gm->protocol_info_by_protocol, protocol, i);
475   hash_set_mem (gm->protocol_info_by_name, pi->name, i);
476 }
477
478 static clib_error_t * gre_init (vlib_main_t * vm)
479 {
480   gre_main_t * gm = &gre_main;
481   clib_error_t * error;
482   ip_main_t * im = &ip_main;
483   ip_protocol_info_t * pi;
484
485   memset (gm, 0, sizeof (gm[0]));
486   gm->vlib_main = vm;
487   gm->vnet_main = vnet_get_main();
488
489   if ((error = vlib_call_init_function (vm, ip_main_init)))
490     return error;
491
492   if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
493     return error;
494
495   if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
496     return error;
497
498   /* Set up the ip packet generator */
499   pi = ip_get_protocol_info (im, IP_PROTOCOL_GRE);
500   pi->format_header = format_gre_header;
501   pi->unformat_pg_edit = unformat_pg_gre_header;
502
503   gm->protocol_info_by_name = hash_create_string (0, sizeof (uword));
504   gm->protocol_info_by_protocol = hash_create (0, sizeof (uword));
505   gm->tunnel_by_key4 = hash_create (0, sizeof (uword));
506   gm->tunnel_by_key6 = hash_create_mem (0, sizeof(u64[4]), sizeof (uword));
507
508 #define _(n,s) add_protocol (gm, GRE_PROTOCOL_##s, #s);
509   foreach_gre_protocol
510 #undef _
511
512   return vlib_call_init_function (vm, gre_input_init);
513 }
514
515 VLIB_INIT_FUNCTION (gre_init);
516
517 gre_main_t * gre_get_main (vlib_main_t * vm)
518 {
519   vlib_call_init_function (vm, gre_init);
520   return &gre_main;
521 }
522