blob: 736e3ce94f1b16dc594683b3970d8933641cbcd4 [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 */ \
42
43enum udp_conn_flags_bits
Florin Corasc7542392019-07-22 08:08:43 -070044{
Florin Coras9c4ec6f2020-04-01 02:50:13 +000045#define _(sym, str) UDP_CONN_F_BIT_##sym,
46 foreach_udp_connection_flag
47#undef _
48 UDP_CONN_N_FLAGS
49};
50
51typedef enum udp_conn_flags_
52{
53#define _(sym, str) UDP_CONN_F_##sym = 1 << UDP_CONN_F_BIT_##sym,
54 foreach_udp_connection_flag
55#undef _
Florin Corasc7542392019-07-22 08:08:43 -070056} udp_conn_flags_t;
57
Florin Coras3cbc04b2017-10-02 00:18:51 -070058typedef struct
59{
Dave Baracheb987d32018-05-03 08:26:39 -040060 /** Required for pool_get_aligned */
61 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Florin Coras7fb0fe12018-04-09 09:24:52 -070062 transport_connection_t connection; /**< must be first */
63 clib_spinlock_t rx_lock; /**< rx fifo lock */
Florin Corasc7542392019-07-22 08:08:43 -070064 u8 flags; /**< connection flags */
Florin Coras3cbc04b2017-10-02 00:18:51 -070065} udp_connection_t;
66
Ed Warnickecb9cada2015-12-08 15:45:58 -070067#define foreach_udp4_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040068_ (53, dns) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070069_ (67, dhcp_to_server) \
70_ (68, dhcp_to_client) \
71_ (500, ikev2) \
Hongjun Nief486b12017-04-12 19:21:16 +080072_ (2152, GTPU) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010073_ (3784, bfd4) \
74_ (3785, bfd_echo4) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070075_ (4341, lisp_gpe) \
Florin Corase127a7e2016-02-18 22:20:01 +010076_ (4342, lisp_cp) \
Klement Sekera4b089f22018-04-17 18:04:57 +020077_ (4500, ipsec) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070078_ (4739, ipfix) \
79_ (4789, vxlan) \
Chris Luke99cb3352016-04-26 10:49:53 -040080_ (4789, vxlan6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020081_ (48879, vxlan_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080082_ (4790, VXLAN_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020083_ (6633, vpath_3) \
Dave Barach65457162017-10-10 17:53:14 -040084_ (6081, geneve) \
85_ (53053, dns_reply)
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
87
88#define foreach_udp6_dst_port \
Dave Barach65457162017-10-10 17:53:14 -040089_ (53, dns6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070090_ (547, dhcpv6_to_server) \
91_ (546, dhcpv6_to_client) \
Hongjun Nief486b12017-04-12 19:21:16 +080092_ (2152, GTPU6) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010093_ (3784, bfd6) \
94_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020095_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010096_ (4342, lisp_cp6) \
Mohsin Kazmi61b94c62018-08-20 18:32:39 +020097_ (48879, vxlan6_gbp) \
Hongjun Ni8a0a0ae2017-05-27 20:23:09 +080098_ (4790, VXLAN6_GPE) \
Marco Varleseb598f1d2017-09-19 14:25:28 +020099_ (6633, vpath6_3) \
Dave Barach65457162017-10-10 17:53:14 -0400100_ (6081, geneve6) \
Neale Ranns91286372017-12-05 13:24:04 -0800101_ (8138, BIER) \
Dave Barach65457162017-10-10 17:53:14 -0400102_ (53053, dns_reply6)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
Dave Barachd7cb1b52016-12-09 09:52:16 -0500104typedef enum
105{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108#undef _
109} udp_dst_port_t;
110
Dave Barachd7cb1b52016-12-09 09:52:16 -0500111typedef enum
112{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113#define _(n,f) UDP6_DST_PORT_##f = n,
114 foreach_udp6_dst_port
115#undef _
116} udp6_dst_port_t;
117
Dave Barachd7cb1b52016-12-09 09:52:16 -0500118typedef struct
119{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500121 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Florin Corasa0396202020-04-01 00:11:16 +0000123 /* Port number in host byte order. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 udp_dst_port_t dst_port;
125
126 /* Node which handles this type. */
127 u32 node_index;
128
129 /* Next index for this type. */
130 u32 next_index;
Kingwel Xie4af47092018-10-26 23:42:15 -0400131
Florin Corasa0396202020-04-01 00:11:16 +0000132 /* UDP sessions refcount (not tunnels) */
133 u32 n_connections;
134
Kingwel Xie4af47092018-10-26 23:42:15 -0400135 /* Parser for packet generator edits for this protocol */
136 unformat_function_t *unformat_pg_edit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137} udp_dst_port_info_t;
138
Dave Barachd7cb1b52016-12-09 09:52:16 -0500139typedef enum
140{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500142 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 N_UDP_AF,
144} udp_af_t;
145
Dave Barachd7cb1b52016-12-09 09:52:16 -0500146typedef struct
147{
148 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
150 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500151 uword *dst_port_info_by_name[N_UDP_AF];
152 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153
Damjan Marion615fc612017-04-03 14:56:08 +0200154 /* Sparse vector mapping udp dst_port in network byte order
155 to next index. */
156 u16 *next_by_dst_port4;
157 u16 *next_by_dst_port6;
158 u8 punt_unknown4;
159 u8 punt_unknown6;
160
Florin Corasa0396202020-04-01 00:11:16 +0000161 /* Udp local to input arc index */
162 u32 local_to_input_edge[N_UDP_AF];
163
Florin Coras3cbc04b2017-10-02 00:18:51 -0700164 /*
165 * Per-worker thread udp connection pools used with session layer
166 */
167 udp_connection_t **connections;
168 u32 *connection_peekers;
169 clib_spinlock_t *peekers_readers_locks;
170 clib_spinlock_t *peekers_write_locks;
171 udp_connection_t *listener_pool;
172
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173} udp_main_t;
174
Florin Coras3cbc04b2017-10-02 00:18:51 -0700175extern udp_main_t udp_main;
176extern vlib_node_registration_t udp4_input_node;
177extern vlib_node_registration_t udp6_input_node;
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800178extern vlib_node_registration_t udp4_local_node;
179extern vlib_node_registration_t udp6_local_node;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700180
181always_inline udp_connection_t *
182udp_connection_get (u32 conn_index, u32 thread_index)
183{
184 if (pool_is_free_index (udp_main.connections[thread_index], conn_index))
185 return 0;
186 return pool_elt_at_index (udp_main.connections[thread_index], conn_index);
187}
188
189always_inline udp_connection_t *
190udp_listener_get (u32 conn_index)
191{
192 return pool_elt_at_index (udp_main.listener_pool, conn_index);
193}
194
195always_inline udp_main_t *
196vnet_get_udp_main ()
197{
198 return &udp_main;
199}
200
201always_inline udp_connection_t *
202udp_get_connection_from_transport (transport_connection_t * tc)
203{
204 return ((udp_connection_t *) tc);
205}
206
207always_inline u32
208udp_connection_index (udp_connection_t * uc)
209{
210 return (uc - udp_main.connections[uc->c_thread_index]);
211}
212
213udp_connection_t *udp_connection_alloc (u32 thread_index);
214
215/**
216 * Acquires a lock that blocks a connection pool from expanding.
217 */
218always_inline void
219udp_pool_add_peeker (u32 thread_index)
220{
221 if (thread_index != vlib_get_thread_index ())
222 return;
223 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
224 udp_main.connection_peekers[thread_index] += 1;
225 if (udp_main.connection_peekers[thread_index] == 1)
226 clib_spinlock_lock_if_init (&udp_main.peekers_write_locks[thread_index]);
227 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
228 [thread_index]);
229}
230
231always_inline void
232udp_pool_remove_peeker (u32 thread_index)
233{
234 if (thread_index != vlib_get_thread_index ())
235 return;
236 ASSERT (udp_main.connection_peekers[thread_index] > 0);
237 clib_spinlock_lock_if_init (&udp_main.peekers_readers_locks[thread_index]);
238 udp_main.connection_peekers[thread_index] -= 1;
239 if (udp_main.connection_peekers[thread_index] == 0)
240 clib_spinlock_unlock_if_init (&udp_main.peekers_write_locks
241 [thread_index]);
242 clib_spinlock_unlock_if_init (&udp_main.peekers_readers_locks
243 [thread_index]);
244}
245
246always_inline udp_connection_t *
Florin Coras7fb0fe12018-04-09 09:24:52 -0700247udp_connection_clone_safe (u32 connection_index, u32 thread_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700248{
249 udp_connection_t *old_c, *new_c;
250 u32 current_thread_index = vlib_get_thread_index ();
251 new_c = udp_connection_alloc (current_thread_index);
252
253 /* If during the memcpy pool is reallocated AND the memory allocator
254 * decides to give the old chunk of memory to somebody in a hurry to
255 * scribble something on it, we have a problem. So add this thread as
256 * a session pool peeker.
257 */
258 udp_pool_add_peeker (thread_index);
259 old_c = udp_main.connections[thread_index] + connection_index;
Dave Barach178cf492018-11-13 16:34:13 -0500260 clib_memcpy_fast (new_c, old_c, sizeof (*new_c));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700261 udp_pool_remove_peeker (thread_index);
262 new_c->c_thread_index = current_thread_index;
263 new_c->c_c_index = udp_connection_index (new_c);
Nathan Skrzypczak161638f2019-05-13 16:25:50 +0200264 new_c->c_fib_index = old_c->c_fib_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700265 return new_c;
266}
267
268
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269always_inline udp_dst_port_info_t *
270udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
271{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
274}
275
276format_function_t format_udp_header;
277format_function_t format_udp_rx_trace;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278unformat_function_t unformat_udp_header;
279
Florin Corasa0396202020-04-01 00:11:16 +0000280void udp_add_dst_port (udp_main_t * um, udp_dst_port_t dst_port,
281 char *dst_port_name, u8 is_ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500283 udp_dst_port_t dst_port,
284 u32 node_index, u8 is_ip4);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700285void udp_unregister_dst_port (vlib_main_t * vm,
286 udp_dst_port_t dst_port, u8 is_ip4);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100287bool udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500288
Florin Corasa0396202020-04-01 00:11:16 +0000289void udp_connection_share_port (u16 lcl_port, u8 is_ip4);
290
Dave Barachd7cb1b52016-12-09 09:52:16 -0500291void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800292
Florin Coras3cbc04b2017-10-02 00:18:51 -0700293always_inline void *
294vlib_buffer_push_udp (vlib_buffer_t * b, u16 sp, u16 dp, u8 offload_csum)
295{
296 udp_header_t *uh;
shubing guo45478932018-08-30 11:09:49 +0800297 u16 udp_len = sizeof (udp_header_t) + b->current_length;
298 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
299 udp_len += b->total_length_not_including_first_buffer;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700300
301 uh = vlib_buffer_push_uninit (b, sizeof (udp_header_t));
302 uh->src_port = sp;
303 uh->dst_port = dp;
304 uh->checksum = 0;
shubing guo45478932018-08-30 11:09:49 +0800305 uh->length = clib_host_to_net_u16 (udp_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700306 if (offload_csum)
307 {
308 b->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
309 vnet_buffer (b)->l4_hdr_offset = (u8 *) uh - b->data;
310 }
311 return uh;
312}
313
Florin Corase127a7e2016-02-18 22:20:01 +0100314always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100316{
Florin Corase127a7e2016-02-18 22:20:01 +0100317 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
Florin Coras02655bd2016-04-26 00:17:24 +0200320 if (is_ip4)
321 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200323 ip_csum_t sum0;
324 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100325
Dave Barachd7cb1b52016-12-09 09:52:16 -0500326 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100327
Florin Coras02655bd2016-04-26 00:17:24 +0200328 /* fix the <bleep>ing outer-IP checksum */
329 sum0 = ip0->checksum;
330 /* old_l0 always 0, see the rewrite setup */
331 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100332
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
334 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200335 ip0->checksum = ip_csum_fold (sum0);
336 ip0->length = new_l0;
337
338 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500339 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200340 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500341 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200342 udp0->length = new_l0;
343 }
344 else
345 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500346 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200347 int bogus0;
348
Dave Barachd7cb1b52016-12-09 09:52:16 -0500349 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200350
Florin Coras02655bd2016-04-26 00:17:24 +0200351 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500352 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200353 ip0->payload_length = new_l0;
354
355 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500356 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200357 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200358
Dave Barachd7cb1b52016-12-09 09:52:16 -0500359 udp0->checksum =
360 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
361 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200362
363 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200365 }
Florin Corase127a7e2016-02-18 22:20:01 +0100366}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500367
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100368always_inline void
369ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100371{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500372 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373
374 if (is_ip4)
375 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500376 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100377
Dave Barachd7cb1b52016-12-09 09:52:16 -0500378 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100379
380 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500381 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100383 }
384 else
385 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500386 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100387
Dave Barachd7cb1b52016-12-09 09:52:16 -0500388 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389
390 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500391 clib_memcpy_fast (ip0, ec0, ec_len);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500392 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100393 }
394}
Florin Corase127a7e2016-02-18 22:20:01 +0100395
396always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200397ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100399{
Florin Corase127a7e2016-02-18 22:20:01 +0100400 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500401 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100402
Dave Barachd7cb1b52016-12-09 09:52:16 -0500403 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100404
405 vlib_buffer_advance (b0, -ec_len);
406 vlib_buffer_advance (b1, -ec_len);
407
Florin Coras02655bd2016-04-26 00:17:24 +0200408 if (is_v4)
409 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500410 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200411 ip_csum_t sum0, sum1;
412 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100413
Florin Coras02655bd2016-04-26 00:17:24 +0200414 ip0 = vlib_buffer_get_current (b0);
415 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100416
Florin Coras02655bd2016-04-26 00:17:24 +0200417 /* Apply the encap string */
Dave Barach178cf492018-11-13 16:34:13 -0500418 clib_memcpy_fast (ip0, ec0, ec_len);
419 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100420
Florin Coras02655bd2016-04-26 00:17:24 +0200421 /* fix the <bleep>ing outer-IP checksum */
422 sum0 = ip0->checksum;
423 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100424
Florin Coras02655bd2016-04-26 00:17:24 +0200425 /* old_l0 always 0, see the rewrite setup */
426 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
427 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100428
Dave Barachd7cb1b52016-12-09 09:52:16 -0500429 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
430 length /* changed member */ );
431 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
432 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100433
Florin Coras02655bd2016-04-26 00:17:24 +0200434 ip0->checksum = ip_csum_fold (sum0);
435 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100436
Florin Coras02655bd2016-04-26 00:17:24 +0200437 ip0->length = new_l0;
438 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100439
Florin Coras02655bd2016-04-26 00:17:24 +0200440 /* Fix UDP length */
441 udp0 = (udp_header_t *) (ip0 + 1);
442 udp1 = (udp_header_t *) (ip1 + 1);
443
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444 new_l0 =
445 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
446 sizeof (*ip0));
447 new_l1 =
448 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
449 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200450 udp0->length = new_l0;
451 udp1->length = new_l1;
452 }
453 else
454 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500455 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200456 int bogus0, bogus1;
457
Dave Barachd7cb1b52016-12-09 09:52:16 -0500458 ip0 = vlib_buffer_get_current (b0);
459 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200460
461 /* Apply the encap string. */
Dave Barach178cf492018-11-13 16:34:13 -0500462 clib_memcpy_fast (ip0, ec0, ec_len);
463 clib_memcpy_fast (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200464
465 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500466 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200467 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500468 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200469 ip0->payload_length = new_l0;
470 ip1->payload_length = new_l1;
471
472 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500473 udp0 = (udp_header_t *) (ip0 + 1);
474 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200475
476 udp0->length = new_l0;
477 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200478
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 udp0->checksum =
480 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
481 udp1->checksum =
482 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
483 ASSERT (bogus0 == 0);
484 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200485
486 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200488 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200490 }
Florin Corase127a7e2016-02-18 22:20:01 +0100491}
492
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493/*
494 * fd.io coding-style-patch-verification: ON
495 *
496 * Local Variables:
497 * eval: (c-set-style "gnu")
498 * End:
499 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500500
501#endif /* __included_udp_h__ */