blob: e10f116fa6d8ec04c00a1c916e09dedf5cfb9f30 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * node.c: gre packet processing
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 <vlib/vlib.h>
19#include <vnet/pg/pg.h>
20#include <vnet/gre/gre.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010021#include <vnet/mpls/mpls.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022#include <vppinfra/sparse_vec.h>
23
24#define foreach_gre_input_next \
25_(PUNT, "error-punt") \
26_(DROP, "error-drop") \
David Hothama8cd3092016-09-19 09:55:07 -070027_(ETHERNET_INPUT, "ethernet-input") \
Ed Warnickecb9cada2015-12-08 15:45:58 -070028_(IP4_INPUT, "ip4-input") \
Neale Ranns0bfe5d82016-08-25 15:29:12 +010029_(IP6_INPUT, "ip6-input") \
30_(MPLS_INPUT, "mpls-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Swarup Nayak9ff647a2017-11-27 10:27:43 +053032typedef enum
33{
Ed Warnickecb9cada2015-12-08 15:45:58 -070034#define _(s,n) GRE_INPUT_NEXT_##s,
35 foreach_gre_input_next
36#undef _
Swarup Nayak9ff647a2017-11-27 10:27:43 +053037 GRE_INPUT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070038} gre_input_next_t;
39
Swarup Nayak9ff647a2017-11-27 10:27:43 +053040typedef struct
41{
Ed Warnickecb9cada2015-12-08 15:45:58 -070042 u32 tunnel_id;
43 u32 length;
Ciara Loftus7eac9162016-09-30 15:47:03 +010044 ip46_address_t src;
45 ip46_address_t dst;
46 u8 is_ipv6;
Ed Warnickecb9cada2015-12-08 15:45:58 -070047} gre_rx_trace_t;
48
Swarup Nayak9ff647a2017-11-27 10:27:43 +053049u8 *
50format_gre_rx_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070051{
52 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
53 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Swarup Nayak9ff647a2017-11-27 10:27:43 +053054 gre_rx_trace_t *t = va_arg (*args, gre_rx_trace_t *);
Ciara Loftus7eac9162016-09-30 15:47:03 +010055
Ed Warnickecb9cada2015-12-08 15:45:58 -070056 s = format (s, "GRE: tunnel %d len %d src %U dst %U",
Swarup Nayak9ff647a2017-11-27 10:27:43 +053057 t->tunnel_id, clib_net_to_host_u16 (t->length),
58 format_ip46_address, &t->src, IP46_TYPE_ANY,
59 format_ip46_address, &t->dst, IP46_TYPE_ANY);
Ed Warnickecb9cada2015-12-08 15:45:58 -070060 return s;
61}
62
Swarup Nayak9ff647a2017-11-27 10:27:43 +053063typedef struct
64{
Ciara Loftus7eac9162016-09-30 15:47:03 +010065 /* Sparse vector mapping gre protocol in network byte order
66 to next index. */
Swarup Nayak9ff647a2017-11-27 10:27:43 +053067 u16 *next_by_protocol;
Ciara Loftus7eac9162016-09-30 15:47:03 +010068} gre_input_runtime_t;
69
70always_inline uword
Ed Warnickecb9cada2015-12-08 15:45:58 -070071gre_input (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +053072 vlib_node_runtime_t * node, vlib_frame_t * from_frame, u8 is_ipv6)
Ed Warnickecb9cada2015-12-08 15:45:58 -070073{
Swarup Nayak9ff647a2017-11-27 10:27:43 +053074 gre_main_t *gm = &gre_main;
75 __attribute__ ((unused)) u32 n_left_from, next_index, *from, *to_next;
Ciara Loftus7eac9162016-09-30 15:47:03 +010076 u64 cached_tunnel_key4;
77 u64 cached_tunnel_key6[4];
Neale Ranns0bfe5d82016-08-25 15:29:12 +010078 u32 cached_tunnel_sw_if_index = 0, tunnel_sw_if_index = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
Swarup Nayak9ff647a2017-11-27 10:27:43 +053080 u32 thread_index = vlib_get_thread_index ();
Neale Ranns0bfe5d82016-08-25 15:29:12 +010081 u32 len;
82 vnet_interface_main_t *im = &gm->vnet_main->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Ciara Loftus7eac9162016-09-30 15:47:03 +010084 if (!is_ipv6)
Swarup Nayak9ff647a2017-11-27 10:27:43 +053085 memset (&cached_tunnel_key4, 0xff, sizeof (cached_tunnel_key4));
Ciara Loftus7eac9162016-09-30 15:47:03 +010086 else
Swarup Nayak9ff647a2017-11-27 10:27:43 +053087 memset (&cached_tunnel_key6, 0xff, sizeof (cached_tunnel_key6));
Ciara Loftus7eac9162016-09-30 15:47:03 +010088
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 from = vlib_frame_vector_args (from_frame);
90 n_left_from = from_frame->n_vectors;
91
92 next_index = node->cached_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
94 while (n_left_from > 0)
95 {
96 u32 n_left_to_next;
97
Swarup Nayak9ff647a2017-11-27 10:27:43 +053098 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
100 while (n_left_from >= 4 && n_left_to_next >= 2)
101 {
102 u32 bi0, bi1;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530103 vlib_buffer_t *b0, *b1;
104 gre_header_t *h0, *h1;
105 u16 version0, version1;
106 int verr0, verr1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107 u32 i0, i1, next0, next1, protocol0, protocol1;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530108 ip4_header_t *ip4_0, *ip4_1;
109 ip6_header_t *ip6_0, *ip6_1;
110 u32 ip4_tun_src0, ip4_tun_dst0;
111 u32 ip4_tun_src1, ip4_tun_dst1;
112 u64 ip6_tun_src0[2], ip6_tun_dst0[2];
113 u64 ip6_tun_src1[2], ip6_tun_dst1[2];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
115 /* Prefetch next iteration. */
116 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530117 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
119 p2 = vlib_get_buffer (vm, from[2]);
120 p3 = vlib_get_buffer (vm, from[3]);
121
122 vlib_prefetch_buffer_header (p2, LOAD);
123 vlib_prefetch_buffer_header (p3, LOAD);
124
125 CLIB_PREFETCH (p2->data, sizeof (h0[0]), LOAD);
126 CLIB_PREFETCH (p3->data, sizeof (h1[0]), LOAD);
127 }
128
129 bi0 = from[0];
130 bi1 = from[1];
131 to_next[0] = bi0;
132 to_next[1] = bi1;
133 from += 2;
134 to_next += 2;
135 n_left_to_next -= 2;
136 n_left_from -= 2;
137
138 b0 = vlib_get_buffer (vm, bi0);
139 b1 = vlib_get_buffer (vm, bi1);
140
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530141 if (!is_ipv6)
142 {
143 /* ip4_local hands us the ip header, not the gre header */
144 ip4_0 = vlib_buffer_get_current (b0);
145 ip4_1 = vlib_buffer_get_current (b1);
146 /* Save src + dst ip4 address, e.g. for mpls-o-gre */
147 ip4_tun_src0 = ip4_0->src_address.as_u32;
148 ip4_tun_dst0 = ip4_0->dst_address.as_u32;
149 ip4_tun_src1 = ip4_1->src_address.as_u32;
150 ip4_tun_dst1 = ip4_1->dst_address.as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530152 vlib_buffer_advance (b0, sizeof (*ip4_0));
153 vlib_buffer_advance (b1, sizeof (*ip4_1));
154 }
155 else
156 {
157 /* ip6_local hands us the ip header, not the gre header */
158 ip6_0 = vlib_buffer_get_current (b0);
159 ip6_1 = vlib_buffer_get_current (b1);
160 /* Save src + dst ip6 address, e.g. for mpls-o-gre */
161 ip6_tun_src0[0] = ip6_0->src_address.as_u64[0];
162 ip6_tun_src0[1] = ip6_0->src_address.as_u64[1];
163 ip6_tun_dst0[0] = ip6_0->dst_address.as_u64[0];
164 ip6_tun_dst0[1] = ip6_0->dst_address.as_u64[1];
165 ip6_tun_src1[0] = ip6_1->src_address.as_u64[0];
166 ip6_tun_src1[1] = ip6_1->src_address.as_u64[1];
167 ip6_tun_dst1[0] = ip6_1->dst_address.as_u64[0];
168 ip6_tun_dst1[1] = ip6_1->dst_address.as_u64[1];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530170 vlib_buffer_advance (b0, sizeof (*ip6_0));
171 vlib_buffer_advance (b1, sizeof (*ip6_1));
172 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
174 h0 = vlib_buffer_get_current (b0);
175 h1 = vlib_buffer_get_current (b1);
176
177 /* Index sparse array with network byte order. */
178 protocol0 = h0->protocol;
179 protocol1 = h1->protocol;
Damjan Marion63d5bae2017-04-04 01:28:26 +0200180 sparse_vec_index2 (gm->next_by_protocol, protocol0, protocol1,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530181 &i0, &i1);
182 next0 = vec_elt (gm->next_by_protocol, i0);
183 next1 = vec_elt (gm->next_by_protocol, i1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530185 b0->error =
186 node->errors[i0 ==
187 SPARSE_VEC_INVALID_INDEX ? GRE_ERROR_UNKNOWN_PROTOCOL
188 : GRE_ERROR_NONE];
189 b1->error =
190 node->errors[i1 ==
191 SPARSE_VEC_INVALID_INDEX ? GRE_ERROR_UNKNOWN_PROTOCOL
192 : GRE_ERROR_NONE];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530194 version0 = clib_net_to_host_u16 (h0->flags_and_version);
195 verr0 = version0 & GRE_VERSION_MASK;
196 version1 = clib_net_to_host_u16 (h1->flags_and_version);
197 verr1 = version1 & GRE_VERSION_MASK;
198
199 b0->error = verr0 ? node->errors[GRE_ERROR_UNSUPPORTED_VERSION]
200 : b0->error;
201 next0 = verr0 ? GRE_INPUT_NEXT_DROP : next0;
202 b1->error = verr1 ? node->errors[GRE_ERROR_UNSUPPORTED_VERSION]
203 : b1->error;
204 next1 = verr1 ? GRE_INPUT_NEXT_DROP : next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
David Hothama8cd3092016-09-19 09:55:07 -0700206
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530207 /* RPF check for ip4/ip6 input */
208 if (PREDICT_TRUE (next0 == GRE_INPUT_NEXT_IP4_INPUT
209 || next0 == GRE_INPUT_NEXT_IP6_INPUT
210 || next0 == GRE_INPUT_NEXT_ETHERNET_INPUT
211 || next0 == GRE_INPUT_NEXT_MPLS_INPUT))
212 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530214 u64 key4, key6[4];
215 if (!is_ipv6)
216 {
217 key4 = ((u64) (ip4_tun_dst0) << 32) | (u64) (ip4_tun_src0);
218 }
219 else
220 {
221 key6[0] = ip6_tun_dst0[0];
222 key6[1] = ip6_tun_dst0[1];
223 key6[2] = ip6_tun_src0[0];
224 key6[3] = ip6_tun_src0[1];
225 }
Ciara Loftus7eac9162016-09-30 15:47:03 +0100226
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530227 if ((!is_ipv6 && cached_tunnel_key4 != key4) ||
228 (is_ipv6 && cached_tunnel_key6[0] != key6[0] &&
229 cached_tunnel_key6[1] != key6[1] &&
230 cached_tunnel_key6[2] != key6[2] &&
231 cached_tunnel_key6[3] != key6[3]))
232 {
233 vnet_hw_interface_t *hi;
234 gre_tunnel_t *t;
235 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530237 if (!is_ipv6)
238 p = hash_get (gm->tunnel_by_key4, key4);
239 else
240 p = hash_get_mem (gm->tunnel_by_key6, key6);
241 if (!p)
242 {
243 next0 = GRE_INPUT_NEXT_DROP;
244 b0->error = node->errors[GRE_ERROR_NO_SUCH_TUNNEL];
245 goto drop0;
246 }
247 t = pool_elt_at_index (gm->tunnels, p[0]);
248 hi = vnet_get_hw_interface (gm->vnet_main, t->hw_if_index);
249 tunnel_sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530251 cached_tunnel_sw_if_index = tunnel_sw_if_index;
252 }
253 else
254 {
255 tunnel_sw_if_index = cached_tunnel_sw_if_index;
256 }
257 }
258 else
259 {
260 next0 = GRE_INPUT_NEXT_DROP;
261 goto drop0;
262 }
263 len = vlib_buffer_length_in_chain (vm, b0);
264 vlib_increment_combined_counter (im->combined_sw_if_counters
265 + VNET_INTERFACE_COUNTER_RX,
266 thread_index,
267 tunnel_sw_if_index,
268 1 /* packets */ ,
269 len /* bytes */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100270
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530271 vnet_buffer (b0)->sw_if_index[VLIB_RX] = tunnel_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530273 drop0:
274 if (PREDICT_TRUE (next1 == GRE_INPUT_NEXT_IP4_INPUT
275 || next1 == GRE_INPUT_NEXT_IP6_INPUT
276 || next1 == GRE_INPUT_NEXT_ETHERNET_INPUT
277 || next1 == GRE_INPUT_NEXT_MPLS_INPUT))
278 {
279 u64 key4, key6[4];
280 if (!is_ipv6)
281 {
282 key4 = ((u64) (ip4_tun_dst1) << 32) | (u64) (ip4_tun_src1);
283 }
284 else
285 {
286 key6[0] = ip6_tun_dst1[0];
287 key6[1] = ip6_tun_dst1[1];
288 key6[2] = ip6_tun_src1[0];
289 key6[3] = ip6_tun_src1[1];
290 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530292 if ((!is_ipv6 && cached_tunnel_key4 != key4) ||
293 (is_ipv6 && cached_tunnel_key6[0] != key6[0] &&
294 cached_tunnel_key6[1] != key6[1] &&
295 cached_tunnel_key6[2] != key6[2] &&
296 cached_tunnel_key6[3] != key6[3]))
297 {
298 vnet_hw_interface_t *hi;
299 gre_tunnel_t *t;
300 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530302 if (!is_ipv6)
303 p = hash_get (gm->tunnel_by_key4, key4);
304 else
305 p = hash_get_mem (gm->tunnel_by_key6, key6);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100306
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530307 if (!p)
308 {
309 next1 = GRE_INPUT_NEXT_DROP;
310 b1->error = node->errors[GRE_ERROR_NO_SUCH_TUNNEL];
311 goto drop1;
312 }
313 t = pool_elt_at_index (gm->tunnels, p[0]);
314 hi = vnet_get_hw_interface (gm->vnet_main, t->hw_if_index);
315 tunnel_sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530317 cached_tunnel_sw_if_index = tunnel_sw_if_index;
318 }
319 else
320 {
321 tunnel_sw_if_index = cached_tunnel_sw_if_index;
322 }
323 }
324 else
325 {
326 next1 = GRE_INPUT_NEXT_DROP;
327 goto drop1;
328 }
329 len = vlib_buffer_length_in_chain (vm, b1);
330 vlib_increment_combined_counter (im->combined_sw_if_counters
331 + VNET_INTERFACE_COUNTER_RX,
332 thread_index,
333 tunnel_sw_if_index,
334 1 /* packets */ ,
335 len /* bytes */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530337 vnet_buffer (b1)->sw_if_index[VLIB_RX] = tunnel_sw_if_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100338
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530339 drop1:
340 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
341 {
342 gre_rx_trace_t *tr = vlib_add_trace (vm, node,
343 b0, sizeof (*tr));
344 tr->tunnel_id = tunnel_sw_if_index;
345 if (!is_ipv6)
346 {
347 tr->length = ip4_0->length;
348 tr->src.ip4.as_u32 = ip4_0->src_address.as_u32;
349 tr->dst.ip4.as_u32 = ip4_0->dst_address.as_u32;
350 }
351 else
352 {
353 tr->length = ip6_0->payload_length;
354 tr->src.ip6.as_u64[0] = ip6_0->src_address.as_u64[0];
355 tr->src.ip6.as_u64[1] = ip6_0->src_address.as_u64[1];
356 tr->dst.ip6.as_u64[0] = ip6_0->dst_address.as_u64[0];
357 tr->dst.ip6.as_u64[1] = ip6_0->dst_address.as_u64[1];
358 }
359 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530361 if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
362 {
363 gre_rx_trace_t *tr = vlib_add_trace (vm, node,
364 b1, sizeof (*tr));
365 tr->tunnel_id = tunnel_sw_if_index;
366 if (!is_ipv6)
367 {
368 tr->length = ip4_1->length;
369 tr->src.ip4.as_u32 = ip4_1->src_address.as_u32;
370 tr->dst.ip4.as_u32 = ip4_1->dst_address.as_u32;
371 }
372 else
373 {
374 tr->length = ip6_1->payload_length;
375 tr->src.ip6.as_u64[0] = ip6_1->src_address.as_u64[0];
376 tr->src.ip6.as_u64[1] = ip6_1->src_address.as_u64[1];
377 tr->dst.ip6.as_u64[0] = ip6_1->dst_address.as_u64[0];
378 tr->dst.ip6.as_u64[1] = ip6_1->dst_address.as_u64[1];
379 }
380 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530382 vlib_buffer_advance (b0, sizeof (*h0));
383 vlib_buffer_advance (b1, sizeof (*h1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
386 to_next, n_left_to_next,
387 bi0, bi1, next0, next1);
388 }
Ciara Loftus7eac9162016-09-30 15:47:03 +0100389
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 while (n_left_from > 0 && n_left_to_next > 0)
391 {
392 u32 bi0;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530393 vlib_buffer_t *b0;
394 gre_header_t *h0;
395 ip4_header_t *ip4_0;
396 ip6_header_t *ip6_0;
397 u16 version0;
398 int verr0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 u32 i0, next0;
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530400 u32 ip4_tun_src0, ip4_tun_dst0;
401 u32 ip6_tun_src0[4], ip6_tun_dst0[4];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402
403 bi0 = from[0];
404 to_next[0] = bi0;
405 from += 1;
406 to_next += 1;
407 n_left_from -= 1;
408 n_left_to_next -= 1;
409
410 b0 = vlib_get_buffer (vm, bi0);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530411 ip4_0 = vlib_buffer_get_current (b0);
412 ip6_0 = (void *) ip4_0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530414 if (!is_ipv6)
415 {
416 ip4_tun_src0 = ip4_0->src_address.as_u32;
417 ip4_tun_dst0 = ip4_0->dst_address.as_u32;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530419 vlib_buffer_advance (b0, sizeof (*ip4_0));
420 }
421 else
422 {
423 ip6_tun_src0[0] = ip6_0->src_address.as_u64[0];
424 ip6_tun_src0[1] = ip6_0->src_address.as_u64[1];
425 ip6_tun_dst0[0] = ip6_0->dst_address.as_u64[0];
426 ip6_tun_dst0[1] = ip6_0->dst_address.as_u64[1];
Ciara Loftus7eac9162016-09-30 15:47:03 +0100427
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530428 vlib_buffer_advance (b0, sizeof (*ip6_0));
429 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
431 h0 = vlib_buffer_get_current (b0);
432
Damjan Marion63d5bae2017-04-04 01:28:26 +0200433 i0 = sparse_vec_index (gm->next_by_protocol, h0->protocol);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530434 next0 = vec_elt (gm->next_by_protocol, i0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Ciara Loftus7eac9162016-09-30 15:47:03 +0100436 b0->error =
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530437 node->errors[i0 == SPARSE_VEC_INVALID_INDEX
438 ? GRE_ERROR_UNKNOWN_PROTOCOL : GRE_ERROR_NONE];
Ciara Loftus7eac9162016-09-30 15:47:03 +0100439
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530440 version0 = clib_net_to_host_u16 (h0->flags_and_version);
441 verr0 = version0 & GRE_VERSION_MASK;
442 b0->error = verr0 ? node->errors[GRE_ERROR_UNSUPPORTED_VERSION]
443 : b0->error;
444 next0 = verr0 ? GRE_INPUT_NEXT_DROP : next0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445
David Hothama8cd3092016-09-19 09:55:07 -0700446
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530447 /* For IP payload we need to find source interface
448 so we can increase counters and help forward node to
449 pick right FIB */
450 /* RPF check for ip4/ip6 input */
451 if (PREDICT_TRUE (next0 == GRE_INPUT_NEXT_IP4_INPUT
452 || next0 == GRE_INPUT_NEXT_IP6_INPUT
453 || next0 == GRE_INPUT_NEXT_ETHERNET_INPUT
454 || next0 == GRE_INPUT_NEXT_MPLS_INPUT))
455 {
456 u64 key4, key6[4];
457 if (!is_ipv6)
458 {
459 key4 = ((u64) (ip4_tun_dst0) << 32) | (u64) (ip4_tun_src0);
460 }
461 else
462 {
463 key6[0] = ip6_tun_dst0[0];
464 key6[1] = ip6_tun_dst0[1];
465 key6[2] = ip6_tun_src0[0];
466 key6[3] = ip6_tun_src0[1];
467 }
Ciara Loftus7eac9162016-09-30 15:47:03 +0100468
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530469 if ((!is_ipv6 && cached_tunnel_key4 != key4) ||
470 (is_ipv6 && cached_tunnel_key6[0] != key6[0] &&
471 cached_tunnel_key6[1] != key6[1] &&
472 cached_tunnel_key6[2] != key6[2] &&
473 cached_tunnel_key6[3] != key6[3]))
474 {
475 vnet_hw_interface_t *hi;
476 gre_tunnel_t *t;
477 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530479 if (!is_ipv6)
480 p = hash_get (gm->tunnel_by_key4, key4);
481 else
482 p = hash_get_mem (gm->tunnel_by_key6, key6);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100483
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530484 if (!p)
485 {
486 next0 = GRE_INPUT_NEXT_DROP;
487 b0->error = node->errors[GRE_ERROR_NO_SUCH_TUNNEL];
488 goto drop;
489 }
490 t = pool_elt_at_index (gm->tunnels, p[0]);
491 hi = vnet_get_hw_interface (gm->vnet_main, t->hw_if_index);
492 tunnel_sw_if_index = hi->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530494 cached_tunnel_sw_if_index = tunnel_sw_if_index;
495 }
496 else
497 {
498 tunnel_sw_if_index = cached_tunnel_sw_if_index;
499 }
500 }
501 else
502 {
503 next0 = GRE_INPUT_NEXT_DROP;
504 goto drop;
505 }
506 len = vlib_buffer_length_in_chain (vm, b0);
507 vlib_increment_combined_counter (im->combined_sw_if_counters
508 + VNET_INTERFACE_COUNTER_RX,
509 thread_index,
510 tunnel_sw_if_index,
511 1 /* packets */ ,
512 len /* bytes */ );
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100513
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530514 vnet_buffer (b0)->sw_if_index[VLIB_RX] = tunnel_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530516 drop:
517 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
518 {
519 gre_rx_trace_t *tr = vlib_add_trace (vm, node,
520 b0, sizeof (*tr));
521 tr->tunnel_id = tunnel_sw_if_index;
522 if (!is_ipv6)
523 {
524 tr->length = ip4_0->length;
525 tr->src.ip4.as_u32 = ip4_0->src_address.as_u32;
526 tr->dst.ip4.as_u32 = ip4_0->dst_address.as_u32;
527 }
528 else
529 {
530 tr->length = ip6_0->payload_length;
531 tr->src.ip6.as_u64[0] = ip6_0->src_address.as_u64[0];
532 tr->src.ip6.as_u64[1] = ip6_0->src_address.as_u64[1];
533 tr->dst.ip6.as_u64[0] = ip6_0->dst_address.as_u64[0];
534 tr->dst.ip6.as_u64[1] = ip6_0->dst_address.as_u64[1];
535 }
536 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530538 vlib_buffer_advance (b0, sizeof (*h0));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
540 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
541 to_next, n_left_to_next,
542 bi0, next0);
543 }
544
545 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
546 }
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530547 vlib_node_increment_counter (vm,
548 !is_ipv6 ? gre4_input_node.index :
549 gre6_input_node.index, GRE_ERROR_PKTS_DECAP,
550 from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551 return from_frame->n_vectors;
552}
553
Ciara Loftus7eac9162016-09-30 15:47:03 +0100554static uword
555gre4_input (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530556 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100557{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530558 return gre_input (vm, node, from_frame, /* is_ip6 */ 0);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100559}
560
561static uword
562gre6_input (vlib_main_t * vm,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530563 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
Ciara Loftus7eac9162016-09-30 15:47:03 +0100564{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530565 return gre_input (vm, node, from_frame, /* is_ip6 */ 1);
Ciara Loftus7eac9162016-09-30 15:47:03 +0100566}
567
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530568static char *gre_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569#define gre_error(n,s) s,
570#include "error.def"
571#undef gre_error
572};
573
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530574/* *INDENT-OFF* */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100575VLIB_REGISTER_NODE (gre4_input_node) = {
576 .function = gre4_input,
577 .name = "gre4-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578 /* Takes a vector of packets. */
579 .vector_size = sizeof (u32),
580
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581 .n_errors = GRE_N_ERROR,
582 .error_strings = gre_error_strings,
583
584 .n_next_nodes = GRE_INPUT_N_NEXT,
585 .next_nodes = {
586#define _(s,n) [GRE_INPUT_NEXT_##s] = n,
587 foreach_gre_input_next
588#undef _
589 },
590
591 .format_buffer = format_gre_header_with_length,
592 .format_trace = format_gre_rx_trace,
593 .unformat_buffer = unformat_gre_header,
594};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530595/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530597/* *INDENT-OFF* */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100598VLIB_REGISTER_NODE (gre6_input_node) = {
599 .function = gre6_input,
600 .name = "gre6-input",
601 /* Takes a vector of packets. */
602 .vector_size = sizeof (u32),
603
604 .runtime_data_bytes = sizeof (gre_input_runtime_t),
605
606 .n_errors = GRE_N_ERROR,
607 .error_strings = gre_error_strings,
608
609 .n_next_nodes = GRE_INPUT_N_NEXT,
610 .next_nodes = {
611#define _(s,n) [GRE_INPUT_NEXT_##s] = n,
612 foreach_gre_input_next
613#undef _
614 },
615
616 .format_buffer = format_gre_header_with_length,
617 .format_trace = format_gre_rx_trace,
618 .unformat_buffer = unformat_gre_header,
619};
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530620/* *INDENT-ON* */
Ciara Loftus7eac9162016-09-30 15:47:03 +0100621
622VLIB_NODE_FUNCTION_MULTIARCH (gre4_input_node, gre4_input)
623VLIB_NODE_FUNCTION_MULTIARCH (gre6_input_node, gre6_input)
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530624 void
625 gre_register_input_protocol (vlib_main_t * vm,
626 gre_protocol_t protocol, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530628 gre_main_t *em = &gre_main;
629 gre_protocol_info_t *pi;
630 u16 *n;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100631 u32 i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632
633 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530634 clib_error_t *error = vlib_call_init_function (vm, gre_input_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635 if (error)
636 clib_error_report (error);
637 }
638
639 pi = gre_get_protocol_info (em, protocol);
640 pi->node_index = node_index;
Ciara Loftus7eac9162016-09-30 15:47:03 +0100641 pi->next_index = vlib_node_add_next (vm, gre4_input_node.index, node_index);
642 i = vlib_node_add_next (vm, gre6_input_node.index, node_index);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530643 ASSERT (i == pi->next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644
645 /* Setup gre protocol -> next index sparse vector mapping. */
Damjan Marion63d5bae2017-04-04 01:28:26 +0200646 n = sparse_vec_validate (em->next_by_protocol,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530647 clib_host_to_net_u16 (protocol));
Damjan Marion63d5bae2017-04-04 01:28:26 +0200648 n[0] = pi->next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649}
650
651static void
652gre_setup_node (vlib_main_t * vm, u32 node_index)
653{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530654 vlib_node_t *n = vlib_get_node (vm, node_index);
655 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656
657 n->format_buffer = format_gre_header_with_length;
658 n->unformat_buffer = unformat_gre_header;
659 pn->unformat_edit = unformat_pg_gre_header;
660}
661
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530662static clib_error_t *
663gre_input_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664{
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530665 gre_main_t *gm = &gre_main;
David Hothama8cd3092016-09-19 09:55:07 -0700666 vlib_node_t *ethernet_input, *ip4_input, *ip6_input, *mpls_unicast_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
668 {
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530669 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670 error = vlib_call_init_function (vm, gre_init);
671 if (error)
672 clib_error_report (error);
673 }
674
Ciara Loftus7eac9162016-09-30 15:47:03 +0100675 gre_setup_node (vm, gre4_input_node.index);
676 gre_setup_node (vm, gre6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677
Damjan Marion63d5bae2017-04-04 01:28:26 +0200678 gm->next_by_protocol = sparse_vec_new
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530679 ( /* elt bytes */ sizeof (gm->next_by_protocol[0]),
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680 /* bits in index */ BITS (((gre_header_t *) 0)->protocol));
681
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682 /* These could be moved to the supported protocol input node defn's */
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530683 ethernet_input = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
684 ASSERT (ethernet_input);
685 ip4_input = vlib_get_node_by_name (vm, (u8 *) "ip4-input");
686 ASSERT (ip4_input);
687 ip6_input = vlib_get_node_by_name (vm, (u8 *) "ip6-input");
688 ASSERT (ip6_input);
689 mpls_unicast_input = vlib_get_node_by_name (vm, (u8 *) "mpls-input");
690 ASSERT (mpls_unicast_input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530692 gre_register_input_protocol (vm, GRE_PROTOCOL_teb, ethernet_input->index);
David Hothama8cd3092016-09-19 09:55:07 -0700693
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530694 gre_register_input_protocol (vm, GRE_PROTOCOL_ip4, ip4_input->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530696 gre_register_input_protocol (vm, GRE_PROTOCOL_ip6, ip6_input->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697
698 gre_register_input_protocol (vm, GRE_PROTOCOL_mpls_unicast,
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530699 mpls_unicast_input->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700
Ciara Loftus7eac9162016-09-30 15:47:03 +0100701 ip4_register_protocol (IP_PROTOCOL_GRE, gre4_input_node.index);
702 ip6_register_protocol (IP_PROTOCOL_GRE, gre6_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703
704 return 0;
705}
706
707VLIB_INIT_FUNCTION (gre_input_init);
Swarup Nayak9ff647a2017-11-27 10:27:43 +0530708
709/*
710 * fd.io coding-style-patch-verification: ON
711 *
712 * Local Variables:
713 * eval: (c-set-style "gnu")
714 * End:
715 */