blob: 748ad73bddb5ed403acb89e202b2a534e7683dcf [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;
Chris Luke816f3e12016-06-14 16:24:47 -040064 word n_no_listener = 0;
Damjan Marion615fc612017-04-03 14:56:08 +020065 u8 punt_unknown = is_ip4 ? um->punt_unknown4 : um->punt_unknown6;
Neale Ranns0a715cd2019-05-17 06:04:33 -070066 u16 *next_by_dst_port = (is_ip4 ?
67 um->next_by_dst_port4 : um->next_by_dst_port6);
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 from = vlib_frame_vector_args (from_frame);
69 n_left_from = from_frame->n_vectors;
70
71 next_index = node->cached_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
73 while (n_left_from > 0)
74 {
75 u32 n_left_to_next;
76
Dave Barachd7cb1b52016-12-09 09:52:16 -050077 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79 while (n_left_from >= 4 && n_left_to_next >= 2)
80 {
81 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 vlib_buffer_t *b0, *b1;
83 udp_header_t *h0 = 0, *h1 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070084 u32 i0, i1, dst_port0, dst_port1;
Dave Barachd7cb1b52016-12-09 09:52:16 -050085 u32 advance0, advance1;
86 u32 error0, next0, error1, next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
88 /* Prefetch next iteration. */
89 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050090 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
92 p2 = vlib_get_buffer (vm, from[2]);
93 p3 = vlib_get_buffer (vm, from[3]);
94
95 vlib_prefetch_buffer_header (p2, LOAD);
96 vlib_prefetch_buffer_header (p3, LOAD);
97
98 CLIB_PREFETCH (p2->data, sizeof (h0[0]), LOAD);
99 CLIB_PREFETCH (p3->data, sizeof (h1[0]), LOAD);
100 }
101
102 bi0 = from[0];
103 bi1 = from[1];
104 to_next[0] = bi0;
105 to_next[1] = bi1;
106 from += 2;
107 to_next += 2;
108 n_left_to_next -= 2;
109 n_left_from -= 2;
110
111 b0 = vlib_get_buffer (vm, bi0);
112 b1 = vlib_get_buffer (vm, bi1);
113
Dave Barachd7cb1b52016-12-09 09:52:16 -0500114 /* ip4/6_local hands us the ip header, not the udp header */
115 if (is_ip4)
116 {
117 advance0 = sizeof (ip4_header_t);
118 advance1 = sizeof (ip4_header_t);
119 }
120 else
121 {
122 advance0 = sizeof (ip6_header_t);
123 advance1 = sizeof (ip6_header_t);
124 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
Dave Barachd7cb1b52016-12-09 09:52:16 -0500126 if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
127 {
128 error0 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700129 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500130 }
131 else
132 {
133 vlib_buffer_advance (b0, advance0);
134 h0 = vlib_buffer_get_current (b0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700135 error0 = UDP_ERROR_NONE;
136 next0 = UDP_LOCAL_NEXT_PUNT;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500137 if (PREDICT_FALSE (clib_net_to_host_u16 (h0->length) >
138 vlib_buffer_length_in_chain (vm, b0)))
139 {
John Lo76f78ec2016-03-03 00:25:54 -0500140 error0 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700141 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500142 }
143 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144
Dave Barachd7cb1b52016-12-09 09:52:16 -0500145 if (PREDICT_FALSE (b1->current_length < advance1 + sizeof (*h1)))
146 {
147 error1 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700148 next1 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500149 }
150 else
151 {
152 vlib_buffer_advance (b1, advance1);
153 h1 = vlib_buffer_get_current (b1);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700154 error1 = UDP_ERROR_NONE;
155 next1 = UDP_LOCAL_NEXT_PUNT;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500156 if (PREDICT_FALSE (clib_net_to_host_u16 (h1->length) >
157 vlib_buffer_length_in_chain (vm, b1)))
158 {
John Lo76f78ec2016-03-03 00:25:54 -0500159 error1 = UDP_ERROR_LENGTH_ERROR;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700160 next1 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 }
162 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 /* Index sparse array with network byte order. */
165 dst_port0 = (error0 == 0) ? h0->dst_port : 0;
166 dst_port1 = (error1 == 0) ? h1->dst_port : 0;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700167 sparse_vec_index2 (next_by_dst_port, dst_port0, dst_port1, &i0,
168 &i1);
169 next0 = (error0 == 0) ? vec_elt (next_by_dst_port, i0) : next0;
170 next1 = (error1 == 0) ? vec_elt (next_by_dst_port, i1) : next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Neale Ranns0a715cd2019-05-17 06:04:33 -0700172 if (PREDICT_FALSE (i0 == SPARSE_VEC_INVALID_INDEX ||
173 next0 == UDP_NO_NODE_SET))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500174 {
175 // move the pointer back so icmp-error can find the
176 // ip packet header
177 vlib_buffer_advance (b0, -(word) advance0);
Chris Luke816f3e12016-06-14 16:24:47 -0400178
Dave Barachd7cb1b52016-12-09 09:52:16 -0500179 if (PREDICT_FALSE (punt_unknown))
180 {
181 b0->error = node->errors[UDP_ERROR_PUNT];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700182 next0 = UDP_LOCAL_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800183 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500184 else if (is_ip4)
185 {
186 icmp4_error_set_vnet_buffer (b0,
187 ICMP4_destination_unreachable,
188 ICMP4_destination_unreachable_port_unreachable,
189 0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700190 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500191 n_no_listener++;
192 }
193 else
194 {
195 icmp6_error_set_vnet_buffer (b0,
196 ICMP6_destination_unreachable,
197 ICMP6_destination_unreachable_port_unreachable,
198 0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700199 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500200 n_no_listener++;
201 }
202 }
203 else
204 {
205 b0->error = node->errors[UDP_ERROR_NONE];
206 // advance to the payload
207 vlib_buffer_advance (b0, sizeof (*h0));
208 }
Chris Luke816f3e12016-06-14 16:24:47 -0400209
Neale Ranns0a715cd2019-05-17 06:04:33 -0700210 if (PREDICT_FALSE (i1 == SPARSE_VEC_INVALID_INDEX ||
211 next1 == UDP_NO_NODE_SET))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500212 {
213 // move the pointer back so icmp-error can find the
214 // ip packet header
215 vlib_buffer_advance (b1, -(word) advance1);
Chris Luke816f3e12016-06-14 16:24:47 -0400216
Dave Barachd7cb1b52016-12-09 09:52:16 -0500217 if (PREDICT_FALSE (punt_unknown))
218 {
219 b1->error = node->errors[UDP_ERROR_PUNT];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700220 next1 = UDP_LOCAL_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800221 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500222 else if (is_ip4)
223 {
224 icmp4_error_set_vnet_buffer (b1,
225 ICMP4_destination_unreachable,
226 ICMP4_destination_unreachable_port_unreachable,
227 0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700228 next1 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500229 n_no_listener++;
230 }
231 else
232 {
233 icmp6_error_set_vnet_buffer (b1,
234 ICMP6_destination_unreachable,
235 ICMP6_destination_unreachable_port_unreachable,
236 0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700237 next1 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500238 n_no_listener++;
239 }
240 }
241 else
242 {
243 b1->error = node->errors[UDP_ERROR_NONE];
244 // advance to the payload
245 vlib_buffer_advance (b1, sizeof (*h1));
246 }
247
248 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
249 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700250 udp_local_rx_trace_t *tr = vlib_add_trace (vm, node,
251 b0, sizeof (*tr));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500252 if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
253 {
254 tr->src_port = h0 ? h0->src_port : 0;
255 tr->dst_port = h0 ? h0->dst_port : 0;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700256 tr->bound = (next0 != UDP_LOCAL_NEXT_ICMP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500257 }
258 }
259 if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
260 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700261 udp_local_rx_trace_t *tr = vlib_add_trace (vm, node,
262 b1, sizeof (*tr));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500263 if (b1->error != node->errors[UDP_ERROR_LENGTH_ERROR])
264 {
265 tr->src_port = h1 ? h1->src_port : 0;
266 tr->dst_port = h1 ? h1->dst_port : 0;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700267 tr->bound = (next1 != UDP_LOCAL_NEXT_ICMP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500268 }
269 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
272 to_next, n_left_to_next,
273 bi0, bi1, next0, next1);
274 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500275
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 while (n_left_from > 0 && n_left_to_next > 0)
277 {
278 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500279 vlib_buffer_t *b0;
280 udp_header_t *h0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 u32 i0, next0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500282 u32 advance0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283
284 bi0 = from[0];
285 to_next[0] = bi0;
286 from += 1;
287 to_next += 1;
288 n_left_from -= 1;
289 n_left_to_next -= 1;
290
291 b0 = vlib_get_buffer (vm, bi0);
292
Dave Barachd7cb1b52016-12-09 09:52:16 -0500293 /* ip4/6_local hands us the ip header, not the udp header */
294 if (is_ip4)
295 advance0 = sizeof (ip4_header_t);
296 else
297 advance0 = sizeof (ip6_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298
Dave Barachd7cb1b52016-12-09 09:52:16 -0500299 if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
300 {
301 b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700302 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500303 goto trace_x1;
304 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305
Dave Barachd7cb1b52016-12-09 09:52:16 -0500306 vlib_buffer_advance (b0, advance0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
308 h0 = vlib_buffer_get_current (b0);
309
Dave Barachd7cb1b52016-12-09 09:52:16 -0500310 if (PREDICT_TRUE (clib_net_to_host_u16 (h0->length) <=
311 vlib_buffer_length_in_chain (vm, b0)))
312 {
Neale Ranns0a715cd2019-05-17 06:04:33 -0700313 i0 = sparse_vec_index (next_by_dst_port, h0->dst_port);
314 next0 = vec_elt (next_by_dst_port, i0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
Neale Ranns0a715cd2019-05-17 06:04:33 -0700316 if (PREDICT_FALSE ((i0 == SPARSE_VEC_INVALID_INDEX) ||
317 next0 == UDP_NO_NODE_SET))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500318 {
319 // move the pointer back so icmp-error can find the
320 // ip packet header
321 vlib_buffer_advance (b0, -(word) advance0);
Chris Luke816f3e12016-06-14 16:24:47 -0400322
Dave Barachd7cb1b52016-12-09 09:52:16 -0500323 if (PREDICT_FALSE (punt_unknown))
324 {
325 b0->error = node->errors[UDP_ERROR_PUNT];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700326 next0 = UDP_LOCAL_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800327 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500328 else if (is_ip4)
329 {
330 icmp4_error_set_vnet_buffer (b0,
331 ICMP4_destination_unreachable,
332 ICMP4_destination_unreachable_port_unreachable,
333 0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700334 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500335 n_no_listener++;
336 }
337 else
338 {
339 icmp6_error_set_vnet_buffer (b0,
340 ICMP6_destination_unreachable,
341 ICMP6_destination_unreachable_port_unreachable,
342 0);
Neale Ranns0a715cd2019-05-17 06:04:33 -0700343 next0 = UDP_LOCAL_NEXT_ICMP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500344 n_no_listener++;
345 }
346 }
347 else
348 {
349 b0->error = node->errors[UDP_ERROR_NONE];
350 // advance to the payload
351 vlib_buffer_advance (b0, sizeof (*h0));
352 }
353 }
354 else
355 {
356 b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
Neale Ranns0a715cd2019-05-17 06:04:33 -0700357 next0 = UDP_LOCAL_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359
Dave Barachd7cb1b52016-12-09 09:52:16 -0500360 trace_x1:
361 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
362 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700363 udp_local_rx_trace_t *tr = vlib_add_trace (vm, node,
364 b0, sizeof (*tr));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500365 if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
366 {
367 tr->src_port = h0->src_port;
368 tr->dst_port = h0->dst_port;
Neale Ranns0a715cd2019-05-17 06:04:33 -0700369 tr->bound = (next0 != UDP_LOCAL_NEXT_ICMP);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 }
371 }
Chris Luke816f3e12016-06-14 16:24:47 -0400372
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
374 to_next, n_left_to_next,
375 bi0, next0);
376 }
377
378 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
379 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500380 vlib_error_count (vm, node->node_index, UDP_ERROR_NO_LISTENER,
381 n_no_listener);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 return from_frame->n_vectors;
383}
384
Dave Barachd7cb1b52016-12-09 09:52:16 -0500385static char *udp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386#define udp_error(n,s) s,
387#include "udp_error.def"
388#undef udp_error
389};
390
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800391VLIB_NODE_FN (udp4_local_node) (vlib_main_t * vm,
392 vlib_node_runtime_t * node,
393 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700395 return udp46_local_inline (vm, node, from_frame, 1 /* is_ip4 */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396}
397
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800398VLIB_NODE_FN (udp6_local_node) (vlib_main_t * vm,
399 vlib_node_runtime_t * node,
400 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700402 return udp46_local_inline (vm, node, from_frame, 0 /* is_ip4 */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403}
404
Dave Barachd7cb1b52016-12-09 09:52:16 -0500405/* *INDENT-OFF* */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700406VLIB_REGISTER_NODE (udp4_local_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407 .name = "ip4-udp-lookup",
408 /* Takes a vector of packets. */
409 .vector_size = sizeof (u32),
410
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 .n_errors = UDP_N_ERROR,
412 .error_strings = udp_error_strings,
413
Florin Coras3cbc04b2017-10-02 00:18:51 -0700414 .n_next_nodes = UDP_LOCAL_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 .next_nodes = {
Neale Ranns0a715cd2019-05-17 06:04:33 -0700416 [UDP_LOCAL_NEXT_PUNT]= "ip4-punt",
417 [UDP_LOCAL_NEXT_DROP]= "ip4-drop",
418 [UDP_LOCAL_NEXT_ICMP]= "ip4-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419 },
420
421 .format_buffer = format_udp_header,
422 .format_trace = format_udp_rx_trace,
423 .unformat_buffer = unformat_udp_header,
424};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500425/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Dave Barachd7cb1b52016-12-09 09:52:16 -0500427/* *INDENT-OFF* */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700428VLIB_REGISTER_NODE (udp6_local_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 .name = "ip6-udp-lookup",
430 /* Takes a vector of packets. */
431 .vector_size = sizeof (u32),
432
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 .n_errors = UDP_N_ERROR,
434 .error_strings = udp_error_strings,
435
Florin Coras3cbc04b2017-10-02 00:18:51 -0700436 .n_next_nodes = UDP_LOCAL_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 .next_nodes = {
Neale Ranns0a715cd2019-05-17 06:04:33 -0700438 [UDP_LOCAL_NEXT_PUNT]= "ip6-punt",
439 [UDP_LOCAL_NEXT_DROP]= "ip6-drop",
440 [UDP_LOCAL_NEXT_ICMP]= "ip6-icmp-error",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441 },
442
443 .format_buffer = format_udp_header,
444 .format_trace = format_udp_rx_trace,
445 .unformat_buffer = unformat_udp_header,
446};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500447/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800449#ifndef CLIB_MARCH_VARIANT
Florin Corasa0396202020-04-01 00:11:16 +0000450void
451udp_add_dst_port (udp_main_t * um, udp_dst_port_t dst_port,
452 char *dst_port_name, u8 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500454 udp_dst_port_info_t *pi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 u32 i;
456
457 vec_add2 (um->dst_port_infos[is_ip4], pi, 1);
458 i = pi - um->dst_port_infos[is_ip4];
459
460 pi->name = dst_port_name;
461 pi->dst_port = dst_port;
462 pi->next_index = pi->node_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 hash_set (um->dst_port_info_by_dst_port[is_ip4], dst_port, i);
465
466 if (pi->name)
467 hash_set_mem (um->dst_port_info_by_name[is_ip4], pi->name, i);
468}
469
470void
471udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500472 udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500474 udp_main_t *um = &udp_main;
475 udp_dst_port_info_t *pi;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500476 u16 *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477
478 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500479 clib_error_t *error = vlib_call_init_function (vm, udp_local_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480 if (error)
481 clib_error_report (error);
482 }
483
484 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 if (!pi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486 {
Florin Corasa0396202020-04-01 00:11:16 +0000487 udp_add_dst_port (um, dst_port, 0, is_ip4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
489 ASSERT (pi);
490 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500491
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 pi->node_index = node_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 pi->next_index = vlib_node_add_next (vm,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700494 is_ip4 ? udp4_local_node.index
495 : udp6_local_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
497 /* Setup udp protocol -> next index sparse vector mapping. */
Damjan Marion615fc612017-04-03 14:56:08 +0200498 if (is_ip4)
499 n = sparse_vec_validate (um->next_by_dst_port4,
Damjan Marione9f929b2017-03-16 11:32:09 +0100500 clib_host_to_net_u16 (dst_port));
Damjan Marion615fc612017-04-03 14:56:08 +0200501 else
502 n = sparse_vec_validate (um->next_by_dst_port6,
503 clib_host_to_net_u16 (dst_port));
504
505 n[0] = pi->next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506}
507
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800508void
Dave Barach68b0fb02017-02-28 15:15:56 -0500509udp_unregister_dst_port (vlib_main_t * vm, udp_dst_port_t dst_port, u8 is_ip4)
510{
511 udp_main_t *um = &udp_main;
512 udp_dst_port_info_t *pi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500513 u16 *n;
514
515 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
516 /* Not registered? Fagedaboudit */
517 if (!pi)
518 return;
519
520 /* Kill the mapping. Don't bother killing the pi, it may be back. */
Damjan Marion615fc612017-04-03 14:56:08 +0200521 if (is_ip4)
522 n = sparse_vec_validate (um->next_by_dst_port4,
Damjan Marione9f929b2017-03-16 11:32:09 +0100523 clib_host_to_net_u16 (dst_port));
Damjan Marion615fc612017-04-03 14:56:08 +0200524 else
525 n = sparse_vec_validate (um->next_by_dst_port6,
526 clib_host_to_net_u16 (dst_port));
527
Neale Ranns0a715cd2019-05-17 06:04:33 -0700528 n[0] = UDP_NO_NODE_SET;
Dave Barach68b0fb02017-02-28 15:15:56 -0500529}
530
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100531bool
532udp_is_valid_dst_port (udp_dst_port_t dst_port, u8 is_ip4)
533{
534 udp_main_t *um = &udp_main;
535 u16 *n;
536
537 if (is_ip4)
538 n = sparse_vec_validate (um->next_by_dst_port4,
539 clib_host_to_net_u16 (dst_port));
540 else
541 n = sparse_vec_validate (um->next_by_dst_port6,
542 clib_host_to_net_u16 (dst_port));
543
Neale Ranns0a715cd2019-05-17 06:04:33 -0700544 return (n[0] != SPARSE_VEC_INVALID_INDEX && n[0] != UDP_NO_NODE_SET);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100545}
546
Dave Barach68b0fb02017-02-28 15:15:56 -0500547void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500548udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800549{
Damjan Marion615fc612017-04-03 14:56:08 +0200550 udp_main_t *um = &udp_main;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800551 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500552 clib_error_t *error = vlib_call_init_function (vm, udp_local_init);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800553 if (error)
554 clib_error_report (error);
555 }
556
Damjan Marion615fc612017-04-03 14:56:08 +0200557 if (is_ip4)
558 um->punt_unknown4 = is_add;
559 else
560 um->punt_unknown6 = is_add;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800561}
562
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563/* Parse a UDP header. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500564uword
565unformat_udp_header (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500567 u8 **result = va_arg (*args, u8 **);
568 udp_header_t *udp;
569 __attribute__ ((unused)) int old_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 u16 src_port, dst_port;
571
572 /* Allocate space for IP header. */
573 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500574 void *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575
576 old_length = vec_len (*result);
577 vec_add2 (*result, p, sizeof (ip4_header_t));
578 udp = p;
579 }
580
Dave Barachb7b92992018-10-17 10:38:51 -0400581 clib_memset (udp, 0, sizeof (udp[0]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500582 if (unformat (input, "src-port %d dst-port %d", &src_port, &dst_port))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583 {
584 udp->src_port = clib_host_to_net_u16 (src_port);
585 udp->dst_port = clib_host_to_net_u16 (dst_port);
586 return 1;
587 }
588 return 0;
589}
590
591static void
592udp_setup_node (vlib_main_t * vm, u32 node_index)
593{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500594 vlib_node_t *n = vlib_get_node (vm, node_index);
595 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
597 n->format_buffer = format_udp_header;
598 n->unformat_buffer = unformat_udp_header;
599 pn->unformat_edit = unformat_pg_udp_header;
600}
601
Dave Barachd7cb1b52016-12-09 09:52:16 -0500602clib_error_t *
603udp_local_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500605 udp_main_t *um = &udp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 int i;
607
608 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500609 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610 error = vlib_call_init_function (vm, udp_init);
611 if (error)
612 clib_error_report (error);
613 }
614
615
616 for (i = 0; i < 2; i++)
617 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500618 um->dst_port_info_by_name[i] = hash_create_string (0, sizeof (uword));
619 um->dst_port_info_by_dst_port[i] = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620 }
621
Florin Coras3cbc04b2017-10-02 00:18:51 -0700622 udp_setup_node (vm, udp4_local_node.index);
623 udp_setup_node (vm, udp6_local_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624
Damjan Marion615fc612017-04-03 14:56:08 +0200625 um->punt_unknown4 = 0;
626 um->punt_unknown6 = 0;
627
628 um->next_by_dst_port4 = sparse_vec_new
629 ( /* elt bytes */ sizeof (um->next_by_dst_port4[0]),
630 /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
631
632 um->next_by_dst_port6 = sparse_vec_new
633 ( /* elt bytes */ sizeof (um->next_by_dst_port6[0]),
634 /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800635
Florin Corasa0396202020-04-01 00:11:16 +0000636#define _(n,s) udp_add_dst_port (um, UDP_DST_PORT_##s, #s, 1 /* is_ip4 */);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637 foreach_udp4_dst_port
638#undef _
Florin Corasa0396202020-04-01 00:11:16 +0000639#define _(n,s) udp_add_dst_port (um, UDP_DST_PORT_##s, #s, 0 /* is_ip4 */);
Damjan Marione9f929b2017-03-16 11:32:09 +0100640 foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641#undef _
Florin Coras3cbc04b2017-10-02 00:18:51 -0700642 ip4_register_protocol (IP_PROTOCOL_UDP, udp4_local_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643 /* Note: ip6 differs from ip4, UDP is hotwired to ip6-udp-lookup */
644 return 0;
645}
646
647VLIB_INIT_FUNCTION (udp_local_init);
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800648#endif /* CLIB_MARCH_VARIANT */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500649
650/*
651 * fd.io coding-style-patch-verification: ON
652 *
653 * Local Variables:
654 * eval: (c-set-style "gnu")
655 * End:
656 */