blob: 03dbcdd5caced513b59a3ef59cef16394e751bd6 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
Florin Corasc5df8c72019-04-08 07:42:30 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Ed Warnickecb9cada2015-12-08 15:45:58 -07003 * 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 */
Dave Barach68b0fb02017-02-28 15:15:56 -050015#ifndef __included_udp_h__
16#define __included_udp_h__
Ed Warnickecb9cada2015-12-08 15:45:58 -070017
18#include <vnet/vnet.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019#include <vnet/udp/udp_packet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vnet/ip/ip.h>
21#include <vnet/ip/ip4.h>
22#include <vnet/ip/ip4_packet.h>
23#include <vnet/pg/pg.h>
24#include <vnet/ip/format.h>
25
Dave Barach68b0fb02017-02-28 15:15:56 -050026#include <vnet/ip/ip.h>
27#include <vnet/session/transport.h>
28
Dave Barachd7cb1b52016-12-09 09:52:16 -050029typedef enum
30{
Ed Warnickecb9cada2015-12-08 15:45:58 -070031#define udp_error(n,s) UDP_ERROR_##n,
Dave Barach68b0fb02017-02-28 15:15:56 -050032#include <vnet/udp/udp_error.def>
Ed Warnickecb9cada2015-12-08 15:45:58 -070033#undef udp_error
34 UDP_N_ERROR,
35} udp_error_t;
36
Florin Coras3cbc04b2017-10-02 00:18:51 -070037typedef struct
38{
Dave Baracheb987d32018-05-03 08:26:39 -040039 /** Required for pool_get_aligned */
40 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Florin Coras7fb0fe12018-04-09 09:24:52 -070041 transport_connection_t connection; /**< must be first */
42 clib_spinlock_t rx_lock; /**< rx fifo lock */
43 u8 is_connected; /**< connected mode */
Florin Coras3cbc04b2017-10-02 00:18:51 -070044} udp_connection_t;
45
Ed Warnickecb9cada2015-12-08 15:45:58 -070046#define foreach_udp4_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040047_ (53, dns) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070048_ (67, dhcp_to_server) \
49_ (68, dhcp_to_client) \
50_ (500, ikev2) \
Hongjun Nief486b12017-04-12 19:21:16 +080051_ (2152, GTPU) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010052_ (3784, bfd4) \
53_ (3785, bfd_echo4) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070054_ (4341, lisp_gpe) \
Florin Corase127a7e2016-02-18 22:20:01 +010055_ (4342, lisp_cp) \
Klement Sekera4b089f22018-04-17 18:04:57 +020056_ (4500, ipsec) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070057_ (4739, ipfix) \
58_ (4789, vxlan) \
Chris Luke99cb3352016-04-26 10:49:53 -040059_ (4789, vxlan6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020060_ (48879, vxlan_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080061_ (4790, VXLAN_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020062_ (6633, vpath_3) \
Dave Barach65457162017-10-10 17:53:14 -040063_ (6081, geneve) \
64_ (53053, dns_reply)
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
66
67#define foreach_udp6_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040068_ (53, dns6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070069_ (547, dhcpv6_to_server) \
70_ (546, dhcpv6_to_client) \
Hongjun Nief486b12017-04-12 19:21:16 +080071_ (2152, GTPU6) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010072_ (3784, bfd6) \
73_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020074_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010075_ (4342, lisp_cp6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020076_ (48879, vxlan6_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080077_ (4790, VXLAN6_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020078_ (6633, vpath6_3) \
Dave Barach65457162017-10-10 17:53:14 -040079_ (6081, geneve6) \
Neale Ranns91286372017-12-05 13:24:04 -080080_ (8138, BIER) \
Dave Barach65457162017-10-10 17:53:14 -040081_ (53053, dns_reply6)
Ed Warnickecb9cada2015-12-08 15:45:58 -070082
Dave Barachd7cb1b52016-12-09 09:52:16 -050083typedef enum
84{
Ed Warnickecb9cada2015-12-08 15:45:58 -070085#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -050086 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -070087#undef _
88} udp_dst_port_t;
89
Dave Barachd7cb1b52016-12-09 09:52:16 -050090typedef enum
91{
Ed Warnickecb9cada2015-12-08 15:45:58 -070092#define _(n,f) UDP6_DST_PORT_##f = n,
93 foreach_udp6_dst_port
94#undef _
95} udp6_dst_port_t;
96
Dave Barachd7cb1b52016-12-09 09:52:16 -050097typedef struct
98{
Ed Warnickecb9cada2015-12-08 15:45:58 -070099 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500100 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
102 /* GRE protocol type in host byte order. */
103 udp_dst_port_t dst_port;
104
105 /* Node which handles this type. */
106 u32 node_index;
107
108 /* Next index for this type. */
109 u32 next_index;
Kingwel Xie4af47092018-10-26 23:42:15 -0400110
111 /* Parser for packet generator edits for this protocol */
112 unformat_function_t *unformat_pg_edit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113} udp_dst_port_info_t;
114
Dave Barachd7cb1b52016-12-09 09:52:16 -0500115typedef enum
116{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500118 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 N_UDP_AF,
120} udp_af_t;
121
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122typedef struct
123{
124 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
126 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500127 uword *dst_port_info_by_name[N_UDP_AF];
128 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
Damjan Marion615fc612017-04-03 14:56:08 +0200130 /* Sparse vector mapping udp dst_port in network byte order
131 to next index. */
132 u16 *next_by_dst_port4;
133 u16 *next_by_dst_port6;
134 u8 punt_unknown4;
135 u8 punt_unknown6;
136
Florin Coras3cbc04b2017-10-02 00:18:51 -0700137 /*
138 * Per-worker thread udp connection pools used with session layer
139 */
140 udp_connection_t **connections;
141 u32 *connection_peekers;
142 clib_spinlock_t *peekers_readers_locks;
143 clib_spinlock_t *peekers_write_locks;
144 udp_connection_t *listener_pool;
145
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146} udp_main_t;
147
Florin Coras3cbc04b2017-10-02 00:18:51 -0700148extern udp_main_t udp_main;
149extern vlib_node_registration_t udp4_input_node;
150extern vlib_node_registration_t udp6_input_node;
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800151extern vlib_node_registration_t udp4_local_node;
152extern vlib_node_registration_t udp6_local_node;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700153
154always_inline udp_connection_t *
155udp_connection_get (u32 conn_index, u32 thread_index)
156{
157 if (pool_is_free_index (udp_main.connections[thread_index], conn_index))
158 return 0;
159 return pool_elt_at_index (udp_main.connections[thread_index], conn_index);
160}
161
162always_inline udp_connection_t *
163udp_listener_get (u32 conn_index)
164{
165 return pool_elt_at_index (udp_main.listener_pool, conn_index);
166}
167
168always_inline udp_main_t *
169vnet_get_udp_main ()
170{
171 return &udp_main;
172}
173
174always_inline udp_connection_t *
175udp_get_connection_from_transport (transport_connection_t * tc)
176{
177 return ((udp_connection_t *) tc);
178}
179
180always_inline u32
181udp_connection_index (udp_connection_t * uc)
182{
183 return (uc - udp_main.connections[uc->c_thread_index]);
184}
185
186udp_connection_t *udp_connection_alloc (u32 thread_index);
187
188/**
189 * Acquires a lock that blocks a connection pool from expanding.
190 */
191always_inline void
192udp_pool_add_peeker (u32 thread_index)
193{
194 if (thread_index != vlib_get_thread_index ())
195 return;
196 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
197 udp_main.connection_peekers[thread_index] += 1;
198 if (udp_main.connection_peekers[thread_index] == 1)
199 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]);
200 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
201 [thread_index]);
202}
203
204always_inline void
205udp_pool_remove_peeker (u32 thread_index)
206{
207 if (thread_index != vlib_get_thread_index ())
208 return;
209 ASSERT (udp_main.connection_peekers[thread_index] > 0);
210 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
211 udp_main.connection_peekers[thread_index] -= 1;
212 if (udp_main.connection_peekers[thread_index] == 0)
213 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
214 [thread_index]);
215 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
216 [thread_index]);
217}
218
219always_inline udp_connection_t *
Florin Coras7fb0fe12018-04-09 09:24:52 -0700220udp_connection_clone_safe (u32 connection_index, u32 thread_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700221{
222 udp_connection_t *old_c, *new_c;
223 u32 current_thread_index = vlib_get_thread_index ();
224 new_c = udp_connection_alloc (current_thread_index);
225
226 /* If during the memcpy pool is reallocated AND the memory allocator
227 * decides to give the old chunk of memory to somebody in a hurry to
228 * scribble something on it, we have a problem. So add this thread as
229 * a session pool peeker.
230 */
231 udp_pool_add_peeker (thread_index);
232 old_c = udp_main.connections[thread_index] + connection_index;
Dave Barach178cf492018-11-13 16:34:13 -0500233 clib_memcpy_fast (new_c, old_c, sizeof (*new_c));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700234 udp_pool_remove_peeker (thread_index);
235 new_c->c_thread_index = current_thread_index;
236 new_c->c_c_index = udp_connection_index (new_c);
237 return new_c;
238}
239
240
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241always_inline udp_dst_port_info_t *
242udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
243{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500244 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
246}
247
248format_function_t format_udp_header;
249format_function_t format_udp_rx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250unformat_function_t unformat_udp_header;
251
252void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500253 udp_dst_port_t dst_port,
254 u32 node_index, u8 is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700255void udp_unregister_dst_port (vlib_main_t * vm,
256 udp_dst_port_t dst_port, u8 is_ip4);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100257bool udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500258
Dave Barachd7cb1b52016-12-09 09:52:16 -0500259void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800260
Florin Coras3cbc04b2017-10-02 00:18:51 -0700261always_inline void *
262vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum)
263{
264 udp_header_t *uh;
shubing guo45478932018-08-30 11:09:49 +0800265 u16 udp_len = sizeof (udp_header_t) + b->current_length;
266 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
267 udp_len += b->total_length_not_including_first_buffer;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700268
269 uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t));
270 uh->src_port = sp;
271 uh->dst_port = dp;
272 uh->checksum = 0;
shubing guo45478932018-08-30 11:09:49 +0800273 uh->length = clib_host_to_net_u16 (udp_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700274 if (offload_csum)
275 {
276 b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
277 vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data;
278 }
279 return uh;
280}
281
Florin Corase127a7e2016-02-18 22:20:01 +0100282always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500283ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100284{
Florin Corase127a7e2016-02-18 22:20:01 +0100285 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287
Florin Coras02655bd2016-04-26 00:17:24 +0200288 if (is_ip4)
289 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500290 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200291 ip_csum_t sum0;
292 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100293
Dave Barachd7cb1b52016-12-09 09:52:16 -0500294 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100295
Florin Coras02655bd2016-04-26 00:17:24 +0200296 /* fix the <bleep>ing outer-IP checksum */
297 sum0 = ip0->checksum;
298 /* old_l0 always 0, see the rewrite setup */
299 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100300
Dave Barachd7cb1b52016-12-09 09:52:16 -0500301 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
302 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200303 ip0->checksum = ip_csum_fold (sum0);
304 ip0->length = new_l0;
305
306 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500307 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200308 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500309 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200310 udp0->length = new_l0;
311 }
312 else
313 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500314 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200315 int bogus0;
316
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200318
Florin Coras02655bd2016-04-26 00:17:24 +0200319 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200321 ip0->payload_length = new_l0;
322
323 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200325 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200326
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 udp0->checksum =
328 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
329 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200330
331 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500332 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200333 }
Florin Corase127a7e2016-02-18 22:20:01 +0100334}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100336always_inline void
337ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100339{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500340 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341
342 if (is_ip4)
343 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100345
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100347
348 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500349 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500350 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100351 }
352 else
353 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500354 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100355
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100357
358 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500359 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100361 }
362}
Florin Corase127a7e2016-02-18 22:20:01 +0100363
364always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200365ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500366 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100367{
Florin Corase127a7e2016-02-18 22:20:01 +0100368 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100370
Dave Barachd7cb1b52016-12-09 09:52:16 -0500371 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100372
373 vlib_buffer_advance (b0, -ec_len);
374 vlib_buffer_advance (b1, -ec_len);
375
Florin Coras02655bd2016-04-26 00:17:24 +0200376 if (is_v4)
377 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500378 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200379 ip_csum_t sum0, sum1;
380 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100381
Florin Coras02655bd2016-04-26 00:17:24 +0200382 ip0 = vlib_buffer_get_current (b0);
383 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100384
Florin Coras02655bd2016-04-26 00:17:24 +0200385 /* Apply the encap string */
Dave Barach178cf492018-11-13 16:34:13 -0500386 clib_memcpy_fast (ip0, ec0, ec_len);
387 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100388
Florin Coras02655bd2016-04-26 00:17:24 +0200389 /* fix the <bleep>ing outer-IP checksum */
390 sum0 = ip0->checksum;
391 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100392
Florin Coras02655bd2016-04-26 00:17:24 +0200393 /* old_l0 always 0, see the rewrite setup */
394 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
395 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100396
Dave Barachd7cb1b52016-12-09 09:52:16 -0500397 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
398 length /* changed member */ );
399 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
400 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100401
Florin Coras02655bd2016-04-26 00:17:24 +0200402 ip0->checksum = ip_csum_fold (sum0);
403 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100404
Florin Coras02655bd2016-04-26 00:17:24 +0200405 ip0->length = new_l0;
406 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100407
Florin Coras02655bd2016-04-26 00:17:24 +0200408 /* Fix UDP length */
409 udp0 = (udp_header_t *) (ip0 + 1);
410 udp1 = (udp_header_t *) (ip1 + 1);
411
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412 new_l0 =
413 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
414 sizeof (*ip0));
415 new_l1 =
416 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
417 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200418 udp0->length = new_l0;
419 udp1->length = new_l1;
420 }
421 else
422 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500423 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200424 int bogus0, bogus1;
425
Dave Barachd7cb1b52016-12-09 09:52:16 -0500426 ip0 = vlib_buffer_get_current (b0);
427 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200428
429 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500430 clib_memcpy_fast (ip0, ec0, ec_len);
431 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200432
433 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500434 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200435 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500436 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200437 ip0->payload_length = new_l0;
438 ip1->payload_length = new_l1;
439
440 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500441 udp0 = (udp_header_t *) (ip0 + 1);
442 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200443
444 udp0->length = new_l0;
445 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200446
Dave Barachd7cb1b52016-12-09 09:52:16 -0500447 udp0->checksum =
448 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
449 udp1->checksum =
450 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
451 ASSERT (bogus0 == 0);
452 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200453
454 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500455 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200456 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200458 }
Florin Corase127a7e2016-02-18 22:20:01 +0100459}
460
Dave Barachd7cb1b52016-12-09 09:52:16 -0500461/*
462 * fd.io coding-style-patch-verification: ON
463 *
464 * Local Variables:
465 * eval: (c-set-style "gnu")
466 * End:
467 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500468
469#endif /* __included_udp_h__ */