blob: 95fbcd977efaa0d3a31101ef21558ab4715829ef [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
Florin Corasc98ef752020-04-07 17:30:13 +00002 * Copyright (c) 2017-2020 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 Corasba78e232020-04-06 21:28:59 +000066 u16 mss; /**< connection mss */
Florin Coras3cbc04b2017-10-02 00:18:51 -070067} udp_connection_t;
68
Ed Warnickecb9cada2015-12-08 15:45:58 -070069#define foreach_udp4_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040070_ (53, dns) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070071_ (67, dhcp_to_server) \
72_ (68, dhcp_to_client) \
73_ (500, ikev2) \
Hongjun Nief486b12017-04-12 19:21:16 +080074_ (2152, GTPU) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010075_ (3784, bfd4) \
76_ (3785, bfd_echo4) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070077_ (4341, lisp_gpe) \
Florin Corase127a7e2016-02-18 22:20:01 +010078_ (4342, lisp_cp) \
Klement Sekera4b089f22018-04-17 18:04:57 +020079_ (4500, ipsec) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070080_ (4739, ipfix) \
81_ (4789, vxlan) \
Chris Luke99cb3352016-04-26 10:49:53 -040082_ (4789, vxlan6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020083_ (48879, vxlan_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080084_ (4790, VXLAN_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020085_ (6633, vpath_3) \
Dave Barach65457162017-10-10 17:53:14 -040086_ (6081, geneve) \
87_ (53053, dns_reply)
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
89
90#define foreach_udp6_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040091_ (53, dns6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070092_ (547, dhcpv6_to_server) \
93_ (546, dhcpv6_to_client) \
Hongjun Nief486b12017-04-12 19:21:16 +080094_ (2152, GTPU6) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010095_ (3784, bfd6) \
96_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020097_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010098_ (4342, lisp_cp6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020099_ (48879, vxlan6_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +0800100_ (4790, VXLAN6_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +0200101_ (6633, vpath6_3) \
Dave Barach65457162017-10-10 17:53:14 -0400102_ (6081, geneve6) \
Neale Ranns91286372017-12-05 13:24:04 -0800103_ (8138, BIER) \
Dave Barach65457162017-10-10 17:53:14 -0400104_ (53053, dns_reply6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
Dave Barachd7cb1b52016-12-09 09:52:16 -0500106typedef enum
107{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500109 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110#undef _
111} udp_dst_port_t;
112
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113typedef enum
114{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115#define _(n,f) UDP6_DST_PORT_##f = n,
116 foreach_udp6_dst_port
117#undef _
118} udp6_dst_port_t;
119
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120typedef struct
121{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500123 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Florin Corasa0396202020-04-01 00:11:16 +0000125 /* Port number in host byte order. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126 udp_dst_port_t dst_port;
127
128 /* Node which handles this type. */
129 u32 node_index;
130
131 /* Next index for this type. */
132 u32 next_index;
Kingwel Xie4af47092018-10-26 23:42:15 -0400133
Florin Corasa0396202020-04-01 00:11:16 +0000134 /* UDP sessions refcount (not tunnels) */
135 u32 n_connections;
136
Kingwel Xie4af47092018-10-26 23:42:15 -0400137 /* Parser for packet generator edits for this protocol */
138 unformat_function_t *unformat_pg_edit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139} udp_dst_port_info_t;
140
Dave Barachd7cb1b52016-12-09 09:52:16 -0500141typedef enum
142{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 N_UDP_AF,
146} udp_af_t;
147
Dave Barachd7cb1b52016-12-09 09:52:16 -0500148typedef struct
149{
150 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
152 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500153 uword *dst_port_info_by_name[N_UDP_AF];
154 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Damjan Marion615fc612017-04-03 14:56:08 +0200156 /* Sparse vector mapping udp dst_port in network byte order
157 to next index. */
158 u16 *next_by_dst_port4;
159 u16 *next_by_dst_port6;
160 u8 punt_unknown4;
161 u8 punt_unknown6;
162
Florin Corasa0396202020-04-01 00:11:16 +0000163 /* Udp local to input arc index */
164 u32 local_to_input_edge[N_UDP_AF];
165
Florin Coras3cbc04b2017-10-02 00:18:51 -0700166 /*
167 * Per-worker thread udp connection pools used with session layer
168 */
169 udp_connection_t **connections;
170 u32 *connection_peekers;
171 clib_spinlock_t *peekers_readers_locks;
172 clib_spinlock_t *peekers_write_locks;
173 udp_connection_t *listener_pool;
174
Florin Corasba78e232020-04-06 21:28:59 +0000175 u16 default_mtu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176} udp_main_t;
177
Florin Coras3cbc04b2017-10-02 00:18:51 -0700178extern udp_main_t udp_main;
179extern vlib_node_registration_t udp4_input_node;
180extern vlib_node_registration_t udp6_input_node;
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800181extern vlib_node_registration_t udp4_local_node;
182extern vlib_node_registration_t udp6_local_node;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700183
184always_inline udp_connection_t *
185udp_connection_get (u32 conn_index, u32 thread_index)
186{
187 if (pool_is_free_index (udp_main.connections[thread_index], conn_index))
188 return 0;
189 return pool_elt_at_index (udp_main.connections[thread_index], conn_index);
190}
191
192always_inline udp_connection_t *
193udp_listener_get (u32 conn_index)
194{
195 return pool_elt_at_index (udp_main.listener_pool, conn_index);
196}
197
198always_inline udp_main_t *
199vnet_get_udp_main ()
200{
201 return &udp_main;
202}
203
204always_inline udp_connection_t *
Florin Corase759bb52020-04-08 01:55:39 +0000205udp_connection_from_transport (transport_connection_t * tc)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700206{
207 return ((udp_connection_t *) tc);
208}
209
210always_inline u32
211udp_connection_index (udp_connection_t * uc)
212{
213 return (uc - udp_main.connections[uc->c_thread_index]);
214}
215
Florin Corase759bb52020-04-08 01:55:39 +0000216void udp_connection_free (udp_connection_t * uc);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700217udp_connection_t *udp_connection_alloc (u32 thread_index);
218
219/**
220 * Acquires a lock that blocks a connection pool from expanding.
221 */
222always_inline void
223udp_pool_add_peeker (u32 thread_index)
224{
225 if (thread_index != vlib_get_thread_index ())
226 return;
227 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
228 udp_main.connection_peekers[thread_index] += 1;
229 if (udp_main.connection_peekers[thread_index] == 1)
230 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]);
231 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
232 [thread_index]);
233}
234
235always_inline void
236udp_pool_remove_peeker (u32 thread_index)
237{
238 if (thread_index != vlib_get_thread_index ())
239 return;
240 ASSERT (udp_main.connection_peekers[thread_index] > 0);
241 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
242 udp_main.connection_peekers[thread_index] -= 1;
243 if (udp_main.connection_peekers[thread_index] == 0)
244 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
245 [thread_index]);
246 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
247 [thread_index]);
248}
249
250always_inline udp_connection_t *
Florin Coras7fb0fe12018-04-09 09:24:52 -0700251udp_connection_clone_safe (u32 connection_index, u32 thread_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700252{
253 udp_connection_t *old_c, *new_c;
254 u32 current_thread_index = vlib_get_thread_index ();
255 new_c = udp_connection_alloc (current_thread_index);
256
257 /* If during the memcpy pool is reallocated AND the memory allocator
258 * decides to give the old chunk of memory to somebody in a hurry to
259 * scribble something on it, we have a problem. So add this thread as
260 * a session pool peeker.
261 */
262 udp_pool_add_peeker (thread_index);
263 old_c = udp_main.connections[thread_index] + connection_index;
Dave Barach178cf492018-11-13 16:34:13 -0500264 clib_memcpy_fast (new_c, old_c, sizeof (*new_c));
Florin Corasd85666f2020-04-03 00:58:48 +0000265 old_c->flags |= UDP_CONN_F_MIGRATED;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700266 udp_pool_remove_peeker (thread_index);
267 new_c->c_thread_index = current_thread_index;
268 new_c->c_c_index = udp_connection_index (new_c);
Nathan Skrzypczak161638f2019-05-13 16:25:50 +0200269 new_c->c_fib_index = old_c->c_fib_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700270 return new_c;
271}
272
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273always_inline udp_dst_port_info_t *
274udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
275{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
278}
279
280format_function_t format_udp_header;
281format_function_t format_udp_rx_trace;
Florin Corasc98ef752020-04-07 17:30:13 +0000282format_function_t format_udp_connection;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283unformat_function_t unformat_udp_header;
Elias Rudberg2dca1802020-05-27 01:03:46 +0200284unformat_function_t unformat_udp_port;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
Florin Corasa0396202020-04-01 00:11:16 +0000286void udp_add_dst_port (udp_main_t * um, udp_dst_port_t dst_port,
287 char *dst_port_name, u8 is_ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500289 udp_dst_port_t dst_port,
290 u32 node_index, u8 is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700291void udp_unregister_dst_port (vlib_main_t * vm,
292 udp_dst_port_t dst_port, u8 is_ip4);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100293bool udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4);
Florin Corasa0396202020-04-01 00:11:16 +0000294void udp_connection_share_port (u16 lcl_port, u8 is_ip4);
295
Dave Barachd7cb1b52016-12-09 09:52:16 -0500296void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800297
Florin Coras3cbc04b2017-10-02 00:18:51 -0700298always_inline void *
299vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum)
300{
301 udp_header_t *uh;
shubing guo45478932018-08-30 11:09:49 +0800302 u16 udp_len = sizeof (udp_header_t) + b->current_length;
303 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
304 udp_len += b->total_length_not_including_first_buffer;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700305
306 uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t));
307 uh->src_port = sp;
308 uh->dst_port = dp;
309 uh->checksum = 0;
shubing guo45478932018-08-30 11:09:49 +0800310 uh->length = clib_host_to_net_u16 (udp_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700311 if (offload_csum)
Florin Corasab57edb2020-04-07 03:46:07 +0000312 b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
313 vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data;
314 b->flags |= VNET_BUFFER_F_L4_HDR_OFFSET_VALID;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700315 return uh;
316}
317
Florin Corase127a7e2016-02-18 22:20:01 +0100318always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100320{
Florin Corase127a7e2016-02-18 22:20:01 +0100321 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
Florin Coras02655bd2016-04-26 00:17:24 +0200324 if (is_ip4)
325 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200327 ip_csum_t sum0;
328 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100329
Dave Barachd7cb1b52016-12-09 09:52:16 -0500330 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100331
Florin Coras02655bd2016-04-26 00:17:24 +0200332 /* fix the <bleep>ing outer-IP checksum */
333 sum0 = ip0->checksum;
334 /* old_l0 always 0, see the rewrite setup */
335 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100336
Dave Barachd7cb1b52016-12-09 09:52:16 -0500337 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
338 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200339 ip0->checksum = ip_csum_fold (sum0);
340 ip0->length = new_l0;
341
342 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500343 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200344 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500345 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200346 udp0->length = new_l0;
347 }
348 else
349 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500350 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200351 int bogus0;
352
Dave Barachd7cb1b52016-12-09 09:52:16 -0500353 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200354
Florin Coras02655bd2016-04-26 00:17:24 +0200355 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200357 ip0->payload_length = new_l0;
358
359 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200361 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200362
Dave Barachd7cb1b52016-12-09 09:52:16 -0500363 udp0->checksum =
364 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
365 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200366
367 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500368 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200369 }
Florin Corase127a7e2016-02-18 22:20:01 +0100370}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500371
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100372always_inline void
373ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500374 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100375{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377
378 if (is_ip4)
379 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500380 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100381
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100383
384 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500385 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500386 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100387 }
388 else
389 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100391
Dave Barachd7cb1b52016-12-09 09:52:16 -0500392 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100393
394 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500395 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397 }
398}
Florin Corase127a7e2016-02-18 22:20:01 +0100399
400always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200401ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500402 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100403{
Florin Corase127a7e2016-02-18 22:20:01 +0100404 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100406
Dave Barachd7cb1b52016-12-09 09:52:16 -0500407 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100408
409 vlib_buffer_advance (b0, -ec_len);
410 vlib_buffer_advance (b1, -ec_len);
411
Florin Coras02655bd2016-04-26 00:17:24 +0200412 if (is_v4)
413 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500414 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200415 ip_csum_t sum0, sum1;
416 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100417
Florin Coras02655bd2016-04-26 00:17:24 +0200418 ip0 = vlib_buffer_get_current (b0);
419 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100420
Florin Coras02655bd2016-04-26 00:17:24 +0200421 /* Apply the encap string */
Dave Barach178cf492018-11-13 16:34:13 -0500422 clib_memcpy_fast (ip0, ec0, ec_len);
423 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100424
Florin Coras02655bd2016-04-26 00:17:24 +0200425 /* fix the <bleep>ing outer-IP checksum */
426 sum0 = ip0->checksum;
427 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100428
Florin Coras02655bd2016-04-26 00:17:24 +0200429 /* old_l0 always 0, see the rewrite setup */
430 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
431 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100432
Dave Barachd7cb1b52016-12-09 09:52:16 -0500433 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
434 length /* changed member */ );
435 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
436 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100437
Florin Coras02655bd2016-04-26 00:17:24 +0200438 ip0->checksum = ip_csum_fold (sum0);
439 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100440
Florin Coras02655bd2016-04-26 00:17:24 +0200441 ip0->length = new_l0;
442 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100443
Florin Coras02655bd2016-04-26 00:17:24 +0200444 /* Fix UDP length */
445 udp0 = (udp_header_t *) (ip0 + 1);
446 udp1 = (udp_header_t *) (ip1 + 1);
447
Dave Barachd7cb1b52016-12-09 09:52:16 -0500448 new_l0 =
449 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
450 sizeof (*ip0));
451 new_l1 =
452 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
453 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200454 udp0->length = new_l0;
455 udp1->length = new_l1;
456 }
457 else
458 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500459 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200460 int bogus0, bogus1;
461
Dave Barachd7cb1b52016-12-09 09:52:16 -0500462 ip0 = vlib_buffer_get_current (b0);
463 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200464
465 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500466 clib_memcpy_fast (ip0, ec0, ec_len);
467 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200468
469 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500470 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200471 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200473 ip0->payload_length = new_l0;
474 ip1->payload_length = new_l1;
475
476 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500477 udp0 = (udp_header_t *) (ip0 + 1);
478 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200479
480 udp0->length = new_l0;
481 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200482
Dave Barachd7cb1b52016-12-09 09:52:16 -0500483 udp0->checksum =
484 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
485 udp1->checksum =
486 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
487 ASSERT (bogus0 == 0);
488 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200489
490 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500491 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200492 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200494 }
Florin Corase127a7e2016-02-18 22:20:01 +0100495}
496
Dave Barachd7cb1b52016-12-09 09:52:16 -0500497/*
498 * fd.io coding-style-patch-verification: ON
499 *
500 * Local Variables:
501 * eval: (c-set-style "gnu")
502 * End:
503 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500504
505#endif /* __included_udp_h__ */