blob: a606b89118916daa6eca77e8d96e8931a2d4373d [file] [log] [blame]
Mohsin Kazmi61b94c62018-08-20 18:32:39 +02001/*
2 * Copyright (c) 2018 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 <vppinfra/error.h>
16#include <vppinfra/hash.h>
17#include <vnet/vnet.h>
18#include <vnet/ip/ip.h>
19#include <vnet/ethernet/ethernet.h>
20#include <vnet/vxlan-gbp/vxlan_gbp.h>
21#include <vnet/qos/qos_types.h>
22#include <vnet/adj/rewrite.h>
23
24/* Statistics (not all errors) */
25#define foreach_vxlan_gbp_encap_error \
26_(ENCAPSULATED, "good packets encapsulated")
27
28static char *vxlan_gbp_encap_error_strings[] = {
29#define _(sym,string) string,
30 foreach_vxlan_gbp_encap_error
31#undef _
32};
33
34typedef enum
35{
36#define _(sym,str) VXLAN_GBP_ENCAP_ERROR_##sym,
37 foreach_vxlan_gbp_encap_error
38#undef _
39 VXLAN_GBP_ENCAP_N_ERROR,
40} vxlan_gbp_encap_error_t;
41
42typedef enum
43{
44 VXLAN_GBP_ENCAP_NEXT_DROP,
45 VXLAN_GBP_ENCAP_N_NEXT,
46} vxlan_gbp_encap_next_t;
47
48typedef struct
49{
50 u32 tunnel_index;
51 u32 vni;
52 u16 sclass;
Neale Ranns45db8852019-01-09 00:04:04 -080053 u8 flags;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020054} vxlan_gbp_encap_trace_t;
55
Filip Tehlare1714d32019-03-05 03:01:43 -080056#ifndef CLIB_MARCH_VARIANT
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020057u8 *
58format_vxlan_gbp_encap_trace (u8 * s, va_list * args)
59{
60 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
61 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
62 vxlan_gbp_encap_trace_t *t = va_arg (*args, vxlan_gbp_encap_trace_t *);
63
Neale Ranns45db8852019-01-09 00:04:04 -080064 s =
65 format (s,
Neale Ranns0e967e02019-03-28 08:01:47 -070066 "VXLAN_GBP encap to vxlan_gbp_tunnel%d vni %d sclass %d flags %U",
67 t->tunnel_index, t->vni, t->sclass,
68 format_vxlan_gbp_header_gpflags, t->flags);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020069 return s;
70}
Filip Tehlare1714d32019-03-05 03:01:43 -080071#endif /* CLIB_MARCH_VARIANT */
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020072
73always_inline uword
74vxlan_gbp_encap_inline (vlib_main_t * vm,
75 vlib_node_runtime_t * node,
76 vlib_frame_t * from_frame, u8 is_ip4, u8 csum_offload)
77{
78 u32 n_left_from, next_index, *from, *to_next;
79 vxlan_gbp_main_t *vxm = &vxlan_gbp_main;
80 vnet_main_t *vnm = vxm->vnet_main;
81 vnet_interface_main_t *im = &vnm->interface_main;
82 vlib_combined_counter_main_t *tx_counter =
83 im->combined_sw_if_counters + VNET_INTERFACE_COUNTER_TX;
84 u32 pkts_encapsulated = 0;
85 u32 thread_index = vlib_get_thread_index ();
86 u32 sw_if_index0 = 0, sw_if_index1 = 0;
87 u32 next0 = 0, next1 = 0;
88 vxlan_gbp_tunnel_t *t0 = NULL, *t1 = NULL;
89 index_t dpoi_idx0 = INDEX_INVALID, dpoi_idx1 = INDEX_INVALID;
Zhiyong Yang257573d2019-05-16 05:24:17 -040090 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020091
92 from = vlib_frame_vector_args (from_frame);
93 n_left_from = from_frame->n_vectors;
Zhiyong Yang257573d2019-05-16 05:24:17 -040094 vlib_get_buffers (vm, from, bufs, n_left_from);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020095
96 next_index = node->cached_next_index;
97
98 STATIC_ASSERT_SIZEOF (ip6_vxlan_gbp_header_t, 56);
99 STATIC_ASSERT_SIZEOF (ip4_vxlan_gbp_header_t, 36);
100
101 u8 const underlay_hdr_len = is_ip4 ?
102 sizeof (ip4_vxlan_gbp_header_t) : sizeof (ip6_vxlan_gbp_header_t);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200103 u16 const l3_len = is_ip4 ? sizeof (ip4_header_t) : sizeof (ip6_header_t);
John Lob1b98f52019-08-03 18:25:49 -0400104 u32 const csum_flags = is_ip4 ? VNET_BUFFER_F_OFFLOAD_IP_CKSUM |
105 VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM :
106 VNET_BUFFER_F_IS_IP6 | VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200107
108 while (n_left_from > 0)
109 {
110 u32 n_left_to_next;
111
112 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
113
114 while (n_left_from >= 4 && n_left_to_next >= 2)
115 {
116 /* Prefetch next iteration. */
117 {
118 vlib_buffer_t *p2, *p3;
119
120 p2 = vlib_get_buffer (vm, from[2]);
121 p3 = vlib_get_buffer (vm, from[3]);
122
123 vlib_prefetch_buffer_header (p2, LOAD);
124 vlib_prefetch_buffer_header (p3, LOAD);
125
Zhiyong Yang257573d2019-05-16 05:24:17 -0400126 CLIB_PREFETCH (b[2]->data - CLIB_CACHE_LINE_BYTES,
127 2 * CLIB_CACHE_LINE_BYTES, LOAD);
128 CLIB_PREFETCH (b[3]->data - CLIB_CACHE_LINE_BYTES,
129 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200130 }
131
132 u32 bi0 = to_next[0] = from[0];
133 u32 bi1 = to_next[1] = from[1];
134 from += 2;
135 to_next += 2;
136 n_left_to_next -= 2;
137 n_left_from -= 2;
138
Zhiyong Yang257573d2019-05-16 05:24:17 -0400139 u32 flow_hash0 = vnet_l2_compute_flow_hash (b[0]);
140 u32 flow_hash1 = vnet_l2_compute_flow_hash (b[1]);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200141
142 /* Get next node index and adj index from tunnel next_dpo */
Zhiyong Yang257573d2019-05-16 05:24:17 -0400143 if (sw_if_index0 != vnet_buffer (b[0])->sw_if_index[VLIB_TX])
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200144 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400145 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200146 vnet_hw_interface_t *hi0 =
147 vnet_get_sup_hw_interface (vnm, sw_if_index0);
148 t0 = &vxm->tunnels[hi0->dev_instance];
149 /* Note: change to always set next0 if it may set to drop */
150 next0 = t0->next_dpo.dpoi_next_node;
151 dpoi_idx0 = t0->next_dpo.dpoi_index;
152 }
153
154 /* Get next node index and adj index from tunnel next_dpo */
Zhiyong Yang257573d2019-05-16 05:24:17 -0400155 if (sw_if_index1 != vnet_buffer (b[1])->sw_if_index[VLIB_TX])
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200156 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400157 if (sw_if_index0 == vnet_buffer (b[1])->sw_if_index[VLIB_TX])
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200158 {
159 sw_if_index1 = sw_if_index0;
160 t1 = t0;
161 next1 = next0;
162 dpoi_idx1 = dpoi_idx0;
163 }
164 else
165 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400166 sw_if_index1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200167 vnet_hw_interface_t *hi1 =
168 vnet_get_sup_hw_interface (vnm, sw_if_index1);
169 t1 = &vxm->tunnels[hi1->dev_instance];
170 /* Note: change to always set next1 if it may set to drop */
171 next1 = t1->next_dpo.dpoi_next_node;
172 dpoi_idx1 = t1->next_dpo.dpoi_index;
173 }
174 }
175
Zhiyong Yang257573d2019-05-16 05:24:17 -0400176 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpoi_idx0;
177 vnet_buffer (b[1])->ip.adj_index[VLIB_TX] = dpoi_idx1;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200178
179 ASSERT (t0->rewrite_header.data_bytes == underlay_hdr_len);
180 ASSERT (t1->rewrite_header.data_bytes == underlay_hdr_len);
Zhiyong Yang257573d2019-05-16 05:24:17 -0400181 vnet_rewrite_two_headers (*t0, *t1, vlib_buffer_get_current (b[0]),
182 vlib_buffer_get_current (b[1]),
Benoît Ganne4af1a7f2019-03-01 14:14:10 +0100183 underlay_hdr_len);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200184
Zhiyong Yang257573d2019-05-16 05:24:17 -0400185 vlib_buffer_advance (b[0], -underlay_hdr_len);
186 vlib_buffer_advance (b[1], -underlay_hdr_len);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200187
Zhiyong Yang257573d2019-05-16 05:24:17 -0400188 u32 len0 = vlib_buffer_length_in_chain (vm, b[0]);
189 u32 len1 = vlib_buffer_length_in_chain (vm, b[1]);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200190 u16 payload_l0 = clib_host_to_net_u16 (len0 - l3_len);
191 u16 payload_l1 = clib_host_to_net_u16 (len1 - l3_len);
192
Zhiyong Yang257573d2019-05-16 05:24:17 -0400193 void *underlay0 = vlib_buffer_get_current (b[0]);
194 void *underlay1 = vlib_buffer_get_current (b[1]);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200195
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200196 ip4_header_t *ip4_0, *ip4_1;
197 qos_bits_t ip4_0_tos = 0, ip4_1_tos = 0;
198 ip6_header_t *ip6_0, *ip6_1;
199 udp_header_t *udp0, *udp1;
200 vxlan_gbp_header_t *vxlan_gbp0, *vxlan_gbp1;
201 u8 *l3_0, *l3_1;
202 if (is_ip4)
203 {
204 ip4_vxlan_gbp_header_t *hdr0 = underlay0;
205 ip4_vxlan_gbp_header_t *hdr1 = underlay1;
206
207 /* Fix the IP4 checksum and length */
208 ip4_0 = &hdr0->ip4;
209 ip4_1 = &hdr1->ip4;
210 ip4_0->length = clib_host_to_net_u16 (len0);
211 ip4_1->length = clib_host_to_net_u16 (len1);
212
Zhiyong Yang257573d2019-05-16 05:24:17 -0400213 if (PREDICT_FALSE (b[0]->flags & VNET_BUFFER_F_QOS_DATA_VALID))
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200214 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400215 ip4_0_tos = vnet_buffer2 (b[0])->qos.bits;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200216 ip4_0->tos = ip4_0_tos;
217 }
Zhiyong Yang257573d2019-05-16 05:24:17 -0400218 if (PREDICT_FALSE (b[1]->flags & VNET_BUFFER_F_QOS_DATA_VALID))
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200219 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400220 ip4_1_tos = vnet_buffer2 (b[1])->qos.bits;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200221 ip4_1->tos = ip4_1_tos;
222 }
223
224 l3_0 = (u8 *) ip4_0;
225 l3_1 = (u8 *) ip4_1;
226 udp0 = &hdr0->udp;
227 udp1 = &hdr1->udp;
228 vxlan_gbp0 = &hdr0->vxlan_gbp;
229 vxlan_gbp1 = &hdr1->vxlan_gbp;
230 }
231 else /* ipv6 */
232 {
233 ip6_vxlan_gbp_header_t *hdr0 = underlay0;
234 ip6_vxlan_gbp_header_t *hdr1 = underlay1;
235
236 /* Fix IP6 payload length */
237 ip6_0 = &hdr0->ip6;
238 ip6_1 = &hdr1->ip6;
239 ip6_0->payload_length = payload_l0;
240 ip6_1->payload_length = payload_l1;
241
242 l3_0 = (u8 *) ip6_0;
243 l3_1 = (u8 *) ip6_1;
244 udp0 = &hdr0->udp;
245 udp1 = &hdr1->udp;
246 vxlan_gbp0 = &hdr0->vxlan_gbp;
247 vxlan_gbp1 = &hdr1->vxlan_gbp;
248 }
249
250 /* Fix UDP length and set source port */
251 udp0->length = payload_l0;
252 udp0->src_port = flow_hash0;
253 udp1->length = payload_l1;
254 udp1->src_port = flow_hash1;
255
256 /* set source class and gpflags */
Zhiyong Yang257573d2019-05-16 05:24:17 -0400257 vxlan_gbp0->gpflags = vnet_buffer2 (b[0])->gbp.flags;
258 vxlan_gbp1->gpflags = vnet_buffer2 (b[1])->gbp.flags;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200259 vxlan_gbp0->sclass =
Zhiyong Yang257573d2019-05-16 05:24:17 -0400260 clib_host_to_net_u16 (vnet_buffer2 (b[0])->gbp.sclass);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200261 vxlan_gbp1->sclass =
Zhiyong Yang257573d2019-05-16 05:24:17 -0400262 clib_host_to_net_u16 (vnet_buffer2 (b[1])->gbp.sclass);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200263
264 if (csum_offload)
265 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400266 b[0]->flags |= csum_flags;
267 vnet_buffer (b[0])->l3_hdr_offset = l3_0 - b[0]->data;
268 vnet_buffer (b[0])->l4_hdr_offset = (u8 *) udp0 - b[0]->data;
269 b[1]->flags |= csum_flags;
270 vnet_buffer (b[1])->l3_hdr_offset = l3_1 - b[1]->data;
271 vnet_buffer (b[1])->l4_hdr_offset = (u8 *) udp1 - b[1]->data;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200272 }
273 /* IPv4 UDP checksum only if checksum offload is used */
274 else if (is_ip4)
275 {
276 ip_csum_t sum0 = ip4_0->checksum;
277 sum0 = ip_csum_update (sum0, 0, ip4_0->length, ip4_header_t,
278 length /* changed member */ );
279 if (PREDICT_FALSE (ip4_0_tos))
280 {
281 sum0 = ip_csum_update (sum0, 0, ip4_0_tos, ip4_header_t,
282 tos /* changed member */ );
283 }
284 ip4_0->checksum = ip_csum_fold (sum0);
285 ip_csum_t sum1 = ip4_1->checksum;
286 sum1 = ip_csum_update (sum1, 0, ip4_1->length, ip4_header_t,
287 length /* changed member */ );
288 if (PREDICT_FALSE (ip4_1_tos))
289 {
290 sum1 = ip_csum_update (sum1, 0, ip4_1_tos, ip4_header_t,
291 tos /* changed member */ );
292 }
293 ip4_1->checksum = ip_csum_fold (sum1);
294 }
295 /* IPv6 UDP checksum is mandatory */
296 else
297 {
298 int bogus = 0;
299
300 udp0->checksum = ip6_tcp_udp_icmp_compute_checksum
Zhiyong Yang257573d2019-05-16 05:24:17 -0400301 (vm, b[0], ip6_0, &bogus);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200302 ASSERT (bogus == 0);
303 if (udp0->checksum == 0)
304 udp0->checksum = 0xffff;
305 udp1->checksum = ip6_tcp_udp_icmp_compute_checksum
Zhiyong Yang257573d2019-05-16 05:24:17 -0400306 (vm, b[1], ip6_1, &bogus);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200307 ASSERT (bogus == 0);
308 if (udp1->checksum == 0)
309 udp1->checksum = 0xffff;
310 }
311
Shawn Ji623b4f82019-12-18 10:10:54 +0800312 /* save inner packet flow_hash for load-balance node */
313 vnet_buffer (b[0])->ip.flow_hash = flow_hash0;
314 vnet_buffer (b[1])->ip.flow_hash = flow_hash1;
315
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200316 vlib_increment_combined_counter (tx_counter, thread_index,
317 sw_if_index0, 1, len0);
318 vlib_increment_combined_counter (tx_counter, thread_index,
319 sw_if_index1, 1, len1);
320 pkts_encapsulated += 2;
321
Zhiyong Yang257573d2019-05-16 05:24:17 -0400322 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200323 {
324 vxlan_gbp_encap_trace_t *tr =
Zhiyong Yang257573d2019-05-16 05:24:17 -0400325 vlib_add_trace (vm, node, b[0], sizeof (*tr));
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200326 tr->tunnel_index = t0 - vxm->tunnels;
327 tr->vni = t0->vni;
Zhiyong Yang257573d2019-05-16 05:24:17 -0400328 tr->sclass = vnet_buffer2 (b[0])->gbp.sclass;
329 tr->flags = vnet_buffer2 (b[0])->gbp.flags;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200330 }
331
Zhiyong Yang257573d2019-05-16 05:24:17 -0400332 if (PREDICT_FALSE (b[1]->flags & VLIB_BUFFER_IS_TRACED))
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200333 {
334 vxlan_gbp_encap_trace_t *tr =
Zhiyong Yang257573d2019-05-16 05:24:17 -0400335 vlib_add_trace (vm, node, b[1], sizeof (*tr));
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200336 tr->tunnel_index = t1 - vxm->tunnels;
337 tr->vni = t1->vni;
Zhiyong Yang257573d2019-05-16 05:24:17 -0400338 tr->sclass = vnet_buffer2 (b[1])->gbp.sclass;
339 tr->flags = vnet_buffer2 (b[1])->gbp.flags;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200340 }
Zhiyong Yang257573d2019-05-16 05:24:17 -0400341 b += 2;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200342
343 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
344 to_next, n_left_to_next,
345 bi0, bi1, next0, next1);
346 }
347
348 while (n_left_from > 0 && n_left_to_next > 0)
349 {
350 u32 bi0 = to_next[0] = from[0];
351 from += 1;
352 to_next += 1;
353 n_left_from -= 1;
354 n_left_to_next -= 1;
355
Zhiyong Yang257573d2019-05-16 05:24:17 -0400356 u32 flow_hash0 = vnet_l2_compute_flow_hash (b[0]);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200357
358 /* Get next node index and adj index from tunnel next_dpo */
Zhiyong Yang257573d2019-05-16 05:24:17 -0400359 if (sw_if_index0 != vnet_buffer (b[0])->sw_if_index[VLIB_TX])
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200360 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400361 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200362 vnet_hw_interface_t *hi0 =
363 vnet_get_sup_hw_interface (vnm, sw_if_index0);
364 t0 = &vxm->tunnels[hi0->dev_instance];
365 /* Note: change to always set next0 if it may be set to drop */
366 next0 = t0->next_dpo.dpoi_next_node;
367 dpoi_idx0 = t0->next_dpo.dpoi_index;
368 }
Zhiyong Yang257573d2019-05-16 05:24:17 -0400369 vnet_buffer (b[0])->ip.adj_index[VLIB_TX] = dpoi_idx0;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200370
371 ASSERT (t0->rewrite_header.data_bytes == underlay_hdr_len);
Zhiyong Yang257573d2019-05-16 05:24:17 -0400372 vnet_rewrite_one_header (*t0, vlib_buffer_get_current (b[0]),
Benoît Ganne4af1a7f2019-03-01 14:14:10 +0100373 underlay_hdr_len);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200374
Zhiyong Yang257573d2019-05-16 05:24:17 -0400375 vlib_buffer_advance (b[0], -underlay_hdr_len);
376 void *underlay0 = vlib_buffer_get_current (b[0]);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200377
Zhiyong Yang257573d2019-05-16 05:24:17 -0400378 u32 len0 = vlib_buffer_length_in_chain (vm, b[0]);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200379 u16 payload_l0 = clib_host_to_net_u16 (len0 - l3_len);
380
381 vxlan_gbp_header_t *vxlan_gbp0;
382 udp_header_t *udp0;
383 ip4_header_t *ip4_0;
384 qos_bits_t ip4_0_tos = 0;
385 ip6_header_t *ip6_0;
386 u8 *l3_0;
387 if (is_ip4)
388 {
389 ip4_vxlan_gbp_header_t *hdr = underlay0;
390
391 /* Fix the IP4 checksum and length */
392 ip4_0 = &hdr->ip4;
393 ip4_0->length = clib_host_to_net_u16 (len0);
394
Zhiyong Yang257573d2019-05-16 05:24:17 -0400395 if (PREDICT_FALSE (b[0]->flags & VNET_BUFFER_F_QOS_DATA_VALID))
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200396 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400397 ip4_0_tos = vnet_buffer2 (b[0])->qos.bits;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200398 ip4_0->tos = ip4_0_tos;
399 }
400
401 l3_0 = (u8 *) ip4_0;
402 udp0 = &hdr->udp;
403 vxlan_gbp0 = &hdr->vxlan_gbp;
404 }
405 else /* ip6 path */
406 {
407 ip6_vxlan_gbp_header_t *hdr = underlay0;
408
409 /* Fix IP6 payload length */
410 ip6_0 = &hdr->ip6;
411 ip6_0->payload_length = payload_l0;
412
413 l3_0 = (u8 *) ip6_0;
414 udp0 = &hdr->udp;
415 vxlan_gbp0 = &hdr->vxlan_gbp;
416 }
417
418 /* Fix UDP length and set source port */
419 udp0->length = payload_l0;
420 udp0->src_port = flow_hash0;
421
422 /* set source class and gpflags */
Zhiyong Yang257573d2019-05-16 05:24:17 -0400423 vxlan_gbp0->gpflags = vnet_buffer2 (b[0])->gbp.flags;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200424 vxlan_gbp0->sclass =
Zhiyong Yang257573d2019-05-16 05:24:17 -0400425 clib_host_to_net_u16 (vnet_buffer2 (b[0])->gbp.sclass);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200426
427 if (csum_offload)
428 {
Zhiyong Yang257573d2019-05-16 05:24:17 -0400429 b[0]->flags |= csum_flags;
430 vnet_buffer (b[0])->l3_hdr_offset = l3_0 - b[0]->data;
431 vnet_buffer (b[0])->l4_hdr_offset = (u8 *) udp0 - b[0]->data;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200432 }
433 /* IPv4 UDP checksum only if checksum offload is used */
434 else if (is_ip4)
435 {
436 ip_csum_t sum0 = ip4_0->checksum;
437 sum0 = ip_csum_update (sum0, 0, ip4_0->length, ip4_header_t,
438 length /* changed member */ );
439 if (PREDICT_FALSE (ip4_0_tos))
440 {
441 sum0 = ip_csum_update (sum0, 0, ip4_0_tos, ip4_header_t,
442 tos /* changed member */ );
443 }
444 ip4_0->checksum = ip_csum_fold (sum0);
445 }
446 /* IPv6 UDP checksum is mandatory */
447 else
448 {
449 int bogus = 0;
450
451 udp0->checksum = ip6_tcp_udp_icmp_compute_checksum
Zhiyong Yang257573d2019-05-16 05:24:17 -0400452 (vm, b[0], ip6_0, &bogus);
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200453 ASSERT (bogus == 0);
454 if (udp0->checksum == 0)
455 udp0->checksum = 0xffff;
456 }
457
Shawn Ji623b4f82019-12-18 10:10:54 +0800458 /* save inner packet flow_hash for load-balance node */
459 vnet_buffer (b[0])->ip.flow_hash = flow_hash0;
460
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200461 vlib_increment_combined_counter (tx_counter, thread_index,
462 sw_if_index0, 1, len0);
463 pkts_encapsulated++;
464
Zhiyong Yang257573d2019-05-16 05:24:17 -0400465 if (PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200466 {
467 vxlan_gbp_encap_trace_t *tr =
Zhiyong Yang257573d2019-05-16 05:24:17 -0400468 vlib_add_trace (vm, node, b[0], sizeof (*tr));
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200469 tr->tunnel_index = t0 - vxm->tunnels;
470 tr->vni = t0->vni;
Zhiyong Yang257573d2019-05-16 05:24:17 -0400471 tr->sclass = vnet_buffer2 (b[0])->gbp.sclass;
472 tr->flags = vnet_buffer2 (b[0])->gbp.flags;
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200473 }
Zhiyong Yang257573d2019-05-16 05:24:17 -0400474 b += 1;
475
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200476 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
477 to_next, n_left_to_next,
478 bi0, next0);
479 }
480
481 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
482 }
483
484 /* Do we still need this now that tunnel tx stats is kept? */
485 vlib_node_increment_counter (vm, node->node_index,
486 VXLAN_GBP_ENCAP_ERROR_ENCAPSULATED,
487 pkts_encapsulated);
488
489 return from_frame->n_vectors;
490}
491
Filip Tehlare1714d32019-03-05 03:01:43 -0800492VLIB_NODE_FN (vxlan4_gbp_encap_node) (vlib_main_t * vm,
493 vlib_node_runtime_t * node,
494 vlib_frame_t * from_frame)
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200495{
496 /* Disable chksum offload as setup overhead in tx node is not worthwhile
497 for ip4 header checksum only, unless udp checksum is also required */
498 return vxlan_gbp_encap_inline (vm, node, from_frame, /* is_ip4 */ 1,
499 /* csum_offload */ 0);
500}
501
Filip Tehlare1714d32019-03-05 03:01:43 -0800502VLIB_NODE_FN (vxlan6_gbp_encap_node) (vlib_main_t * vm,
503 vlib_node_runtime_t * node,
504 vlib_frame_t * from_frame)
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200505{
506 /* Enable checksum offload for ip6 as udp checksum is mandatory, */
507 return vxlan_gbp_encap_inline (vm, node, from_frame, /* is_ip4 */ 0,
508 /* csum_offload */ 1);
509}
510
511/* *INDENT-OFF* */
512VLIB_REGISTER_NODE (vxlan4_gbp_encap_node) =
513{
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200514 .name = "vxlan4-gbp-encap",
515 .vector_size = sizeof (u32),
516 .format_trace = format_vxlan_gbp_encap_trace,
517 .type = VLIB_NODE_TYPE_INTERNAL,
518 .n_errors = ARRAY_LEN (vxlan_gbp_encap_error_strings),
519 .error_strings = vxlan_gbp_encap_error_strings,
520 .n_next_nodes = VXLAN_GBP_ENCAP_N_NEXT,
521 .next_nodes = {
522 [VXLAN_GBP_ENCAP_NEXT_DROP] = "error-drop",
523 },
524};
525
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200526VLIB_REGISTER_NODE (vxlan6_gbp_encap_node) =
527{
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200528 .name = "vxlan6-gbp-encap",
529 .vector_size = sizeof (u32),
530 .format_trace = format_vxlan_gbp_encap_trace,
531 .type = VLIB_NODE_TYPE_INTERNAL,
532 .n_errors = ARRAY_LEN (vxlan_gbp_encap_error_strings),
533 .error_strings = vxlan_gbp_encap_error_strings,
534 .n_next_nodes = VXLAN_GBP_ENCAP_N_NEXT,
535 .next_nodes = {
536 [VXLAN_GBP_ENCAP_NEXT_DROP] = "error-drop",
537 },
538};
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200539/* *INDENT-ON* */
540
541/*
542 * fd.io coding-style-patch-verification: ON
543 *
544 * Local Variables:
545 * eval: (c-set-style "gnu")
546 * End:
547 */