blob: 61aafaf8896078daa6b1dbca530772d3c91ec9f6 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * node.c: udp packet processing
3 *
Florin Corasc5df8c72019-04-08 07:42:30 -07004 * Copyright (c) 2013-2019 Cisco and/or its affiliates.
Ed Warnickecb9cada2015-12-08 15:45:58 -07005 * 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#include <vlib/vlib.h>
19#include <vnet/pg/pg.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050020#include <vnet/udp/udp.h>
21#include <vnet/udp/udp_packet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022#include <vppinfra/sparse_vec.h>
23
Dave Barachd7cb1b52016-12-09 09:52:16 -050024typedef enum
25{
Neale Ranns0a715cd2019-05-17 06:04:33 -070026 UDP_LOCAL_NEXT_PUNT,
27 UDP_LOCAL_NEXT_DROP,
28 UDP_LOCAL_NEXT_ICMP,
29 UDP_LOCAL_N_NEXT
Florin Coras3cbc04b2017-10-02 00:18:51 -070030} udp_local_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Dave Barachd7cb1b52016-12-09 09:52:16 -050032typedef struct
33{
Ed Warnickecb9cada2015-12-08 15:45:58 -070034 u16 src_port;
35 u16 dst_port;
Chris Luke816f3e12016-06-14 16:24:47 -040036 u8 bound;
Florin Coras3cbc04b2017-10-02 00:18:51 -070037} udp_local_rx_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070038
Neale Ranns0a715cd2019-05-17 06:04:33 -070039#define UDP_NO_NODE_SET ((u16) ~0)
40
Filip Tehlar2c49ffe2019-03-06 07:16:08 -080041#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -050042u8 *
43format_udp_rx_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070044{
45 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
46 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Coras3cbc04b2017-10-02 00:18:51 -070047 udp_local_rx_trace_t *t = va_arg (*args, udp_local_rx_trace_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -050048
Chris Luke816f3e12016-06-14 16:24:47 -040049 s = format (s, "UDP: src-port %d dst-port %d%s",
Dave Barachd7cb1b52016-12-09 09:52:16 -050050 clib_net_to_host_u16 (t->src_port),
51 clib_net_to_host_u16 (t->dst_port),
52 t->bound ? "" : " (no listener)");
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 return s;
54}
Filip Tehlar2c49ffe2019-03-06 07:16:08 -080055#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
57always_inline uword
Florin Coras3cbc04b2017-10-02 00:18:51 -070058udp46_local_inline (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -050059 vlib_node_runtime_t * node,
60 vlib_frame_t * from_frame, int is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -070061{
Damjan Marion615fc612017-04-03 14:56:08 +020062 udp_main_t *um = &udp_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -050063 __attribute__ ((unused)) u32 n_left_from, next_index, *from, *to_next;
Damjan Marion615fc612017-04-03 14:56:08 +020064 u8 punt_unknown = is_ip4 ? um->punt_unknown4 : um->punt_unknown6;
Neale Ranns0a715cd2019-05-17 06:04:33 -070065 u16 *next_by_dst_port = (is_ip4 ?
66 um->next_by_dst_port4 : um->next_by_dst_port6);
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 from = vlib_frame_vector_args (from_frame);
68 n_left_from = from_frame->n_vectors;
69
70 next_index = node->cached_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
72 while (n_left_from > 0)
73 {
74 u32 n_left_to_next;
75
Dave Barachd7cb1b52016-12-09 09:52:16 -050076 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
78 while (n_left_from >= 4 && n_left_to_next >= 2)
79 {
80 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -050081 vlib_buffer_t *b0, *b1;
82 udp_header_t *h0 = 0, *h1 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 u32 i0, i1, dst_port0, dst_port1;
Dave Barachd7cb1b52016-12-09 09:52:16 -050084 u32 advance0, advance1;
85 u32 error0, next0, error1, next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
87 /* Prefetch next iteration. */
88 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050089 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
91 p2 = vlib_get_buffer (vm, from[2]);
92 p3 = vlib_get_buffer (vm, from[3]);
93
94 vlib_prefetch_buffer_header (p2, LOAD);
95 vlib_prefetch_buffer_header (p3, LOAD);
96
97 CLIB_PREFETCH (p2->data, sizeof (h0[0]), LOAD);
98 CLIB_PREFETCH (p3->data, sizeof (h1[0]), LOAD);
99 }
100
101 bi0 = from[0];
102 bi1 = from[1];
103 to_next[0] = bi0;
104 to_next[1] = bi1;
105 from += 2;
106 to_next += 2;
107 n_left_to_next -= 2;
108 n_left_from -= 2;
109
110 b0 = vlib_get_buffer (vm, bi0);
111 b1 = vlib_get_buffer (vm, bi1);
112
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113 /* ip4/6_local hands us the ip header, not the udp header */
114 if (is_ip4)
115 {
Florin Coras9c8142a2020-06-23 14:11:01 -0700116 advance0 = ip4_header_bytes (vlib_buffer_get_current (b0));
117 advance1 = ip4_header_bytes (vlib_buffer_get_current (b1));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500118 }
119 else
120 {
121 advance0 = sizeof (ip6_header_t);
122 advance1 = sizeof (ip6_header_t);
123 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Dave Barachd7cb1b52016-12-09 09:52:16 -0500125 if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
126 {
127 error0 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700128 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500129 }
130 else
131 {
132 vlib_buffer_advance (b0, advance0);
133 h0 = vlib_buffer_get_current (b0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700134 error0 = UDP_ERROR_NONE;
135 next0 = UDP_LOCAL_NEXT_PUNT;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500136 if (PREDICT_FALSE (clib_net_to_host_u16 (h0->length) >
137 vlib_buffer_length_in_chain (vm, b0)))
138 {
John Lo76f78ec2016-03-03 00:25:54 -0500139 error0 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700140 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500141 }
142 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143
Dave Barachd7cb1b52016-12-09 09:52:16 -0500144 if (PREDICT_FALSE (b1->current_length < advance1 + sizeof (*h1)))
145 {
146 error1 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700147 next1 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500148 }
149 else
150 {
151 vlib_buffer_advance (b1, advance1);
152 h1 = vlib_buffer_get_current (b1);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700153 error1 = UDP_ERROR_NONE;
154 next1 = UDP_LOCAL_NEXT_PUNT;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500155 if (PREDICT_FALSE (clib_net_to_host_u16 (h1->length) >
156 vlib_buffer_length_in_chain (vm, b1)))
157 {
John Lo76f78ec2016-03-03 00:25:54 -0500158 error1 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700159 next1 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500160 }
161 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 /* Index sparse array with network byte order. */
164 dst_port0 = (error0 == 0) ? h0->dst_port : 0;
165 dst_port1 = (error1 == 0) ? h1->dst_port : 0;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700166 sparse_vec_index2 (next_by_dst_port, dst_port0, dst_port1, &i0,
167 &i1);
168 next0 = (error0 == 0) ? vec_elt (next_by_dst_port, i0) : next0;
169 next1 = (error1 == 0) ? vec_elt (next_by_dst_port, i1) : next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
Neale Ranns0a715cd2019-05-17 06:04:33 -0700171 if (PREDICT_FALSE (i0 == SPARSE_VEC_INVALID_INDEX ||
172 next0 == UDP_NO_NODE_SET))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500173 {
174 // move the pointer back so icmp-error can find the
175 // ip packet header
176 vlib_buffer_advance (b0, -(word) advance0);
Chris Luke816f3e12016-06-14 16:24:47 -0400177
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178 if (PREDICT_FALSE (punt_unknown))
179 {
180 b0->error = node->errors[UDP_ERROR_PUNT];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700181 next0 = UDP_LOCAL_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800182 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500183 else if (is_ip4)
184 {
185 icmp4_error_set_vnet_buffer (b0,
186 ICMP4_destination_unreachable,
187 ICMP4_destination_unreachable_port_unreachable,
188 0);
Florin Corasbc1a1a72020-04-10 02:01:51 +0000189 b0->error = node->errors[UDP_ERROR_NO_LISTENER];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700190 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191 }
192 else
193 {
194 icmp6_error_set_vnet_buffer (b0,
195 ICMP6_destination_unreachable,
196 ICMP6_destination_unreachable_port_unreachable,
197 0);
Florin Corasbc1a1a72020-04-10 02:01:51 +0000198 b0->error = node->errors[UDP_ERROR_NO_LISTENER];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700199 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500200 }
201 }
202 else
203 {
204 b0->error = node->errors[UDP_ERROR_NONE];
205 // advance to the payload
206 vlib_buffer_advance (b0, sizeof (*h0));
207 }
Chris Luke816f3e12016-06-14 16:24:47 -0400208
Neale Ranns0a715cd2019-05-17 06:04:33 -0700209 if (PREDICT_FALSE (i1 == SPARSE_VEC_INVALID_INDEX ||
210 next1 == UDP_NO_NODE_SET))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500211 {
212 // move the pointer back so icmp-error can find the
213 // ip packet header
214 vlib_buffer_advance (b1, -(word) advance1);
Chris Luke816f3e12016-06-14 16:24:47 -0400215
Dave Barachd7cb1b52016-12-09 09:52:16 -0500216 if (PREDICT_FALSE (punt_unknown))
217 {
218 b1->error = node->errors[UDP_ERROR_PUNT];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700219 next1 = UDP_LOCAL_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800220 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500221 else if (is_ip4)
222 {
223 icmp4_error_set_vnet_buffer (b1,
224 ICMP4_destination_unreachable,
225 ICMP4_destination_unreachable_port_unreachable,
226 0);
Florin Corasbc1a1a72020-04-10 02:01:51 +0000227 b1->error = node->errors[UDP_ERROR_NO_LISTENER];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700228 next1 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500229 }
230 else
231 {
232 icmp6_error_set_vnet_buffer (b1,
233 ICMP6_destination_unreachable,
234 ICMP6_destination_unreachable_port_unreachable,
235 0);
Florin Corasbc1a1a72020-04-10 02:01:51 +0000236 b1->error = node->errors[UDP_ERROR_NO_LISTENER];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700237 next1 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500238 }
239 }
240 else
241 {
242 b1->error = node->errors[UDP_ERROR_NONE];
243 // advance to the payload
244 vlib_buffer_advance (b1, sizeof (*h1));
245 }
246
247 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
248 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700249 udp_local_rx_trace_t *tr = vlib_add_trace (vm, node,
250 b0, sizeof (*tr));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500251 if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
252 {
253 tr->src_port = h0 ? h0->src_port : 0;
254 tr->dst_port = h0 ? h0->dst_port : 0;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700255 tr->bound = (next0 != UDP_LOCAL_NEXT_ICMP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500256 }
257 }
258 if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
259 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700260 udp_local_rx_trace_t *tr = vlib_add_trace (vm, node,
261 b1, sizeof (*tr));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500262 if (b1->error != node->errors[UDP_ERROR_LENGTH_ERROR])
263 {
264 tr->src_port = h1 ? h1->src_port : 0;
265 tr->dst_port = h1 ? h1->dst_port : 0;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700266 tr->bound = (next1 != UDP_LOCAL_NEXT_ICMP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500267 }
268 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
271 to_next, n_left_to_next,
272 bi0, bi1, next0, next1);
273 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500274
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 while (n_left_from > 0 && n_left_to_next > 0)
276 {
277 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500278 vlib_buffer_t *b0;
279 udp_header_t *h0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 u32 i0, next0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500281 u32 advance0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
283 bi0 = from[0];
284 to_next[0] = bi0;
285 from += 1;
286 to_next += 1;
287 n_left_from -= 1;
288 n_left_to_next -= 1;
289
290 b0 = vlib_get_buffer (vm, bi0);
291
Dave Barachd7cb1b52016-12-09 09:52:16 -0500292 /* ip4/6_local hands us the ip header, not the udp header */
293 if (is_ip4)
Florin Coras9c8142a2020-06-23 14:11:01 -0700294 advance0 = ip4_header_bytes (vlib_buffer_get_current (b0));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500295 else
296 advance0 = sizeof (ip6_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Dave Barachd7cb1b52016-12-09 09:52:16 -0500298 if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
299 {
300 b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700301 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 goto trace_x1;
303 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304
Dave Barachd7cb1b52016-12-09 09:52:16 -0500305 vlib_buffer_advance (b0, advance0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
307 h0 = vlib_buffer_get_current (b0);
308
Dave Barachd7cb1b52016-12-09 09:52:16 -0500309 if (PREDICT_TRUE (clib_net_to_host_u16 (h0->length) <=
310 vlib_buffer_length_in_chain (vm, b0)))
311 {
Neale Ranns0a715cd2019-05-17 06:04:33 -0700312 i0 = sparse_vec_index (next_by_dst_port, h0->dst_port);
313 next0 = vec_elt (next_by_dst_port, i0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
Neale Ranns0a715cd2019-05-17 06:04:33 -0700315 if (PREDICT_FALSE ((i0 == SPARSE_VEC_INVALID_INDEX) ||
316 next0 == UDP_NO_NODE_SET))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500317 {
318 // move the pointer back so icmp-error can find the
319 // ip packet header
320 vlib_buffer_advance (b0, -(word) advance0);
Chris Luke816f3e12016-06-14 16:24:47 -0400321
Dave Barachd7cb1b52016-12-09 09:52:16 -0500322 if (PREDICT_FALSE (punt_unknown))
323 {
324 b0->error = node->errors[UDP_ERROR_PUNT];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700325 next0 = UDP_LOCAL_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800326 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 else if (is_ip4)
328 {
329 icmp4_error_set_vnet_buffer (b0,
330 ICMP4_destination_unreachable,
331 ICMP4_destination_unreachable_port_unreachable,
332 0);
Florin Corasbc1a1a72020-04-10 02:01:51 +0000333 b0->error = node->errors[UDP_ERROR_NO_LISTENER];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700334 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 }
336 else
337 {
338 icmp6_error_set_vnet_buffer (b0,
339 ICMP6_destination_unreachable,
340 ICMP6_destination_unreachable_port_unreachable,
341 0);
Florin Corasbc1a1a72020-04-10 02:01:51 +0000342 b0->error = node->errors[UDP_ERROR_NO_LISTENER];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700343 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344 }
345 }
346 else
347 {
348 b0->error = node->errors[UDP_ERROR_NONE];
349 // advance to the payload
350 vlib_buffer_advance (b0, sizeof (*h0));
351 }
352 }
353 else
354 {
355 b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700356 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500357 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
Dave Barachd7cb1b52016-12-09 09:52:16 -0500359 trace_x1:
360 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
361 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700362 udp_local_rx_trace_t *tr = vlib_add_trace (vm, node,
363 b0, sizeof (*tr));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500364 if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
365 {
366 tr->src_port = h0->src_port;
367 tr->dst_port = h0->dst_port;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700368 tr->bound = (next0 != UDP_LOCAL_NEXT_ICMP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500369 }
370 }
Chris Luke816f3e12016-06-14 16:24:47 -0400371
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
373 to_next, n_left_to_next,
374 bi0, next0);
375 }
376
377 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
378 }
379 return from_frame->n_vectors;
380}
381
Dave Barachd7cb1b52016-12-09 09:52:16 -0500382static char *udp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383#define udp_error(n,s) s,
384#include "udp_error.def"
385#undef udp_error
386};
387
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800388VLIB_NODE_FN (udp4_local_node) (vlib_main_t * vm,
389 vlib_node_runtime_t * node,
390 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700392 return udp46_local_inline (vm, node, from_frame, 1 /* is_ip4 */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393}
394
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800395VLIB_NODE_FN (udp6_local_node) (vlib_main_t * vm,
396 vlib_node_runtime_t * node,
397 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700399 return udp46_local_inline (vm, node, from_frame, 0 /* is_ip4 */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400}
401
Dave Barachd7cb1b52016-12-09 09:52:16 -0500402/* *INDENT-OFF* */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700403VLIB_REGISTER_NODE (udp4_local_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404 .name = "ip4-udp-lookup",
405 /* Takes a vector of packets. */
406 .vector_size = sizeof (u32),
407
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 .n_errors = UDP_N_ERROR,
409 .error_strings = udp_error_strings,
410
Florin Coras3cbc04b2017-10-02 00:18:51 -0700411 .n_next_nodes = UDP_LOCAL_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 .next_nodes = {
Neale Ranns0a715cd2019-05-17 06:04:33 -0700413 [UDP_LOCAL_NEXT_PUNT]= "ip4-punt",
414 [UDP_LOCAL_NEXT_DROP]= "ip4-drop",
415 [UDP_LOCAL_NEXT_ICMP]= "ip4-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416 },
417
418 .format_buffer = format_udp_header,
419 .format_trace = format_udp_rx_trace,
420 .unformat_buffer = unformat_udp_header,
421};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500422/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
Dave Barachd7cb1b52016-12-09 09:52:16 -0500424/* *INDENT-OFF* */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700425VLIB_REGISTER_NODE (udp6_local_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 .name = "ip6-udp-lookup",
427 /* Takes a vector of packets. */
428 .vector_size = sizeof (u32),
429
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 .n_errors = UDP_N_ERROR,
431 .error_strings = udp_error_strings,
432
Florin Coras3cbc04b2017-10-02 00:18:51 -0700433 .n_next_nodes = UDP_LOCAL_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434 .next_nodes = {
Neale Ranns0a715cd2019-05-17 06:04:33 -0700435 [UDP_LOCAL_NEXT_PUNT]= "ip6-punt",
436 [UDP_LOCAL_NEXT_DROP]= "ip6-drop",
437 [UDP_LOCAL_NEXT_ICMP]= "ip6-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 },
439
440 .format_buffer = format_udp_header,
441 .format_trace = format_udp_rx_trace,
442 .unformat_buffer = unformat_udp_header,
443};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500444/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800446#ifndef CLIB_MARCH_VARIANT
Florin Corasa0396202020-04-01 00:11:16 +0000447void
448udp_add_dst_port (udp_main_t * um, udp_dst_port_t dst_port,
449 char *dst_port_name, u8 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500451 udp_dst_port_info_t *pi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 u32 i;
453
454 vec_add2 (um->dst_port_infos[is_ip4], pi, 1);
455 i = pi - um->dst_port_infos[is_ip4];
456
457 pi->name = dst_port_name;
458 pi->dst_port = dst_port;
459 pi->next_index = pi->node_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500460
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461 hash_set (um->dst_port_info_by_dst_port[is_ip4], dst_port, i);
462
463 if (pi->name)
464 hash_set_mem (um->dst_port_info_by_name[is_ip4], pi->name, i);
465}
466
467void
468udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500469 udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500471 udp_main_t *um = &udp_main;
472 udp_dst_port_info_t *pi;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500473 u16 *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
475 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500476 clib_error_t *error = vlib_call_init_function (vm, udp_local_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477 if (error)
478 clib_error_report (error);
479 }
480
481 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500482 if (!pi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483 {
Florin Corasa0396202020-04-01 00:11:16 +0000484 udp_add_dst_port (um, dst_port, 0, is_ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
486 ASSERT (pi);
487 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500488
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 pi->node_index = node_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500490 pi->next_index = vlib_node_add_next (vm,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700491 is_ip4 ? udp4_local_node.index
492 : udp6_local_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
494 /* Setup udp protocol -> next index sparse vector mapping. */
Damjan Marion615fc612017-04-03 14:56:08 +0200495 if (is_ip4)
496 n = sparse_vec_validate (um->next_by_dst_port4,
Damjan Marione9f929b2017-03-16 11:32:09 +0100497 clib_host_to_net_u16 (dst_port));
Damjan Marion615fc612017-04-03 14:56:08 +0200498 else
499 n = sparse_vec_validate (um->next_by_dst_port6,
500 clib_host_to_net_u16 (dst_port));
501
502 n[0] = pi->next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503}
504
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800505void
Dave Barach68b0fb02017-02-28 15:15:56 -0500506udp_unregister_dst_port (vlib_main_t * vm, udp_dst_port_t dst_port, u8 is_ip4)
507{
508 udp_main_t *um = &udp_main;
509 udp_dst_port_info_t *pi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500510 u16 *n;
511
512 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
513 /* Not registered? Fagedaboudit */
514 if (!pi)
515 return;
516
517 /* Kill the mapping. Don't bother killing the pi, it may be back. */
Damjan Marion615fc612017-04-03 14:56:08 +0200518 if (is_ip4)
519 n = sparse_vec_validate (um->next_by_dst_port4,
Damjan Marione9f929b2017-03-16 11:32:09 +0100520 clib_host_to_net_u16 (dst_port));
Damjan Marion615fc612017-04-03 14:56:08 +0200521 else
522 n = sparse_vec_validate (um->next_by_dst_port6,
523 clib_host_to_net_u16 (dst_port));
524
Neale Ranns0a715cd2019-05-17 06:04:33 -0700525 n[0] = UDP_NO_NODE_SET;
Dave Barach68b0fb02017-02-28 15:15:56 -0500526}
527
Florin Corasb040f982020-10-20 14:59:43 -0700528u8
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100529udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4)
530{
531 udp_main_t *um = &udp_main;
532 u16 *n;
533
534 if (is_ip4)
535 n = sparse_vec_validate (um->next_by_dst_port4,
536 clib_host_to_net_u16 (dst_port));
537 else
538 n = sparse_vec_validate (um->next_by_dst_port6,
539 clib_host_to_net_u16 (dst_port));
540
Neale Ranns0a715cd2019-05-17 06:04:33 -0700541 return (n[0] != SPARSE_VEC_INVALID_INDEX && n[0] != UDP_NO_NODE_SET);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100542}
543
Dave Barach68b0fb02017-02-28 15:15:56 -0500544void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500545udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800546{
Damjan Marion615fc612017-04-03 14:56:08 +0200547 udp_main_t *um = &udp_main;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800548 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549 clib_error_t *error = vlib_call_init_function (vm, udp_local_init);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800550 if (error)
551 clib_error_report (error);
552 }
553
Damjan Marion615fc612017-04-03 14:56:08 +0200554 if (is_ip4)
555 um->punt_unknown4 = is_add;
556 else
557 um->punt_unknown6 = is_add;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800558}
559
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560/* Parse a UDP header. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500561uword
562unformat_udp_header (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564 u8 **result = va_arg (*args, u8 **);
565 udp_header_t *udp;
566 __attribute__ ((unused)) int old_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 u16 src_port, dst_port;
568
569 /* Allocate space for IP header. */
570 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500571 void *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573 old_length = vec_len (*result);
574 vec_add2 (*result, p, sizeof (ip4_header_t));
575 udp = p;
576 }
577
Dave Barachb7b92992018-10-17 10:38:51 -0400578 clib_memset (udp, 0, sizeof (udp[0]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500579 if (unformat (input, "src-port %d dst-port %d", &src_port, &dst_port))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 {
581 udp->src_port = clib_host_to_net_u16 (src_port);
582 udp->dst_port = clib_host_to_net_u16 (dst_port);
583 return 1;
584 }
585 return 0;
586}
587
588static void
589udp_setup_node (vlib_main_t * vm, u32 node_index)
590{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500591 vlib_node_t *n = vlib_get_node (vm, node_index);
592 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
594 n->format_buffer = format_udp_header;
595 n->unformat_buffer = unformat_udp_header;
596 pn->unformat_edit = unformat_pg_udp_header;
597}
598
Dave Barachd7cb1b52016-12-09 09:52:16 -0500599clib_error_t *
600udp_local_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500602 udp_main_t *um = &udp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603 int i;
604
605 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 error = vlib_call_init_function (vm, udp_init);
608 if (error)
609 clib_error_report (error);
610 }
611
612
613 for (i = 0; i < 2; i++)
614 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500615 um->dst_port_info_by_name[i] = hash_create_string (0, sizeof (uword));
616 um->dst_port_info_by_dst_port[i] = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617 }
618
Florin Coras3cbc04b2017-10-02 00:18:51 -0700619 udp_setup_node (vm, udp4_local_node.index);
620 udp_setup_node (vm, udp6_local_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
Damjan Marion615fc612017-04-03 14:56:08 +0200622 um->punt_unknown4 = 0;
623 um->punt_unknown6 = 0;
624
625 um->next_by_dst_port4 = sparse_vec_new
626 ( /* elt bytes */ sizeof (um->next_by_dst_port4[0]),
627 /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
628
629 um->next_by_dst_port6 = sparse_vec_new
630 ( /* elt bytes */ sizeof (um->next_by_dst_port6[0]),
631 /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800632
Florin Corasa0396202020-04-01 00:11:16 +0000633#define _(n,s) udp_add_dst_port (um, UDP_DST_PORT_##s, #s, 1 /* is_ip4 */);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 foreach_udp4_dst_port
635#undef _
Florin Corasa0396202020-04-01 00:11:16 +0000636#define _(n,s) udp_add_dst_port (um, UDP_DST_PORT_##s, #s, 0 /* is_ip4 */);
Damjan Marione9f929b2017-03-16 11:32:09 +0100637 foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638#undef _
Florin Coras3cbc04b2017-10-02 00:18:51 -0700639 ip4_register_protocol (IP_PROTOCOL_UDP, udp4_local_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640 /* Note: ip6 differs from ip4, UDP is hotwired to ip6-udp-lookup */
641 return 0;
642}
643
644VLIB_INIT_FUNCTION (udp_local_init);
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800645#endif /* CLIB_MARCH_VARIANT */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500646
647/*
648 * fd.io coding-style-patch-verification: ON
649 *
650 * Local Variables:
651 * eval: (c-set-style "gnu")
652 * End:
653 */