blob: e1c13f62aff1b91f1184cc47a920bbc15cc4609a [file] [log] [blame]
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -07001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * 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
16/**
17 * @file
18 * @brief Local TCP/IP stack punt infrastructure.
19 *
Ole Troanf7a55ad2017-05-16 14:59:29 +020020 * Provides a set of VPP nodes together with the relevant APIs and CLI
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070021 * commands in order to adjust and dispatch packets from the VPP data plane
22 * to the local TCP/IP stack
23 */
Ole Troanf7a55ad2017-05-16 14:59:29 +020024
25#include <vnet/ip/ip.h>
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070026#include <vlib/vlib.h>
27#include <vnet/pg/pg.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050028#include <vnet/udp/udp.h>
Pierre Pfister7fe51f32017-09-20 08:48:36 +020029#include <vnet/tcp/tcp.h>
Marco Varlese191a5942017-10-30 18:17:21 +010030#include <vnet/sctp/sctp.h>
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070031#include <vnet/ip/punt.h>
Ole Troanf7a55ad2017-05-16 14:59:29 +020032#include <vppinfra/sparse_vec.h>
33#include <vlib/unix/unix.h>
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070034
Ole Troanf7a55ad2017-05-16 14:59:29 +020035#include <stdio.h>
36#include <unistd.h>
37#include <sys/socket.h>
Marco Varlese22349832017-09-08 10:40:34 +020038#include <sys/uio.h>
Ole Troanf7a55ad2017-05-16 14:59:29 +020039#include <stdlib.h>
Ole Troanf7a55ad2017-05-16 14:59:29 +020040
41#define foreach_punt_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080042 _ (PUNT4, "ip4-punt") \
43 _ (PUNT6, "ip6-punt")
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070044
45typedef enum
46{
47#define _(s,n) PUNT_NEXT_##s,
48 foreach_punt_next
49#undef _
50 PUNT_N_NEXT,
51} punt_next_t;
52
Ole Troanf7a55ad2017-05-16 14:59:29 +020053enum punt_socket_rx_next_e
54{
55 PUNT_SOCKET_RX_NEXT_INTERFACE_OUTPUT,
56 PUNT_SOCKET_RX_NEXT_IP4_LOOKUP,
57 PUNT_SOCKET_RX_NEXT_IP6_LOOKUP,
58 PUNT_SOCKET_RX_N_NEXT
59};
60
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080061#define punt_next_punt(is_ip4) (is_ip4 ? PUNT_NEXT_PUNT4 : PUNT_NEXT_PUNT6)
62
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070063vlib_node_registration_t udp4_punt_node;
64vlib_node_registration_t udp6_punt_node;
Ole Troanf7a55ad2017-05-16 14:59:29 +020065vlib_node_registration_t udp4_punt_socket_node;
66vlib_node_registration_t udp6_punt_socket_node;
67static vlib_node_registration_t punt_socket_rx_node;
68
69punt_main_t punt_main;
70
71char *
72vnet_punt_get_server_pathname (void)
73{
74 punt_main_t *pm = &punt_main;
75 return pm->sun_path;
76}
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -070077
78/** @brief IPv4/IPv6 UDP punt node main loop.
79
80 This is the main loop inline function for IPv4/IPv6 UDP punt
81 transition node.
82
83 @param vm vlib_main_t corresponding to the current thread
84 @param node vlib_node_runtime_t
85 @param frame vlib_frame_t whose contents should be dispatched
86 @param is_ipv4 indicates if called for IPv4 or IPv6 node
87*/
88always_inline uword
89udp46_punt_inline (vlib_main_t * vm,
90 vlib_node_runtime_t * node,
91 vlib_frame_t * from_frame, int is_ip4)
92{
93 u32 n_left_from, *from, *to_next;
94 word advance;
95
96 from = vlib_frame_vector_args (from_frame);
97 n_left_from = from_frame->n_vectors;
98
99 /* udp[46]_lookup hands us the data payload, not the IP header */
100 if (is_ip4)
101 advance = -(sizeof (ip4_header_t) + sizeof (udp_header_t));
102 else
103 advance = -(sizeof (ip6_header_t) + sizeof (udp_header_t));
104
105 while (n_left_from > 0)
106 {
107 u32 n_left_to_next;
108
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800109 vlib_get_next_frame (vm, node, punt_next_punt (is_ip4), to_next,
110 n_left_to_next);
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700111
112 while (n_left_from > 0 && n_left_to_next > 0)
113 {
114 u32 bi0;
115 vlib_buffer_t *b0;
116
117 bi0 = from[0];
118 to_next[0] = bi0;
119 from += 1;
120 to_next += 1;
121 n_left_from -= 1;
122 n_left_to_next -= 1;
123
124 b0 = vlib_get_buffer (vm, bi0);
125 vlib_buffer_advance (b0, advance);
126 b0->error = node->errors[PUNT_ERROR_UDP_PORT];
127 }
128
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -0800129 vlib_put_next_frame (vm, node, punt_next_punt (is_ip4), n_left_to_next);
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700130 }
131
132 return from_frame->n_vectors;
133}
134
135static char *punt_error_strings[] = {
136#define punt_error(n,s) s,
137#include "punt_error.def"
138#undef punt_error
139};
140
141/** @brief IPv4 UDP punt node.
142 @node ip4-udp-punt
143
144 This is the IPv4 UDP punt transition node. It is registered as a next
145 node for the "ip4-udp-lookup" handling UDP port(s) requested for punt.
146 The buffer's current data pointer is adjusted to the original packet
147 IPv4 header. All buffers are dispatched to "error-punt".
148
149 @param vm vlib_main_t corresponding to the current thread
150 @param node vlib_node_runtime_t
151 @param frame vlib_frame_t whose contents should be dispatched
152
153 @par Graph mechanics: next index usage
154
155 @em Sets:
156 - <code>vnet_buffer(b)->current_data</code>
157 - <code>vnet_buffer(b)->current_len</code>
158
159 <em>Next Index:</em>
160 - Dispatches the packet to the "error-punt" node
161*/
162static uword
163udp4_punt (vlib_main_t * vm,
164 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
165{
166 return udp46_punt_inline (vm, node, from_frame, 1 /* is_ip4 */ );
167}
168
169/** @brief IPv6 UDP punt node.
170 @node ip6-udp-punt
171
172 This is the IPv6 UDP punt transition node. It is registered as a next
173 node for the "ip6-udp-lookup" handling UDP port(s) requested for punt.
174 The buffer's current data pointer is adjusted to the original packet
175 IPv6 header. All buffers are dispatched to "error-punt".
176
177 @param vm vlib_main_t corresponding to the current thread
178 @param node vlib_node_runtime_t
179 @param frame vlib_frame_t whose contents should be dispatched
180
181 @par Graph mechanics: next index usage
182
183 @em Sets:
184 - <code>vnet_buffer(b)->current_data</code>
185 - <code>vnet_buffer(b)->current_len</code>
186
187 <em>Next Index:</em>
188 - Dispatches the packet to the "error-punt" node
189*/
190static uword
191udp6_punt (vlib_main_t * vm,
192 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
193{
194 return udp46_punt_inline (vm, node, from_frame, 0 /* is_ip4 */ );
195}
196
197/* *INDENT-OFF* */
198VLIB_REGISTER_NODE (udp4_punt_node) = {
199 .function = udp4_punt,
200 .name = "ip4-udp-punt",
201 /* Takes a vector of packets. */
202 .vector_size = sizeof (u32),
203
204 .n_errors = PUNT_N_ERROR,
205 .error_strings = punt_error_strings,
206
207 .n_next_nodes = PUNT_N_NEXT,
208 .next_nodes = {
209#define _(s,n) [PUNT_NEXT_##s] = n,
210 foreach_punt_next
211#undef _
212 },
213};
214
Dave Barachd7cb1b52016-12-09 09:52:16 -0500215VLIB_NODE_FUNCTION_MULTIARCH (udp4_punt_node, udp4_punt);
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700216
217VLIB_REGISTER_NODE (udp6_punt_node) = {
218 .function = udp6_punt,
219 .name = "ip6-udp-punt",
220 /* Takes a vector of packets. */
221 .vector_size = sizeof (u32),
222
223 .n_errors = PUNT_N_ERROR,
224 .error_strings = punt_error_strings,
225
226 .n_next_nodes = PUNT_N_NEXT,
227 .next_nodes = {
228#define _(s,n) [PUNT_NEXT_##s] = n,
229 foreach_punt_next
230#undef _
231 },
232};
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700233
Dave Barachd7cb1b52016-12-09 09:52:16 -0500234VLIB_NODE_FUNCTION_MULTIARCH (udp6_punt_node, udp6_punt);;
235
Ole Troanf7a55ad2017-05-16 14:59:29 +0200236/* *INDENT-ON* */
237
Klement Sekera3c37ad52017-11-03 10:25:23 +0100238static punt_client_t *
239punt_client_get (bool is_ip4, u16 port)
Ole Troanf7a55ad2017-05-16 14:59:29 +0200240{
241 punt_main_t *pm = &punt_main;
Klement Sekera3c37ad52017-11-03 10:25:23 +0100242 punt_client_t *v =
243 is_ip4 ? pm->clients_by_dst_port4 : pm->clients_by_dst_port6;
Ole Troanf7a55ad2017-05-16 14:59:29 +0200244
245 u16 i = sparse_vec_index (v, port);
246 if (i == SPARSE_VEC_INVALID_INDEX)
247 return 0;
248
Klement Sekera3c37ad52017-11-03 10:25:23 +0100249 return &vec_elt (v, i);
250}
251
252static struct sockaddr_un *
253punt_socket_get (bool is_ip4, u16 port)
254{
255 punt_client_t *v = punt_client_get (is_ip4, port);
256 if (v)
257 return &v->caddr;
258
259 return NULL;
Ole Troanf7a55ad2017-05-16 14:59:29 +0200260}
261
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100262static int
Ole Troanf7a55ad2017-05-16 14:59:29 +0200263punt_socket_register (bool is_ip4, u8 protocol, u16 port,
264 char *client_pathname)
265{
266 punt_main_t *pm = &punt_main;
267 punt_client_t c, *n;
268 punt_client_t *v = is_ip4 ? pm->clients_by_dst_port4 :
269 pm->clients_by_dst_port6;
270
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100271 if (strncmp (client_pathname, vnet_punt_get_server_pathname (),
272 UNIX_PATH_MAX) == 0)
273 return -1;
274
Dave Barachb7b92992018-10-17 10:38:51 -0400275 clib_memset (&c, 0, sizeof (c));
Ole Troanf7a55ad2017-05-16 14:59:29 +0200276 memcpy (c.caddr.sun_path, client_pathname, sizeof (c.caddr.sun_path));
277 c.caddr.sun_family = AF_UNIX;
278 c.port = port;
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100279 c.protocol = protocol;
Ole Troanf7a55ad2017-05-16 14:59:29 +0200280 n = sparse_vec_validate (v, port);
281 n[0] = c;
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100282 return 0;
Ole Troanf7a55ad2017-05-16 14:59:29 +0200283}
284
285/* $$$$ Just leaves the mapping in place for now */
286static void
287punt_socket_unregister (bool is_ip4, u8 protocol, u16 port)
288{
289 return;
290}
291
Klement Sekera3c37ad52017-11-03 10:25:23 +0100292typedef struct
293{
294 punt_client_t client;
295 u8 is_midchain;
296} udp_punt_trace_t;
297
298u8 *
299format_udp_punt_trace (u8 * s, va_list * args)
300{
301 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
302 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
303 udp_punt_trace_t *t = va_arg (*args, udp_punt_trace_t *);
304 u32 indent = format_get_indent (s);
305 s = format (s, "to: %s", t->client.caddr.sun_path);
306 if (t->is_midchain)
307 {
308 s = format (s, "\n%U(buffer is part of chain)", format_white_space,
309 indent);
310 }
311 return s;
312}
313
Ole Troanf7a55ad2017-05-16 14:59:29 +0200314always_inline uword
315udp46_punt_socket_inline (vlib_main_t * vm,
316 vlib_node_runtime_t * node,
317 vlib_frame_t * frame, bool is_ip4)
318{
Damjan Mariona3d59862018-11-10 10:23:00 +0100319 u32 *buffers = vlib_frame_vector_args (frame);
Ole Troanf7a55ad2017-05-16 14:59:29 +0200320 uword n_packets = frame->n_vectors;
321 struct iovec *iovecs = 0;
322 punt_main_t *pm = &punt_main;
323 int i;
324
325 u32 node_index = is_ip4 ? udp4_punt_socket_node.index :
326 udp6_punt_socket_node.index;
327
328 for (i = 0; i < n_packets; i++)
329 {
330 struct iovec *iov;
331 vlib_buffer_t *b;
332 uword l;
333 punt_packetdesc_t packetdesc;
334
335 b = vlib_get_buffer (vm, buffers[i]);
336
337 /* Reverse UDP Punt advance */
338 udp_header_t *udp;
339 if (is_ip4)
340 {
341 vlib_buffer_advance (b, -(sizeof (ip4_header_t) +
342 sizeof (udp_header_t)));
343 ip4_header_t *ip = vlib_buffer_get_current (b);
344 udp = (udp_header_t *) (ip + 1);
345 }
346 else
347 {
348 vlib_buffer_advance (b, -(sizeof (ip6_header_t) +
349 sizeof (udp_header_t)));
350 ip6_header_t *ip = vlib_buffer_get_current (b);
351 udp = (udp_header_t *) (ip + 1);
352 }
353
354 u16 port = clib_net_to_host_u16 (udp->dst_port);
355
356 /*
357 * Find registerered client
358 * If no registered client, drop packet and count
359 */
360 struct sockaddr_un *caddr;
361 caddr = punt_socket_get (is_ip4, port);
362 if (!caddr)
363 {
364 vlib_node_increment_counter (vm, node_index,
365 PUNT_ERROR_SOCKET_TX_ERROR, 1);
366 goto error;
367 }
368
Klement Sekera3c37ad52017-11-03 10:25:23 +0100369 punt_client_t *c = NULL;
370 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
371 {
Klement Sekerab7163082017-11-08 04:13:49 +0100372 c = punt_client_get (is_ip4, port);
Klement Sekera3c37ad52017-11-03 10:25:23 +0100373 udp_punt_trace_t *t;
374 t = vlib_add_trace (vm, node, b, sizeof (t[0]));
Dave Barach178cf492018-11-13 16:34:13 -0500375 clib_memcpy_fast (&t->client, c, sizeof (t->client));
Klement Sekera3c37ad52017-11-03 10:25:23 +0100376 }
377
Ole Troanf7a55ad2017-05-16 14:59:29 +0200378 /* Re-set iovecs if present. */
379 if (iovecs)
380 _vec_len (iovecs) = 0;
381
382 /* Add packet descriptor */
383 packetdesc.sw_if_index = vnet_buffer (b)->sw_if_index[VLIB_RX];
384 packetdesc.action = 0;
385 vec_add2 (iovecs, iov, 1);
386 iov->iov_base = &packetdesc;
387 iov->iov_len = sizeof (packetdesc);
388
389 /** VLIB buffer chain -> Unix iovec(s). */
390 vlib_buffer_advance (b, -(sizeof (ethernet_header_t)));
391 vec_add2 (iovecs, iov, 1);
392 iov->iov_base = b->data + b->current_data;
393 iov->iov_len = l = b->current_length;
394
395 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
396 {
397 do
398 {
399 b = vlib_get_buffer (vm, b->next_buffer);
Klement Sekera3c37ad52017-11-03 10:25:23 +0100400 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
401 {
Klement Sekerab7163082017-11-08 04:13:49 +0100402 if (PREDICT_FALSE (!c))
403 {
404 c = punt_client_get (is_ip4, port);
405 }
Klement Sekera3c37ad52017-11-03 10:25:23 +0100406 udp_punt_trace_t *t;
407 t = vlib_add_trace (vm, node, b, sizeof (t[0]));
Dave Barach178cf492018-11-13 16:34:13 -0500408 clib_memcpy_fast (&t->client, c, sizeof (t->client));
Klement Sekera3c37ad52017-11-03 10:25:23 +0100409 t->is_midchain = 1;
410 }
Ole Troanf7a55ad2017-05-16 14:59:29 +0200411
412 vec_add2 (iovecs, iov, 1);
413
414 iov->iov_base = b->data + b->current_data;
415 iov->iov_len = b->current_length;
416 l += b->current_length;
417 }
418 while (b->flags & VLIB_BUFFER_NEXT_PRESENT);
419 }
420
421 struct msghdr msg = {
422 .msg_name = caddr,
423 .msg_namelen = sizeof (*caddr),
424 .msg_iov = iovecs,
425 .msg_iovlen = vec_len (iovecs),
426 };
427
Klement Sekera6bd0bc32017-11-08 12:18:21 +0100428 if (sendmsg (pm->socket_fd, &msg, 0) < (ssize_t) l)
Ole Troanf7a55ad2017-05-16 14:59:29 +0200429 vlib_node_increment_counter (vm, node_index,
430 PUNT_ERROR_SOCKET_TX_ERROR, 1);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100431 else
432 vlib_node_increment_counter (vm, node_index, PUNT_ERROR_SOCKET_TX, 1);
433
Ole Troanf7a55ad2017-05-16 14:59:29 +0200434 }
435
436error:
Klement Sekera0dc11a12017-11-03 06:39:28 +0100437 vlib_buffer_free (vm, buffers, n_packets);
Ole Troanf7a55ad2017-05-16 14:59:29 +0200438
439 return n_packets;
440}
441
442static uword
443udp4_punt_socket (vlib_main_t * vm,
444 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
445{
446 return udp46_punt_socket_inline (vm, node, from_frame, true /* is_ip4 */ );
447}
448
449static uword
450udp6_punt_socket (vlib_main_t * vm,
451 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
452{
453 return udp46_punt_socket_inline (vm, node, from_frame, false /* is_ip4 */ );
454}
455
456
457/* *INDENT-OFF* */
458VLIB_REGISTER_NODE (udp4_punt_socket_node) = {
459 .function = udp4_punt_socket,
460 .name = "ip4-udp-punt-socket",
Klement Sekera3c37ad52017-11-03 10:25:23 +0100461 .format_trace = format_udp_punt_trace,
Ole Troanf7a55ad2017-05-16 14:59:29 +0200462 .flags = VLIB_NODE_FLAG_IS_DROP,
463 /* Takes a vector of packets. */
464 .vector_size = sizeof (u32),
465 .n_errors = PUNT_N_ERROR,
466 .error_strings = punt_error_strings,
467};
468VLIB_REGISTER_NODE (udp6_punt_socket_node) = {
469 .function = udp6_punt_socket,
470 .name = "ip6-udp-punt-socket",
Klement Sekera3c37ad52017-11-03 10:25:23 +0100471 .format_trace = format_udp_punt_trace,
Ole Troanf7a55ad2017-05-16 14:59:29 +0200472 .flags = VLIB_NODE_FLAG_IS_DROP,
473 .vector_size = sizeof (u32),
474 .n_errors = PUNT_N_ERROR,
475 .error_strings = punt_error_strings,
476};
477/* *INDENT-ON* */
478
479typedef struct
480{
481 enum punt_action_e action;
482 u32 sw_if_index;
483} punt_trace_t;
484
485static u8 *
486format_punt_trace (u8 * s, va_list * va)
487{
488 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
489 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
490 vnet_main_t *vnm = vnet_get_main ();
491 punt_trace_t *t = va_arg (*va, punt_trace_t *);
492 s = format (s, "%U Action: %d", format_vnet_sw_if_index_name,
493 vnm, t->sw_if_index, t->action);
494 return s;
495}
496
497static uword
498punt_socket_rx_fd (vlib_main_t * vm, vlib_node_runtime_t * node, u32 fd)
499{
Damjan Marion8934a042019-02-09 23:29:26 +0100500 const uword buffer_size = vlib_buffer_get_default_data_size (vm);
Ole Troanf7a55ad2017-05-16 14:59:29 +0200501 u32 n_trace = vlib_get_trace_count (vm, node);
502 u32 next = node->cached_next_index;
503 u32 n_left_to_next, next_index;
504 u32 *to_next;
505 u32 error = PUNT_ERROR_NONE;
506 vlib_get_next_frame (vm, node, next, to_next, n_left_to_next);
507
508 /* $$$$ Only dealing with one buffer at the time for now */
509
510 u32 bi;
511 vlib_buffer_t *b;
512 punt_packetdesc_t packetdesc;
513 ssize_t size;
514 struct iovec io[2];
515
516 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
517 {
518 error = PUNT_ERROR_NOBUFFER;
519 goto error;
520 }
521
522 b = vlib_get_buffer (vm, bi);
523 io[0].iov_base = &packetdesc;
524 io[0].iov_len = sizeof (packetdesc);
525 io[1].iov_base = b->data;
526 io[1].iov_len = buffer_size;
527
528 size = readv (fd, io, 2);
529 /* We need at least the packet descriptor plus a header */
530 if (size <= (int) (sizeof (packetdesc) + sizeof (ip4_header_t)))
531 {
532 vlib_buffer_free (vm, &bi, 1);
533 error = PUNT_ERROR_READV;
534 goto error;
535 }
536
537 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
538 b->current_length = size - sizeof (packetdesc);
539
540 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
541
542 switch (packetdesc.action)
543 {
544 case PUNT_L2:
545 vnet_buffer (b)->sw_if_index[VLIB_TX] = packetdesc.sw_if_index;
546 next_index = PUNT_SOCKET_RX_NEXT_INTERFACE_OUTPUT;
547 break;
548
549 case PUNT_IP4_ROUTED:
550 vnet_buffer (b)->sw_if_index[VLIB_RX] = packetdesc.sw_if_index;
551 vnet_buffer (b)->sw_if_index[VLIB_TX] = ~0;
552 next_index = PUNT_SOCKET_RX_NEXT_IP4_LOOKUP;
553 break;
554
555 case PUNT_IP6_ROUTED:
556 vnet_buffer (b)->sw_if_index[VLIB_RX] = packetdesc.sw_if_index;
557 vnet_buffer (b)->sw_if_index[VLIB_TX] = ~0;
558 next_index = PUNT_SOCKET_RX_NEXT_IP6_LOOKUP;
559 break;
560
561 default:
562 error = PUNT_ERROR_ACTION;
563 vlib_buffer_free (vm, &bi, 1);
564 goto error;
565 }
566
567 if (PREDICT_FALSE (n_trace > 0))
568 {
569 punt_trace_t *t;
570 vlib_trace_buffer (vm, node, next_index, b, 1 /* follow_chain */ );
571 vlib_set_trace_count (vm, node, --n_trace);
572 t = vlib_add_trace (vm, node, b, sizeof (*t));
573 t->sw_if_index = packetdesc.sw_if_index;
574 t->action = packetdesc.action;
575 }
576
577 to_next[0] = bi;
578 to_next++;
579 n_left_to_next--;
580
581 vlib_validate_buffer_enqueue_x1 (vm, node, next, to_next, n_left_to_next,
582 bi, next_index);
583 vlib_put_next_frame (vm, node, next, n_left_to_next);
584 return 1;
585
586error:
587 vlib_node_increment_counter (vm, punt_socket_rx_node.index, error, 1);
588 return 0;
589}
590
591static uword
592punt_socket_rx (vlib_main_t * vm,
593 vlib_node_runtime_t * node, vlib_frame_t * frame)
594{
595 punt_main_t *pm = &punt_main;
596 u32 total_count = 0;
597 int i;
598
599 for (i = 0; i < vec_len (pm->ready_fds); i++)
600 {
601 total_count += punt_socket_rx_fd (vm, node, pm->ready_fds[i]);
602 vec_del1 (pm->ready_fds, i);
603 }
604 return total_count;
605}
606
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100607/* *INDENT-OFF* */
Ole Troanf7a55ad2017-05-16 14:59:29 +0200608VLIB_REGISTER_NODE (punt_socket_rx_node, static) =
609{
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100610 .function = punt_socket_rx,
611 .name = "punt-socket-rx",
612 .type = VLIB_NODE_TYPE_INPUT,
613 .state = VLIB_NODE_STATE_INTERRUPT,
614 .vector_size = 1,
615 .n_errors = PUNT_N_ERROR,
616 .error_strings = punt_error_strings,
617 .n_next_nodes = PUNT_SOCKET_RX_N_NEXT,
618 .next_nodes = {
619 [PUNT_SOCKET_RX_NEXT_INTERFACE_OUTPUT] = "interface-output",
620 [PUNT_SOCKET_RX_NEXT_IP4_LOOKUP] = "ip4-lookup",
621 [PUNT_SOCKET_RX_NEXT_IP6_LOOKUP] = "ip6-lookup",
622 },
623 .format_trace = format_punt_trace,
624};
625/* *INDENT-ON* */
Ole Troanf7a55ad2017-05-16 14:59:29 +0200626
627static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +0200628punt_socket_read_ready (clib_file_t * uf)
Ole Troanf7a55ad2017-05-16 14:59:29 +0200629{
630 vlib_main_t *vm = vlib_get_main ();
631 punt_main_t *pm = &punt_main;
632
633 /** Schedule the rx node */
634 vlib_node_set_interrupt_pending (vm, punt_socket_rx_node.index);
635 vec_add1 (pm->ready_fds, uf->file_descriptor);
636
637 return 0;
638}
639
640clib_error_t *
641vnet_punt_socket_add (vlib_main_t * vm, u32 header_version,
642 bool is_ip4, u8 protocol, u16 port,
643 char *client_pathname)
644{
645 punt_main_t *pm = &punt_main;
646
647 if (!pm->is_configured)
648 return clib_error_return (0, "socket is not configured");
649
650 if (header_version != PUNT_PACKETDESC_VERSION)
651 return clib_error_return (0, "Invalid packet descriptor version");
652
653 /* For now we only support UDP punt */
654 if (protocol != IP_PROTOCOL_UDP)
655 return clib_error_return (0,
656 "only UDP protocol (%d) is supported, got %d",
657 IP_PROTOCOL_UDP, protocol);
658
659 if (port == (u16) ~ 0)
660 return clib_error_return (0, "UDP port number required");
661
662 /* Register client */
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100663 if (punt_socket_register (is_ip4, protocol, port, client_pathname) < 0)
664 return clib_error_return (0,
665 "Punt socket: Invalid client path: %s",
666 client_pathname);
Ole Troanf7a55ad2017-05-16 14:59:29 +0200667
668 u32 node_index = is_ip4 ? udp4_punt_socket_node.index :
669 udp6_punt_socket_node.index;
670
671 udp_register_dst_port (vm, port, node_index, is_ip4);
672
673 return 0;
674}
675
676clib_error_t *
677vnet_punt_socket_del (vlib_main_t * vm, bool is_ip4, u8 l4_protocol, u16 port)
678{
679 punt_main_t *pm = &punt_main;
680
681 if (!pm->is_configured)
682 return clib_error_return (0, "socket is not configured");
683
684 punt_socket_unregister (is_ip4, l4_protocol, port);
685 udp_unregister_dst_port (vm, port, is_ip4);
686
687 return 0;
688}
689
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700690/**
691 * @brief Request IP traffic punt to the local TCP/IP stack.
692 *
693 * @em Note
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200694 * - UDP and TCP are the only protocols supported in the current implementation
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700695 *
696 * @param vm vlib_main_t corresponding to the current thread
697 * @param ipv IP protcol version.
698 * 4 - IPv4, 6 - IPv6, ~0 for both IPv6 and IPv4
699 * @param protocol 8-bits L4 protocol value
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200700 * UDP is 17
701 * TCP is 1
702 * @param port 16-bits L4 (TCP/IP) port number when applicable (UDP only)
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700703 *
704 * @returns 0 on success, non-zero value otherwise
705 */
706clib_error_t *
707vnet_punt_add_del (vlib_main_t * vm, u8 ipv, u8 protocol, u16 port,
Ole Troanf7a55ad2017-05-16 14:59:29 +0200708 bool is_add)
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700709{
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200710
Marco Varlese191a5942017-10-30 18:17:21 +0100711 /* For now we only support TCP, UDP and SCTP punt */
712 if (protocol != IP_PROTOCOL_UDP &&
713 protocol != IP_PROTOCOL_TCP && protocol != IP_PROTOCOL_SCTP)
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800714 return clib_error_return (0,
Marco Varlese191a5942017-10-30 18:17:21 +0100715 "only UDP (%d), TCP (%d) and SCTP (%d) protocols are supported, got %d",
716 IP_PROTOCOL_UDP, IP_PROTOCOL_TCP,
717 IP_PROTOCOL_SCTP, protocol);
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700718
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800719 if (ipv != (u8) ~ 0 && ipv != 4 && ipv != 6)
720 return clib_error_return (0, "IP version must be 4 or 6, got %d", ipv);
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700721
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800722 if (port == (u16) ~ 0)
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700723 {
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200724 if ((ipv == 4) || (ipv == (u8) ~ 0))
725 {
726 if (protocol == IP_PROTOCOL_UDP)
727 udp_punt_unknown (vm, 1, is_add);
728 else if (protocol == IP_PROTOCOL_TCP)
729 tcp_punt_unknown (vm, 1, is_add);
Marco Varlese191a5942017-10-30 18:17:21 +0100730 else if (protocol == IP_PROTOCOL_SCTP)
731 sctp_punt_unknown (vm, 1, is_add);
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200732 }
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800733
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200734 if ((ipv == 6) || (ipv == (u8) ~ 0))
735 {
736 if (protocol == IP_PROTOCOL_UDP)
737 udp_punt_unknown (vm, 0, is_add);
738 else if (protocol == IP_PROTOCOL_TCP)
739 tcp_punt_unknown (vm, 0, is_add);
Marco Varlese191a5942017-10-30 18:17:21 +0100740 else if (protocol == IP_PROTOCOL_SCTP)
741 sctp_punt_unknown (vm, 0, is_add);
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200742 }
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800743
744 return 0;
745 }
746
747 else if (is_add)
748 {
Marco Varlese191a5942017-10-30 18:17:21 +0100749 if (protocol == IP_PROTOCOL_TCP || protocol == IP_PROTOCOL_SCTP)
750 return clib_error_return (0,
751 "punt TCP/SCTP ports is not supported yet");
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200752
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800753 if (ipv == 4 || ipv == (u8) ~ 0)
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700754 udp_register_dst_port (vm, port, udp4_punt_node.index, 1);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800755
756 if (ipv == 6 || ipv == (u8) ~ 0)
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700757 udp_register_dst_port (vm, port, udp6_punt_node.index, 0);
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800758
759 return 0;
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700760 }
761 else
Pavel Kotucek41b923a2018-12-05 17:16:23 +0100762 {
763 if (protocol == IP_PROTOCOL_TCP || protocol == IP_PROTOCOL_SCTP)
764 return clib_error_return (0,
765 "punt TCP/SCTP ports is not supported yet");
766 if (ipv == 4 || ipv == (u8) ~ 0)
767 udp_unregister_dst_port (vm, port, 1);
768
769 if (ipv == 6 || ipv == (u8) ~ 0)
770 udp_unregister_dst_port (vm, port, 0);
771
772 return 0;
773 }
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700774}
775
776static clib_error_t *
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200777punt_cli (vlib_main_t * vm,
778 unformat_input_t * input, vlib_cli_command_t * cmd)
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700779{
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100780 u32 port = ~0;
Ole Troanf7a55ad2017-05-16 14:59:29 +0200781 bool is_add = true;
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200782 u32 protocol = ~0;
Swarup Nayak1b708842017-12-13 13:27:23 +0530783 clib_error_t *error = NULL;
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700784
785 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
786 {
787 if (unformat (input, "del"))
Ole Troanf7a55ad2017-05-16 14:59:29 +0200788 is_add = false;
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200789 else if (unformat (input, "all"))
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100790 ;
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200791 else if (unformat (input, "%d", &port))
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100792 ;
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200793 else if (unformat (input, "udp"))
794 protocol = IP_PROTOCOL_UDP;
795 else if (unformat (input, "tcp"))
796 protocol = IP_PROTOCOL_TCP;
Swarup Nayak1b708842017-12-13 13:27:23 +0530797 else
798 {
799 error = clib_error_return (0, "parse error: '%U'",
800 format_unformat_error, input);
801 goto done;
802 }
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700803 }
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100804
805 /* punt both IPv6 and IPv4 when used in CLI */
806 error = vnet_punt_add_del (vm, ~0, protocol, port, is_add);
807 if (error)
808 {
809 clib_error_report (error);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100810 }
811
Swarup Nayak1b708842017-12-13 13:27:23 +0530812done:
813 return error;
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700814}
815
816/*?
817 * The set of '<em>set punt</em>' commands allows specific IP traffic to
818 * be punted to the host TCP/IP stack
819 *
820 * @em Note
821 * - UDP is the only protocol supported in the current implementation
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700822 * - All TCP traffic is currently punted to the host by default
823 *
824 * @cliexpar
825 * @parblock
826 * Example of how to request NTP traffic to be punted
827 * @cliexcmd{set punt udp 125}
828 *
Alexander Popovsky (apopovsk)740bcdb2016-11-15 15:36:23 -0800829 * Example of how to request all 'unknown' UDP traffic to be punted
830 * @cliexcmd{set punt udp all}
831 *
832 * Example of how to stop all 'unknown' UDP traffic to be punted
833 * @cliexcmd{set punt udp del all}
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700834 * @endparblock
835?*/
836/* *INDENT-OFF* */
Pierre Pfister7fe51f32017-09-20 08:48:36 +0200837VLIB_CLI_COMMAND (punt_command, static) = {
838 .path = "set punt",
839 .short_help = "set punt [udp|tcp] [del] <all | port-num1 [port-num2 ...]>",
840 .function = punt_cli,
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -0700841};
842/* *INDENT-ON* */
843
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100844static clib_error_t *
845punt_socket_register_cmd (vlib_main_t * vm,
846 unformat_input_t * input, vlib_cli_command_t * cmd)
847{
848 bool is_ipv4 = true;
849 u32 protocol = ~0;
850 u32 port = ~0;
851 u8 *socket_name = 0;
852 clib_error_t *error = NULL;
853
854 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
855 {
856 if (unformat (input, "ipv4"))
857 ;
858 else if (unformat (input, "ipv6"))
859 is_ipv4 = false;
860 else if (unformat (input, "udp"))
861 protocol = IP_PROTOCOL_UDP;
862 else if (unformat (input, "tcp"))
863 protocol = IP_PROTOCOL_TCP;
864 else if (unformat (input, "%d", &port))
865 ;
866 else if (unformat (input, "socket %s", &socket_name))
867 ;
868 else
869 {
870 error = clib_error_return (0, "parse error: '%U'",
871 format_unformat_error, input);
872 goto done;
873 }
874 }
875
876 error =
877 vnet_punt_socket_add (vm, 1, is_ipv4, protocol, port,
878 (char *) socket_name);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100879done:
880 return error;
881}
882
883/*?
884 *
885 * @cliexpar
886 * @cliexcmd{punt socket register}
887 ?*/
888/* *INDENT-OFF* */
889VLIB_CLI_COMMAND (punt_socket_register_command, static) =
890{
891 .path = "punt socket register",
892 .function = punt_socket_register_cmd,
893 .short_help = "punt socket register [ipv4|ipv6] [udp|tcp]> <all | port-num1 [port-num2 ...]> <socket>",
894 .is_mp_safe = 1,
895};
896/* *INDENT-ON* */
897
898static clib_error_t *
899punt_socket_deregister_cmd (vlib_main_t * vm,
900 unformat_input_t * input,
901 vlib_cli_command_t * cmd)
902{
903 bool is_ipv4 = true;
904 u32 protocol = ~0;
905 u32 port = ~0;
906 clib_error_t *error = NULL;
907
908 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
909 {
910 if (unformat (input, "ipv4"))
911 ;
912 else if (unformat (input, "ipv6"))
913 is_ipv4 = false;
914 else if (unformat (input, "udp"))
915 protocol = IP_PROTOCOL_UDP;
916 else if (unformat (input, "tcp"))
917 protocol = IP_PROTOCOL_TCP;
918 else if (unformat (input, "%d", &port))
919 ;
920 else
921 {
922 error = clib_error_return (0, "parse error: '%U'",
923 format_unformat_error, input);
924 goto done;
925 }
926 }
927
928 error = vnet_punt_socket_del (vm, is_ipv4, protocol, port);
Pavel Kotuceke88865d2018-11-28 07:42:11 +0100929done:
930 return error;
931}
932
933/*?
934 *
935 * @cliexpar
936 * @cliexcmd{punt socket register}
937 ?*/
938/* *INDENT-OFF* */
939VLIB_CLI_COMMAND (punt_socket_deregister_command, static) =
940{
941 .path = "punt socket deregister",
942 .function = punt_socket_deregister_cmd,
943 .short_help = "punt socket deregister [ipv4|ipv6] [udp|tcp]> <all | port-num1 [port-num2 ...]>",
944 .is_mp_safe = 1,
945};
946/* *INDENT-ON* */
947
948punt_socket_detail_t *
949punt_socket_entries (u8 ipv)
950{
951 punt_main_t *pm = &punt_main;
952 punt_client_t *pc;
953 punt_socket_detail_t *ps = 0;
954 bool is_valid;
955
956 punt_client_t *v = !ipv ? pm->clients_by_dst_port4 :
957 pm->clients_by_dst_port6;
958
959 vec_foreach (pc, v)
960 {
961 if (pc && pc->port != 0)
962 {
963 is_valid = false;
964 if (pc->protocol == IP_PROTOCOL_UDP)
965 {
966 is_valid = udp_is_valid_dst_port (pc->port, !ipv);
967 }
968 if (is_valid)
969 {
970 punt_socket_detail_t detail = {
971 .ipv = ipv,
972 .l4_protocol = pc->protocol,
973 .l4_port = pc->port
974 };
975 memcpy (detail.pathname, pc->caddr.sun_path,
976 sizeof (pc->caddr.sun_path));
977 vec_add1 (ps, detail);
978 }
979 }
980 }
981 return ps;
982}
983
984u8 *
985format_punt_socket (u8 * s, va_list * args)
986{
987 punt_client_t *clients = va_arg (*args, punt_client_t *);
988 u8 *is_ipv6 = va_arg (*args, u8 *);
989 punt_client_t *pc;
990 bool is_valid;
991
992 vec_foreach (pc, clients)
993 {
994 if (pc && pc->port != 0)
995 {
996 is_valid = false;
997 if (pc->protocol == IP_PROTOCOL_UDP)
998 {
999 is_valid = udp_is_valid_dst_port (pc->port, !(*is_ipv6));
1000 }
1001 if (is_valid)
1002 {
1003 s = format (s, " punt %s port %d to socket %s \n",
1004 (pc->protocol == IP_PROTOCOL_UDP) ? "UDP" : "TCP",
1005 pc->port, pc->caddr.sun_path);
1006 }
1007 }
1008 }
1009
1010 return (s);
1011}
1012
1013static clib_error_t *
1014punt_socket_show_cmd (vlib_main_t * vm,
1015 unformat_input_t * input, vlib_cli_command_t * cmd)
1016{
1017 u8 is_ipv6;
1018 punt_main_t *pm = &punt_main;
1019 clib_error_t *error = NULL;
1020
1021 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1022 {
1023 if (unformat (input, "ipv4"))
1024 is_ipv6 = 0;
1025 else if (unformat (input, "ipv6"))
1026 is_ipv6 = 1;
1027 else
1028 {
1029 error = clib_error_return (0, "parse error: '%U'",
1030 format_unformat_error, input);
1031 goto done;
1032 }
1033 }
1034
1035 punt_client_t *v =
1036 is_ipv6 ? pm->clients_by_dst_port6 : pm->clients_by_dst_port4;
1037 vlib_cli_output (vm, "%U", format_punt_socket, v, &is_ipv6);
1038
1039done:
1040 return (error);
1041}
1042
1043/*?
1044 *
1045 * @cliexpar
1046 * @cliexcmd{show punt socket ipv4}
1047 ?*/
1048/* *INDENT-OFF* */
1049VLIB_CLI_COMMAND (show_punt_socket_registration_command, static) =
1050{
1051 .path = "show punt socket registrations",
1052 .function = punt_socket_show_cmd,
1053 .short_help = "show punt socket registrations [ipv4|ipv6]",
1054 .is_mp_safe = 1,
1055};
1056/* *INDENT-ON* */
1057
Ole Troanf7a55ad2017-05-16 14:59:29 +02001058clib_error_t *
1059punt_init (vlib_main_t * vm)
1060{
1061 punt_main_t *pm = &punt_main;
1062
1063 pm->clients_by_dst_port6 = sparse_vec_new
1064 (sizeof (pm->clients_by_dst_port6[0]),
1065 BITS (((udp_header_t *) 0)->dst_port));
1066 pm->clients_by_dst_port4 = sparse_vec_new
1067 (sizeof (pm->clients_by_dst_port4[0]),
1068 BITS (((udp_header_t *) 0)->dst_port));
1069
1070 pm->is_configured = false;
1071 pm->interface_output_node = vlib_get_node_by_name (vm,
1072 (u8 *)
1073 "interface-output");
1074 return 0;
1075}
1076
1077VLIB_INIT_FUNCTION (punt_init);
1078
1079static clib_error_t *
1080punt_config (vlib_main_t * vm, unformat_input_t * input)
1081{
1082 punt_main_t *pm = &punt_main;
1083 char *socket_path = 0;
1084
1085 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1086 {
1087 if (unformat (input, "socket %s", &socket_path))
Pavel Kotuceke88865d2018-11-28 07:42:11 +01001088 strncpy (pm->sun_path, socket_path, UNIX_PATH_MAX - 1);
Ole Troanf7a55ad2017-05-16 14:59:29 +02001089 else
1090 return clib_error_return (0, "unknown input `%U'",
1091 format_unformat_error, input);
1092 }
1093
1094 if (socket_path == 0)
1095 return 0;
1096
1097 /* UNIX domain socket */
1098 struct sockaddr_un addr;
1099 if ((pm->socket_fd = socket (AF_UNIX, SOCK_DGRAM | SOCK_NONBLOCK, 0)) == -1)
1100 {
1101 return clib_error_return (0, "socket error");
1102 }
1103
Dave Barachb7b92992018-10-17 10:38:51 -04001104 clib_memset (&addr, 0, sizeof (addr));
Ole Troanf7a55ad2017-05-16 14:59:29 +02001105 addr.sun_family = AF_UNIX;
1106 if (*socket_path == '\0')
1107 {
1108 *addr.sun_path = '\0';
1109 strncpy (addr.sun_path + 1, socket_path + 1,
1110 sizeof (addr.sun_path) - 2);
1111 }
1112 else
1113 {
1114 strncpy (addr.sun_path, socket_path, sizeof (addr.sun_path) - 1);
1115 unlink (socket_path);
1116 }
1117
1118 if (bind (pm->socket_fd, (struct sockaddr *) &addr, sizeof (addr)) == -1)
1119 {
1120 return clib_error_return (0, "bind error");
1121 }
1122
1123 /* Register socket */
Damjan Marion56dd5432017-09-08 19:52:02 +02001124 clib_file_main_t *fm = &file_main;
1125 clib_file_t template = { 0 };
Ole Troanf7a55ad2017-05-16 14:59:29 +02001126 template.read_function = punt_socket_read_ready;
1127 template.file_descriptor = pm->socket_fd;
Damjan Marionceab7882018-01-19 20:56:12 +01001128 template.description = format (0, "%s", socket_path);
Damjan Marion56dd5432017-09-08 19:52:02 +02001129 pm->clib_file_index = clib_file_add (fm, &template);
Ole Troanf7a55ad2017-05-16 14:59:29 +02001130
1131 pm->is_configured = true;
1132
1133 return 0;
1134}
1135
1136VLIB_CONFIG_FUNCTION (punt_config, "punt");
1137
Alexander Popovsky (apopovsk)4a7e58b2016-10-05 22:31:23 -07001138/*
1139 * fd.io coding-style-patch-verification: ON
1140 *
1141 * Local Variables:
1142 * eval: (c-set-style "gnu")
1143 * End:
1144 */