blob: 8c0ac465e04d1a065291b3647983ea121780831c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * node.c: udp packet processing
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#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
24udp_main_t udp_main;
25
Chris Luke816f3e12016-06-14 16:24:47 -040026#define foreach_udp_input_next \
27 _ (PUNT, "error-punt") \
28 _ (DROP, "error-drop") \
29 _ (ICMP4_ERROR, "ip4-icmp-error") \
30 _ (ICMP6_ERROR, "ip6-icmp-error")
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Dave Barachd7cb1b52016-12-09 09:52:16 -050032typedef enum
33{
Ed Warnickecb9cada2015-12-08 15:45:58 -070034#define _(s,n) UDP_INPUT_NEXT_##s,
35 foreach_udp_input_next
36#undef _
Dave Barachd7cb1b52016-12-09 09:52:16 -050037 UDP_INPUT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070038} udp_input_next_t;
39
Dave Barachd7cb1b52016-12-09 09:52:16 -050040typedef struct
41{
Ed Warnickecb9cada2015-12-08 15:45:58 -070042 u16 src_port;
43 u16 dst_port;
Chris Luke816f3e12016-06-14 16:24:47 -040044 u8 bound;
Ed Warnickecb9cada2015-12-08 15:45:58 -070045} udp_rx_trace_t;
46
Dave Barachd7cb1b52016-12-09 09:52:16 -050047u8 *
48format_udp_rx_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070049{
50 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
51 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barachd7cb1b52016-12-09 09:52:16 -050052 udp_rx_trace_t *t = va_arg (*args, udp_rx_trace_t *);
53
Chris Luke816f3e12016-06-14 16:24:47 -040054 s = format (s, "UDP: src-port %d dst-port %d%s",
Dave Barachd7cb1b52016-12-09 09:52:16 -050055 clib_net_to_host_u16 (t->src_port),
56 clib_net_to_host_u16 (t->dst_port),
57 t->bound ? "" : " (no listener)");
Ed Warnickecb9cada2015-12-08 15:45:58 -070058 return s;
59}
60
Ed Warnickecb9cada2015-12-08 15:45:58 -070061vlib_node_registration_t udp4_input_node;
62vlib_node_registration_t udp6_input_node;
63
64always_inline uword
65udp46_input_inline (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -050066 vlib_node_runtime_t * node,
67 vlib_frame_t * from_frame, int is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068{
Damjan Marion615fc612017-04-03 14:56:08 +020069 udp_main_t *um = &udp_main;
Dave Barachd7cb1b52016-12-09 09:52:16 -050070 __attribute__ ((unused)) u32 n_left_from, next_index, *from, *to_next;
Chris Luke816f3e12016-06-14 16:24:47 -040071 word n_no_listener = 0;
Damjan Marion615fc612017-04-03 14:56:08 +020072 u8 punt_unknown = is_ip4 ? um->punt_unknown4 : um->punt_unknown6;
Ed Warnickecb9cada2015-12-08 15:45:58 -070073
74 from = vlib_frame_vector_args (from_frame);
75 n_left_from = from_frame->n_vectors;
76
77 next_index = node->cached_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79 while (n_left_from > 0)
80 {
81 u32 n_left_to_next;
82
Dave Barachd7cb1b52016-12-09 09:52:16 -050083 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
85 while (n_left_from >= 4 && n_left_to_next >= 2)
86 {
87 u32 bi0, bi1;
Dave Barachd7cb1b52016-12-09 09:52:16 -050088 vlib_buffer_t *b0, *b1;
89 udp_header_t *h0 = 0, *h1 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 u32 i0, i1, dst_port0, dst_port1;
Dave Barachd7cb1b52016-12-09 09:52:16 -050091 u32 advance0, advance1;
92 u32 error0, next0, error1, next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
94 /* Prefetch next iteration. */
95 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050096 vlib_buffer_t *p2, *p3;
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
98 p2 = vlib_get_buffer (vm, from[2]);
99 p3 = vlib_get_buffer (vm, from[3]);
100
101 vlib_prefetch_buffer_header (p2, LOAD);
102 vlib_prefetch_buffer_header (p3, LOAD);
103
104 CLIB_PREFETCH (p2->data, sizeof (h0[0]), LOAD);
105 CLIB_PREFETCH (p3->data, sizeof (h1[0]), LOAD);
106 }
107
108 bi0 = from[0];
109 bi1 = from[1];
110 to_next[0] = bi0;
111 to_next[1] = bi1;
112 from += 2;
113 to_next += 2;
114 n_left_to_next -= 2;
115 n_left_from -= 2;
116
117 b0 = vlib_get_buffer (vm, bi0);
118 b1 = vlib_get_buffer (vm, bi1);
119
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 /* ip4/6_local hands us the ip header, not the udp header */
121 if (is_ip4)
122 {
123 advance0 = sizeof (ip4_header_t);
124 advance1 = sizeof (ip4_header_t);
125 }
126 else
127 {
128 advance0 = sizeof (ip6_header_t);
129 advance1 = sizeof (ip6_header_t);
130 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
Dave Barachd7cb1b52016-12-09 09:52:16 -0500132 if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
133 {
134 error0 = UDP_ERROR_LENGTH_ERROR;
135 next0 = UDP_INPUT_NEXT_DROP;
136 }
137 else
138 {
139 vlib_buffer_advance (b0, advance0);
140 h0 = vlib_buffer_get_current (b0);
141 error0 = next0 = 0;
142 if (PREDICT_FALSE (clib_net_to_host_u16 (h0->length) >
143 vlib_buffer_length_in_chain (vm, b0)))
144 {
John Lo76f78ec2016-03-03 00:25:54 -0500145 error0 = UDP_ERROR_LENGTH_ERROR;
146 next0 = UDP_INPUT_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500147 }
148 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Dave Barachd7cb1b52016-12-09 09:52:16 -0500150 if (PREDICT_FALSE (b1->current_length < advance1 + sizeof (*h1)))
151 {
152 error1 = UDP_ERROR_LENGTH_ERROR;
153 next1 = UDP_INPUT_NEXT_DROP;
154 }
155 else
156 {
157 vlib_buffer_advance (b1, advance1);
158 h1 = vlib_buffer_get_current (b1);
159 error1 = next1 = 0;
160 if (PREDICT_FALSE (clib_net_to_host_u16 (h1->length) >
161 vlib_buffer_length_in_chain (vm, b1)))
162 {
John Lo76f78ec2016-03-03 00:25:54 -0500163 error1 = UDP_ERROR_LENGTH_ERROR;
164 next1 = UDP_INPUT_NEXT_DROP;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500165 }
166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 /* Index sparse array with network byte order. */
169 dst_port0 = (error0 == 0) ? h0->dst_port : 0;
170 dst_port1 = (error1 == 0) ? h1->dst_port : 0;
Damjan Marion615fc612017-04-03 14:56:08 +0200171 sparse_vec_index2 (is_ip4 ? um->next_by_dst_port4 :
172 um->next_by_dst_port6,
173 dst_port0, dst_port1, &i0, &i1);
174 next0 = (error0 == 0) ?
175 vec_elt (is_ip4 ? um->next_by_dst_port4 : um->next_by_dst_port6,
176 i0) : next0;
177 next1 = (error1 == 0) ?
178 vec_elt (is_ip4 ? um->next_by_dst_port4 : um->next_by_dst_port6,
179 i1) : next1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
Dave Barachd7cb1b52016-12-09 09:52:16 -0500181 if (PREDICT_FALSE (i0 == SPARSE_VEC_INVALID_INDEX))
182 {
183 // move the pointer back so icmp-error can find the
184 // ip packet header
185 vlib_buffer_advance (b0, -(word) advance0);
Chris Luke816f3e12016-06-14 16:24:47 -0400186
Dave Barachd7cb1b52016-12-09 09:52:16 -0500187 if (PREDICT_FALSE (punt_unknown))
188 {
189 b0->error = node->errors[UDP_ERROR_PUNT];
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800190 next0 = UDP_INPUT_NEXT_PUNT;
191 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500192 else if (is_ip4)
193 {
194 icmp4_error_set_vnet_buffer (b0,
195 ICMP4_destination_unreachable,
196 ICMP4_destination_unreachable_port_unreachable,
197 0);
198 next0 = UDP_INPUT_NEXT_ICMP4_ERROR;
199 n_no_listener++;
200 }
201 else
202 {
203 icmp6_error_set_vnet_buffer (b0,
204 ICMP6_destination_unreachable,
205 ICMP6_destination_unreachable_port_unreachable,
206 0);
207 next0 = UDP_INPUT_NEXT_ICMP6_ERROR;
208 n_no_listener++;
209 }
210 }
211 else
212 {
213 b0->error = node->errors[UDP_ERROR_NONE];
214 // advance to the payload
215 vlib_buffer_advance (b0, sizeof (*h0));
216 }
Chris Luke816f3e12016-06-14 16:24:47 -0400217
Dave Barachd7cb1b52016-12-09 09:52:16 -0500218 if (PREDICT_FALSE (i1 == SPARSE_VEC_INVALID_INDEX))
219 {
220 // move the pointer back so icmp-error can find the
221 // ip packet header
222 vlib_buffer_advance (b1, -(word) advance1);
Chris Luke816f3e12016-06-14 16:24:47 -0400223
Dave Barachd7cb1b52016-12-09 09:52:16 -0500224 if (PREDICT_FALSE (punt_unknown))
225 {
226 b1->error = node->errors[UDP_ERROR_PUNT];
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800227 next1 = UDP_INPUT_NEXT_PUNT;
228 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500229 else if (is_ip4)
230 {
231 icmp4_error_set_vnet_buffer (b1,
232 ICMP4_destination_unreachable,
233 ICMP4_destination_unreachable_port_unreachable,
234 0);
235 next1 = UDP_INPUT_NEXT_ICMP4_ERROR;
236 n_no_listener++;
237 }
238 else
239 {
240 icmp6_error_set_vnet_buffer (b1,
241 ICMP6_destination_unreachable,
242 ICMP6_destination_unreachable_port_unreachable,
243 0);
244 next1 = UDP_INPUT_NEXT_ICMP6_ERROR;
245 n_no_listener++;
246 }
247 }
248 else
249 {
250 b1->error = node->errors[UDP_ERROR_NONE];
251 // advance to the payload
252 vlib_buffer_advance (b1, sizeof (*h1));
253 }
254
255 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
256 {
257 udp_rx_trace_t *tr = vlib_add_trace (vm, node,
258 b0, sizeof (*tr));
259 if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
260 {
261 tr->src_port = h0 ? h0->src_port : 0;
262 tr->dst_port = h0 ? h0->dst_port : 0;
263 tr->bound = (next0 != UDP_INPUT_NEXT_ICMP4_ERROR &&
264 next0 != UDP_INPUT_NEXT_ICMP6_ERROR);
265 }
266 }
267 if (PREDICT_FALSE (b1->flags & VLIB_BUFFER_IS_TRACED))
268 {
269 udp_rx_trace_t *tr = vlib_add_trace (vm, node,
270 b1, sizeof (*tr));
271 if (b1->error != node->errors[UDP_ERROR_LENGTH_ERROR])
272 {
273 tr->src_port = h1 ? h1->src_port : 0;
274 tr->dst_port = h1 ? h1->dst_port : 0;
275 tr->bound = (next1 != UDP_INPUT_NEXT_ICMP4_ERROR &&
276 next1 != UDP_INPUT_NEXT_ICMP6_ERROR);
277 }
278 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
281 to_next, n_left_to_next,
282 bi0, bi1, next0, next1);
283 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500284
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 while (n_left_from > 0 && n_left_to_next > 0)
286 {
287 u32 bi0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500288 vlib_buffer_t *b0;
289 udp_header_t *h0 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 u32 i0, next0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500291 u32 advance0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
293 bi0 = from[0];
294 to_next[0] = bi0;
295 from += 1;
296 to_next += 1;
297 n_left_from -= 1;
298 n_left_to_next -= 1;
299
300 b0 = vlib_get_buffer (vm, bi0);
301
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 /* ip4/6_local hands us the ip header, not the udp header */
303 if (is_ip4)
304 advance0 = sizeof (ip4_header_t);
305 else
306 advance0 = sizeof (ip6_header_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
Dave Barachd7cb1b52016-12-09 09:52:16 -0500308 if (PREDICT_FALSE (b0->current_length < advance0 + sizeof (*h0)))
309 {
310 b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
311 next0 = UDP_INPUT_NEXT_DROP;
312 goto trace_x1;
313 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
Dave Barachd7cb1b52016-12-09 09:52:16 -0500315 vlib_buffer_advance (b0, advance0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
317 h0 = vlib_buffer_get_current (b0);
318
Dave Barachd7cb1b52016-12-09 09:52:16 -0500319 if (PREDICT_TRUE (clib_net_to_host_u16 (h0->length) <=
320 vlib_buffer_length_in_chain (vm, b0)))
321 {
Damjan Marion615fc612017-04-03 14:56:08 +0200322 i0 = sparse_vec_index (is_ip4 ? um->next_by_dst_port4 :
323 um->next_by_dst_port6, h0->dst_port);
324 next0 = vec_elt (is_ip4 ? um->next_by_dst_port4 :
325 um->next_by_dst_port6, i0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Dave Barachd7cb1b52016-12-09 09:52:16 -0500327 if (PREDICT_FALSE (i0 == SPARSE_VEC_INVALID_INDEX))
328 {
329 // move the pointer back so icmp-error can find the
330 // ip packet header
331 vlib_buffer_advance (b0, -(word) advance0);
Chris Luke816f3e12016-06-14 16:24:47 -0400332
Dave Barachd7cb1b52016-12-09 09:52:16 -0500333 if (PREDICT_FALSE (punt_unknown))
334 {
335 b0->error = node->errors[UDP_ERROR_PUNT];
336 next0 = UDP_INPUT_NEXT_PUNT;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800337 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500338 else if (is_ip4)
339 {
340 icmp4_error_set_vnet_buffer (b0,
341 ICMP4_destination_unreachable,
342 ICMP4_destination_unreachable_port_unreachable,
343 0);
344 next0 = UDP_INPUT_NEXT_ICMP4_ERROR;
345 n_no_listener++;
346 }
347 else
348 {
349 icmp6_error_set_vnet_buffer (b0,
350 ICMP6_destination_unreachable,
351 ICMP6_destination_unreachable_port_unreachable,
352 0);
353 next0 = UDP_INPUT_NEXT_ICMP6_ERROR;
354 n_no_listener++;
355 }
356 }
357 else
358 {
359 b0->error = node->errors[UDP_ERROR_NONE];
360 // advance to the payload
361 vlib_buffer_advance (b0, sizeof (*h0));
362 }
363 }
364 else
365 {
366 b0->error = node->errors[UDP_ERROR_LENGTH_ERROR];
367 next0 = UDP_INPUT_NEXT_DROP;
368 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Dave Barachd7cb1b52016-12-09 09:52:16 -0500370 trace_x1:
371 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
372 {
373 udp_rx_trace_t *tr = vlib_add_trace (vm, node,
374 b0, sizeof (*tr));
375 if (b0->error != node->errors[UDP_ERROR_LENGTH_ERROR])
376 {
377 tr->src_port = h0->src_port;
378 tr->dst_port = h0->dst_port;
379 tr->bound = (next0 != UDP_INPUT_NEXT_ICMP4_ERROR &&
380 next0 != UDP_INPUT_NEXT_ICMP6_ERROR);
381 }
382 }
Chris Luke816f3e12016-06-14 16:24:47 -0400383
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
385 to_next, n_left_to_next,
386 bi0, next0);
387 }
388
389 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
390 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500391 vlib_error_count (vm, node->node_index, UDP_ERROR_NO_LISTENER,
392 n_no_listener);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 return from_frame->n_vectors;
394}
395
Dave Barachd7cb1b52016-12-09 09:52:16 -0500396static char *udp_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397#define udp_error(n,s) s,
398#include "udp_error.def"
399#undef udp_error
400};
401
402static uword
403udp4_input (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500404 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500406 return udp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407}
408
409static uword
410udp6_input (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500411 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413 return udp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414}
415
416
Dave Barachd7cb1b52016-12-09 09:52:16 -0500417/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418VLIB_REGISTER_NODE (udp4_input_node) = {
419 .function = udp4_input,
420 .name = "ip4-udp-lookup",
421 /* Takes a vector of packets. */
422 .vector_size = sizeof (u32),
423
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 .n_errors = UDP_N_ERROR,
425 .error_strings = udp_error_strings,
426
427 .n_next_nodes = UDP_INPUT_N_NEXT,
428 .next_nodes = {
429#define _(s,n) [UDP_INPUT_NEXT_##s] = n,
430 foreach_udp_input_next
431#undef _
432 },
433
434 .format_buffer = format_udp_header,
435 .format_trace = format_udp_rx_trace,
436 .unformat_buffer = unformat_udp_header,
437};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500438/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
Dave Barachd7cb1b52016-12-09 09:52:16 -0500440VLIB_NODE_FUNCTION_MULTIARCH (udp4_input_node, udp4_input);
Damjan Marion1c80e832016-05-11 23:07:18 +0200441
Dave Barachd7cb1b52016-12-09 09:52:16 -0500442/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443VLIB_REGISTER_NODE (udp6_input_node) = {
444 .function = udp6_input,
445 .name = "ip6-udp-lookup",
446 /* Takes a vector of packets. */
447 .vector_size = sizeof (u32),
448
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449 .n_errors = UDP_N_ERROR,
450 .error_strings = udp_error_strings,
451
452 .n_next_nodes = UDP_INPUT_N_NEXT,
453 .next_nodes = {
454#define _(s,n) [UDP_INPUT_NEXT_##s] = n,
455 foreach_udp_input_next
456#undef _
457 },
458
459 .format_buffer = format_udp_header,
460 .format_trace = format_udp_rx_trace,
461 .unformat_buffer = unformat_udp_header,
462};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
Dave Barachd7cb1b52016-12-09 09:52:16 -0500465VLIB_NODE_FUNCTION_MULTIARCH (udp6_input_node, udp6_input);
Damjan Marion1c80e832016-05-11 23:07:18 +0200466
Dave Barachd7cb1b52016-12-09 09:52:16 -0500467static void
468add_dst_port (udp_main_t * um,
469 udp_dst_port_t dst_port, char *dst_port_name, u8 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500471 udp_dst_port_info_t *pi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 u32 i;
473
474 vec_add2 (um->dst_port_infos[is_ip4], pi, 1);
475 i = pi - um->dst_port_infos[is_ip4];
476
477 pi->name = dst_port_name;
478 pi->dst_port = dst_port;
479 pi->next_index = pi->node_index = ~0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500480
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481 hash_set (um->dst_port_info_by_dst_port[is_ip4], dst_port, i);
482
483 if (pi->name)
484 hash_set_mem (um->dst_port_info_by_name[is_ip4], pi->name, i);
485}
486
487void
488udp_register_dst_port (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500489 udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500491 udp_main_t *um = &udp_main;
492 udp_dst_port_info_t *pi;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493 u16 *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
495 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500496 clib_error_t *error = vlib_call_init_function (vm, udp_local_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 if (error)
498 clib_error_report (error);
499 }
500
501 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500502 if (!pi)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 {
504 add_dst_port (um, dst_port, 0, is_ip4);
505 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
506 ASSERT (pi);
507 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500508
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 pi->node_index = node_index;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500510 pi->next_index = vlib_node_add_next (vm,
511 is_ip4 ? udp4_input_node.index
512 : udp6_input_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
514 /* Setup udp protocol -> next index sparse vector mapping. */
Damjan Marion615fc612017-04-03 14:56:08 +0200515 if (is_ip4)
516 n = sparse_vec_validate (um->next_by_dst_port4,
Damjan Marione9f929b2017-03-16 11:32:09 +0100517 clib_host_to_net_u16 (dst_port));
Damjan Marion615fc612017-04-03 14:56:08 +0200518 else
519 n = sparse_vec_validate (um->next_by_dst_port6,
520 clib_host_to_net_u16 (dst_port));
521
522 n[0] = pi->next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523}
524
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800525void
Dave Barach68b0fb02017-02-28 15:15:56 -0500526udp_unregister_dst_port (vlib_main_t * vm, udp_dst_port_t dst_port, u8 is_ip4)
527{
528 udp_main_t *um = &udp_main;
529 udp_dst_port_info_t *pi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500530 u16 *n;
531
532 pi = udp_get_dst_port_info (um, dst_port, is_ip4);
533 /* Not registered? Fagedaboudit */
534 if (!pi)
535 return;
536
537 /* Kill the mapping. Don't bother killing the pi, it may be back. */
Damjan Marion615fc612017-04-03 14:56:08 +0200538 if (is_ip4)
539 n = sparse_vec_validate (um->next_by_dst_port4,
Damjan Marione9f929b2017-03-16 11:32:09 +0100540 clib_host_to_net_u16 (dst_port));
Damjan Marion615fc612017-04-03 14:56:08 +0200541 else
542 n = sparse_vec_validate (um->next_by_dst_port6,
543 clib_host_to_net_u16 (dst_port));
544
545 n[0] = SPARSE_VEC_INVALID_INDEX;
Dave Barach68b0fb02017-02-28 15:15:56 -0500546}
547
548void
Dave Barachd7cb1b52016-12-09 09:52:16 -0500549udp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800550{
Damjan Marion615fc612017-04-03 14:56:08 +0200551 udp_main_t *um = &udp_main;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800552 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500553 clib_error_t *error = vlib_call_init_function (vm, udp_local_init);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800554 if (error)
555 clib_error_report (error);
556 }
557
Damjan Marion615fc612017-04-03 14:56:08 +0200558 if (is_ip4)
559 um->punt_unknown4 = is_add;
560 else
561 um->punt_unknown6 = is_add;
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800562}
563
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564/* Parse a UDP header. */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500565uword
566unformat_udp_header (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500568 u8 **result = va_arg (*args, u8 **);
569 udp_header_t *udp;
570 __attribute__ ((unused)) int old_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 u16 src_port, dst_port;
572
573 /* Allocate space for IP header. */
574 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500575 void *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576
577 old_length = vec_len (*result);
578 vec_add2 (*result, p, sizeof (ip4_header_t));
579 udp = p;
580 }
581
582 memset (udp, 0, sizeof (udp[0]));
Dave Barachd7cb1b52016-12-09 09:52:16 -0500583 if (unformat (input, "src-port %d dst-port %d", &src_port, &dst_port))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584 {
585 udp->src_port = clib_host_to_net_u16 (src_port);
586 udp->dst_port = clib_host_to_net_u16 (dst_port);
587 return 1;
588 }
589 return 0;
590}
591
592static void
593udp_setup_node (vlib_main_t * vm, u32 node_index)
594{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500595 vlib_node_t *n = vlib_get_node (vm, node_index);
596 pg_node_t *pn = pg_get_node (node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
598 n->format_buffer = format_udp_header;
599 n->unformat_buffer = unformat_udp_header;
600 pn->unformat_edit = unformat_pg_udp_header;
601}
602
Dave Barachd7cb1b52016-12-09 09:52:16 -0500603clib_error_t *
604udp_local_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500606 udp_main_t *um = &udp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 int i;
608
609 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500610 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611 error = vlib_call_init_function (vm, udp_init);
612 if (error)
613 clib_error_report (error);
614 }
615
616
617 for (i = 0; i < 2; i++)
618 {
Dave Barachd7cb1b52016-12-09 09:52:16 -0500619 um->dst_port_info_by_name[i] = hash_create_string (0, sizeof (uword));
620 um->dst_port_info_by_dst_port[i] = hash_create (0, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 }
622
623 udp_setup_node (vm, udp4_input_node.index);
624 udp_setup_node (vm, udp6_input_node.index);
625
Damjan Marion615fc612017-04-03 14:56:08 +0200626 um->punt_unknown4 = 0;
627 um->punt_unknown6 = 0;
628
629 um->next_by_dst_port4 = sparse_vec_new
630 ( /* elt bytes */ sizeof (um->next_by_dst_port4[0]),
631 /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
632
633 um->next_by_dst_port6 = sparse_vec_new
634 ( /* elt bytes */ sizeof (um->next_by_dst_port6[0]),
635 /* bits in index */ BITS (((udp_header_t *) 0)->dst_port));
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800636
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637#define _(n,s) add_dst_port (um, UDP_DST_PORT_##s, #s, 1 /* is_ip4 */);
638 foreach_udp4_dst_port
639#undef _
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640#define _(n,s) add_dst_port (um, UDP_DST_PORT_##s, #s, 0 /* is_ip4 */);
Damjan Marione9f929b2017-03-16 11:32:09 +0100641 foreach_udp6_dst_port
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642#undef _
Dave Barachd7cb1b52016-12-09 09:52:16 -0500643 ip4_register_protocol (IP_PROTOCOL_UDP, udp4_input_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 /* Note: ip6 differs from ip4, UDP is hotwired to ip6-udp-lookup */
645 return 0;
646}
647
648VLIB_INIT_FUNCTION (udp_local_init);
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 */