blob: 9e1aad6fbe5f3684d8f3e36ea33fce919d17c650 [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 Coras9c4ec6f2020-04-01 02:50:13 +000037#define foreach_udp_connection_flag \
38 _(CONNECTED, "CONNECTED") /**< connected mode */ \
39 _(OWNS_PORT, "OWNS_PORT") /**< port belong to conn (UDPC) */ \
40 _(CLOSING, "CLOSING") /**< conn closed with data */ \
41 _(LISTEN, "LISTEN") /**< conn is listening */ \
Florin Corasd85666f2020-04-03 00:58:48 +000042 _(MIGRATED, "MIGRATED") /**< cloned to another thread */ \
Florin Coras9c4ec6f2020-04-01 02:50:13 +000043
44enum udp_conn_flags_bits
Florin Corasc7542392019-07-22 08:08:43 -070045{
Florin Coras9c4ec6f2020-04-01 02:50:13 +000046#define _(sym, str) UDP_CONN_F_BIT_##sym,
47 foreach_udp_connection_flag
48#undef _
49 UDP_CONN_N_FLAGS
50};
51
52typedef enum udp_conn_flags_
53{
54#define _(sym, str) UDP_CONN_F_##sym = 1 << UDP_CONN_F_BIT_##sym,
55 foreach_udp_connection_flag
56#undef _
Florin Corasc7542392019-07-22 08:08:43 -070057} udp_conn_flags_t;
58
Florin Coras3cbc04b2017-10-02 00:18:51 -070059typedef struct
60{
Dave Baracheb987d32018-05-03 08:26:39 -040061 /** Required for pool_get_aligned */
62 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Florin Coras7fb0fe12018-04-09 09:24:52 -070063 transport_connection_t connection; /**< must be first */
64 clib_spinlock_t rx_lock; /**< rx fifo lock */
Florin Corasc7542392019-07-22 08:08:43 -070065 u8 flags; /**< connection flags */
Florin Coras3cbc04b2017-10-02 00:18:51 -070066} udp_connection_t;
67
Ed Warnickecb9cada2015-12-08 15:45:58 -070068#define foreach_udp4_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040069_ (53, dns) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070070_ (67, dhcp_to_server) \
71_ (68, dhcp_to_client) \
72_ (500, ikev2) \
Hongjun Nief486b12017-04-12 19:21:16 +080073_ (2152, GTPU) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010074_ (3784, bfd4) \
75_ (3785, bfd_echo4) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070076_ (4341, lisp_gpe) \
Florin Corase127a7e2016-02-18 22:20:01 +010077_ (4342, lisp_cp) \
Klement Sekera4b089f22018-04-17 18:04:57 +020078_ (4500, ipsec) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070079_ (4739, ipfix) \
80_ (4789, vxlan) \
Chris Luke99cb3352016-04-26 10:49:53 -040081_ (4789, vxlan6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020082_ (48879, vxlan_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080083_ (4790, VXLAN_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020084_ (6633, vpath_3) \
Dave Barach65457162017-10-10 17:53:14 -040085_ (6081, geneve) \
86_ (53053, dns_reply)
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
88
89#define foreach_udp6_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040090_ (53, dns6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070091_ (547, dhcpv6_to_server) \
92_ (546, dhcpv6_to_client) \
Hongjun Nief486b12017-04-12 19:21:16 +080093_ (2152, GTPU6) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010094_ (3784, bfd6) \
95_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020096_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010097_ (4342, lisp_cp6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020098_ (48879, vxlan6_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080099_ (4790, VXLAN6_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +0200100_ (6633, vpath6_3) \
Dave Barach65457162017-10-10 17:53:14 -0400101_ (6081, geneve6) \
Neale Ranns91286372017-12-05 13:24:04 -0800102_ (8138, BIER) \
Dave Barach65457162017-10-10 17:53:14 -0400103_ (53053, dns_reply6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104
Dave Barachd7cb1b52016-12-09 09:52:16 -0500105typedef enum
106{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500108 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109#undef _
110} udp_dst_port_t;
111
Dave Barachd7cb1b52016-12-09 09:52:16 -0500112typedef enum
113{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114#define _(n,f) UDP6_DST_PORT_##f = n,
115 foreach_udp6_dst_port
116#undef _
117} udp6_dst_port_t;
118
Dave Barachd7cb1b52016-12-09 09:52:16 -0500119typedef struct
120{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Florin Corasa0396202020-04-01 00:11:16 +0000124 /* Port number in host byte order. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 udp_dst_port_t dst_port;
126
127 /* Node which handles this type. */
128 u32 node_index;
129
130 /* Next index for this type. */
131 u32 next_index;
Kingwel Xie4af47092018-10-26 23:42:15 -0400132
Florin Corasa0396202020-04-01 00:11:16 +0000133 /* UDP sessions refcount (not tunnels) */
134 u32 n_connections;
135
Kingwel Xie4af47092018-10-26 23:42:15 -0400136 /* Parser for packet generator edits for this protocol */
137 unformat_function_t *unformat_pg_edit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138} udp_dst_port_info_t;
139
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140typedef enum
141{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500143 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144 N_UDP_AF,
145} udp_af_t;
146
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147typedef struct
148{
149 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500152 uword *dst_port_info_by_name[N_UDP_AF];
153 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154
Damjan Marion615fc612017-04-03 14:56:08 +0200155 /* Sparse vector mapping udp dst_port in network byte order
156 to next index. */
157 u16 *next_by_dst_port4;
158 u16 *next_by_dst_port6;
159 u8 punt_unknown4;
160 u8 punt_unknown6;
161
Florin Corasa0396202020-04-01 00:11:16 +0000162 /* Udp local to input arc index */
163 u32 local_to_input_edge[N_UDP_AF];
164
Florin Coras3cbc04b2017-10-02 00:18:51 -0700165 /*
166 * Per-worker thread udp connection pools used with session layer
167 */
168 udp_connection_t **connections;
169 u32 *connection_peekers;
170 clib_spinlock_t *peekers_readers_locks;
171 clib_spinlock_t *peekers_write_locks;
172 udp_connection_t *listener_pool;
173
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174} udp_main_t;
175
Florin Coras3cbc04b2017-10-02 00:18:51 -0700176extern udp_main_t udp_main;
177extern vlib_node_registration_t udp4_input_node;
178extern vlib_node_registration_t udp6_input_node;
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800179extern vlib_node_registration_t udp4_local_node;
180extern vlib_node_registration_t udp6_local_node;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700181
182always_inline udp_connection_t *
183udp_connection_get (u32 conn_index, u32 thread_index)
184{
185 if (pool_is_free_index (udp_main.connections[thread_index], conn_index))
186 return 0;
187 return pool_elt_at_index (udp_main.connections[thread_index], conn_index);
188}
189
190always_inline udp_connection_t *
191udp_listener_get (u32 conn_index)
192{
193 return pool_elt_at_index (udp_main.listener_pool, conn_index);
194}
195
196always_inline udp_main_t *
197vnet_get_udp_main ()
198{
199 return &udp_main;
200}
201
202always_inline udp_connection_t *
203udp_get_connection_from_transport (transport_connection_t * tc)
204{
205 return ((udp_connection_t *) tc);
206}
207
208always_inline u32
209udp_connection_index (udp_connection_t * uc)
210{
211 return (uc - udp_main.connections[uc->c_thread_index]);
212}
213
214udp_connection_t *udp_connection_alloc (u32 thread_index);
215
216/**
217 * Acquires a lock that blocks a connection pool from expanding.
218 */
219always_inline void
220udp_pool_add_peeker (u32 thread_index)
221{
222 if (thread_index != vlib_get_thread_index ())
223 return;
224 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
225 udp_main.connection_peekers[thread_index] += 1;
226 if (udp_main.connection_peekers[thread_index] == 1)
227 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]);
228 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
229 [thread_index]);
230}
231
232always_inline void
233udp_pool_remove_peeker (u32 thread_index)
234{
235 if (thread_index != vlib_get_thread_index ())
236 return;
237 ASSERT (udp_main.connection_peekers[thread_index] > 0);
238 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
239 udp_main.connection_peekers[thread_index] -= 1;
240 if (udp_main.connection_peekers[thread_index] == 0)
241 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
242 [thread_index]);
243 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
244 [thread_index]);
245}
246
247always_inline udp_connection_t *
Florin Coras7fb0fe12018-04-09 09:24:52 -0700248udp_connection_clone_safe (u32 connection_index, u32 thread_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700249{
250 udp_connection_t *old_c, *new_c;
251 u32 current_thread_index = vlib_get_thread_index ();
252 new_c = udp_connection_alloc (current_thread_index);
253
254 /* If during the memcpy pool is reallocated AND the memory allocator
255 * decides to give the old chunk of memory to somebody in a hurry to
256 * scribble something on it, we have a problem. So add this thread as
257 * a session pool peeker.
258 */
259 udp_pool_add_peeker (thread_index);
260 old_c = udp_main.connections[thread_index] + connection_index;
Dave Barach178cf492018-11-13 16:34:13 -0500261 clib_memcpy_fast (new_c, old_c, sizeof (*new_c));
Florin Corasd85666f2020-04-03 00:58:48 +0000262 old_c->flags |= UDP_CONN_F_MIGRATED;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700263 udp_pool_remove_peeker (thread_index);
264 new_c->c_thread_index = current_thread_index;
265 new_c->c_c_index = udp_connection_index (new_c);
Nathan Skrzypczak161638f2019-05-13 16:25:50 +0200266 new_c->c_fib_index = old_c->c_fib_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700267 return new_c;
268}
269
270
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271always_inline udp_dst_port_info_t *
272udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
273{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500274 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
276}
277
278format_function_t format_udp_header;
279format_function_t format_udp_rx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280unformat_function_t unformat_udp_header;
281
Florin Corasa0396202020-04-01 00:11:16 +0000282void udp_add_dst_port (udp_main_t * um, udp_dst_port_t dst_port,
283 char *dst_port_name, u8 is_ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500285 udp_dst_port_t dst_port,
286 u32 node_index, u8 is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700287void udp_unregister_dst_port (vlib_main_t * vm,
288 udp_dst_port_t dst_port, u8 is_ip4);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100289bool udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500290
Florin Corasa0396202020-04-01 00:11:16 +0000291void udp_connection_share_port (u16 lcl_port, u8 is_ip4);
292
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800294
Florin Coras3cbc04b2017-10-02 00:18:51 -0700295always_inline void *
296vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum)
297{
298 udp_header_t *uh;
shubing guo45478932018-08-30 11:09:49 +0800299 u16 udp_len = sizeof (udp_header_t) + b->current_length;
300 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
301 udp_len += b->total_length_not_including_first_buffer;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700302
303 uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t));
304 uh->src_port = sp;
305 uh->dst_port = dp;
306 uh->checksum = 0;
shubing guo45478932018-08-30 11:09:49 +0800307 uh->length = clib_host_to_net_u16 (udp_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700308 if (offload_csum)
309 {
310 b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
311 vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data;
312 }
313 return uh;
314}
315
Florin Corase127a7e2016-02-18 22:20:01 +0100316always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100318{
Florin Corase127a7e2016-02-18 22:20:01 +0100319 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500320 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Florin Coras02655bd2016-04-26 00:17:24 +0200322 if (is_ip4)
323 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500324 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200325 ip_csum_t sum0;
326 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100327
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100329
Florin Coras02655bd2016-04-26 00:17:24 +0200330 /* fix the <bleep>ing outer-IP checksum */
331 sum0 = ip0->checksum;
332 /* old_l0 always 0, see the rewrite setup */
333 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100334
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
336 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200337 ip0->checksum = ip_csum_fold (sum0);
338 ip0->length = new_l0;
339
340 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500341 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200342 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500343 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200344 udp0->length = new_l0;
345 }
346 else
347 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500348 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200349 int bogus0;
350
Dave Barachd7cb1b52016-12-09 09:52:16 -0500351 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200352
Florin Coras02655bd2016-04-26 00:17:24 +0200353 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500354 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200355 ip0->payload_length = new_l0;
356
357 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200359 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200360
Dave Barachd7cb1b52016-12-09 09:52:16 -0500361 udp0->checksum =
362 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
363 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200364
365 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500366 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200367 }
Florin Corase127a7e2016-02-18 22:20:01 +0100368}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100370always_inline void
371ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500372 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100375
376 if (is_ip4)
377 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500378 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100379
Dave Barachd7cb1b52016-12-09 09:52:16 -0500380 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381
382 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500383 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500384 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100385 }
386 else
387 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100391
392 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500393 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500394 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100395 }
396}
Florin Corase127a7e2016-02-18 22:20:01 +0100397
398always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200399ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500400 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100401{
Florin Corase127a7e2016-02-18 22:20:01 +0100402 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500403 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100404
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100406
407 vlib_buffer_advance (b0, -ec_len);
408 vlib_buffer_advance (b1, -ec_len);
409
Florin Coras02655bd2016-04-26 00:17:24 +0200410 if (is_v4)
411 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500412 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200413 ip_csum_t sum0, sum1;
414 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100415
Florin Coras02655bd2016-04-26 00:17:24 +0200416 ip0 = vlib_buffer_get_current (b0);
417 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100418
Florin Coras02655bd2016-04-26 00:17:24 +0200419 /* Apply the encap string */
Dave Barach178cf492018-11-13 16:34:13 -0500420 clib_memcpy_fast (ip0, ec0, ec_len);
421 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100422
Florin Coras02655bd2016-04-26 00:17:24 +0200423 /* fix the <bleep>ing outer-IP checksum */
424 sum0 = ip0->checksum;
425 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100426
Florin Coras02655bd2016-04-26 00:17:24 +0200427 /* old_l0 always 0, see the rewrite setup */
428 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
429 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100430
Dave Barachd7cb1b52016-12-09 09:52:16 -0500431 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
432 length /* changed member */ );
433 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
434 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100435
Florin Coras02655bd2016-04-26 00:17:24 +0200436 ip0->checksum = ip_csum_fold (sum0);
437 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100438
Florin Coras02655bd2016-04-26 00:17:24 +0200439 ip0->length = new_l0;
440 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100441
Florin Coras02655bd2016-04-26 00:17:24 +0200442 /* Fix UDP length */
443 udp0 = (udp_header_t *) (ip0 + 1);
444 udp1 = (udp_header_t *) (ip1 + 1);
445
Dave Barachd7cb1b52016-12-09 09:52:16 -0500446 new_l0 =
447 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
448 sizeof (*ip0));
449 new_l1 =
450 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
451 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200452 udp0->length = new_l0;
453 udp1->length = new_l1;
454 }
455 else
456 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500457 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200458 int bogus0, bogus1;
459
Dave Barachd7cb1b52016-12-09 09:52:16 -0500460 ip0 = vlib_buffer_get_current (b0);
461 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200462
463 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500464 clib_memcpy_fast (ip0, ec0, ec_len);
465 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200466
467 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500468 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200469 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500470 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200471 ip0->payload_length = new_l0;
472 ip1->payload_length = new_l1;
473
474 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500475 udp0 = (udp_header_t *) (ip0 + 1);
476 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200477
478 udp0->length = new_l0;
479 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200480
Dave Barachd7cb1b52016-12-09 09:52:16 -0500481 udp0->checksum =
482 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
483 udp1->checksum =
484 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
485 ASSERT (bogus0 == 0);
486 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200487
488 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200490 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500491 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200492 }
Florin Corase127a7e2016-02-18 22:20:01 +0100493}
494
Dave Barachd7cb1b52016-12-09 09:52:16 -0500495/*
496 * fd.io coding-style-patch-verification: ON
497 *
498 * Local Variables:
499 * eval: (c-set-style "gnu")
500 * End:
501 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500502
503#endif /* __included_udp_h__ */