blob: 936d94d69ceed65402e31d12fb79fdc973c8e6e6 [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>
24#include <vnet/pg/pg.h>
25#include <vnet/ip/ip.h>
26#include <vnet/udp/udp.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050027#include <vnet/udp/udp_packet.h>
Florin Coras7fb0fe12018-04-09 09:24:52 -070028#include <vnet/session/session.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050029
Florin Coras3cbc04b2017-10-02 00:18:51 -070030static char *udp_error_strings[] = {
31#define udp_error(n,s) s,
32#include "udp_error.def"
33#undef udp_error
34};
Dave Barach68b0fb02017-02-28 15:15:56 -050035
36typedef struct
37{
Florin Coras3cbc04b2017-10-02 00:18:51 -070038 u32 connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050039 u32 disposition;
40 u32 thread_index;
Florin Coras3cbc04b2017-10-02 00:18:51 -070041} udp_input_trace_t;
Dave Barach68b0fb02017-02-28 15:15:56 -050042
43/* packet trace format function */
44static u8 *
Florin Coras3cbc04b2017-10-02 00:18:51 -070045format_udp_input_trace (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -050046{
47 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
48 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Coras3cbc04b2017-10-02 00:18:51 -070049 udp_input_trace_t *t = va_arg (*args, udp_input_trace_t *);
Dave Barach68b0fb02017-02-28 15:15:56 -050050
Florin Coras3cbc04b2017-10-02 00:18:51 -070051 s = format (s, "UDP_INPUT: connection %d, disposition %d, thread %d",
52 t->connection, t->disposition, t->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -050053 return s;
54}
55
Florin Coras3cbc04b2017-10-02 00:18:51 -070056#define foreach_udp_input_next \
57 _ (DROP, "error-drop")
58
Dave Barach68b0fb02017-02-28 15:15:56 -050059typedef enum
60{
Florin Coras3cbc04b2017-10-02 00:18:51 -070061#define _(s, n) UDP_INPUT_NEXT_##s,
62 foreach_udp_input_next
Dave Barach68b0fb02017-02-28 15:15:56 -050063#undef _
Florin Coras3cbc04b2017-10-02 00:18:51 -070064 UDP_INPUT_N_NEXT,
65} udp_input_next_t;
Dave Barach68b0fb02017-02-28 15:15:56 -050066
Florin Coras3cbc04b2017-10-02 00:18:51 -070067always_inline void
68udp_input_inc_counter (vlib_main_t * vm, u8 is_ip4, u8 evt, u8 val)
69{
70 if (PREDICT_TRUE (!val))
71 return;
72
73 if (is_ip4)
74 vlib_node_increment_counter (vm, udp4_input_node.index, evt, val);
75 else
76 vlib_node_increment_counter (vm, udp6_input_node.index, evt, val);
77}
78
79always_inline uword
80udp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
81 vlib_frame_t * frame, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -050082{
83 u32 n_left_from, *from, *to_next;
Florin Coras3cbc04b2017-10-02 00:18:51 -070084 u32 next_index, errors;
Damjan Marion586afd72017-04-05 19:18:20 +020085 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050086
87 from = vlib_frame_vector_args (frame);
88 n_left_from = frame->n_vectors;
89 next_index = node->cached_next_index;
90
91 while (n_left_from > 0)
92 {
93 u32 n_left_to_next;
94
95 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
96
97 while (n_left_from > 0 && n_left_to_next > 0)
98 {
Florin Coras3cbc04b2017-10-02 00:18:51 -070099 u32 bi0, fib_index0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500100 vlib_buffer_t *b0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700101 u32 next0 = UDP_INPUT_NEXT_DROP;
102 u32 error0 = UDP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500103 udp_header_t *udp0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700104 ip4_header_t *ip40;
105 ip6_header_t *ip60;
Dave Barach68b0fb02017-02-28 15:15:56 -0500106 u8 *data0;
Florin Coras288eaab2019-02-03 15:26:14 -0800107 session_t *s0;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700108 udp_connection_t *uc0, *child0, *new_uc0;
109 transport_connection_t *tc0;
110 int wrote0;
111 void *rmt_addr, *lcl_addr;
112 session_dgram_hdr_t hdr0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500113
114 /* speculatively enqueue b0 to the current next frame */
115 bi0 = from[0];
116 to_next[0] = bi0;
117 from += 1;
118 to_next += 1;
119 n_left_from -= 1;
120 n_left_to_next -= 1;
121
122 b0 = vlib_get_buffer (vm, bi0);
123
124 /* udp_local hands us a pointer to the udp data */
Dave Barach68b0fb02017-02-28 15:15:56 -0500125 data0 = vlib_buffer_get_current (b0);
126 udp0 = (udp_header_t *) (data0 - sizeof (*udp0));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700127 fib_index0 = vnet_buffer (b0)->ip.fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500128
Florin Coras3cbc04b2017-10-02 00:18:51 -0700129 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500130 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700131 /* TODO: must fix once udp_local does ip options correctly */
Florin Coras3cbc04b2017-10-02 00:18:51 -0700132 ip40 = (ip4_header_t *) (((u8 *) udp0) - sizeof (*ip40));
133 s0 = session_lookup_safe4 (fib_index0, &ip40->dst_address,
134 &ip40->src_address, udp0->dst_port,
135 udp0->src_port, TRANSPORT_PROTO_UDP);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700136 lcl_addr = &ip40->dst_address;
137 rmt_addr = &ip40->src_address;
138
Dave Barach68b0fb02017-02-28 15:15:56 -0500139 }
140 else
141 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700142 ip60 = (ip6_header_t *) (((u8 *) udp0) - sizeof (*ip60));
143 s0 = session_lookup_safe6 (fib_index0, &ip60->dst_address,
144 &ip60->src_address, udp0->dst_port,
145 udp0->src_port, TRANSPORT_PROTO_UDP);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700146 lcl_addr = &ip60->dst_address;
147 rmt_addr = &ip60->src_address;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700148 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500149
Florin Coras7fb0fe12018-04-09 09:24:52 -0700150 if (PREDICT_FALSE (!s0))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700151 {
152 error0 = UDP_ERROR_NO_LISTENER;
153 goto trace0;
154 }
155
Florin Coras7fb0fe12018-04-09 09:24:52 -0700156 if (s0->session_state == SESSION_STATE_OPENED)
157 {
158 /* TODO optimization: move cl session to right thread
159 * However, since such a move would affect the session handle,
160 * which we pass 'raw' to the app, we'd also have notify the
161 * app of the change or change the way we pass handles to apps.
162 */
163 tc0 = session_get_transport (s0);
164 uc0 = udp_get_connection_from_transport (tc0);
Florin Corasc7542392019-07-22 08:08:43 -0700165 if (uc0->flags & UDP_CONN_F_CONNECTED)
Florin Coras7fb0fe12018-04-09 09:24:52 -0700166 {
Nathan Skrzypczakf8475a72019-08-05 14:20:54 +0200167 if (s0->thread_index != vlib_get_thread_index ())
168 {
169 /*
170 * Clone the transport. It will be cleaned up with the
171 * session once we notify the session layer.
172 */
173 new_uc0 =
174 udp_connection_clone_safe (s0->connection_index,
175 s0->thread_index);
176 ASSERT (s0->session_index == new_uc0->c_s_index);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700177
Nathan Skrzypczakf8475a72019-08-05 14:20:54 +0200178 /*
179 * Drop the 'lock' on pool resize
180 */
181 session_pool_remove_peeker (s0->thread_index);
182 session_dgram_connect_notify (&new_uc0->connection,
183 s0->thread_index, &s0);
184 tc0 = &new_uc0->connection;
185 }
186 else
187 s0->session_state = SESSION_STATE_READY;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700188 }
189 }
190 else if (s0->session_state == SESSION_STATE_READY)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700191 {
192 tc0 = session_get_transport (s0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700193 uc0 = udp_get_connection_from_transport (tc0);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700194 }
195 else if (s0->session_state == SESSION_STATE_LISTENING)
196 {
197 tc0 = listen_session_get_transport (s0);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700198 uc0 = udp_get_connection_from_transport (tc0);
Florin Corasc7542392019-07-22 08:08:43 -0700199 if (uc0->flags & UDP_CONN_F_CONNECTED)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700200 {
Florin Coras7fb0fe12018-04-09 09:24:52 -0700201 child0 = udp_connection_alloc (my_thread_index);
202 if (is_ip4)
203 {
204 ip_set (&child0->c_lcl_ip, &ip40->dst_address, 1);
205 ip_set (&child0->c_rmt_ip, &ip40->src_address, 1);
206 }
207 else
208 {
209 ip_set (&child0->c_lcl_ip, &ip60->dst_address, 0);
210 ip_set (&child0->c_rmt_ip, &ip60->src_address, 0);
211 }
212 child0->c_lcl_port = udp0->dst_port;
213 child0->c_rmt_port = udp0->src_port;
214 child0->c_is_ip4 = is_ip4;
Nathan Skrzypczak14e2e2a2019-05-03 13:54:44 +0200215 child0->c_fib_index = tc0->fib_index;
Florin Corasc7542392019-07-22 08:08:43 -0700216 child0->flags |= UDP_CONN_F_CONNECTED;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700217
Florin Corasc9940fc2019-02-05 20:55:11 -0800218 if (session_stream_accept (&child0->connection,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200219 tc0->s_index, tc0->thread_index,
220 1))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700221 {
222 error0 = UDP_ERROR_CREATE_SESSION;
223 goto trace0;
224 }
225 s0 =
226 session_get (child0->c_s_index, child0->c_thread_index);
227 s0->session_state = SESSION_STATE_READY;
228 tc0 = &child0->connection;
229 uc0 = udp_get_connection_from_transport (tc0);
230 error0 = UDP_ERROR_LISTENER;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700231 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700232 }
233 else
234 {
235 error0 = UDP_ERROR_NOT_READY;
236 goto trace0;
237 }
238
Florin Coras7fb0fe12018-04-09 09:24:52 -0700239
Aloys Augustinde38b382019-04-23 17:18:38 +0200240 if (svm_fifo_max_enqueue_prod (s0->rx_fifo)
241 < b0->current_length + sizeof (session_dgram_hdr_t))
Florin Coras7fb0fe12018-04-09 09:24:52 -0700242 {
Aloys Augustinde38b382019-04-23 17:18:38 +0200243 error0 = UDP_ERROR_FIFO_FULL;
244 goto trace0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500245 }
Aloys Augustinde38b382019-04-23 17:18:38 +0200246 hdr0.data_length = b0->current_length;
247 hdr0.data_offset = 0;
248 ip_set (&hdr0.lcl_ip, lcl_addr, is_ip4);
249 ip_set (&hdr0.rmt_ip, rmt_addr, is_ip4);
250 hdr0.lcl_port = udp0->dst_port;
251 hdr0.rmt_port = udp0->src_port;
252 hdr0.is_ip4 = is_ip4;
253
254 clib_spinlock_lock (&uc0->rx_lock);
255 wrote0 = session_enqueue_dgram_connection (s0, &hdr0, b0,
256 TRANSPORT_PROTO_UDP,
257 1 /* queue evt */ );
258 clib_spinlock_unlock (&uc0->rx_lock);
259 ASSERT (wrote0 > 0);
260
261 if (s0->session_state != SESSION_STATE_LISTENING)
262 session_pool_remove_peeker (s0->thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500263
264 trace0:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700265
Dave Barach68b0fb02017-02-28 15:15:56 -0500266 b0->error = node->errors[error0];
267
268 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
269 && (b0->flags & VLIB_BUFFER_IS_TRACED)))
270 {
Florin Coras3cbc04b2017-10-02 00:18:51 -0700271 udp_input_trace_t *t = vlib_add_trace (vm, node, b0,
272 sizeof (*t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500273
Florin Coras7fb0fe12018-04-09 09:24:52 -0700274 t->connection = s0 ? s0->connection_index : ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500275 t->disposition = error0;
276 t->thread_index = my_thread_index;
277 }
278
Dave Barach68b0fb02017-02-28 15:15:56 -0500279 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
280 to_next, n_left_to_next,
281 bi0, next0);
282 }
283
284 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
285 }
286
Florin Coras31c99552019-03-01 13:00:58 -0800287 errors = session_main_flush_all_enqueue_events (TRANSPORT_PROTO_UDP);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700288 udp_input_inc_counter (vm, is_ip4, UDP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -0500289 return frame->n_vectors;
290}
291
Florin Coras3cbc04b2017-10-02 00:18:51 -0700292
293static uword
294udp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
295 vlib_frame_t * frame)
Dave Barach68b0fb02017-02-28 15:15:56 -0500296{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700297 return udp46_input_inline (vm, node, frame, 1);
298}
299
300/* *INDENT-OFF* */
301VLIB_REGISTER_NODE (udp4_input_node) =
302{
303 .function = udp4_input,
304 .name = "udp4-input",
305 .vector_size = sizeof (u32),
306 .format_trace = format_udp_input_trace,
307 .type = VLIB_NODE_TYPE_INTERNAL,
308 .n_errors = ARRAY_LEN (udp_error_strings),
309 .error_strings = udp_error_strings,
310 .n_next_nodes = UDP_INPUT_N_NEXT,
311 .next_nodes = {
312#define _(s, n) [UDP_INPUT_NEXT_##s] = n,
313 foreach_udp_input_next
314#undef _
315 },
316};
317/* *INDENT-ON* */
318
319static uword
320udp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
321 vlib_frame_t * frame)
322{
323 return udp46_input_inline (vm, node, frame, 0);
324}
325
326/* *INDENT-OFF* */
327VLIB_REGISTER_NODE (udp6_input_node) =
328{
329 .function = udp6_input,
330 .name = "udp6-input",
331 .vector_size = sizeof (u32),
332 .format_trace = format_udp_input_trace,
333 .type = VLIB_NODE_TYPE_INTERNAL,
334 .n_errors = ARRAY_LEN (udp_error_strings),
335 .error_strings = udp_error_strings,
336 .n_next_nodes = UDP_INPUT_N_NEXT,
337 .next_nodes = {
338#define _(s, n) [UDP_INPUT_NEXT_##s] = n,
339 foreach_udp_input_next
340#undef _
341 },
342};
343/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500344
345/*
346 * fd.io coding-style-patch-verification: ON
347 *
348 * Local Variables:
349 * eval: (c-set-style "gnu")
350 * End:
351 */