blob: bad58b5d440392302d44c6e37c3d5483e497fd16 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ip/udp.h: udp protocol
3 *
4 * Copyright (c) 2013 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef included_udp_h
19#define included_udp_h
20
21#include <vnet/vnet.h>
22#include <vnet/ip/udp_packet.h>
23#include <vnet/ip/ip.h>
24#include <vnet/ip/ip4.h>
25#include <vnet/ip/ip4_packet.h>
26#include <vnet/pg/pg.h>
27#include <vnet/ip/format.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,
32#include <vnet/ip/udp_error.def>
33#undef udp_error
34 UDP_N_ERROR,
35} udp_error_t;
36
37#define foreach_udp4_dst_port \
38_ (67, dhcp_to_server) \
39_ (68, dhcp_to_client) \
40_ (500, ikev2) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010041_ (3784, bfd4) \
42_ (3785, bfd_echo4) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070043_ (4341, lisp_gpe) \
Florin Corase127a7e2016-02-18 22:20:01 +010044_ (4342, lisp_cp) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070045_ (4739, ipfix) \
46_ (4789, vxlan) \
Chris Luke99cb3352016-04-26 10:49:53 -040047_ (4789, vxlan6) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070048_ (4790, vxlan_gpe) \
49_ (6633, vpath_3)
50
51
52#define foreach_udp6_dst_port \
53_ (547, dhcpv6_to_server) \
54_ (546, dhcpv6_to_client) \
Klement Sekeraaeeac3b2017-02-14 07:11:52 +010055_ (3784, bfd6) \
56_ (3785, bfd_echo6) \
Florin Coras02655bd2016-04-26 00:17:24 +020057_ (4341, lisp_gpe6) \
Florin Corase127a7e2016-02-18 22:20:01 +010058_ (4342, lisp_cp6) \
Hongjun Nidf921cc2016-05-25 01:16:19 +080059_ (4790, vxlan6_gpe) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070060_ (6633, vpath6_3)
61
Dave Barachd7cb1b52016-12-09 09:52:16 -050062typedef enum
63{
Ed Warnickecb9cada2015-12-08 15:45:58 -070064#define _(n,f) UDP_DST_PORT_##f = n,
Dave Barachd7cb1b52016-12-09 09:52:16 -050065 foreach_udp4_dst_port foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -070066#undef _
67} udp_dst_port_t;
68
Dave Barachd7cb1b52016-12-09 09:52:16 -050069typedef enum
70{
Ed Warnickecb9cada2015-12-08 15:45:58 -070071#define _(n,f) UDP6_DST_PORT_##f = n,
72 foreach_udp6_dst_port
73#undef _
74} udp6_dst_port_t;
75
Dave Barachd7cb1b52016-12-09 09:52:16 -050076typedef struct
77{
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 /* Name (a c string). */
Dave Barachd7cb1b52016-12-09 09:52:16 -050079 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
81 /* GRE protocol type in host byte order. */
82 udp_dst_port_t dst_port;
83
84 /* Node which handles this type. */
85 u32 node_index;
86
87 /* Next index for this type. */
88 u32 next_index;
89} udp_dst_port_info_t;
90
Dave Barachd7cb1b52016-12-09 09:52:16 -050091typedef enum
92{
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 UDP_IP6 = 0,
Dave Barachd7cb1b52016-12-09 09:52:16 -050094 UDP_IP4, /* the code is full of is_ip4... */
Ed Warnickecb9cada2015-12-08 15:45:58 -070095 N_UDP_AF,
96} udp_af_t;
97
Dave Barachd7cb1b52016-12-09 09:52:16 -050098typedef struct
99{
100 udp_dst_port_info_t *dst_port_infos[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
102 /* Hash tables mapping name/protocol to protocol info index. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 uword *dst_port_info_by_name[N_UDP_AF];
104 uword *dst_port_info_by_dst_port[N_UDP_AF];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
106 /* convenience */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107 vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108} udp_main_t;
109
110always_inline udp_dst_port_info_t *
111udp_get_dst_port_info (udp_main_t * um, udp_dst_port_t dst_port, u8 is_ip4)
112{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113 uword *p = hash_get (um->dst_port_info_by_dst_port[is_ip4], dst_port);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 return p ? vec_elt_at_index (um->dst_port_infos[is_ip4], p[0]) : 0;
115}
116
117format_function_t format_udp_header;
118format_function_t format_udp_rx_trace;
119
120unformat_function_t unformat_udp_header;
121
122void udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500123 udp_dst_port_t dst_port,
124 u32 node_index, u8 is_ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
Dave Barachd7cb1b52016-12-09 09:52:16 -0500126void udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800127
Florin Corase127a7e2016-02-18 22:20:01 +0100128always_inline void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129ip_udp_fixup_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 is_ip4)
Florin Corase127a7e2016-02-18 22:20:01 +0100130{
Florin Corase127a7e2016-02-18 22:20:01 +0100131 u16 new_l0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 udp_header_t *udp0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Florin Coras02655bd2016-04-26 00:17:24 +0200134 if (is_ip4)
135 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500136 ip4_header_t *ip0;
Florin Coras02655bd2016-04-26 00:17:24 +0200137 ip_csum_t sum0;
138 u16 old_l0 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100139
Dave Barachd7cb1b52016-12-09 09:52:16 -0500140 ip0 = vlib_buffer_get_current (b0);
Florin Corase127a7e2016-02-18 22:20:01 +0100141
Florin Coras02655bd2016-04-26 00:17:24 +0200142 /* fix the <bleep>ing outer-IP checksum */
143 sum0 = ip0->checksum;
144 /* old_l0 always 0, see the rewrite setup */
145 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
Florin Corase127a7e2016-02-18 22:20:01 +0100146
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
148 length /* changed member */ );
Florin Coras02655bd2016-04-26 00:17:24 +0200149 ip0->checksum = ip_csum_fold (sum0);
150 ip0->length = new_l0;
151
152 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500153 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200154 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500155 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200156 udp0->length = new_l0;
157 }
158 else
159 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500160 ip6_header_t *ip0;
Florin Coras210bfc82016-04-29 16:04:33 +0200161 int bogus0;
162
Dave Barachd7cb1b52016-12-09 09:52:16 -0500163 ip0 = vlib_buffer_get_current (b0);
Florin Coras02655bd2016-04-26 00:17:24 +0200164
Florin Coras02655bd2016-04-26 00:17:24 +0200165 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500166 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200167 ip0->payload_length = new_l0;
168
169 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500170 udp0 = (udp_header_t *) (ip0 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200171 udp0->length = new_l0;
Florin Coras210bfc82016-04-29 16:04:33 +0200172
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173 udp0->checksum =
174 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
175 ASSERT (bogus0 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200176
177 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178 udp0->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200179 }
Florin Corase127a7e2016-02-18 22:20:01 +0100180}
Dave Barachd7cb1b52016-12-09 09:52:16 -0500181
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100182always_inline void
183ip_udp_encap_one (vlib_main_t * vm, vlib_buffer_t * b0, u8 * ec0, word ec_len,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184 u8 is_ip4)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100185{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500186 vlib_buffer_advance (b0, -ec_len);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100187
188 if (is_ip4)
189 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500190 ip4_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100191
Dave Barachd7cb1b52016-12-09 09:52:16 -0500192 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100193
194 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500195 clib_memcpy (ip0, ec0, ec_len);
196 ip_udp_fixup_one (vm, b0, 1);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100197 }
198 else
199 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500200 ip6_header_t *ip0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100201
Dave Barachd7cb1b52016-12-09 09:52:16 -0500202 ip0 = vlib_buffer_get_current (b0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100203
204 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500205 clib_memcpy (ip0, ec0, ec_len);
206 ip_udp_fixup_one (vm, b0, 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100207 }
208}
Florin Corase127a7e2016-02-18 22:20:01 +0100209
210always_inline void
Florin Coras02655bd2016-04-26 00:17:24 +0200211ip_udp_encap_two (vlib_main_t * vm, vlib_buffer_t * b0, vlib_buffer_t * b1,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500212 u8 * ec0, u8 * ec1, word ec_len, u8 is_v4)
Florin Corase127a7e2016-02-18 22:20:01 +0100213{
Florin Corase127a7e2016-02-18 22:20:01 +0100214 u16 new_l0, new_l1;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500215 udp_header_t *udp0, *udp1;
Florin Corase127a7e2016-02-18 22:20:01 +0100216
Dave Barachd7cb1b52016-12-09 09:52:16 -0500217 ASSERT (_vec_len (ec0) == _vec_len (ec1));
Florin Corase127a7e2016-02-18 22:20:01 +0100218
219 vlib_buffer_advance (b0, -ec_len);
220 vlib_buffer_advance (b1, -ec_len);
221
Florin Coras02655bd2016-04-26 00:17:24 +0200222 if (is_v4)
223 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500224 ip4_header_t *ip0, *ip1;
Florin Coras02655bd2016-04-26 00:17:24 +0200225 ip_csum_t sum0, sum1;
226 u16 old_l0 = 0, old_l1 = 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100227
Florin Coras02655bd2016-04-26 00:17:24 +0200228 ip0 = vlib_buffer_get_current (b0);
229 ip1 = vlib_buffer_get_current (b1);
Florin Corase127a7e2016-02-18 22:20:01 +0100230
Florin Coras02655bd2016-04-26 00:17:24 +0200231 /* Apply the encap string */
232 clib_memcpy (ip0, ec0, ec_len);
233 clib_memcpy (ip1, ec1, ec_len);
Florin Corase127a7e2016-02-18 22:20:01 +0100234
Florin Coras02655bd2016-04-26 00:17:24 +0200235 /* fix the <bleep>ing outer-IP checksum */
236 sum0 = ip0->checksum;
237 sum1 = ip1->checksum;
Florin Corase127a7e2016-02-18 22:20:01 +0100238
Florin Coras02655bd2016-04-26 00:17:24 +0200239 /* old_l0 always 0, see the rewrite setup */
240 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0));
241 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1));
Florin Corase127a7e2016-02-18 22:20:01 +0100242
Dave Barachd7cb1b52016-12-09 09:52:16 -0500243 sum0 = ip_csum_update (sum0, old_l0, new_l0, ip4_header_t,
244 length /* changed member */ );
245 sum1 = ip_csum_update (sum1, old_l1, new_l1, ip4_header_t,
246 length /* changed member */ );
Florin Corase127a7e2016-02-18 22:20:01 +0100247
Florin Coras02655bd2016-04-26 00:17:24 +0200248 ip0->checksum = ip_csum_fold (sum0);
249 ip1->checksum = ip_csum_fold (sum1);
Florin Corase127a7e2016-02-18 22:20:01 +0100250
Florin Coras02655bd2016-04-26 00:17:24 +0200251 ip0->length = new_l0;
252 ip1->length = new_l1;
Florin Corase127a7e2016-02-18 22:20:01 +0100253
Florin Coras02655bd2016-04-26 00:17:24 +0200254 /* Fix UDP length */
255 udp0 = (udp_header_t *) (ip0 + 1);
256 udp1 = (udp_header_t *) (ip1 + 1);
257
Dave Barachd7cb1b52016-12-09 09:52:16 -0500258 new_l0 =
259 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
260 sizeof (*ip0));
261 new_l1 =
262 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1) -
263 sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200264 udp0->length = new_l0;
265 udp1->length = new_l1;
266 }
267 else
268 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500269 ip6_header_t *ip0, *ip1;
Florin Coras210bfc82016-04-29 16:04:33 +0200270 int bogus0, bogus1;
271
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 ip0 = vlib_buffer_get_current (b0);
273 ip1 = vlib_buffer_get_current (b1);
Florin Coras02655bd2016-04-26 00:17:24 +0200274
275 /* Apply the encap string. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500276 clib_memcpy (ip0, ec0, ec_len);
277 clib_memcpy (ip1, ec1, ec_len);
Florin Coras02655bd2016-04-26 00:17:24 +0200278
279 new_l0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500280 - sizeof (*ip0));
Florin Coras02655bd2016-04-26 00:17:24 +0200281 new_l1 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b1)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 - sizeof (*ip1));
Florin Coras02655bd2016-04-26 00:17:24 +0200283 ip0->payload_length = new_l0;
284 ip1->payload_length = new_l1;
285
286 /* Fix UDP length */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500287 udp0 = (udp_header_t *) (ip0 + 1);
288 udp1 = (udp_header_t *) (ip1 + 1);
Florin Coras02655bd2016-04-26 00:17:24 +0200289
290 udp0->length = new_l0;
291 udp1->length = new_l1;
Florin Coras210bfc82016-04-29 16:04:33 +0200292
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 udp0->checksum =
294 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0, &bogus0);
295 udp1->checksum =
296 ip6_tcp_udp_icmp_compute_checksum (vm, b1, ip1, &bogus1);
297 ASSERT (bogus0 == 0);
298 ASSERT (bogus1 == 0);
Florin Coras210bfc82016-04-29 16:04:33 +0200299
300 if (udp0->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500301 udp0->checksum = 0xffff;
Florin Coras210bfc82016-04-29 16:04:33 +0200302 if (udp1->checksum == 0)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500303 udp1->checksum = 0xffff;
Florin Coras02655bd2016-04-26 00:17:24 +0200304 }
Florin Corase127a7e2016-02-18 22:20:01 +0100305}
306
307#endif /* included_udp_h */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308
309/*
310 * fd.io coding-style-patch-verification: ON
311 *
312 * Local Variables:
313 * eval: (c-set-style "gnu")
314 * End:
315 */