blob: a90461186c1acd23b44cb3e05ebd9bf19148f487 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Corasc5df8c72019-04-08 07:42:30 -07002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Florin Coras7fb0fe12018-04-09 09:24:52 -070016#include <vlibmemory/api.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050017#include <vlib/vlib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050018
Dave Barach68b0fb02017-02-28 15:15:56 -050019#include <vppinfra/hash.h>
20#include <vppinfra/error.h>
21#include <vppinfra/elog.h>
22
Florin Coras7fb0fe12018-04-09 09:24:52 -070023#include <vnet/vnet.h>
Florin Coras7fb0fe12018-04-09 09:24:52 -070024#include <vnet/ip/ip.h>
25#include <vnet/udp/udp.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026#include <vnet/udp/udp_packet.h>
Florin Coras7fb0fe12018-04-09 09:24:52 -070027#include <vnet/session/session.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050028
Filip Tehlar0c562172021-10-06 12:48:34 +000029static vlib_error_desc_t udp_error_counters[] = {
30#define udp_error(f, n, s, d) { #n, d, VL_COUNTER_SEVERITY_##s },
Florin Coras3cbc04b2017-10-02 00:18:51 -070031#include "udp_error.def"
32#undef udp_error
33};
Dave Barach68b0fb02017-02-28 15:15:56 -050034
35typedef struct
36{
Florin Coras3cbc04b2017-10-02 00:18:51 -070037 u32 connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050038 u32 disposition;
39 u32 thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -070040} udp_input_trace_t;
Dave Barach68b0fb02017-02-28 15:15:56 -050041
42/* packet trace format function */
43static u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -070044format_udp_input_trace (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -050045{
46 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
47 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Coras3cbc04b2017-10-02 00:18:51 -070048 udp_input_trace_t *t = va_arg (*args, udp_input_trace_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -050049
Florin Coras3cbc04b2017-10-02 00:18:51 -070050 s = format (s, "UDP_INPUT: connection %d, disposition %d, thread %d",
51 t->connection, t->disposition, t->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -050052 return s;
53}
54
Florin Coras3cbc04b2017-10-02 00:18:51 -070055#define foreach_udp_input_next \
56 _ (DROP, "error-drop")
57
Dave Barach68b0fb02017-02-28 15:15:56 -050058typedef enum
59{
Florin Coras3cbc04b2017-10-02 00:18:51 -070060#define _(s, n) UDP_INPUT_NEXT_##s,
61 foreach_udp_input_next
Dave Barach68b0fb02017-02-28 15:15:56 -050062#undef _
Florin Coras3cbc04b2017-10-02 00:18:51 -070063 UDP_INPUT_N_NEXT,
64} udp_input_next_t;
Dave Barach68b0fb02017-02-28 15:15:56 -050065
Florin Coras3cbc04b2017-10-02 00:18:51 -070066always_inline void
67udp_input_inc_counter (vlib_main_t * vm, u8 is_ip4, u8 evt, u8 val)
68{
Florin Coras3cbc04b2017-10-02 00:18:51 -070069 if (is_ip4)
70 vlib_node_increment_counter (vm, udp4_input_node.index, evt, val);
71 else
72 vlib_node_increment_counter (vm, udp6_input_node.index, evt, val);
73}
74
Florin Corase759bb52020-04-08 01:55:39 +000075#define udp_store_err_counters(vm, is_ip4, cnts) \
76{ \
77 int i; \
78 for (i = 0; i < UDP_N_ERROR; i++) \
79 if (cnts[i]) \
80 udp_input_inc_counter(vm, is_ip4, i, cnts[i]); \
81}
82
83#define udp_inc_err_counter(cnts, err, val) \
84{ \
85 cnts[err] += val; \
86}
87
88static void
89udp_trace_buffer (vlib_main_t * vm, vlib_node_runtime_t * node,
90 vlib_buffer_t * b, session_t * s, u16 error0)
91{
92 udp_input_trace_t *t;
93
94 if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_IS_TRACED)))
95 return;
96
97 t = vlib_add_trace (vm, node, b, sizeof (*t));
98 t->connection = s ? s->connection_index : ~0;
99 t->disposition = error0;
Florin Coras92bbfc22020-04-09 14:20:52 +0000100 t->thread_index = s ? s->thread_index : vm->thread_index;
Florin Corase759bb52020-04-08 01:55:39 +0000101}
102
103static udp_connection_t *
104udp_connection_accept (udp_connection_t * listener, session_dgram_hdr_t * hdr,
105 u32 thread_index)
106{
107 udp_connection_t *uc;
108
109 uc = udp_connection_alloc (thread_index);
110 ip_copy (&uc->c_lcl_ip, &hdr->lcl_ip, hdr->is_ip4);
111 ip_copy (&uc->c_rmt_ip, &hdr->rmt_ip, hdr->is_ip4);
112 uc->c_lcl_port = hdr->lcl_port;
113 uc->c_rmt_port = hdr->rmt_port;
114 uc->c_is_ip4 = hdr->is_ip4;
115 uc->c_fib_index = listener->c_fib_index;
116 uc->mss = listener->mss;
117 uc->flags |= UDP_CONN_F_CONNECTED;
Florin Corasf8ee39f2022-10-18 18:37:56 -0700118 uc->cfg_flags = listener->cfg_flags;
Florin Corase759bb52020-04-08 01:55:39 +0000119
120 if (session_dgram_accept (&uc->connection, listener->c_s_index,
121 listener->c_thread_index))
122 {
123 udp_connection_free (uc);
124 return 0;
125 }
Florin Coras37127f72024-02-17 11:45:25 -0800126
127 udp_connection_share_port (uc->c_lcl_port, uc->c_is_ip4);
Florin Corase759bb52020-04-08 01:55:39 +0000128 return uc;
129}
130
131static void
132udp_connection_enqueue (udp_connection_t * uc0, session_t * s0,
133 session_dgram_hdr_t * hdr0, u32 thread_index,
134 vlib_buffer_t * b, u8 queue_event, u32 * error0)
135{
136 int wrote0;
137
Florin Coras30fdf392020-12-02 21:14:56 -0800138 if (!(uc0->flags & UDP_CONN_F_CONNECTED))
Florin Coras7428eaa2023-12-11 16:04:57 -0800139 {
140 clib_spinlock_lock (&uc0->rx_lock);
141
142 wrote0 = session_enqueue_dgram_connection_cl (
143 s0, hdr0, b, TRANSPORT_PROTO_UDP, queue_event);
144
145 clib_spinlock_unlock (&uc0->rx_lock);
146
147 /* Expect cl udp enqueue to fail because fifo enqueue */
148 if (PREDICT_FALSE (wrote0 == 0))
149 *error0 = UDP_ERROR_FIFO_FULL;
150
151 return;
152 }
Florin Corase759bb52020-04-08 01:55:39 +0000153
154 if (svm_fifo_max_enqueue_prod (s0->rx_fifo)
155 < hdr0->data_length + sizeof (session_dgram_hdr_t))
156 {
157 *error0 = UDP_ERROR_FIFO_FULL;
Florin Coras7428eaa2023-12-11 16:04:57 -0800158 return;
Florin Corase759bb52020-04-08 01:55:39 +0000159 }
160
161 /* If session is owned by another thread and rx event needed,
162 * enqueue event now while we still have the peeker lock */
163 if (s0->thread_index != thread_index)
164 {
Florin Coras7428eaa2023-12-11 16:04:57 -0800165 wrote0 = session_enqueue_dgram_connection2 (
Florin Coras0242d302022-12-22 15:03:44 -0800166 s0, hdr0, b, TRANSPORT_PROTO_UDP,
Florin Coras7428eaa2023-12-11 16:04:57 -0800167 queue_event && !svm_fifo_has_event (s0->rx_fifo));
Florin Corase759bb52020-04-08 01:55:39 +0000168 }
169 else
170 {
Florin Coras7428eaa2023-12-11 16:04:57 -0800171 wrote0 = session_enqueue_dgram_connection (
172 s0, hdr0, b, TRANSPORT_PROTO_UDP, queue_event);
Florin Corase759bb52020-04-08 01:55:39 +0000173 }
Mohammed Hawari2cc8c0a2023-02-27 15:33:30 +0100174
175 /* In some rare cases, session_enqueue_dgram_connection can fail because a
176 * chunk cannot be allocated in the RX FIFO */
177 if (PREDICT_FALSE (wrote0 == 0))
178 *error0 = UDP_ERROR_FIFO_NOMEM;
Florin Corase759bb52020-04-08 01:55:39 +0000179}
180
181always_inline session_t *
182udp_parse_and_lookup_buffer (vlib_buffer_t * b, session_dgram_hdr_t * hdr,
183 u8 is_ip4)
184{
185 udp_header_t *udp;
186 u32 fib_index;
187 session_t *s;
188
189 /* udp_local hands us a pointer to the udp data */
190 udp = (udp_header_t *) (vlib_buffer_get_current (b) - sizeof (*udp));
191 fib_index = vnet_buffer (b)->ip.fib_index;
192
193 hdr->data_offset = 0;
194 hdr->lcl_port = udp->dst_port;
195 hdr->rmt_port = udp->src_port;
196 hdr->is_ip4 = is_ip4;
Florin Coras6d39c1e2023-01-09 14:00:33 -0800197 hdr->gso_size = 0;
Florin Corase759bb52020-04-08 01:55:39 +0000198
199 if (is_ip4)
200 {
201 ip4_header_t *ip4;
202
203 /* TODO: must fix once udp_local does ip options correctly */
204 ip4 = (ip4_header_t *) (((u8 *) udp) - sizeof (*ip4));
205 ip_set (&hdr->lcl_ip, &ip4->dst_address, 1);
206 ip_set (&hdr->rmt_ip, &ip4->src_address, 1);
207 hdr->data_length = clib_net_to_host_u16 (ip4->length);
208 hdr->data_length -= sizeof (ip4_header_t) + sizeof (udp_header_t);
209 s = session_lookup_safe4 (fib_index, &ip4->dst_address,
210 &ip4->src_address, udp->dst_port,
211 udp->src_port, TRANSPORT_PROTO_UDP);
212 }
213 else
214 {
215 ip6_header_t *ip60;
216
217 ip60 = (ip6_header_t *) (((u8 *) udp) - sizeof (*ip60));
218 ip_set (&hdr->lcl_ip, &ip60->dst_address, 0);
219 ip_set (&hdr->rmt_ip, &ip60->src_address, 0);
220 hdr->data_length = clib_net_to_host_u16 (ip60->payload_length);
221 hdr->data_length -= sizeof (udp_header_t);
222 s = session_lookup_safe6 (fib_index, &ip60->dst_address,
223 &ip60->src_address, udp->dst_port,
224 udp->src_port, TRANSPORT_PROTO_UDP);
225 }
226
Florin Corasf1acfc02024-01-23 09:40:45 -0800227 /* Set the sw_if_index[VLIB_RX] to the interface we received
228 * the connection on (the local interface) */
229 vnet_buffer (b)->sw_if_index[VLIB_RX] = vnet_buffer (b)->ip.rx_sw_if_index;
230
Florin Corase759bb52020-04-08 01:55:39 +0000231 if (PREDICT_TRUE (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)))
232 b->current_length = hdr->data_length;
233 else
234 b->total_length_not_including_first_buffer = hdr->data_length
235 - b->current_length;
236
237 return s;
238}
239
Florin Coras3cbc04b2017-10-02 00:18:51 -0700240always_inline uword
241udp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
242 vlib_frame_t * frame, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500243{
Florin Coras0242d302022-12-22 15:03:44 -0800244 u32 thread_index = vm->thread_index, n_left_from, *from, *first_buffer;
Florin Corase759bb52020-04-08 01:55:39 +0000245 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
246 u16 err_counters[UDP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -0500247
Aloys Augustin8fadb652019-09-24 18:57:50 +0200248 from = first_buffer = vlib_frame_vector_args (frame);
Dave Barach68b0fb02017-02-28 15:15:56 -0500249 n_left_from = frame->n_vectors;
Florin Corase759bb52020-04-08 01:55:39 +0000250 vlib_get_buffers (vm, from, bufs, n_left_from);
251
252 b = bufs;
Dave Barach68b0fb02017-02-28 15:15:56 -0500253
254 while (n_left_from > 0)
255 {
Aloys Augustin8fadb652019-09-24 18:57:50 +0200256 u32 error0 = UDP_ERROR_ENQUEUED;
Aloys Augustin8fadb652019-09-24 18:57:50 +0200257 session_dgram_hdr_t hdr0;
Florin Corase759bb52020-04-08 01:55:39 +0000258 udp_connection_t *uc0;
259 session_t *s0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500260
Florin Corase759bb52020-04-08 01:55:39 +0000261 s0 = udp_parse_and_lookup_buffer (b[0], &hdr0, is_ip4);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200262 if (PREDICT_FALSE (!s0))
263 {
264 error0 = UDP_ERROR_NO_LISTENER;
Florin Corase759bb52020-04-08 01:55:39 +0000265 goto done;
Aloys Augustin8fadb652019-09-24 18:57:50 +0200266 }
267
268 if (s0->session_state == SESSION_STATE_OPENED)
269 {
Florin Corase759bb52020-04-08 01:55:39 +0000270 u8 queue_event = 1;
271 uc0 = udp_connection_from_transport (session_get_transport (s0));
Steven Luongbf12efc2022-07-25 09:29:23 -0700272 uc0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
Aloys Augustin8fadb652019-09-24 18:57:50 +0200273 if (uc0->flags & UDP_CONN_F_CONNECTED)
274 {
Florin Corase759bb52020-04-08 01:55:39 +0000275 if (s0->thread_index != thread_index)
Aloys Augustin8fadb652019-09-24 18:57:50 +0200276 {
277 /*
278 * Clone the transport. It will be cleaned up with the
279 * session once we notify the session layer.
280 */
Florin Corase759bb52020-04-08 01:55:39 +0000281 uc0 = udp_connection_clone_safe (s0->connection_index,
282 s0->thread_index);
283 ASSERT (s0->session_index == uc0->c_s_index);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200284
285 /*
Florin Coras6bd8d3f2022-03-14 21:17:25 -0700286 * Ask session layer for a new session.
Aloys Augustin8fadb652019-09-24 18:57:50 +0200287 */
Florin Corase759bb52020-04-08 01:55:39 +0000288 session_dgram_connect_notify (&uc0->connection,
Aloys Augustin8fadb652019-09-24 18:57:50 +0200289 s0->thread_index, &s0);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200290 queue_event = 0;
291 }
292 else
293 s0->session_state = SESSION_STATE_READY;
294 }
Florin Corase759bb52020-04-08 01:55:39 +0000295 udp_connection_enqueue (uc0, s0, &hdr0, thread_index, b[0],
296 queue_event, &error0);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200297 }
Florin Coras931a3282023-09-01 17:19:33 -0700298 else if (s0->session_state == SESSION_STATE_READY ||
299 s0->session_state == SESSION_STATE_ACCEPTING)
Aloys Augustin8fadb652019-09-24 18:57:50 +0200300 {
Florin Corase759bb52020-04-08 01:55:39 +0000301 uc0 = udp_connection_from_transport (session_get_transport (s0));
302 udp_connection_enqueue (uc0, s0, &hdr0, thread_index, b[0], 1,
303 &error0);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200304 }
305 else if (s0->session_state == SESSION_STATE_LISTENING)
306 {
Florin Corase759bb52020-04-08 01:55:39 +0000307 uc0 = udp_connection_from_transport (session_get_transport (s0));
Aloys Augustin8fadb652019-09-24 18:57:50 +0200308 if (uc0->flags & UDP_CONN_F_CONNECTED)
309 {
Florin Corase759bb52020-04-08 01:55:39 +0000310 uc0 = udp_connection_accept (uc0, &hdr0, thread_index);
311 if (!uc0)
Aloys Augustin8fadb652019-09-24 18:57:50 +0200312 {
313 error0 = UDP_ERROR_CREATE_SESSION;
Florin Corase759bb52020-04-08 01:55:39 +0000314 goto done;
Aloys Augustin8fadb652019-09-24 18:57:50 +0200315 }
Florin Corase759bb52020-04-08 01:55:39 +0000316 s0 = session_get (uc0->c_s_index, uc0->c_thread_index);
Steven Luongbf12efc2022-07-25 09:29:23 -0700317 uc0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
Florin Corase759bb52020-04-08 01:55:39 +0000318 error0 = UDP_ERROR_ACCEPT;
Aloys Augustin8fadb652019-09-24 18:57:50 +0200319 }
Florin Corase759bb52020-04-08 01:55:39 +0000320 udp_connection_enqueue (uc0, s0, &hdr0, thread_index, b[0], 1,
321 &error0);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200322 }
323 else
324 {
325 error0 = UDP_ERROR_NOT_READY;
Aloys Augustin8fadb652019-09-24 18:57:50 +0200326 }
327
Florin Corase759bb52020-04-08 01:55:39 +0000328 done:
Andreas Schultz063f2b82020-04-16 16:18:57 +0200329 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
330 udp_trace_buffer (vm, node, b[0], s0, error0);
Aloys Augustin8fadb652019-09-24 18:57:50 +0200331
Florin Corase759bb52020-04-08 01:55:39 +0000332 b += 1;
333 n_left_from -= 1;
Florin Corasba78e232020-04-06 21:28:59 +0000334
Florin Corase759bb52020-04-08 01:55:39 +0000335 udp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500336 }
337
Aloys Augustin8fadb652019-09-24 18:57:50 +0200338 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras0242d302022-12-22 15:03:44 -0800339 session_main_flush_enqueue_events (TRANSPORT_PROTO_UDP, thread_index);
Florin Corase759bb52020-04-08 01:55:39 +0000340 udp_store_err_counters (vm, is_ip4, err_counters);
Dave Barach68b0fb02017-02-28 15:15:56 -0500341 return frame->n_vectors;
342}
343
Florin Coras3cbc04b2017-10-02 00:18:51 -0700344static uword
345udp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
346 vlib_frame_t * frame)
Dave Barach68b0fb02017-02-28 15:15:56 -0500347{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700348 return udp46_input_inline (vm, node, frame, 1);
349}
350
Florin Coras3cbc04b2017-10-02 00:18:51 -0700351VLIB_REGISTER_NODE (udp4_input_node) =
352{
353 .function = udp4_input,
354 .name = "udp4-input",
355 .vector_size = sizeof (u32),
356 .format_trace = format_udp_input_trace,
357 .type = VLIB_NODE_TYPE_INTERNAL,
Filip Tehlar0c562172021-10-06 12:48:34 +0000358 .n_errors = UDP_N_ERROR,
359 .error_counters = udp_error_counters,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700360 .n_next_nodes = UDP_INPUT_N_NEXT,
361 .next_nodes = {
362#define _(s, n) [UDP_INPUT_NEXT_##s] = n,
363 foreach_udp_input_next
364#undef _
365 },
366};
Florin Coras3cbc04b2017-10-02 00:18:51 -0700367
368static uword
369udp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
370 vlib_frame_t * frame)
371{
372 return udp46_input_inline (vm, node, frame, 0);
373}
374
Florin Coras3cbc04b2017-10-02 00:18:51 -0700375VLIB_REGISTER_NODE (udp6_input_node) =
376{
377 .function = udp6_input,
378 .name = "udp6-input",
379 .vector_size = sizeof (u32),
380 .format_trace = format_udp_input_trace,
381 .type = VLIB_NODE_TYPE_INTERNAL,
Filip Tehlar0c562172021-10-06 12:48:34 +0000382 .n_errors = UDP_N_ERROR,
383 .error_counters = udp_error_counters,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700384 .n_next_nodes = UDP_INPUT_N_NEXT,
385 .next_nodes = {
386#define _(s, n) [UDP_INPUT_NEXT_##s] = n,
387 foreach_udp_input_next
388#undef _
389 },
390};
Dave Barach68b0fb02017-02-28 15:15:56 -0500391
392/*
393 * fd.io coding-style-patch-verification: ON
394 *
395 * Local Variables:
396 * eval: (c-set-style "gnu")
397 * End:
398 */