blob: abf0d686d0a30628a12ffc98bd6d488c197bc10d [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
Dave Barach68b0fb02017-02-28 15:15:56 -05002 * Copyright (c) 2017 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) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080060_ (4790, VXLAN_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020061_ (6633, vpath_3) \
Dave Barach65457162017-10-10 17:53:14 -040062_ (6081, geneve) \
63_ (53053, dns_reply)
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
65
66#define foreach_udp6_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040067_ (53, dns6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070068_ (547, dhcpv6_to_server) \
69_ (546, dhcpv6_to_client) \
Hongjun Nief486b12017-04-12 19:21:16 +080070_ (2152, GTPU6) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010071_ (3784, bfd6) \
72_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020073_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010074_ (4342, lisp_cp6) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080075_ (4790, VXLAN6_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020076_ (6633, vpath6_3) \
Dave Barach65457162017-10-10 17:53:14 -040077_ (6081, geneve6) \
Neale Ranns91286372017-12-05 13:24:04 -080078_ (8138, BIER) \
Dave Barach65457162017-10-10 17:53:14 -040079_ (53053, dns_reply6)
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Dave Barachd7cb1b52016-12-09 09:52:16 -050081typedef enum
82{
Ed Warnickecb9cada2015-12-08 15:45:58 -070083#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -050084 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -070085#undef _
86} udp_dst_port_t;
87
Dave Barachd7cb1b52016-12-09 09:52:16 -050088typedef enum
89{
Ed Warnickecb9cada2015-12-08 15:45:58 -070090#define _(n,f) UDP6_DST_PORT_##f = n,
91 foreach_udp6_dst_port
92#undef _
93} udp6_dst_port_t;
94
Dave Barachd7cb1b52016-12-09 09:52:16 -050095typedef struct
96{
Ed Warnickecb9cada2015-12-08 15:45:58 -070097 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -050098 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
100 /* GRE protocol type in host byte order. */
101 udp_dst_port_t dst_port;
102
103 /* Node which handles this type. */
104 u32 node_index;
105
106 /* Next index for this type. */
107 u32 next_index;
108} udp_dst_port_info_t;
109
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110typedef enum
111{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 N_UDP_AF,
115} udp_af_t;
116
Dave Barachd7cb1b52016-12-09 09:52:16 -0500117typedef struct
118{
119 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
121 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 uword *dst_port_info_by_name[N_UDP_AF];
123 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Damjan Marion615fc612017-04-03 14:56:08 +0200125 /* Sparse vector mapping udp dst_port in network byte order
126 to next index. */
127 u16 *next_by_dst_port4;
128 u16 *next_by_dst_port6;
129 u8 punt_unknown4;
130 u8 punt_unknown6;
131
Florin Coras3cbc04b2017-10-02 00:18:51 -0700132 /*
133 * Per-worker thread udp connection pools used with session layer
134 */
135 udp_connection_t **connections;
136 u32 *connection_peekers;
137 clib_spinlock_t *peekers_readers_locks;
138 clib_spinlock_t *peekers_write_locks;
139 udp_connection_t *listener_pool;
140
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141} udp_main_t;
142
Florin Coras3cbc04b2017-10-02 00:18:51 -0700143extern udp_main_t udp_main;
144extern vlib_node_registration_t udp4_input_node;
145extern vlib_node_registration_t udp6_input_node;
146
147always_inline udp_connection_t *
148udp_connection_get (u32 conn_index, u32 thread_index)
149{
150 if (pool_is_free_index (udp_main.connections[thread_index], conn_index))
151 return 0;
152 return pool_elt_at_index (udp_main.connections[thread_index], conn_index);
153}
154
155always_inline udp_connection_t *
156udp_listener_get (u32 conn_index)
157{
158 return pool_elt_at_index (udp_main.listener_pool, conn_index);
159}
160
161always_inline udp_main_t *
162vnet_get_udp_main ()
163{
164 return &udp_main;
165}
166
167always_inline udp_connection_t *
168udp_get_connection_from_transport (transport_connection_t * tc)
169{
170 return ((udp_connection_t *) tc);
171}
172
173always_inline u32
174udp_connection_index (udp_connection_t * uc)
175{
176 return (uc - udp_main.connections[uc->c_thread_index]);
177}
178
179udp_connection_t *udp_connection_alloc (u32 thread_index);
180
181/**
182 * Acquires a lock that blocks a connection pool from expanding.
183 */
184always_inline void
185udp_pool_add_peeker (u32 thread_index)
186{
187 if (thread_index != vlib_get_thread_index ())
188 return;
189 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
190 udp_main.connection_peekers[thread_index] += 1;
191 if (udp_main.connection_peekers[thread_index] == 1)
192 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]);
193 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
194 [thread_index]);
195}
196
197always_inline void
198udp_pool_remove_peeker (u32 thread_index)
199{
200 if (thread_index != vlib_get_thread_index ())
201 return;
202 ASSERT (udp_main.connection_peekers[thread_index] > 0);
203 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
204 udp_main.connection_peekers[thread_index] -= 1;
205 if (udp_main.connection_peekers[thread_index] == 0)
206 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
207 [thread_index]);
208 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
209 [thread_index]);
210}
211
212always_inline udp_connection_t *
Florin Coras7fb0fe12018-04-09 09:24:52 -0700213udp_connection_clone_safe (u32 connection_index, u32 thread_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700214{
215 udp_connection_t *old_c, *new_c;
216 u32 current_thread_index = vlib_get_thread_index ();
217 new_c = udp_connection_alloc (current_thread_index);
218
219 /* If during the memcpy pool is reallocated AND the memory allocator
220 * decides to give the old chunk of memory to somebody in a hurry to
221 * scribble something on it, we have a problem. So add this thread as
222 * a session pool peeker.
223 */
224 udp_pool_add_peeker (thread_index);
225 old_c = udp_main.connections[thread_index] + connection_index;
226 clib_memcpy (new_c, old_c, sizeof (*new_c));
227 udp_pool_remove_peeker (thread_index);
228 new_c->c_thread_index = current_thread_index;
229 new_c->c_c_index = udp_connection_index (new_c);
230 return new_c;
231}
232
233
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234always_inline udp_dst_port_info_t *
235udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
236{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500237 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
239}
240
241format_function_t format_udp_header;
242format_function_t format_udp_rx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243unformat_function_t unformat_udp_header;
244
245void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500246 udp_dst_port_t dst_port,
247 u32 node_index, u8 is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700248void udp_unregister_dst_port (vlib_main_t * vm,
249 udp_dst_port_t dst_port, u8 is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500250
Dave Barachd7cb1b52016-12-09 09:52:16 -0500251void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800252
Florin Coras3cbc04b2017-10-02 00:18:51 -0700253always_inline void *
254vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum)
255{
256 udp_header_t *uh;
shubing guo45478932018-08-30 11:09:49 +0800257 u16 udp_len = sizeof (udp_header_t) + b->current_length;
258 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
259 udp_len += b->total_length_not_including_first_buffer;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700260
261 uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t));
262 uh->src_port = sp;
263 uh->dst_port = dp;
264 uh->checksum = 0;
shubing guo45478932018-08-30 11:09:49 +0800265 uh->length = clib_host_to_net_u16 (udp_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700266 if (offload_csum)
267 {
268 b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
269 vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data;
270 }
271 return uh;
272}
273
Florin Corase127a7e2016-02-18 22:20:01 +0100274always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500275ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100276{
Florin Corase127a7e2016-02-18 22:20:01 +0100277 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500278 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Florin Coras02655bd2016-04-26 00:17:24 +0200280 if (is_ip4)
281 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200283 ip_csum_t sum0;
284 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100285
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100287
Florin Coras02655bd2016-04-26 00:17:24 +0200288 /* fix the <bleep>ing outer-IP checksum */
289 sum0 = ip0->checksum;
290 /* old_l0 always 0, see the rewrite setup */
291 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100292
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
294 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200295 ip0->checksum = ip_csum_fold (sum0);
296 ip0->length = new_l0;
297
298 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500299 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200300 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500301 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200302 udp0->length = new_l0;
303 }
304 else
305 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200307 int bogus0;
308
Dave Barachd7cb1b52016-12-09 09:52:16 -0500309 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200310
Florin Coras02655bd2016-04-26 00:17:24 +0200311 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500312 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200313 ip0->payload_length = new_l0;
314
315 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500316 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200317 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200318
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319 udp0->checksum =
320 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
321 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200322
323 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200325 }
Florin Corase127a7e2016-02-18 22:20:01 +0100326}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100328always_inline void
329ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500330 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100331{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500332 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333
334 if (is_ip4)
335 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500336 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100339
340 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500341 clib_memcpy (ip0, ec0, ec_len);
342 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100343 }
344 else
345 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100347
Dave Barachd7cb1b52016-12-09 09:52:16 -0500348 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100349
350 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351 clib_memcpy (ip0, ec0, ec_len);
352 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100353 }
354}
Florin Corase127a7e2016-02-18 22:20:01 +0100355
356always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200357ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100359{
Florin Corase127a7e2016-02-18 22:20:01 +0100360 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100362
Dave Barachd7cb1b52016-12-09 09:52:16 -0500363 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100364
365 vlib_buffer_advance (b0, -ec_len);
366 vlib_buffer_advance (b1, -ec_len);
367
Florin Coras02655bd2016-04-26 00:17:24 +0200368 if (is_v4)
369 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200371 ip_csum_t sum0, sum1;
372 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100373
Florin Coras02655bd2016-04-26 00:17:24 +0200374 ip0 = vlib_buffer_get_current (b0);
375 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100376
Florin Coras02655bd2016-04-26 00:17:24 +0200377 /* Apply the encap string */
378 clib_memcpy (ip0, ec0, ec_len);
379 clib_memcpy (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100380
Florin Coras02655bd2016-04-26 00:17:24 +0200381 /* fix the <bleep>ing outer-IP checksum */
382 sum0 = ip0->checksum;
383 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100384
Florin Coras02655bd2016-04-26 00:17:24 +0200385 /* old_l0 always 0, see the rewrite setup */
386 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
387 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100388
Dave Barachd7cb1b52016-12-09 09:52:16 -0500389 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
390 length /* changed member */ );
391 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
392 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100393
Florin Coras02655bd2016-04-26 00:17:24 +0200394 ip0->checksum = ip_csum_fold (sum0);
395 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100396
Florin Coras02655bd2016-04-26 00:17:24 +0200397 ip0->length = new_l0;
398 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100399
Florin Coras02655bd2016-04-26 00:17:24 +0200400 /* Fix UDP length */
401 udp0 = (udp_header_t *) (ip0 + 1);
402 udp1 = (udp_header_t *) (ip1 + 1);
403
Dave Barachd7cb1b52016-12-09 09:52:16 -0500404 new_l0 =
405 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
406 sizeof (*ip0));
407 new_l1 =
408 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
409 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200410 udp0->length = new_l0;
411 udp1->length = new_l1;
412 }
413 else
414 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500415 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200416 int bogus0, bogus1;
417
Dave Barachd7cb1b52016-12-09 09:52:16 -0500418 ip0 = vlib_buffer_get_current (b0);
419 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200420
421 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500422 clib_memcpy (ip0, ec0, ec_len);
423 clib_memcpy (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200424
425 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500426 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200427 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500428 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200429 ip0->payload_length = new_l0;
430 ip1->payload_length = new_l1;
431
432 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500433 udp0 = (udp_header_t *) (ip0 + 1);
434 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200435
436 udp0->length = new_l0;
437 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200438
Dave Barachd7cb1b52016-12-09 09:52:16 -0500439 udp0->checksum =
440 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
441 udp1->checksum =
442 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
443 ASSERT (bogus0 == 0);
444 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200445
446 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500447 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200448 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500449 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200450 }
Florin Corase127a7e2016-02-18 22:20:01 +0100451}
452
Dave Barachd7cb1b52016-12-09 09:52:16 -0500453/*
454 * fd.io coding-style-patch-verification: ON
455 *
456 * Local Variables:
457 * eval: (c-set-style "gnu")
458 * End:
459 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500460
461#endif /* __included_udp_h__ */