vxlan: multiarch optimization of vxlan
[vpp.git] / extras / deprecated / plugins / gbp / gbp_vxlan_node.c
1 /*
2  * Copyright (c) 2019 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <plugins/gbp/gbp_vxlan.h>
16 #include <plugins/gbp/gbp_itf.h>
17 #include <plugins/gbp/gbp_learn.h>
18 #include <plugins/gbp/gbp_bridge_domain.h>
19 #include <plugins/gbp/gbp_route_domain.h>
20
21 #include <vnet/vxlan-gbp/vxlan_gbp.h>
22 #include <vlibmemory/api.h>
23 #include <vnet/fib/fib_table.h>
24
25 extern uword *gv_db;
26
27 typedef struct gbp_vxlan_trace_t_
28 {
29   u8 dropped;
30   u32 vni;
31   u32 sw_if_index;
32   u16 sclass;
33   u8 flags;
34 } gbp_vxlan_trace_t;
35
36 #define foreach_gbp_vxlan_input_next         \
37   _(DROP, "error-drop")                      \
38   _(L2_INPUT, "l2-input")                    \
39   _(IP4_INPUT, "ip4-input")                  \
40   _(IP6_INPUT, "ip6-input")
41
42 typedef enum
43 {
44 #define _(s,n) GBP_VXLAN_INPUT_NEXT_##s,
45   foreach_gbp_vxlan_input_next
46 #undef _
47     GBP_VXLAN_INPUT_N_NEXT,
48 } gbp_vxlan_input_next_t;
49
50
51 #define foreach_gbp_vxlan_error              \
52   _(DECAPPED, "decapped")                    \
53   _(LEARNED, "learned")
54
55 typedef enum
56 {
57 #define _(s,n) GBP_VXLAN_ERROR_##s,
58   foreach_gbp_vxlan_error
59 #undef _
60     GBP_VXLAN_N_ERROR,
61 } gbp_vxlan_input_error_t;
62
63 static char *gbp_vxlan_error_strings[] = {
64 #define _(n,s) s,
65   foreach_gbp_vxlan_error
66 #undef _
67 };
68
69 static uword
70 gbp_vxlan_decap (vlib_main_t * vm,
71                  vlib_node_runtime_t * node,
72                  vlib_frame_t * from_frame, u8 is_ip4)
73 {
74   u32 n_left_to_next, n_left_from, next_index, *to_next, *from;
75
76   next_index = 0;
77   from = vlib_frame_vector_args (from_frame);
78   n_left_from = from_frame->n_vectors;
79
80   while (n_left_from > 0)
81     {
82
83       vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
84
85       while (n_left_from > 0 && n_left_to_next > 0)
86         {
87           vxlan_gbp_header_t *vxlan_gbp0;
88           gbp_vxlan_input_next_t next0;
89           gbp_vxlan_tunnel_t *gt0;
90           vlib_buffer_t *b0;
91           u32 bi0, vni0;
92           uword *p;
93
94           bi0 = to_next[0] = from[0];
95           from += 1;
96           to_next += 1;
97           n_left_from -= 1;
98           n_left_to_next -= 1;
99           next0 = GBP_VXLAN_INPUT_NEXT_DROP;
100
101           b0 = vlib_get_buffer (vm, bi0);
102           vxlan_gbp0 =
103             vlib_buffer_get_current (b0) - sizeof (vxlan_gbp_header_t);
104
105           vni0 = vxlan_gbp_get_vni (vxlan_gbp0);
106           p = hash_get (gv_db, vni0);
107
108           if (PREDICT_FALSE (NULL == p))
109             {
110               gt0 = NULL;
111               next0 = GBP_VXLAN_INPUT_NEXT_DROP;
112             }
113           else
114             {
115               gt0 = gbp_vxlan_tunnel_get (p[0]);
116
117               vnet_buffer (b0)->sw_if_index[VLIB_RX] = gt0->gt_sw_if_index;
118
119               if (GBP_VXLAN_TUN_L2 == gt0->gt_layer)
120                 /*
121                  * An L2 layer tunnel goes into the BD
122                  */
123                 next0 = GBP_VXLAN_INPUT_NEXT_L2_INPUT;
124               else
125                 {
126                   /*
127                    * An L3 layer tunnel needs to strip the L2 header
128                    * an inject into the RD
129                    */
130                   ethernet_header_t *e0;
131                   u16 type0;
132
133                   e0 = vlib_buffer_get_current (b0);
134                   type0 = clib_net_to_host_u16 (e0->type);
135                   switch (type0)
136                     {
137                     case ETHERNET_TYPE_IP4:
138                       next0 = GBP_VXLAN_INPUT_NEXT_IP4_INPUT;
139                       break;
140                     case ETHERNET_TYPE_IP6:
141                       next0 = GBP_VXLAN_INPUT_NEXT_IP6_INPUT;
142                       break;
143                     default:
144                       goto trace;
145                     }
146                   vlib_buffer_advance (b0, sizeof (*e0));
147                 }
148             }
149
150         trace:
151           if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
152             {
153               gbp_vxlan_trace_t *tr;
154
155               tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
156               tr->dropped = (next0 == GBP_VXLAN_INPUT_NEXT_DROP);
157               tr->vni = vni0;
158               tr->sw_if_index = (gt0 ? gt0->gt_sw_if_index : ~0);
159               tr->flags = vxlan_gbp_get_gpflags (vxlan_gbp0);
160               tr->sclass = vxlan_gbp_get_sclass (vxlan_gbp0);
161             }
162
163           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
164                                            to_next, n_left_to_next,
165                                            bi0, next0);
166         }
167
168       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
169     }
170
171   return from_frame->n_vectors;
172 }
173
174 VLIB_NODE_FN (gbp_vxlan4_input_node) (vlib_main_t * vm,
175                                       vlib_node_runtime_t * node,
176                                       vlib_frame_t * from_frame)
177 {
178   return gbp_vxlan_decap (vm, node, from_frame, 1);
179 }
180
181 static u8 *
182 format_gbp_vxlan_rx_trace (u8 * s, va_list * args)
183 {
184   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
185   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
186   gbp_vxlan_trace_t *t = va_arg (*args, gbp_vxlan_trace_t *);
187
188   s = format (s, "vni:%d dropped:%d rx:%d sclass:%d flags:%U",
189               t->vni, t->dropped, t->sw_if_index,
190               t->sclass, format_vxlan_gbp_header_gpflags, t->flags);
191
192   return (s);
193 }
194
195 /* *INDENT-OFF* */
196 VLIB_REGISTER_NODE (gbp_vxlan4_input_node) =
197 {
198   .name = "gbp-vxlan4",
199   .vector_size = sizeof (u32),
200   .n_errors = GBP_VXLAN_N_ERROR,
201   .error_strings = gbp_vxlan_error_strings,
202   .n_next_nodes = GBP_VXLAN_INPUT_N_NEXT,
203   .format_trace = format_gbp_vxlan_rx_trace,
204   .next_nodes = {
205 #define _(s,n) [GBP_VXLAN_INPUT_NEXT_##s] = n,
206     foreach_gbp_vxlan_input_next
207 #undef _
208   },
209 };
210 /* *INDENT-ON* */
211
212 /*
213  * fd.io coding-style-patch-verification: ON
214  *
215  * Local Variables:
216  * eval: (c-set-style "gnu")
217  * End:
218  */