blob: c5522bc81b2bd4360e8bcddbbadcae551490caa0 [file] [log] [blame]
Eyal Bari3ce0b082018-01-17 12:06:32 +02001
Ed Warnickecb9cada2015-12-08 15:45:58 -07002/*
3 * Copyright (c) 2015 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include <vppinfra/error.h>
17#include <vppinfra/hash.h>
18#include <vnet/vnet.h>
19#include <vnet/ip/ip.h>
20#include <vnet/ethernet/ethernet.h>
21#include <vnet/vxlan/vxlan.h>
22
23/* Statistics (not all errors) */
24#define foreach_vxlan_encap_error \
John Lo3ef822e2016-06-07 09:14:07 -040025_(ENCAPSULATED, "good packets encapsulated")
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
27static char * vxlan_encap_error_strings[] = {
28#define _(sym,string) string,
29 foreach_vxlan_encap_error
30#undef _
31};
32
33typedef enum {
34#define _(sym,str) VXLAN_ENCAP_ERROR_##sym,
35 foreach_vxlan_encap_error
36#undef _
37 VXLAN_ENCAP_N_ERROR,
38} vxlan_encap_error_t;
39
40typedef enum {
Ed Warnickecb9cada2015-12-08 15:45:58 -070041 VXLAN_ENCAP_NEXT_DROP,
42 VXLAN_ENCAP_N_NEXT,
43} vxlan_encap_next_t;
44
45typedef struct {
46 u32 tunnel_index;
47 u32 vni;
48} vxlan_encap_trace_t;
49
50u8 * format_vxlan_encap_trace (u8 * s, va_list * args)
51{
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 *);
54 vxlan_encap_trace_t * t
55 = va_arg (*args, vxlan_encap_trace_t *);
56
John Loc42912d2016-11-07 18:30:47 -050057 s = format (s, "VXLAN encap to vxlan_tunnel%d vni %d",
58 t->tunnel_index, t->vni);
Ed Warnickecb9cada2015-12-08 15:45:58 -070059 return s;
60}
61
John Loc42912d2016-11-07 18:30:47 -050062always_inline uword
63vxlan_encap_inline (vlib_main_t * vm,
64 vlib_node_runtime_t * node,
65 vlib_frame_t * from_frame,
John Lof4215a62017-09-18 00:20:05 -040066 u8 is_ip4, u8 csum_offload)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067{
68 u32 n_left_from, next_index, * from, * to_next;
69 vxlan_main_t * vxm = &vxlan_main;
70 vnet_main_t * vnm = vxm->vnet_main;
71 vnet_interface_main_t * im = &vnm->interface_main;
John Lo25d417f2018-02-15 15:47:53 -050072 vlib_combined_counter_main_t * tx_counter =
73 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_TX;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 u32 pkts_encapsulated = 0;
Damjan Marion586afd72017-04-05 19:18:20 +020075 u32 thread_index = vlib_get_thread_index();
Ed Warnickecb9cada2015-12-08 15:45:58 -070076 u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
John Loc42912d2016-11-07 18:30:47 -050077 u32 sw_if_index0 = 0, sw_if_index1 = 0;
78 u32 next0 = 0, next1 = 0;
John Loc42912d2016-11-07 18:30:47 -050079 vxlan_tunnel_t * t0 = NULL, * t1 = NULL;
John Lo25d417f2018-02-15 15:47:53 -050080 index_t dpoi_idx0 = INDEX_INVALID, dpoi_idx1 = INDEX_INVALID;
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82 from = vlib_frame_vector_args (from_frame);
83 n_left_from = from_frame->n_vectors;
84
85 next_index = node->cached_next_index;
86 stats_sw_if_index = node->runtime_data[0];
87 stats_n_packets = stats_n_bytes = 0;
88
Eyal Bari3ce0b082018-01-17 12:06:32 +020089 STATIC_ASSERT_SIZEOF(ip6_vxlan_header_t, 56);
90 STATIC_ASSERT_SIZEOF(ip4_vxlan_header_t, 36);
91
92 word const underlay_hdr_len = is_ip4 ?
93 sizeof(ip4_vxlan_header_t) : sizeof(ip6_vxlan_header_t);
94 u16 const l3_len = is_ip4 ? sizeof(ip4_header_t) : sizeof(ip6_header_t);
95 u32 const csum_flags = is_ip4 ?
96 VNET_BUFFER_F_OFFLOAD_IP_CKSUM | VNET_BUFFER_F_IS_IP4 |
97 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM :
98 VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
99
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 while (n_left_from > 0)
101 {
102 u32 n_left_to_next;
103
104 vlib_get_next_frame (vm, node, next_index,
105 to_next, n_left_to_next);
106
107 while (n_left_from >= 4 && n_left_to_next >= 2)
108 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 /* Prefetch next iteration. */
110 {
111 vlib_buffer_t * p2, * p3;
112
113 p2 = vlib_get_buffer (vm, from[2]);
114 p3 = vlib_get_buffer (vm, from[3]);
115
116 vlib_prefetch_buffer_header (p2, LOAD);
117 vlib_prefetch_buffer_header (p3, LOAD);
118
119 CLIB_PREFETCH (p2->data, 2*CLIB_CACHE_LINE_BYTES, LOAD);
120 CLIB_PREFETCH (p3->data, 2*CLIB_CACHE_LINE_BYTES, LOAD);
121 }
122
Eyal Bari3ce0b082018-01-17 12:06:32 +0200123 u32 bi0 = from[0];
124 u32 bi1 = from[1];
125
126 vlib_buffer_t * b0 = vlib_get_buffer (vm, bi0);
127 vlib_buffer_t * b1 = vlib_get_buffer (vm, bi1);
128 u32 flow_hash0 = vnet_l2_compute_flow_hash (b0);
129 u32 flow_hash1 = vnet_l2_compute_flow_hash (b1);
130
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131 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
John Loc42912d2016-11-07 18:30:47 -0500138 /* Get next node index and adj index from tunnel next_dpo */
139 if (sw_if_index0 != vnet_buffer(b0)->sw_if_index[VLIB_TX])
140 {
141 sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_TX];
John Lo25d417f2018-02-15 15:47:53 -0500142 vnet_hw_interface_t *hi0 =
143 vnet_get_sup_hw_interface (vnm, sw_if_index0);
John Loc42912d2016-11-07 18:30:47 -0500144 t0 = &vxm->tunnels[hi0->dev_instance];
John Lo25d417f2018-02-15 15:47:53 -0500145 /* Note: change to always set next0 if it may set to drop */
John Loc42912d2016-11-07 18:30:47 -0500146 next0 = t0->next_dpo.dpoi_next_node;
John Lo25d417f2018-02-15 15:47:53 -0500147 dpoi_idx0 = t0->next_dpo.dpoi_index;
John Loc42912d2016-11-07 18:30:47 -0500148 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
John Loc42912d2016-11-07 18:30:47 -0500150 /* Get next node index and adj index from tunnel next_dpo */
151 if (sw_if_index1 != vnet_buffer(b1)->sw_if_index[VLIB_TX])
152 {
John Lo25d417f2018-02-15 15:47:53 -0500153 if (sw_if_index0 == vnet_buffer(b1)->sw_if_index[VLIB_TX])
154 {
155 sw_if_index1 = sw_if_index0;
156 t1 = t0;
157 next1 = next0;
158 dpoi_idx1 = dpoi_idx0;
159 }
160 else
161 {
162 sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_TX];
163 vnet_hw_interface_t *hi1 =
164 vnet_get_sup_hw_interface (vnm, sw_if_index1);
165 t1 = &vxm->tunnels[hi1->dev_instance];
166 /* Note: change to always set next1 if it may set to drop */
167 next1 = t1->next_dpo.dpoi_next_node;
168 dpoi_idx1 = t1->next_dpo.dpoi_index;
169 }
John Loc42912d2016-11-07 18:30:47 -0500170 }
John Lo25d417f2018-02-15 15:47:53 -0500171
172 vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpoi_idx0;
173 vnet_buffer(b1)->ip.adj_index[VLIB_TX] = dpoi_idx1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Eyal Bari3ce0b082018-01-17 12:06:32 +0200175 ASSERT(vec_len(t0->rewrite) == underlay_hdr_len);
176 ASSERT(vec_len(t1->rewrite) == underlay_hdr_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
Eyal Bari3ce0b082018-01-17 12:06:32 +0200178 vlib_buffer_advance (b0, -underlay_hdr_len);
179 vlib_buffer_advance (b1, -underlay_hdr_len);
180
181 u32 len0 = vlib_buffer_length_in_chain (vm, b0);
182 u32 len1 = vlib_buffer_length_in_chain (vm, b1);
183 u16 payload_l0 = clib_host_to_net_u16 (len0 - l3_len);
184 u16 payload_l1 = clib_host_to_net_u16 (len1 - l3_len);
185
186 ip4_header_t * ip4_0, * ip4_1;
187 ip6_header_t * ip6_0, * ip6_1;
188 udp_header_t * udp0, * udp1;
189 u8 * l3_0, * l3_1;
John Loc42912d2016-11-07 18:30:47 -0500190 if (is_ip4)
191 {
Eyal Bari3ce0b082018-01-17 12:06:32 +0200192 ip4_vxlan_header_t * hdr0 = vlib_buffer_get_current(b0);
193 ip4_vxlan_header_t * rewrite0 = (void *)t0->rewrite;
194 ip4_vxlan_header_t * hdr1 = vlib_buffer_get_current(b1);
195 ip4_vxlan_header_t * rewrite1 = (void *)t1->rewrite;
196 *hdr0 = *rewrite0;
197 *hdr1 = *rewrite1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
John Loc42912d2016-11-07 18:30:47 -0500199 /* Fix the IP4 checksum and length */
Eyal Bari3ce0b082018-01-17 12:06:32 +0200200 ip4_0 = &hdr0->ip4;
201 ip4_1 = &hdr1->ip4;
202 ip4_0->length = clib_host_to_net_u16 (len0);
203 ip4_1->length = clib_host_to_net_u16 (len1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
Eyal Bari3ce0b082018-01-17 12:06:32 +0200205 l3_0 = (u8 *)ip4_0;
206 l3_1 = (u8 *)ip4_1;
207 udp0 = &hdr0->udp;
208 udp1 = &hdr1->udp;
John Loc42912d2016-11-07 18:30:47 -0500209 }
210 else /* ipv6 */
211 {
Eyal Bari3ce0b082018-01-17 12:06:32 +0200212 ip6_vxlan_header_t * hdr0 = vlib_buffer_get_current(b0);
213 ip6_vxlan_header_t * rewrite0 = (void *) t0->rewrite;
214 ip6_vxlan_header_t * hdr1 = vlib_buffer_get_current(b0);
215 ip6_vxlan_header_t * rewrite1 = (void *) t1->rewrite;
216 *hdr0 = *rewrite0;
217 *hdr1 = *rewrite1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
John Loc42912d2016-11-07 18:30:47 -0500219 /* Fix IP6 payload length */
Eyal Bari3ce0b082018-01-17 12:06:32 +0200220 ip6_0 = &hdr0->ip6;
221 ip6_1 = &hdr1->ip6;
222 ip6_0->payload_length = payload_l0;
223 ip6_1->payload_length = payload_l1;
John Loc42912d2016-11-07 18:30:47 -0500224
Eyal Bari3ce0b082018-01-17 12:06:32 +0200225 l3_0 = (u8 *)ip6_0;
226 l3_1 = (u8 *)ip6_1;
227 udp0 = &hdr0->udp;
228 udp1 = &hdr1->udp;
John Loc42912d2016-11-07 18:30:47 -0500229 }
Chris Luke99cb3352016-04-26 10:49:53 -0400230
Eyal Bari3ce0b082018-01-17 12:06:32 +0200231 /* Fix UDP length and set source port */
232 udp0->length = payload_l0;
233 udp0->src_port = flow_hash0;
234 udp1->length = payload_l1;
235 udp1->src_port = flow_hash1;
236
237 if (csum_offload)
238 {
239 b0->flags |= csum_flags;
240 vnet_buffer (b0)->l3_hdr_offset = l3_0 - b0->data;
241 vnet_buffer (b0)->l4_hdr_offset = (u8 *) udp0 - b0->data;
242 b1->flags |= csum_flags;
243 vnet_buffer (b1)->l3_hdr_offset = l3_1 - b1->data;
244 vnet_buffer (b1)->l4_hdr_offset = (u8 *) udp1 - b1->data;
245 }
246 /* IPv4 UDP checksum only if checksum offload is used */
247 else if (is_ip4)
248 {
249 ip_csum_t sum0 = ip4_0->checksum;
250 sum0 = ip_csum_update (sum0, 0, ip4_0->length, ip4_header_t,
251 length /* changed member */);
252 ip4_0->checksum = ip_csum_fold (sum0);
253 ip_csum_t sum1 = ip4_1->checksum;
254 sum1 = ip_csum_update (sum1, 0, ip4_1->length, ip4_header_t,
255 length /* changed member */);
256 ip4_1->checksum = ip_csum_fold (sum1);
257 }
258 /* IPv6 UDP checksum is mandatory */
259 else
260 {
261 int bogus = 0;
262
263 udp0->checksum = ip6_tcp_udp_icmp_compute_checksum
264 (vm, b0, ip6_0, &bogus);
265 ASSERT(bogus == 0);
266 if (udp0->checksum == 0)
267 udp0->checksum = 0xffff;
268 udp1->checksum = ip6_tcp_udp_icmp_compute_checksum
269 (vm, b1, ip6_1, &bogus);
270 ASSERT(bogus == 0);
271 if (udp1->checksum == 0)
272 udp1->checksum = 0xffff;
273 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
275 /* Batch stats increment on the same vxlan tunnel so counter is not
276 incremented per packet. Note stats are still incremented for deleted
277 and admin-down tunnel where packets are dropped. It is not worthwhile
278 to check for this rare case and affect normal path performance. */
Eyal Bari3ce0b082018-01-17 12:06:32 +0200279 if (sw_if_index0 == sw_if_index1)
280 {
281 if (PREDICT_FALSE(sw_if_index0 != stats_sw_if_index))
282 {
283 if (stats_n_packets)
284 {
285 vlib_increment_combined_counter (tx_counter, thread_index,
286 stats_sw_if_index, stats_n_packets, stats_n_bytes);
287 stats_n_packets = stats_n_bytes = 0;
288 }
289 stats_sw_if_index = sw_if_index0;
290 }
291 stats_n_packets += 2;
292 stats_n_bytes += len0 + len1;
293 }
294 else
295 {
296 vlib_increment_combined_counter (tx_counter, thread_index,
297 sw_if_index0, 1, len0);
298 vlib_increment_combined_counter (tx_counter, thread_index,
299 sw_if_index1, 1, len1);
300 }
301 pkts_encapsulated += 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302
303 if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
304 {
305 vxlan_encap_trace_t *tr =
306 vlib_add_trace (vm, node, b0, sizeof (*tr));
307 tr->tunnel_index = t0 - vxm->tunnels;
308 tr->vni = t0->vni;
309 }
310
311 if (PREDICT_FALSE(b1->flags & VLIB_BUFFER_IS_TRACED))
312 {
313 vxlan_encap_trace_t *tr =
314 vlib_add_trace (vm, node, b1, sizeof (*tr));
315 tr->tunnel_index = t1 - vxm->tunnels;
316 tr->vni = t1->vni;
317 }
318
319 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
320 to_next, n_left_to_next,
321 bi0, bi1, next0, next1);
322 }
323
324 while (n_left_from > 0 && n_left_to_next > 0)
325 {
Eyal Bari3ce0b082018-01-17 12:06:32 +0200326 u32 bi0 = from[0];
327 vlib_buffer_t * b0 = vlib_get_buffer (vm, bi0);
328 u32 flow_hash0 = vnet_l2_compute_flow_hash(b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 to_next[0] = bi0;
331 from += 1;
332 to_next += 1;
333 n_left_from -= 1;
334 n_left_to_next -= 1;
335
John Loc42912d2016-11-07 18:30:47 -0500336 /* Get next node index and adj index from tunnel next_dpo */
337 if (sw_if_index0 != vnet_buffer(b0)->sw_if_index[VLIB_TX])
338 {
339 sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_TX];
John Lo25d417f2018-02-15 15:47:53 -0500340 vnet_hw_interface_t *hi0 =
341 vnet_get_sup_hw_interface (vnm, sw_if_index0);
John Loc42912d2016-11-07 18:30:47 -0500342 t0 = &vxm->tunnels[hi0->dev_instance];
343 /* Note: change to always set next0 if it may be set to drop */
344 next0 = t0->next_dpo.dpoi_next_node;
John Lo25d417f2018-02-15 15:47:53 -0500345 dpoi_idx0 = t0->next_dpo.dpoi_index;
John Loc42912d2016-11-07 18:30:47 -0500346 }
John Lo25d417f2018-02-15 15:47:53 -0500347 vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpoi_idx0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Eyal Bari3ce0b082018-01-17 12:06:32 +0200349 ASSERT(vec_len(t0->rewrite) == underlay_hdr_len);
350 vlib_buffer_advance (b0, -underlay_hdr_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351
Eyal Bari3ce0b082018-01-17 12:06:32 +0200352 u32 len0 = vlib_buffer_length_in_chain (vm, b0);
353 u16 payload_l0 = clib_host_to_net_u16 (len0 - l3_len);
354
355 udp_header_t * udp0;
356 ip4_header_t * ip4_0;
357 ip6_header_t * ip6_0;
358 u8 * l3_0;
John Loc42912d2016-11-07 18:30:47 -0500359 if (is_ip4)
360 {
Eyal Bari3ce0b082018-01-17 12:06:32 +0200361 ip4_vxlan_header_t * rewrite = (void *)t0->rewrite;
362 ip4_vxlan_header_t * hdr = vlib_buffer_get_current(b0);
363 *hdr = *rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364
John Loc42912d2016-11-07 18:30:47 -0500365 /* Fix the IP4 checksum and length */
Eyal Bari3ce0b082018-01-17 12:06:32 +0200366 ip4_0 = &hdr->ip4;
367 ip4_0->length = clib_host_to_net_u16 (len0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Eyal Bari3ce0b082018-01-17 12:06:32 +0200369 l3_0 = (u8*)ip4_0;
370 udp0 = &hdr->udp;
John Loc42912d2016-11-07 18:30:47 -0500371 }
John Loc42912d2016-11-07 18:30:47 -0500372 else /* ip6 path */
373 {
Eyal Bari3ce0b082018-01-17 12:06:32 +0200374 ip6_vxlan_header_t * hdr = vlib_buffer_get_current(b0);
375 ip6_vxlan_header_t * rewrite = (void *) t0->rewrite;
376 *hdr = *rewrite;
Chris Luke99cb3352016-04-26 10:49:53 -0400377
John Loc42912d2016-11-07 18:30:47 -0500378 /* Fix IP6 payload length */
Eyal Bari3ce0b082018-01-17 12:06:32 +0200379 ip6_0 = &hdr->ip6;
380 ip6_0->payload_length = payload_l0;
Chris Luke99cb3352016-04-26 10:49:53 -0400381
Eyal Bari3ce0b082018-01-17 12:06:32 +0200382 l3_0 = (u8 *)ip6_0;
383 udp0 = &hdr->udp;
John Loc42912d2016-11-07 18:30:47 -0500384 }
385
Eyal Bari3ce0b082018-01-17 12:06:32 +0200386 /* Fix UDP length and set source port */
387 udp0->length = payload_l0;
388 udp0->src_port = flow_hash0;
389
390 if (csum_offload)
391 {
392 b0->flags |= csum_flags;
393 vnet_buffer (b0)->l3_hdr_offset = l3_0 - b0->data;
394 vnet_buffer (b0)->l4_hdr_offset = (u8 *) udp0 - b0->data;
395 }
396 /* IPv4 UDP checksum only if checksum offload is used */
397 else if (is_ip4)
398 {
399 ip_csum_t sum0 = ip4_0->checksum;
400 sum0 = ip_csum_update (sum0, 0, ip4_0->length, ip4_header_t,
401 length /* changed member */);
402 ip4_0->checksum = ip_csum_fold (sum0);
403 }
404 /* IPv6 UDP checksum is mandatory */
405 else
406 {
407 int bogus = 0;
408
409 udp0->checksum = ip6_tcp_udp_icmp_compute_checksum
410 (vm, b0, ip6_0, &bogus);
411 ASSERT(bogus == 0);
412 if (udp0->checksum == 0)
413 udp0->checksum = 0xffff;
414 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415
416 /* Batch stats increment on the same vxlan tunnel so counter is not
417 incremented per packet. Note stats are still incremented for deleted
418 and admin-down tunnel where packets are dropped. It is not worthwhile
419 to check for this rare case and affect normal path performance. */
420 if (PREDICT_FALSE (sw_if_index0 != stats_sw_if_index))
421 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422 if (stats_n_packets)
Eyal Bari3ce0b082018-01-17 12:06:32 +0200423 {
424 vlib_increment_combined_counter (tx_counter, thread_index,
425 stats_sw_if_index, stats_n_packets, stats_n_bytes);
426 stats_n_bytes = stats_n_packets = 0;
427 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 stats_sw_if_index = sw_if_index0;
429 }
Eyal Bari3ce0b082018-01-17 12:06:32 +0200430 stats_n_packets += 1;
431 stats_n_bytes += len0;
432 pkts_encapsulated ++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433
434 if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
435 {
436 vxlan_encap_trace_t *tr =
437 vlib_add_trace (vm, node, b0, sizeof (*tr));
438 tr->tunnel_index = t0 - vxm->tunnels;
439 tr->vni = t0->vni;
440 }
441 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
442 to_next, n_left_to_next,
443 bi0, next0);
444 }
445
446 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
447 }
448
449 /* Do we still need this now that tunnel tx stats is kept? */
450 vlib_node_increment_counter (vm, node->node_index,
451 VXLAN_ENCAP_ERROR_ENCAPSULATED,
452 pkts_encapsulated);
453
454 /* Increment any remaining batch stats */
455 if (stats_n_packets)
456 {
Eyal Bari3ce0b082018-01-17 12:06:32 +0200457 vlib_increment_combined_counter (tx_counter, thread_index,
458 stats_sw_if_index, stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 node->runtime_data[0] = stats_sw_if_index;
460 }
461
462 return from_frame->n_vectors;
463}
464
John Loc42912d2016-11-07 18:30:47 -0500465static uword
466vxlan4_encap (vlib_main_t * vm,
467 vlib_node_runtime_t * node,
468 vlib_frame_t * from_frame)
469{
John Lof4215a62017-09-18 00:20:05 -0400470 /* Disable chksum offload as setup overhead in tx node is not worthwhile
471 for ip4 header checksum only, unless udp checksum is also required */
472 return vxlan_encap_inline (vm, node, from_frame, /* is_ip4 */ 1,
473 /* csum_offload */ 0);
John Loc42912d2016-11-07 18:30:47 -0500474}
475
476static uword
477vxlan6_encap (vlib_main_t * vm,
478 vlib_node_runtime_t * node,
479 vlib_frame_t * from_frame)
480{
John Lof4215a62017-09-18 00:20:05 -0400481 /* Enable checksum offload for ip6 as udp checksum is mandatory, */
482 return vxlan_encap_inline (vm, node, from_frame, /* is_ip4 */ 0,
483 /* csum_offload */ 1);
John Loc42912d2016-11-07 18:30:47 -0500484}
485
486VLIB_REGISTER_NODE (vxlan4_encap_node) = {
487 .function = vxlan4_encap,
488 .name = "vxlan4-encap",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 .vector_size = sizeof (u32),
490 .format_trace = format_vxlan_encap_trace,
491 .type = VLIB_NODE_TYPE_INTERNAL,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 .n_errors = ARRAY_LEN(vxlan_encap_error_strings),
493 .error_strings = vxlan_encap_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494 .n_next_nodes = VXLAN_ENCAP_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 .next_nodes = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496 [VXLAN_ENCAP_NEXT_DROP] = "error-drop",
497 },
498};
Damjan Marion1c80e832016-05-11 23:07:18 +0200499
John Loc42912d2016-11-07 18:30:47 -0500500VLIB_NODE_FUNCTION_MULTIARCH (vxlan4_encap_node, vxlan4_encap)
501
502VLIB_REGISTER_NODE (vxlan6_encap_node) = {
503 .function = vxlan6_encap,
504 .name = "vxlan6-encap",
505 .vector_size = sizeof (u32),
506 .format_trace = format_vxlan_encap_trace,
507 .type = VLIB_NODE_TYPE_INTERNAL,
508 .n_errors = ARRAY_LEN(vxlan_encap_error_strings),
509 .error_strings = vxlan_encap_error_strings,
510 .n_next_nodes = VXLAN_ENCAP_N_NEXT,
511 .next_nodes = {
512 [VXLAN_ENCAP_NEXT_DROP] = "error-drop",
513 },
514};
515
516VLIB_NODE_FUNCTION_MULTIARCH (vxlan6_encap_node, vxlan6_encap)
Damjan Marion1c80e832016-05-11 23:07:18 +0200517