blob: 8e3ab9ec59e4f3f541b7f00e385b784022f8945d [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{
Florin Coras7fb0fe12018-04-09 09:24:52 -070039 transport_connection_t connection; /**< must be first */
40 clib_spinlock_t rx_lock; /**< rx fifo lock */
41 u8 is_connected; /**< connected mode */
Florin Coras3cbc04b2017-10-02 00:18:51 -070042} udp_connection_t;
43
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#define foreach_udp4_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040045_ (53, dns) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070046_ (67, dhcp_to_server) \
47_ (68, dhcp_to_client) \
48_ (500, ikev2) \
Hongjun Nief486b12017-04-12 19:21:16 +080049_ (2152, GTPU) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010050_ (3784, bfd4) \
51_ (3785, bfd_echo4) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070052_ (4341, lisp_gpe) \
Florin Corase127a7e2016-02-18 22:20:01 +010053_ (4342, lisp_cp) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070054_ (4739, ipfix) \
55_ (4789, vxlan) \
Chris Luke99cb3352016-04-26 10:49:53 -040056_ (4789, vxlan6) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080057_ (4790, VXLAN_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020058_ (6633, vpath_3) \
Dave Barach65457162017-10-10 17:53:14 -040059_ (6081, geneve) \
60_ (53053, dns_reply)
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
62
63#define foreach_udp6_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040064_ (53, dns6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070065_ (547, dhcpv6_to_server) \
66_ (546, dhcpv6_to_client) \
Hongjun Nief486b12017-04-12 19:21:16 +080067_ (2152, GTPU6) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010068_ (3784, bfd6) \
69_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020070_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010071_ (4342, lisp_cp6) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080072_ (4790, VXLAN6_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020073_ (6633, vpath6_3) \
Dave Barach65457162017-10-10 17:53:14 -040074_ (6081, geneve6) \
Neale Ranns91286372017-12-05 13:24:04 -080075_ (8138, BIER) \
Dave Barach65457162017-10-10 17:53:14 -040076_ (53053, dns_reply6)
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
Dave Barachd7cb1b52016-12-09 09:52:16 -050078typedef enum
79{
Ed Warnickecb9cada2015-12-08 15:45:58 -070080#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -050081 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -070082#undef _
83} udp_dst_port_t;
84
Dave Barachd7cb1b52016-12-09 09:52:16 -050085typedef enum
86{
Ed Warnickecb9cada2015-12-08 15:45:58 -070087#define _(n,f) UDP6_DST_PORT_##f = n,
88 foreach_udp6_dst_port
89#undef _
90} udp6_dst_port_t;
91
Dave Barachd7cb1b52016-12-09 09:52:16 -050092typedef struct
93{
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -050095 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
97 /* GRE protocol type in host byte order. */
98 udp_dst_port_t dst_port;
99
100 /* Node which handles this type. */
101 u32 node_index;
102
103 /* Next index for this type. */
104 u32 next_index;
105} udp_dst_port_info_t;
106
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107typedef enum
108{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500110 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 N_UDP_AF,
112} udp_af_t;
113
Dave Barachd7cb1b52016-12-09 09:52:16 -0500114typedef struct
115{
116 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117
118 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500119 uword *dst_port_info_by_name[N_UDP_AF];
120 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
Damjan Marion615fc612017-04-03 14:56:08 +0200122 /* Sparse vector mapping udp dst_port in network byte order
123 to next index. */
124 u16 *next_by_dst_port4;
125 u16 *next_by_dst_port6;
126 u8 punt_unknown4;
127 u8 punt_unknown6;
128
Florin Coras3cbc04b2017-10-02 00:18:51 -0700129 /*
130 * Per-worker thread udp connection pools used with session layer
131 */
132 udp_connection_t **connections;
133 u32 *connection_peekers;
134 clib_spinlock_t *peekers_readers_locks;
135 clib_spinlock_t *peekers_write_locks;
136 udp_connection_t *listener_pool;
137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138} udp_main_t;
139
Florin Coras3cbc04b2017-10-02 00:18:51 -0700140extern udp_main_t udp_main;
141extern vlib_node_registration_t udp4_input_node;
142extern vlib_node_registration_t udp6_input_node;
143
144always_inline udp_connection_t *
145udp_connection_get (u32 conn_index, u32 thread_index)
146{
147 if (pool_is_free_index (udp_main.connections[thread_index], conn_index))
148 return 0;
149 return pool_elt_at_index (udp_main.connections[thread_index], conn_index);
150}
151
152always_inline udp_connection_t *
153udp_listener_get (u32 conn_index)
154{
155 return pool_elt_at_index (udp_main.listener_pool, conn_index);
156}
157
158always_inline udp_main_t *
159vnet_get_udp_main ()
160{
161 return &udp_main;
162}
163
164always_inline udp_connection_t *
165udp_get_connection_from_transport (transport_connection_t * tc)
166{
167 return ((udp_connection_t *) tc);
168}
169
170always_inline u32
171udp_connection_index (udp_connection_t * uc)
172{
173 return (uc - udp_main.connections[uc->c_thread_index]);
174}
175
176udp_connection_t *udp_connection_alloc (u32 thread_index);
177
178/**
179 * Acquires a lock that blocks a connection pool from expanding.
180 */
181always_inline void
182udp_pool_add_peeker (u32 thread_index)
183{
184 if (thread_index != vlib_get_thread_index ())
185 return;
186 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
187 udp_main.connection_peekers[thread_index] += 1;
188 if (udp_main.connection_peekers[thread_index] == 1)
189 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]);
190 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
191 [thread_index]);
192}
193
194always_inline void
195udp_pool_remove_peeker (u32 thread_index)
196{
197 if (thread_index != vlib_get_thread_index ())
198 return;
199 ASSERT (udp_main.connection_peekers[thread_index] > 0);
200 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
201 udp_main.connection_peekers[thread_index] -= 1;
202 if (udp_main.connection_peekers[thread_index] == 0)
203 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
204 [thread_index]);
205 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
206 [thread_index]);
207}
208
209always_inline udp_connection_t *
Florin Coras7fb0fe12018-04-09 09:24:52 -0700210udp_connection_clone_safe (u32 connection_index, u32 thread_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700211{
212 udp_connection_t *old_c, *new_c;
213 u32 current_thread_index = vlib_get_thread_index ();
214 new_c = udp_connection_alloc (current_thread_index);
215
216 /* If during the memcpy pool is reallocated AND the memory allocator
217 * decides to give the old chunk of memory to somebody in a hurry to
218 * scribble something on it, we have a problem. So add this thread as
219 * a session pool peeker.
220 */
221 udp_pool_add_peeker (thread_index);
222 old_c = udp_main.connections[thread_index] + connection_index;
223 clib_memcpy (new_c, old_c, sizeof (*new_c));
224 udp_pool_remove_peeker (thread_index);
225 new_c->c_thread_index = current_thread_index;
226 new_c->c_c_index = udp_connection_index (new_c);
227 return new_c;
228}
229
230
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231always_inline udp_dst_port_info_t *
232udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
233{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
236}
237
238format_function_t format_udp_header;
239format_function_t format_udp_rx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240unformat_function_t unformat_udp_header;
241
242void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500243 udp_dst_port_t dst_port,
244 u32 node_index, u8 is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700245void udp_unregister_dst_port (vlib_main_t * vm,
246 udp_dst_port_t dst_port, u8 is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500247
Dave Barachd7cb1b52016-12-09 09:52:16 -0500248void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800249
Florin Coras3cbc04b2017-10-02 00:18:51 -0700250always_inline void *
251vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum)
252{
253 udp_header_t *uh;
254
255 uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t));
256 uh->src_port = sp;
257 uh->dst_port = dp;
258 uh->checksum = 0;
259 uh->length = clib_host_to_net_u16 (b->current_length);
260 if (offload_csum)
261 {
262 b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
263 vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data;
264 }
265 return uh;
266}
267
Florin Corase127a7e2016-02-18 22:20:01 +0100268always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500269ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100270{
Florin Corase127a7e2016-02-18 22:20:01 +0100271 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273
Florin Coras02655bd2016-04-26 00:17:24 +0200274 if (is_ip4)
275 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200277 ip_csum_t sum0;
278 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100279
Dave Barachd7cb1b52016-12-09 09:52:16 -0500280 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100281
Florin Coras02655bd2016-04-26 00:17:24 +0200282 /* fix the <bleep>ing outer-IP checksum */
283 sum0 = ip0->checksum;
284 /* old_l0 always 0, see the rewrite setup */
285 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100286
Dave Barachd7cb1b52016-12-09 09:52:16 -0500287 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
288 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200289 ip0->checksum = ip_csum_fold (sum0);
290 ip0->length = new_l0;
291
292 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200294 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500295 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200296 udp0->length = new_l0;
297 }
298 else
299 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500300 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200301 int bogus0;
302
Dave Barachd7cb1b52016-12-09 09:52:16 -0500303 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200304
Florin Coras02655bd2016-04-26 00:17:24 +0200305 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200307 ip0->payload_length = new_l0;
308
309 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200311 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200312
Dave Barachd7cb1b52016-12-09 09:52:16 -0500313 udp0->checksum =
314 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
315 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200316
317 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200319 }
Florin Corase127a7e2016-02-18 22:20:01 +0100320}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500321
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100322always_inline void
323ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100325{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100327
328 if (is_ip4)
329 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500330 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100331
Dave Barachd7cb1b52016-12-09 09:52:16 -0500332 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100333
334 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 clib_memcpy (ip0, ec0, ec_len);
336 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100337 }
338 else
339 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500340 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100341
Dave Barachd7cb1b52016-12-09 09:52:16 -0500342 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100343
344 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500345 clib_memcpy (ip0, ec0, ec_len);
346 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100347 }
348}
Florin Corase127a7e2016-02-18 22:20:01 +0100349
350always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200351ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100353{
Florin Corase127a7e2016-02-18 22:20:01 +0100354 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500355 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100356
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100358
359 vlib_buffer_advance (b0, -ec_len);
360 vlib_buffer_advance (b1, -ec_len);
361
Florin Coras02655bd2016-04-26 00:17:24 +0200362 if (is_v4)
363 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200365 ip_csum_t sum0, sum1;
366 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100367
Florin Coras02655bd2016-04-26 00:17:24 +0200368 ip0 = vlib_buffer_get_current (b0);
369 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100370
Florin Coras02655bd2016-04-26 00:17:24 +0200371 /* Apply the encap string */
372 clib_memcpy (ip0, ec0, ec_len);
373 clib_memcpy (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100374
Florin Coras02655bd2016-04-26 00:17:24 +0200375 /* fix the <bleep>ing outer-IP checksum */
376 sum0 = ip0->checksum;
377 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100378
Florin Coras02655bd2016-04-26 00:17:24 +0200379 /* old_l0 always 0, see the rewrite setup */
380 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
381 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100382
Dave Barachd7cb1b52016-12-09 09:52:16 -0500383 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
384 length /* changed member */ );
385 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
386 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100387
Florin Coras02655bd2016-04-26 00:17:24 +0200388 ip0->checksum = ip_csum_fold (sum0);
389 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100390
Florin Coras02655bd2016-04-26 00:17:24 +0200391 ip0->length = new_l0;
392 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100393
Florin Coras02655bd2016-04-26 00:17:24 +0200394 /* Fix UDP length */
395 udp0 = (udp_header_t *) (ip0 + 1);
396 udp1 = (udp_header_t *) (ip1 + 1);
397
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398 new_l0 =
399 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
400 sizeof (*ip0));
401 new_l1 =
402 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
403 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200404 udp0->length = new_l0;
405 udp1->length = new_l1;
406 }
407 else
408 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500409 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200410 int bogus0, bogus1;
411
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412 ip0 = vlib_buffer_get_current (b0);
413 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200414
415 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500416 clib_memcpy (ip0, ec0, ec_len);
417 clib_memcpy (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200418
419 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500420 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200421 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500422 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200423 ip0->payload_length = new_l0;
424 ip1->payload_length = new_l1;
425
426 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427 udp0 = (udp_header_t *) (ip0 + 1);
428 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200429
430 udp0->length = new_l0;
431 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200432
Dave Barachd7cb1b52016-12-09 09:52:16 -0500433 udp0->checksum =
434 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
435 udp1->checksum =
436 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
437 ASSERT (bogus0 == 0);
438 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200439
440 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500441 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200442 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200444 }
Florin Corase127a7e2016-02-18 22:20:01 +0100445}
446
Dave Barachd7cb1b52016-12-09 09:52:16 -0500447/*
448 * fd.io coding-style-patch-verification: ON
449 *
450 * Local Variables:
451 * eval: (c-set-style "gnu")
452 * End:
453 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500454
455#endif /* __included_udp_h__ */