blob: 26be8d095221bab24c170dcca2a16774842db7d0 [file] [log] [blame]
Dave Barach59b25652017-09-10 15:04:27 -04001/*
2 *------------------------------------------------------------------
Ole Troan94495f22018-08-02 11:58:12 +02003 * socket_api.c
Dave Barach59b25652017-09-10 15:04:27 -04004 *
5 * Copyright (c) 2009 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <sys/types.h>
21#include <sys/socket.h>
22#include <netinet/in.h>
23#include <sys/ioctl.h>
Dave Barach59b25652017-09-10 15:04:27 -040024#include <fcntl.h>
25#include <sys/stat.h>
26
Florin Corase86a8ed2018-01-05 03:20:25 -080027#include <vppinfra/byte_order.h>
Florin Coras4d9b9d82018-01-14 12:25:50 -080028#include <svm/ssvm.h>
Dave Barach59b25652017-09-10 15:04:27 -040029#include <vlibmemory/api.h>
30
31#include <vlibmemory/vl_memory_msg_enum.h>
32
33#define vl_typedefs /* define message structures */
34#include <vlibmemory/vl_memory_api_h.h>
35#undef vl_typedefs
36
37/* instantiate all the print functions we know about */
Dave Barach59b25652017-09-10 15:04:27 -040038#define vl_printfun
39#include <vlibmemory/vl_memory_api_h.h>
40#undef vl_printfun
41
42/* instantiate all the endian swap functions we know about */
43#define vl_endianfun
44#include <vlibmemory/vl_memory_api_h.h>
45#undef vl_endianfun
46
Klement Sekera9b7e8ac2021-11-22 21:26:20 +010047#define vl_calcsizefun
48#include <vlibmemory/vl_memory_api_h.h>
49#undef vl_calcsizefun
50
Florin Corase86a8ed2018-01-05 03:20:25 -080051socket_main_t socket_main;
52
Florin Coras2881dec2018-10-02 18:29:25 -070053#define SOCK_API_REG_HANDLE_BIT (1<<31)
54
55static u32
56sock_api_registration_handle (vl_api_registration_t * regp)
57{
58 ASSERT (regp->vl_api_registration_pool_index < SOCK_API_REG_HANDLE_BIT);
59 return regp->vl_api_registration_pool_index | SOCK_API_REG_HANDLE_BIT;
60}
61
62static u32
63socket_api_registration_handle_to_index (u32 reg_index)
64{
65 return (reg_index & ~SOCK_API_REG_HANDLE_BIT);
66}
67
68u8
69vl_socket_api_registration_handle_is_valid (u32 reg_handle)
70{
71 return ((reg_handle & SOCK_API_REG_HANDLE_BIT) != 0);
72}
73
Dave Barach59b25652017-09-10 15:04:27 -040074void
Florin Corase86a8ed2018-01-05 03:20:25 -080075vl_sock_api_dump_clients (vlib_main_t * vm, api_main_t * am)
Dave Barach59b25652017-09-10 15:04:27 -040076{
77 vl_api_registration_t *reg;
78 socket_main_t *sm = &socket_main;
Dave Barach59b25652017-09-10 15:04:27 -040079 clib_file_t *f;
80
81 /*
82 * Must have at least one active client, not counting the
83 * REGISTRATION_TYPE_SOCKET_LISTEN bind/accept socket
84 */
85 if (pool_elts (sm->registration_pool) < 2)
86 return;
87
88 vlib_cli_output (vm, "Socket clients");
Florin Coras90a63982017-12-19 04:50:01 -080089 vlib_cli_output (vm, "%20s %8s", "Name", "Fildesc");
Damjan Marionb2c31b62020-12-13 21:47:40 +010090 pool_foreach (reg, sm->registration_pool)
91 {
Dave Barach59b25652017-09-10 15:04:27 -040092 if (reg->registration_type == REGISTRATION_TYPE_SOCKET_SERVER) {
Florin Corasb384b542018-01-15 01:08:33 -080093 f = vl_api_registration_file (reg);
94 vlib_cli_output (vm, "%20s %8d", reg->name, f->file_descriptor);
Dave Barach59b25652017-09-10 15:04:27 -040095 }
Damjan Marionb2c31b62020-12-13 21:47:40 +010096 }
Dave Barach59b25652017-09-10 15:04:27 -040097}
98
Ole Troan94495f22018-08-02 11:58:12 +020099vl_api_registration_t *
Florin Coras2881dec2018-10-02 18:29:25 -0700100vl_socket_api_client_handle_to_registration (u32 handle)
Ole Troan94495f22018-08-02 11:58:12 +0200101{
102 socket_main_t *sm = &socket_main;
Florin Coras2881dec2018-10-02 18:29:25 -0700103 u32 index = socket_api_registration_handle_to_index (handle);
104 if (pool_is_free_index (sm->registration_pool, index))
Ole Troan94495f22018-08-02 11:58:12 +0200105 {
106#if DEBUG > 2
Florin Coras2881dec2018-10-02 18:29:25 -0700107 clib_warning ("Invalid index %d\n", index);
Ole Troan94495f22018-08-02 11:58:12 +0200108#endif
109 return 0;
110 }
Florin Coras2881dec2018-10-02 18:29:25 -0700111 return pool_elt_at_index (sm->registration_pool, index);
Ole Troan94495f22018-08-02 11:58:12 +0200112}
113
Dave Barach59b25652017-09-10 15:04:27 -0400114void
115vl_socket_api_send (vl_api_registration_t * rp, u8 * elem)
116{
Dave Barach59b25652017-09-10 15:04:27 -0400117#if CLIB_DEBUG > 1
118 u32 output_length;
119#endif
Florin Coras90a63982017-12-19 04:50:01 -0800120 socket_main_t *sm = &socket_main;
121 u16 msg_id = ntohs (*(u16 *) elem);
Dave Barach39d69112019-11-27 11:42:13 -0500122 api_main_t *am = vlibapi_get_main ();
Florin Coras90a63982017-12-19 04:50:01 -0800123 msgbuf_t *mb = (msgbuf_t *) (elem - offsetof (msgbuf_t, data));
Florin Coras90a63982017-12-19 04:50:01 -0800124 vl_api_registration_t *sock_rp;
Florin Coras8023ad42018-08-02 12:16:03 -0700125 clib_file_main_t *fm = &file_main;
126 clib_error_t *error;
Florin Corasb384b542018-01-15 01:08:33 -0800127 clib_file_t *cf;
Dave Barach59b25652017-09-10 15:04:27 -0400128
Florin Corasb384b542018-01-15 01:08:33 -0800129 cf = vl_api_registration_file (rp);
Dave Barach59b25652017-09-10 15:04:27 -0400130 ASSERT (rp->registration_type > REGISTRATION_TYPE_SHMEM);
131
Damjan Marioncada9eb2022-05-18 22:16:11 +0200132 if (msg_id >= vec_len (am->msg_data))
Dave Barach59b25652017-09-10 15:04:27 -0400133 {
134 clib_warning ("id out of range: %d", msg_id);
135 vl_msg_api_free ((void *) elem);
136 return;
137 }
138
Florin Coras90a63982017-12-19 04:50:01 -0800139 sock_rp = pool_elt_at_index (sm->registration_pool,
140 rp->vl_api_registration_pool_index);
141 ASSERT (sock_rp);
142
Dave Barach59b25652017-09-10 15:04:27 -0400143 /* Add the msgbuf_t to the output vector */
Florin Coras8023ad42018-08-02 12:16:03 -0700144 vec_add (sock_rp->output_vector, (u8 *) mb, sizeof (*mb));
145
146 /* Try to send the message and save any error like
147 * we do in the input epoll loop */
148 vec_add (sock_rp->output_vector, elem, ntohl (mb->data_len));
149 error = clib_file_write (cf);
150 unix_save_error (&unix_main, error);
151
152 /* If we didn't finish sending everything, wait for tx space */
153 if (vec_len (sock_rp->output_vector) > 0
154 && !(cf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE))
155 {
156 cf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
157 fm->file_update (cf, UNIX_FILE_UPDATE_MODIFY);
158 }
Dave Barach59b25652017-09-10 15:04:27 -0400159
160#if CLIB_DEBUG > 1
161 output_length = sizeof (*mb) + ntohl (mb->data_len);
162 clib_warning ("wrote %u bytes to fd %d", output_length,
163 cf->file_descriptor);
164#endif
165
166 vl_msg_api_free ((void *) elem);
167}
168
169void
Florin Corase86a8ed2018-01-05 03:20:25 -0800170vl_socket_free_registration_index (u32 pool_index)
Dave Barach59b25652017-09-10 15:04:27 -0400171{
172 int i;
173 vl_api_registration_t *rp;
Dave Barach38ca6e62020-07-17 17:16:34 -0400174 void vl_api_call_reaper_functions (u32 client_index);
175
Dave Barach59b25652017-09-10 15:04:27 -0400176 if (pool_is_free_index (socket_main.registration_pool, pool_index))
177 {
178 clib_warning ("main pool index %d already free", pool_index);
179 return;
180 }
181 rp = pool_elt_at_index (socket_main.registration_pool, pool_index);
182
Neale Ranns8df4baa2021-12-15 12:59:26 +0000183 vl_api_call_reaper_functions (
184 clib_host_to_net_u32 (sock_api_registration_handle (rp)));
Dave Barach38ca6e62020-07-17 17:16:34 -0400185
Dave Barach59b25652017-09-10 15:04:27 -0400186 ASSERT (rp->registration_type != REGISTRATION_TYPE_FREE);
187 for (i = 0; i < vec_len (rp->additional_fds_to_close); i++)
188 if (close (rp->additional_fds_to_close[i]) < 0)
189 clib_unix_warning ("close");
190 vec_free (rp->additional_fds_to_close);
191 vec_free (rp->name);
192 vec_free (rp->unprocessed_input);
193 vec_free (rp->output_vector);
194 rp->registration_type = REGISTRATION_TYPE_FREE;
195 pool_put (socket_main.registration_pool, rp);
196}
197
198void
Florin Coras5224b5c2019-12-06 17:05:08 -0800199vl_socket_process_api_msg (vl_api_registration_t * rp, i8 * input_v)
Dave Barach59b25652017-09-10 15:04:27 -0400200{
201 msgbuf_t *mbp = (msgbuf_t *) input_v;
202
203 u8 *the_msg = (u8 *) (mbp->data);
Dave Barach59b25652017-09-10 15:04:27 -0400204 socket_main.current_rp = rp;
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100205 vl_msg_api_socket_handler (the_msg, ntohl (mbp->data_len));
Dave Barach59b25652017-09-10 15:04:27 -0400206 socket_main.current_rp = 0;
207}
208
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000209int
210is_being_removed_reg_index (u32 reg_index)
211{
212 vl_api_registration_t *rp = vl_socket_get_registration (reg_index);
213 ALWAYS_ASSERT (rp != 0);
214 return (rp->is_being_removed);
215}
216
217static void
218socket_cleanup_pending_remove_registration_cb (u32 *preg_index)
219{
220 vl_api_registration_t *rp = vl_socket_get_registration (*preg_index);
Ole Troand7413832022-12-06 17:07:39 +0100221 if (!rp)
222 {
223 /* Might already have gone */
224 return;
225 }
226
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000227 clib_file_main_t *fm = &file_main;
228 u32 pending_remove_file_index = vl_api_registration_file_index (rp);
229
230 clib_file_t *zf = fm->file_pool + pending_remove_file_index;
231
232 clib_file_del (fm, zf);
233 vl_socket_free_registration_index (rp - socket_main.registration_pool);
234}
235
236static void
237vl_socket_request_remove_reg_index (u32 reg_index)
238{
239 vl_api_registration_t *rp = vl_socket_get_registration (reg_index);
240 ALWAYS_ASSERT (rp != 0);
241 if (rp->is_being_removed)
242 {
243 return;
244 }
245 rp->is_being_removed = 1;
246 vl_api_force_rpc_call_main_thread (
247 socket_cleanup_pending_remove_registration_cb, (void *) &reg_index,
248 sizeof (u32));
249}
250
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200251/*
252 * Read function for API socket.
253 *
254 * Read data from socket, invoke SOCKET_READ_EVENT
255 * for each fully read API message, return 0.
256 * Store incomplete data for next invocation to continue.
257 *
258 * On severe read error, the file is closed.
259 *
260 * As reading is single threaded,
261 * socket_main.input_buffer is used temporarily.
262 * Even its length is modified, but always restored before return.
263 *
264 * Incomplete data is copied into a vector,
265 * pointer saved in registration's unprocessed_input.
266 */
Dave Barach59b25652017-09-10 15:04:27 -0400267clib_error_t *
268vl_socket_read_ready (clib_file_t * uf)
269{
Dave Barach59b25652017-09-10 15:04:27 -0400270 vlib_main_t *vm = vlib_get_main ();
271 vl_api_registration_t *rp;
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200272 /* n is the size of data read to input_buffer */
Dave Barach59b25652017-09-10 15:04:27 -0400273 int n;
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200274 /* msg_buffer vector can point to input_buffer or unprocessed_input */
Dave Barach59b25652017-09-10 15:04:27 -0400275 i8 *msg_buffer = 0;
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200276 /* data_for_process is a vector containing one full message, incl msgbuf_t */
Dave Barach59b25652017-09-10 15:04:27 -0400277 u8 *data_for_process;
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200278 /* msgbuf_len is the size of one message, including sizeof (msgbuf_t) */
279 u32 msgbuf_len;
Dave Barach59b25652017-09-10 15:04:27 -0400280 u32 save_input_buffer_length = vec_len (socket_main.input_buffer);
281 vl_socket_args_for_process_t *a;
Florin Coras5224b5c2019-12-06 17:05:08 -0800282 u32 reg_index = uf->private_data;
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000283 if (is_being_removed_reg_index (reg_index))
284 {
285 return 0;
286 }
Dave Barach59b25652017-09-10 15:04:27 -0400287
Florin Coras5224b5c2019-12-06 17:05:08 -0800288 rp = vl_socket_get_registration (reg_index);
Dave Wallace7f9b6902023-08-22 23:42:02 -0400289 if (!rp)
290 {
291 return 0;
292 }
Dave Barach59b25652017-09-10 15:04:27 -0400293
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200294 /* Ignore unprocessed_input for now, n describes input_buffer for now. */
Dave Barach59b25652017-09-10 15:04:27 -0400295 n = read (uf->file_descriptor, socket_main.input_buffer,
296 vec_len (socket_main.input_buffer));
297
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200298 if (n <= 0)
Dave Barach59b25652017-09-10 15:04:27 -0400299 {
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200300 if (errno != EAGAIN)
301 {
302 /* Severe error, close the file. */
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000303 vl_socket_request_remove_reg_index (reg_index);
Dave Barach59b25652017-09-10 15:04:27 -0400304 }
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200305 /* EAGAIN means we do not close the file, but no data to process anyway. */
Dave Barach59b25652017-09-10 15:04:27 -0400306 return 0;
307 }
308
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200309 /* Fake smaller length teporarily, so input_buffer can be used as msg_buffer. */
Benoît Gannef017b812021-06-22 11:58:27 +0200310 vec_set_len (socket_main.input_buffer, n);
Dave Barach59b25652017-09-10 15:04:27 -0400311
312 /*
313 * Look for bugs here. This code is tricky because
314 * data read from a stream socket does not honor message
315 * boundaries. In the case of a long message (>4K bytes)
316 * we have to do (at least) 2 reads, etc.
317 */
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200318 /* Determine msg_buffer. */
319 if (vec_len (rp->unprocessed_input))
320 {
321 vec_append (rp->unprocessed_input, socket_main.input_buffer);
322 msg_buffer = rp->unprocessed_input;
323 }
324 else
325 {
326 msg_buffer = socket_main.input_buffer;
327 }
328 /* Loop to process any full messages. */
329 ASSERT (vec_len (msg_buffer) > 0);
Dave Barach59b25652017-09-10 15:04:27 -0400330 do
331 {
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200332 /* Here, we are not sure how big a chunk of message we have left. */
333 /* Do we at least know how big the full message will be? */
334 if (vec_len (msg_buffer) <= sizeof (msgbuf_t))
335 /* No, so fragment is not a full message. */
336 goto save_and_split;
Dave Barach59b25652017-09-10 15:04:27 -0400337
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200338 /* Now we know how big the full message will be. */
339 msgbuf_len =
340 ntohl (((msgbuf_t *) msg_buffer)->data_len) + sizeof (msgbuf_t);
Dave Barach59b25652017-09-10 15:04:27 -0400341
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200342 /* But do we have a full message? */
343 if (msgbuf_len > vec_len (msg_buffer))
Dave Barach59b25652017-09-10 15:04:27 -0400344 {
345 save_and_split:
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200346 /* We don't have the entire message yet. */
347 /* If msg_buffer is unprocessed_input, nothing needs to be done. */
Dave Barach59b25652017-09-10 15:04:27 -0400348 if (msg_buffer == socket_main.input_buffer)
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200349 /* But if we were using the input buffer, save the fragment. */
Dave Barach59b25652017-09-10 15:04:27 -0400350 {
351 ASSERT (vec_len (rp->unprocessed_input) == 0);
352 vec_validate (rp->unprocessed_input, vec_len (msg_buffer) - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500353 clib_memcpy_fast (rp->unprocessed_input, msg_buffer,
354 vec_len (msg_buffer));
Benoît Gannef017b812021-06-22 11:58:27 +0200355 vec_set_len (rp->unprocessed_input, vec_len (msg_buffer));
Dave Barach59b25652017-09-10 15:04:27 -0400356 }
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200357 /* No more full messages, restore original input_buffer length. */
Benoît Gannef017b812021-06-22 11:58:27 +0200358 vec_set_len (socket_main.input_buffer, save_input_buffer_length);
Dave Barach59b25652017-09-10 15:04:27 -0400359 return 0;
360 }
361
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200362 /*
363 * We have at least one full message.
364 * But msg_buffer can contain more data, so copy one message data
365 * so we can overwrite its length to what single message has.
366 */
Dave Barach59b25652017-09-10 15:04:27 -0400367 data_for_process = (u8 *) vec_dup (msg_buffer);
Benoît Gannef017b812021-06-22 11:58:27 +0200368 vec_set_len (data_for_process, msgbuf_len);
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200369 /* Everything is ready to signal the SOCKET_READ_EVENT. */
Dave Barach59b25652017-09-10 15:04:27 -0400370 pool_get (socket_main.process_args, a);
Florin Coras5224b5c2019-12-06 17:05:08 -0800371 a->reg_index = reg_index;
Dave Barach59b25652017-09-10 15:04:27 -0400372 a->data = data_for_process;
373
Florin Corase86a8ed2018-01-05 03:20:25 -0800374 vlib_process_signal_event (vm, vl_api_clnt_node.index,
Dave Barach59b25652017-09-10 15:04:27 -0400375 SOCKET_READ_EVENT,
376 a - socket_main.process_args);
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200377 if (vec_len (msg_buffer) > msgbuf_len)
378 /* There are some fragments left. Shrink the msg_buffer to simplify logic. */
379 vec_delete (msg_buffer, msgbuf_len, 0);
Dave Barach59b25652017-09-10 15:04:27 -0400380 else
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200381 /* We are done with msg_buffer. */
Benoît Gannef017b812021-06-22 11:58:27 +0200382 vec_set_len (msg_buffer, 0);
Dave Barach59b25652017-09-10 15:04:27 -0400383 }
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200384 while (vec_len (msg_buffer) > 0);
Dave Barach59b25652017-09-10 15:04:27 -0400385
Vratko Polak6a6af6e2019-10-07 14:52:53 +0200386 /* Restore input_buffer, it could have been msg_buffer. */
Benoît Gannef017b812021-06-22 11:58:27 +0200387 vec_set_len (socket_main.input_buffer, save_input_buffer_length);
Dave Barach59b25652017-09-10 15:04:27 -0400388 return 0;
389}
390
Dave Barach59b25652017-09-10 15:04:27 -0400391clib_error_t *
392vl_socket_write_ready (clib_file_t * uf)
393{
394 clib_file_main_t *fm = &file_main;
395 vl_api_registration_t *rp;
396 int n;
397
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000398 u32 reg_index = uf->private_data;
399 if (is_being_removed_reg_index (reg_index))
400 {
401 return 0;
402 }
403
404 rp = pool_elt_at_index (socket_main.registration_pool, reg_index);
Dave Barach59b25652017-09-10 15:04:27 -0400405
406 /* Flush output vector. */
Ole Troan94495f22018-08-02 11:58:12 +0200407 size_t total_bytes = vec_len (rp->output_vector);
408 size_t bytes_to_send, remaining_bytes = total_bytes;
409 void *p = rp->output_vector;
410 while (remaining_bytes > 0)
Dave Barach59b25652017-09-10 15:04:27 -0400411 {
Ole Troan94495f22018-08-02 11:58:12 +0200412 bytes_to_send = remaining_bytes > 4096 ? 4096 : remaining_bytes;
Ole Troand7413832022-12-06 17:07:39 +0100413 n = send (uf->file_descriptor, p, bytes_to_send, MSG_NOSIGNAL);
Ole Troan94495f22018-08-02 11:58:12 +0200414 if (n < 0)
Florin Coras8023ad42018-08-02 12:16:03 -0700415 {
Ole Troan94495f22018-08-02 11:58:12 +0200416 if (errno == EAGAIN)
417 {
418 break;
419 }
420#if DEBUG > 2
421 clib_warning ("write error, close the file...\n");
422#endif
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000423 vl_socket_request_remove_reg_index (reg_index);
Ole Troan94495f22018-08-02 11:58:12 +0200424 return 0;
Florin Coras8023ad42018-08-02 12:16:03 -0700425 }
Ole Troan94495f22018-08-02 11:58:12 +0200426 remaining_bytes -= bytes_to_send;
427 p += bytes_to_send;
428 }
429
430 vec_delete (rp->output_vector, total_bytes - remaining_bytes, 0);
431 if (vec_len (rp->output_vector) <= 0
432 && (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE))
433 {
434 uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
435 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Florin Coras8023ad42018-08-02 12:16:03 -0700436 }
Dave Barach59b25652017-09-10 15:04:27 -0400437
438 return 0;
439}
440
441clib_error_t *
442vl_socket_error_ready (clib_file_t * uf)
443{
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +0000444 u32 reg_index = uf->private_data;
445 vl_socket_request_remove_reg_index (reg_index);
Dave Barach59b25652017-09-10 15:04:27 -0400446 return 0;
447}
448
449void
450socksvr_file_add (clib_file_main_t * fm, int fd)
451{
452 vl_api_registration_t *rp;
453 clib_file_t template = { 0 };
454
455 pool_get (socket_main.registration_pool, rp);
Dave Barachb7b92992018-10-17 10:38:51 -0400456 clib_memset (rp, 0, sizeof (*rp));
Dave Barach59b25652017-09-10 15:04:27 -0400457
458 template.read_function = vl_socket_read_ready;
459 template.write_function = vl_socket_write_ready;
460 template.error_function = vl_socket_error_ready;
461 template.file_descriptor = fd;
Paul Vinciguerra5481ad42020-01-28 14:47:17 -0500462 template.description = format (0, "socksrv");
Dave Barach59b25652017-09-10 15:04:27 -0400463 template.private_data = rp - socket_main.registration_pool;
464
465 rp->registration_type = REGISTRATION_TYPE_SOCKET_SERVER;
466 rp->vl_api_registration_pool_index = rp - socket_main.registration_pool;
467 rp->clib_file_index = clib_file_add (fm, &template);
468}
469
470static clib_error_t *
471socksvr_accept_ready (clib_file_t * uf)
472{
473 clib_file_main_t *fm = &file_main;
474 socket_main_t *sm = &socket_main;
475 clib_socket_t *sock = &sm->socksvr_listen_socket;
476 clib_socket_t client;
477 clib_error_t *error;
478
479 error = clib_socket_accept (sock, &client);
Dave Barach59b25652017-09-10 15:04:27 -0400480 if (error)
481 return error;
482
483 socksvr_file_add (fm, client.fd);
484 return 0;
485}
486
487static clib_error_t *
488socksvr_bogus_write (clib_file_t * uf)
489{
490 clib_warning ("why am I here?");
491 return 0;
492}
493
494/*
495 * vl_api_sockclnt_create_t_handler
496 */
497void
498vl_api_sockclnt_create_t_handler (vl_api_sockclnt_create_t * mp)
499{
500 vl_api_registration_t *regp;
501 vl_api_sockclnt_create_reply_t *rp;
Dave Barach39d69112019-11-27 11:42:13 -0500502 api_main_t *am = vlibapi_get_main ();
Ole Troan94495f22018-08-02 11:58:12 +0200503 hash_pair_t *hp;
Florin Coras90a63982017-12-19 04:50:01 -0800504 int rv = 0;
Ole Troan94495f22018-08-02 11:58:12 +0200505 u32 nmsg = hash_elts (am->msg_index_by_name_and_crc);
506 u32 i = 0;
Dave Barach59b25652017-09-10 15:04:27 -0400507
508 regp = socket_main.current_rp;
509
Filip Tehlar36217e32021-07-23 08:51:10 +0000510 /* client already connected through shared memory? */
511 if (!regp || regp->registration_type != REGISTRATION_TYPE_SOCKET_SERVER)
512 {
513 clib_warning (
514 "unsupported API call: already connected though shared memory?");
515 return;
516 }
Dave Barach59b25652017-09-10 15:04:27 -0400517
Ole Troan7adaa222019-08-27 15:05:27 +0200518 regp->name = format (0, "%s%c", mp->name, 0);
Dave Barach59b25652017-09-10 15:04:27 -0400519
Ole Troan94495f22018-08-02 11:58:12 +0200520 u32 size = sizeof (*rp) + (nmsg * sizeof (vl_api_message_table_entry_t));
Vratko Polakfc4828c2019-07-02 11:07:24 +0200521 rp = vl_msg_api_alloc_zero (size);
Dave Barach59b25652017-09-10 15:04:27 -0400522 rp->_vl_msg_id = htons (VL_API_SOCKCLNT_CREATE_REPLY);
Florin Coras2881dec2018-10-02 18:29:25 -0700523 rp->index = htonl (sock_api_registration_handle (regp));
Dave Barach59b25652017-09-10 15:04:27 -0400524 rp->context = mp->context;
525 rp->response = htonl (rv);
Ole Troan94495f22018-08-02 11:58:12 +0200526 rp->count = htons (nmsg);
Dave Barach59b25652017-09-10 15:04:27 -0400527
Ole Troan94495f22018-08-02 11:58:12 +0200528 hash_foreach_pair (hp, am->msg_index_by_name_and_crc,
529 ({
530 rp->message_table[i].index = htons(hp->value[0]);
Dave Baracha6ef36b2020-02-11 10:29:13 -0500531 (void) strncpy_s((char *)rp->message_table[i].name,
532 64 /* bytes of space at dst */,
533 (char *)hp->key,
534 64-1 /* chars to copy, without zero byte. */);
Ole Troan94495f22018-08-02 11:58:12 +0200535 i++;
536 }));
Florin Corase86a8ed2018-01-05 03:20:25 -0800537 vl_api_send_msg (regp, (u8 *) rp);
Dave Barach59b25652017-09-10 15:04:27 -0400538}
539
540/*
541 * vl_api_sockclnt_delete_t_handler
542 */
543void
544vl_api_sockclnt_delete_t_handler (vl_api_sockclnt_delete_t * mp)
545{
546 vl_api_registration_t *regp;
547 vl_api_sockclnt_delete_reply_t *rp;
548
Ole Troan94495f22018-08-02 11:58:12 +0200549 regp = vl_api_client_index_to_registration (mp->client_index);
550 if (!regp)
551 return;
552
Ole Troan3c1cf2c2019-01-05 11:27:54 +0100553 u32 reg_index = socket_api_registration_handle_to_index (ntohl (mp->index));
Ole Troan94495f22018-08-02 11:58:12 +0200554 rp = vl_msg_api_alloc (sizeof (*rp));
555 rp->_vl_msg_id = htons (VL_API_SOCKCLNT_DELETE_REPLY);
556 rp->context = mp->context;
557
558 if (!pool_is_free_index (socket_main.registration_pool, reg_index))
Dave Barach59b25652017-09-10 15:04:27 -0400559 {
Dave Barach59b25652017-09-10 15:04:27 -0400560 rp->response = htonl (1);
Florin Corase86a8ed2018-01-05 03:20:25 -0800561 vl_api_send_msg (regp, (u8 *) rp);
Dave Barach59b25652017-09-10 15:04:27 -0400562
Florin Corasb384b542018-01-15 01:08:33 -0800563 vl_api_registration_del_file (regp);
Ole Troan94495f22018-08-02 11:58:12 +0200564 vl_socket_free_registration_index (reg_index);
Dave Barach59b25652017-09-10 15:04:27 -0400565 }
566 else
567 {
Ole Troan94495f22018-08-02 11:58:12 +0200568 clib_warning ("unknown client ID %d", reg_index);
569 rp->response = htonl (-1);
570 vl_api_send_msg (regp, (u8 *) rp);
Dave Barach59b25652017-09-10 15:04:27 -0400571 }
572}
573
Florin Corasb384b542018-01-15 01:08:33 -0800574clib_error_t *
Florin Coras466f2892018-08-03 02:50:43 -0700575vl_sock_api_send_fd_msg (int socket_fd, int fds[], int n_fds)
Dave Barach59b25652017-09-10 15:04:27 -0400576{
577 struct msghdr mh = { 0 };
578 struct iovec iov[1];
Florin Coras99368312018-08-02 10:45:44 -0700579 char ctl[CMSG_SPACE (sizeof (int) * n_fds)];
Florin Coras466f2892018-08-03 02:50:43 -0700580 struct cmsghdr *cmsg;
581 char *msg = "fdmsg";
Dave Barach59b25652017-09-10 15:04:27 -0400582 int rv;
583
584 iov[0].iov_base = msg;
585 iov[0].iov_len = strlen (msg);
586 mh.msg_iov = iov;
587 mh.msg_iovlen = 1;
588
Dave Barachb7b92992018-10-17 10:38:51 -0400589 clib_memset (&ctl, 0, sizeof (ctl));
Dave Barach59b25652017-09-10 15:04:27 -0400590 mh.msg_control = ctl;
591 mh.msg_controllen = sizeof (ctl);
592 cmsg = CMSG_FIRSTHDR (&mh);
Florin Coras466f2892018-08-03 02:50:43 -0700593 cmsg->cmsg_len = CMSG_LEN (sizeof (int) * n_fds);
Dave Barach59b25652017-09-10 15:04:27 -0400594 cmsg->cmsg_level = SOL_SOCKET;
595 cmsg->cmsg_type = SCM_RIGHTS;
Dave Barach178cf492018-11-13 16:34:13 -0500596 clib_memcpy_fast (CMSG_DATA (cmsg), fds, sizeof (int) * n_fds);
Dave Barach59b25652017-09-10 15:04:27 -0400597
Florin Coras587ea452020-08-17 20:46:34 -0700598 while ((rv = sendmsg (socket_fd, &mh, 0)) < 0 && errno == EAGAIN)
599 ;
Dave Barach59b25652017-09-10 15:04:27 -0400600 if (rv < 0)
601 return clib_error_return_unix (0, "sendmsg");
602 return 0;
603}
604
Florin Coras90a63982017-12-19 04:50:01 -0800605vl_api_shm_elem_config_t *
606vl_api_make_shm_config (vl_api_sock_init_shm_t * mp)
607{
608 vl_api_shm_elem_config_t *config = 0, *c;
609 u64 cfg;
610 int i;
611
612 if (!mp->nitems)
613 {
Dave Barach78958722018-05-10 16:44:27 -0400614 vec_validate (config, 6);
Florin Coras90a63982017-12-19 04:50:01 -0800615 config[0].type = VL_API_VLIB_RING;
Florin Coras90a63982017-12-19 04:50:01 -0800616 config[0].size = 256;
Dave Barach78958722018-05-10 16:44:27 -0400617 config[0].count = 32;
618
619 config[1].type = VL_API_VLIB_RING;
Florin Coras90a63982017-12-19 04:50:01 -0800620 config[1].size = 1024;
Dave Barach78958722018-05-10 16:44:27 -0400621 config[1].count = 16;
622
623 config[2].type = VL_API_VLIB_RING;
Florin Coras90a63982017-12-19 04:50:01 -0800624 config[2].size = 4096;
Dave Barach78958722018-05-10 16:44:27 -0400625 config[2].count = 2;
626
627 config[3].type = VL_API_CLIENT_RING;
628 config[3].size = 256;
629 config[3].count = 32;
630
631 config[4].type = VL_API_CLIENT_RING;
632 config[4].size = 1024;
633 config[4].count = 16;
634
635 config[5].type = VL_API_CLIENT_RING;
636 config[5].size = 4096;
637 config[5].count = 2;
638
639 config[6].type = VL_API_QUEUE;
640 config[6].count = 128;
641 config[6].size = sizeof (uword);
Florin Coras90a63982017-12-19 04:50:01 -0800642 }
643 else
644 {
645 vec_validate (config, mp->nitems - 1);
646 for (i = 0; i < mp->nitems; i++)
647 {
648 cfg = mp->configs[i];
649 /* Pretty much a hack but it avoids defining our own api type
650 * in memclnt.api */
651 c = (vl_api_shm_elem_config_t *) & cfg;
652 config[i].type = c->type;
653 config[i].count = c->count;
654 config[i].size = c->size;
655 }
656 }
657 return config;
658}
659
Dave Barach59b25652017-09-10 15:04:27 -0400660/*
Florin Coras90a63982017-12-19 04:50:01 -0800661 * Bootstrap shm api using the socket api
Dave Barach59b25652017-09-10 15:04:27 -0400662 */
663void
Florin Coras90a63982017-12-19 04:50:01 -0800664vl_api_sock_init_shm_t_handler (vl_api_sock_init_shm_t * mp)
Dave Barach59b25652017-09-10 15:04:27 -0400665{
Florin Coras90a63982017-12-19 04:50:01 -0800666 vl_api_sock_init_shm_reply_t *rmp;
Florin Coras4d9b9d82018-01-14 12:25:50 -0800667 ssvm_private_t _memfd_private, *memfd = &_memfd_private;
Dave Barach59b25652017-09-10 15:04:27 -0400668 svm_map_region_args_t _args, *a = &_args;
Florin Coras90a63982017-12-19 04:50:01 -0800669 vl_api_registration_t *regp;
Dave Barach39d69112019-11-27 11:42:13 -0500670 api_main_t *am = vlibapi_get_main ();
Dave Barach59b25652017-09-10 15:04:27 -0400671 svm_region_t *vlib_rp;
Florin Coras90a63982017-12-19 04:50:01 -0800672 clib_file_t *cf;
673 vl_api_shm_elem_config_t *config = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800674 vl_shmem_hdr_t *shmem_hdr;
Florin Coras1f30a592019-05-08 19:57:24 -0700675 int rv, tries = 1000;
Dave Barach59b25652017-09-10 15:04:27 -0400676
677 regp = vl_api_client_index_to_registration (mp->client_index);
Dave Barach59b25652017-09-10 15:04:27 -0400678 if (regp == 0)
679 {
680 clib_warning ("API client disconnected");
681 return;
682 }
Dave Barach59b25652017-09-10 15:04:27 -0400683 if (regp->registration_type != REGISTRATION_TYPE_SOCKET_SERVER)
684 {
wanghanlinec2c4c42021-03-02 17:18:06 +0800685 clib_warning ("Invalid registration");
686 return;
Dave Barach59b25652017-09-10 15:04:27 -0400687 }
688
Florin Coras90a63982017-12-19 04:50:01 -0800689 /*
690 * Set up a memfd segment of the requested size wherein the
691 * shmem data structures will be initialized
692 */
Dave Barachb7b92992018-10-17 10:38:51 -0400693 clib_memset (memfd, 0, sizeof (*memfd));
Florin Coras4d9b9d82018-01-14 12:25:50 -0800694 memfd->ssvm_size = mp->requested_size;
Dave Barach59b25652017-09-10 15:04:27 -0400695 memfd->requested_va = 0ULL;
Florin Coras5220a262020-09-29 18:11:24 -0700696 memfd->is_server = 1;
Dave Barach59b25652017-09-10 15:04:27 -0400697 memfd->name = format (0, "%s%c", regp->name, 0);
698
Florin Coras5220a262020-09-29 18:11:24 -0700699 if ((rv = ssvm_server_init_memfd (memfd)))
Dave Barach59b25652017-09-10 15:04:27 -0400700 goto reply;
701
Benoît Gannedf601ae2020-10-20 14:31:55 +0200702 /* delete the unused heap created in ssvm_server_init_memfd and mark it
703 * accessible again for ASAN */
704 clib_mem_destroy_heap (memfd->sh->heap);
Damjan Marion79934e82022-04-05 12:40:31 +0200705 clib_mem_unpoison ((void *) memfd->sh->ssvm_va, memfd->ssvm_size);
Benoît Gannedf601ae2020-10-20 14:31:55 +0200706
Dave Barach59b25652017-09-10 15:04:27 -0400707 /* Remember to close this fd when the socket connection goes away */
708 vec_add1 (regp->additional_fds_to_close, memfd->fd);
709
Florin Coras90a63982017-12-19 04:50:01 -0800710 /*
711 * Create a plausible svm_region in the memfd backed segment
712 */
Dave Barachb7b92992018-10-17 10:38:51 -0400713 clib_memset (a, 0, sizeof (*a));
Florin Coras4d9b9d82018-01-14 12:25:50 -0800714 a->baseva = memfd->sh->ssvm_va + MMAP_PAGESIZE;
715 a->size = memfd->ssvm_size - MMAP_PAGESIZE;
Dave Barach59b25652017-09-10 15:04:27 -0400716 /* $$$$ might want a different config parameter */
717 a->pvt_heap_size = am->api_pvt_heap_size;
718 a->flags = SVM_FLAGS_MHEAP;
719 svm_region_init_mapped_region (a, (svm_region_t *) a->baseva);
720
Dave Barach59b25652017-09-10 15:04:27 -0400721 /*
722 * Part deux, initialize the svm_region_t shared-memory header
723 * api allocation rings, and so on.
724 */
Florin Coras90a63982017-12-19 04:50:01 -0800725 config = vl_api_make_shm_config (mp);
726 vlib_rp = (svm_region_t *) a->baseva;
727 vl_init_shmem (vlib_rp, config, 1 /* is_vlib (dont-care) */ ,
728 1 /* is_private */ );
Florin Corasb384b542018-01-15 01:08:33 -0800729
730 /* Remember who created this. Needs to be post vl_init_shmem */
731 shmem_hdr = (vl_shmem_hdr_t *) vlib_rp->user_ctx;
732 shmem_hdr->clib_file_index = vl_api_registration_file_index (regp);
733
Dave Barach59b25652017-09-10 15:04:27 -0400734 vec_add1 (am->vlib_private_rps, vlib_rp);
Dave Barach59b25652017-09-10 15:04:27 -0400735 memfd->sh->ready = 1;
Florin Coras90a63982017-12-19 04:50:01 -0800736 vec_free (config);
Dave Barach59b25652017-09-10 15:04:27 -0400737
738 /* Recompute the set of input queues to poll in memclnt_process */
739 vec_reset_length (vl_api_queue_cursizes);
740
741reply:
742
Florin Coras90a63982017-12-19 04:50:01 -0800743 rmp = vl_msg_api_alloc (sizeof (*rmp));
744 rmp->_vl_msg_id = htons (VL_API_SOCK_INIT_SHM_REPLY);
745 rmp->context = mp->context;
746 rmp->retval = htonl (rv);
747
Florin Coras8023ad42018-08-02 12:16:03 -0700748 /*
749 * Note: The reply message needs to make it out the back door
750 * before we send the magic fd message. That's taken care of by
751 * the send function.
752 */
753 vl_socket_api_send (regp, (u8 *) rmp);
Florin Coras90a63982017-12-19 04:50:01 -0800754
755 if (rv != 0)
756 return;
757
Florin Coras90a63982017-12-19 04:50:01 -0800758 /* Send the magic "here's your sign (aka fd)" socket message */
Florin Coras8023ad42018-08-02 12:16:03 -0700759 cf = vl_api_registration_file (regp);
wanghanlinec2c4c42021-03-02 17:18:06 +0800760 if (!cf)
761 {
762 clib_warning ("cf removed");
763 return;
764 }
Florin Coras1f30a592019-05-08 19:57:24 -0700765
766 /* Wait for reply to be consumed before sending the fd */
767 while (tries-- > 0)
768 {
769 int bytes;
770 rv = ioctl (cf->file_descriptor, TIOCOUTQ, &bytes);
771 if (rv < 0)
772 {
773 clib_unix_warning ("ioctl returned");
774 break;
775 }
776 if (bytes == 0)
777 break;
778 usleep (1e3);
779 }
780
Florin Coras466f2892018-08-03 02:50:43 -0700781 vl_sock_api_send_fd_msg (cf->file_descriptor, &memfd->fd, 1);
Florin Coras90a63982017-12-19 04:50:01 -0800782}
783
Filip Tehlar36217e32021-07-23 08:51:10 +0000784#define foreach_vlib_api_msg \
785 _ (SOCKCLNT_CREATE, sockclnt_create, 0) \
786 _ (SOCKCLNT_DELETE, sockclnt_delete, 0) \
787 _ (SOCK_INIT_SHM, sock_init_shm, 0)
Dave Barach59b25652017-09-10 15:04:27 -0400788
789clib_error_t *
Florin Corase86a8ed2018-01-05 03:20:25 -0800790vl_sock_api_init (vlib_main_t * vm)
Dave Barach59b25652017-09-10 15:04:27 -0400791{
Filip Tehlar36217e32021-07-23 08:51:10 +0000792 api_main_t *am = vlibapi_get_main ();
Dave Barach59b25652017-09-10 15:04:27 -0400793 clib_file_main_t *fm = &file_main;
794 clib_file_t template = { 0 };
795 vl_api_registration_t *rp;
Dave Barach59b25652017-09-10 15:04:27 -0400796 socket_main_t *sm = &socket_main;
797 clib_socket_t *sock = &sm->socksvr_listen_socket;
798 clib_error_t *error;
799
800 /* If not explicitly configured, do not bind/enable, etc. */
801 if (sm->socket_name == 0)
802 return 0;
803
Filip Tehlar36217e32021-07-23 08:51:10 +0000804#define _(N, n, t) \
Damjan Mariona2eb5072022-05-20 20:06:01 +0200805 vl_msg_api_config (&(vl_msg_api_msg_config_t){ \
806 .id = VL_API_##N, \
807 .name = #n, \
808 .handler = vl_api_##n##_t_handler, \
809 .endian = vl_api_##n##_t_endian, \
810 .format_fn = vl_api_##n##_t_format, \
811 .size = sizeof (vl_api_##n##_t), \
812 .traced = t, \
813 .tojson = vl_api_##n##_t_tojson, \
814 .fromjson = vl_api_##n##_t_fromjson, \
815 .calc_size = vl_api_##n##_t_calc_size, \
816 }); \
Damjan Marioncada9eb2022-05-18 22:16:11 +0200817 am->msg_data[VL_API_##N].replay_allowed = 0;
Dave Barach59b25652017-09-10 15:04:27 -0400818 foreach_vlib_api_msg;
819#undef _
820
821 vec_resize (sm->input_buffer, 4096);
822
823 sock->config = (char *) sm->socket_name;
Ole Troan4ff09ae2019-04-15 11:27:22 +0200824 sock->flags = CLIB_SOCKET_F_IS_SERVER | CLIB_SOCKET_F_ALLOW_GROUP_WRITE;
Dave Barach59b25652017-09-10 15:04:27 -0400825 error = clib_socket_init (sock);
826 if (error)
827 return error;
828
829 pool_get (sm->registration_pool, rp);
Dave Barachb7b92992018-10-17 10:38:51 -0400830 clib_memset (rp, 0, sizeof (*rp));
Dave Barach59b25652017-09-10 15:04:27 -0400831
832 rp->registration_type = REGISTRATION_TYPE_SOCKET_LISTEN;
833
834 template.read_function = socksvr_accept_ready;
835 template.write_function = socksvr_bogus_write;
836 template.file_descriptor = sock->fd;
Paul Vinciguerra5481ad42020-01-28 14:47:17 -0500837 template.description = format (0, "socksvr %s", sock->config);
Dave Barach59b25652017-09-10 15:04:27 -0400838 template.private_data = rp - sm->registration_pool;
839
840 rp->clib_file_index = clib_file_add (fm, &template);
841 return 0;
842}
843
844static clib_error_t *
845socket_exit (vlib_main_t * vm)
846{
Dave Barach59b25652017-09-10 15:04:27 -0400847 socket_main_t *sm = &socket_main;
848 vl_api_registration_t *rp;
849
850 /* Defensive driving in case something wipes out early */
851 if (sm->registration_pool)
852 {
853 u32 index;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100854 pool_foreach (rp, sm->registration_pool) {
Florin Corasb384b542018-01-15 01:08:33 -0800855 vl_api_registration_del_file (rp);
856 index = rp->vl_api_registration_pool_index;
857 vl_socket_free_registration_index (index);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100858 }
Dave Barach59b25652017-09-10 15:04:27 -0400859 }
860
861 return 0;
862}
863
864VLIB_MAIN_LOOP_EXIT_FUNCTION (socket_exit);
865
866static clib_error_t *
867socksvr_config (vlib_main_t * vm, unformat_input_t * input)
868{
869 socket_main_t *sm = &socket_main;
870
871 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
872 {
873 if (unformat (input, "socket-name %s", &sm->socket_name))
874 ;
Ole Troan6595ff72019-08-07 13:41:39 +0200875 /* DEPRECATE: default keyword is ignored */
Dave Barach59b25652017-09-10 15:04:27 -0400876 else if (unformat (input, "default"))
Ole Troan6595ff72019-08-07 13:41:39 +0200877 ;
Dave Barach59b25652017-09-10 15:04:27 -0400878 else
879 {
880 return clib_error_return (0, "unknown input '%U'",
881 format_unformat_error, input);
882 }
883 }
Ole Troan6595ff72019-08-07 13:41:39 +0200884
885 if (!vec_len (sm->socket_name))
886 sm->socket_name = format (0, "%s/%s", vlib_unix_get_runtime_dir (),
887 API_SOCKET_FILENAME);
888 vec_terminate_c_string (sm->socket_name);
889
Dave Barach59b25652017-09-10 15:04:27 -0400890 return 0;
891}
892
893VLIB_CONFIG_FUNCTION (socksvr_config, "socksvr");
894
Dave Barachf8d50682019-05-14 18:01:44 -0400895void
896vlibsocket_reference ()
Dave Barach59b25652017-09-10 15:04:27 -0400897{
Dave Barach59b25652017-09-10 15:04:27 -0400898}
899
Dave Barach59b25652017-09-10 15:04:27 -0400900/*
901 * fd.io coding-style-patch-verification: ON
902 *
903 * Local Variables:
904 * eval: (c-set-style "gnu")
905 * End:
906 */