blob: 7082d8ba7e075b0872013f9f1ff7c25f609aad0b [file] [log] [blame]
Dave Barach59b25652017-09-10 15:04:27 -04001/*
2 *------------------------------------------------------------------
3 * socket_client.c - API message handling over sockets, client code.
4 *
5 * Copyright (c) 2017 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 <stdio.h>
Florin Coras90a63982017-12-19 04:50:01 -080021#define __USE_GNU
Nathan Moosbfa03982021-01-15 14:32:07 -080022#define _GNU_SOURCE
Florin Coras90a63982017-12-19 04:50:01 -080023#include <sys/socket.h>
Dave Barach59b25652017-09-10 15:04:27 -040024
Florin Coras4d9b9d82018-01-14 12:25:50 -080025#include <svm/ssvm.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080026#include <vlibmemory/socket_client.h>
27#include <vlibmemory/memory_client.h>
Dave Barach59b25652017-09-10 15:04:27 -040028
29#include <vlibmemory/vl_memory_msg_enum.h>
30
31#define vl_typedefs /* define message structures */
32#include <vlibmemory/vl_memory_api_h.h>
33#undef vl_typedefs
34
35#define vl_endianfun /* define message structures */
36#include <vlibmemory/vl_memory_api_h.h>
37#undef vl_endianfun
38
Klement Sekera9b7e8ac2021-11-22 21:26:20 +010039#define vl_calcsizefun
40#include <vlibmemory/vl_memory_api_h.h>
41#undef vl_calcsizefun
42
Dave Barach59b25652017-09-10 15:04:27 -040043/* instantiate all the print functions we know about */
44#define vl_print(handle, ...) clib_warning (__VA_ARGS__)
45#define vl_printfun
46#include <vlibmemory/vl_memory_api_h.h>
47#undef vl_printfun
48
49socket_client_main_t socket_client_main;
Florin Coras59cea1a2019-11-25 13:40:42 -080050__thread socket_client_main_t *socket_client_ctx = &socket_client_main;
Dave Barach59b25652017-09-10 15:04:27 -040051
52/* Debug aid */
53u32 vl (void *p) __attribute__ ((weak));
Florin Coras90a63982017-12-19 04:50:01 -080054
Dave Barach59b25652017-09-10 15:04:27 -040055u32
56vl (void *p)
57{
58 return vec_len (p);
59}
60
Florin Coras59cea1a2019-11-25 13:40:42 -080061static socket_client_main_t *
62vl_socket_client_ctx_push (socket_client_main_t * ctx)
Dave Barach59b25652017-09-10 15:04:27 -040063{
Florin Coras59cea1a2019-11-25 13:40:42 -080064 socket_client_main_t *old = socket_client_ctx;
65 socket_client_ctx = ctx;
66 return old;
67}
68
69static void
70vl_socket_client_ctx_pop (socket_client_main_t * old_ctx)
71{
72 socket_client_ctx = old_ctx;
73}
74
75static int
76vl_socket_client_read_internal (socket_client_main_t * scm, int wait)
77{
Florin Coras2881dec2018-10-02 18:29:25 -070078 u32 data_len = 0, msg_size;
Dave Barach59b25652017-09-10 15:04:27 -040079 int n, current_rx_index;
Florin Coras90a63982017-12-19 04:50:01 -080080 msgbuf_t *mbp = 0;
81 f64 timeout;
Dave Barach59b25652017-09-10 15:04:27 -040082
Florin Coras90a63982017-12-19 04:50:01 -080083 if (scm->socket_fd == 0)
84 return -1;
Dave Barach59b25652017-09-10 15:04:27 -040085
Florin Coras90a63982017-12-19 04:50:01 -080086 if (wait)
87 timeout = clib_time_now (&scm->clib_time) + wait;
Dave Barach59b25652017-09-10 15:04:27 -040088
89 while (1)
90 {
Florin Coras2881dec2018-10-02 18:29:25 -070091 while (vec_len (scm->socket_rx_buffer) < sizeof (*mbp))
Dave Barach59b25652017-09-10 15:04:27 -040092 {
Florin Coras2881dec2018-10-02 18:29:25 -070093 current_rx_index = vec_len (scm->socket_rx_buffer);
Dave Barach59b25652017-09-10 15:04:27 -040094 vec_validate (scm->socket_rx_buffer, current_rx_index
95 + scm->socket_buffer_size - 1);
96 _vec_len (scm->socket_rx_buffer) = current_rx_index;
97 n = read (scm->socket_fd, scm->socket_rx_buffer + current_rx_index,
98 scm->socket_buffer_size);
99 if (n < 0)
100 {
Florin Coras66a10032018-12-21 16:23:09 -0800101 if (errno == EAGAIN)
102 continue;
103
Dave Barach59b25652017-09-10 15:04:27 -0400104 clib_unix_warning ("socket_read");
Florin Coras90a63982017-12-19 04:50:01 -0800105 return -1;
Dave Barach59b25652017-09-10 15:04:27 -0400106 }
107 _vec_len (scm->socket_rx_buffer) += n;
108 }
109
110#if CLIB_DEBUG > 1
111 if (n > 0)
112 clib_warning ("read %d bytes", n);
113#endif
114
Florin Coras2881dec2018-10-02 18:29:25 -0700115 mbp = (msgbuf_t *) (scm->socket_rx_buffer);
116 data_len = ntohl (mbp->data_len);
117 current_rx_index = vec_len (scm->socket_rx_buffer);
118 vec_validate (scm->socket_rx_buffer, current_rx_index + data_len);
119 _vec_len (scm->socket_rx_buffer) = current_rx_index;
120 mbp = (msgbuf_t *) (scm->socket_rx_buffer);
121 msg_size = data_len + sizeof (*mbp);
Dave Barach59b25652017-09-10 15:04:27 -0400122
Florin Coras2881dec2018-10-02 18:29:25 -0700123 while (vec_len (scm->socket_rx_buffer) < msg_size)
124 {
125 n = read (scm->socket_fd,
126 scm->socket_rx_buffer + vec_len (scm->socket_rx_buffer),
127 msg_size - vec_len (scm->socket_rx_buffer));
Florin Coras66a10032018-12-21 16:23:09 -0800128 if (n < 0)
Florin Coras2881dec2018-10-02 18:29:25 -0700129 {
Florin Coras66a10032018-12-21 16:23:09 -0800130 if (errno == EAGAIN)
131 continue;
132
Florin Coras2881dec2018-10-02 18:29:25 -0700133 clib_unix_warning ("socket_read");
134 return -1;
135 }
136 _vec_len (scm->socket_rx_buffer) += n;
137 }
138
139 if (vec_len (scm->socket_rx_buffer) >= data_len + sizeof (*mbp))
Dave Barach59b25652017-09-10 15:04:27 -0400140 {
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100141 vl_msg_api_socket_handler ((void *) (mbp->data), data_len);
Dave Barach59b25652017-09-10 15:04:27 -0400142
Florin Coras2881dec2018-10-02 18:29:25 -0700143 if (vec_len (scm->socket_rx_buffer) == data_len + sizeof (*mbp))
Dave Barach59b25652017-09-10 15:04:27 -0400144 _vec_len (scm->socket_rx_buffer) = 0;
145 else
Florin Coras2881dec2018-10-02 18:29:25 -0700146 vec_delete (scm->socket_rx_buffer, data_len + sizeof (*mbp), 0);
Dave Barach59b25652017-09-10 15:04:27 -0400147 mbp = 0;
148
149 /* Quit if we're out of data, and not expecting a ping reply */
150 if (vec_len (scm->socket_rx_buffer) == 0
151 && scm->control_pings_outstanding == 0)
152 break;
153 }
Florin Coras90a63982017-12-19 04:50:01 -0800154 if (wait && clib_time_now (&scm->clib_time) >= timeout)
155 return -1;
Dave Barach59b25652017-09-10 15:04:27 -0400156 }
Florin Coras90a63982017-12-19 04:50:01 -0800157 return 0;
Dave Barach59b25652017-09-10 15:04:27 -0400158}
159
160int
Florin Coras59cea1a2019-11-25 13:40:42 -0800161vl_socket_client_read (int wait)
Dave Barach59b25652017-09-10 15:04:27 -0400162{
Florin Coras59cea1a2019-11-25 13:40:42 -0800163 return vl_socket_client_read_internal (socket_client_ctx, wait);
164}
165
166int
167vl_socket_client_read2 (socket_client_main_t * scm, int wait)
168{
169 socket_client_main_t *old_ctx;
170 int rv;
171
172 old_ctx = vl_socket_client_ctx_push (scm);
173 rv = vl_socket_client_read_internal (scm, wait);
174 vl_socket_client_ctx_pop (old_ctx);
175 return rv;
176}
177
178static int
179vl_socket_client_write_internal (socket_client_main_t * scm)
180{
Florin Coras90a63982017-12-19 04:50:01 -0800181 int n;
182
183 msgbuf_t msgbuf = {
184 .q = 0,
185 .gc_mark_timestamp = 0,
186 .data_len = htonl (scm->socket_tx_nbytes),
187 };
188
189 n = write (scm->socket_fd, &msgbuf, sizeof (msgbuf));
190 if (n < sizeof (msgbuf))
191 {
192 clib_unix_warning ("socket write (msgbuf)");
193 return -1;
194 }
195
196 n = write (scm->socket_fd, scm->socket_tx_buffer, scm->socket_tx_nbytes);
197 if (n < scm->socket_tx_nbytes)
198 {
199 clib_unix_warning ("socket write (msg)");
200 return -1;
201 }
202
203 return n;
204}
205
Florin Coras59cea1a2019-11-25 13:40:42 -0800206int
207vl_socket_client_write (void)
208{
209 return vl_socket_client_write_internal (socket_client_ctx);
210}
211
212int
213vl_socket_client_write2 (socket_client_main_t * scm)
214{
215 socket_client_main_t *old_ctx;
216 int rv;
217
218 old_ctx = vl_socket_client_ctx_push (scm);
219 rv = vl_socket_client_write_internal (scm);
220 vl_socket_client_ctx_pop (old_ctx);
221 return rv;
222}
223
224void *
225vl_socket_client_msg_alloc2 (socket_client_main_t * scm, int nbytes)
226{
227 scm->socket_tx_nbytes = nbytes;
228 return ((void *) scm->socket_tx_buffer);
229}
230
Florin Coras90a63982017-12-19 04:50:01 -0800231void *
232vl_socket_client_msg_alloc (int nbytes)
233{
Florin Coras59cea1a2019-11-25 13:40:42 -0800234 return vl_socket_client_msg_alloc2 (socket_client_ctx, nbytes);
Florin Coras90a63982017-12-19 04:50:01 -0800235}
236
237void
Florin Coras59cea1a2019-11-25 13:40:42 -0800238vl_socket_client_disconnect2 (socket_client_main_t * scm)
Florin Coras90a63982017-12-19 04:50:01 -0800239{
Florin Corasb384b542018-01-15 01:08:33 -0800240 if (vl_mem_client_is_connected ())
241 {
242 vl_client_disconnect_from_vlib_no_unmap ();
243 ssvm_delete_memfd (&scm->memfd_segment);
244 }
Florin Coras90a63982017-12-19 04:50:01 -0800245 if (scm->socket_fd && (close (scm->socket_fd) < 0))
246 clib_unix_warning ("close");
247 scm->socket_fd = 0;
248}
249
250void
Florin Coras59cea1a2019-11-25 13:40:42 -0800251vl_socket_client_disconnect (void)
252{
253 vl_socket_client_disconnect2 (socket_client_ctx);
254}
255
256void
257vl_socket_client_enable_disable2 (socket_client_main_t * scm, int enable)
258{
259 scm->socket_enable = enable;
260}
261
262void
Florin Coras90a63982017-12-19 04:50:01 -0800263vl_socket_client_enable_disable (int enable)
264{
Florin Coras59cea1a2019-11-25 13:40:42 -0800265 vl_socket_client_enable_disable2 (socket_client_ctx, enable);
Florin Coras90a63982017-12-19 04:50:01 -0800266}
267
Florin Corasd4c70922019-11-28 14:21:21 -0800268static clib_error_t *
269vl_sock_api_recv_fd_msg_internal (socket_client_main_t * scm, int fds[],
270 int n_fds, u32 wait)
Florin Coras90a63982017-12-19 04:50:01 -0800271{
272 char msgbuf[16];
Florin Coras466f2892018-08-03 02:50:43 -0700273 char ctl[CMSG_SPACE (sizeof (int) * n_fds)
274 + CMSG_SPACE (sizeof (struct ucred))];
Florin Coras90a63982017-12-19 04:50:01 -0800275 struct msghdr mh = { 0 };
276 struct iovec iov[1];
Florin Corasb384b542018-01-15 01:08:33 -0800277 ssize_t size = 0;
Florin Coras90a63982017-12-19 04:50:01 -0800278 struct ucred *cr = 0;
279 struct cmsghdr *cmsg;
280 pid_t pid __attribute__ ((unused));
281 uid_t uid __attribute__ ((unused));
282 gid_t gid __attribute__ ((unused));
Florin Corasd4c70922019-11-28 14:21:21 -0800283 int socket_fd;
Florin Corasb384b542018-01-15 01:08:33 -0800284 f64 timeout;
Florin Coras90a63982017-12-19 04:50:01 -0800285
Florin Corasd4c70922019-11-28 14:21:21 -0800286 socket_fd = scm->client_socket.fd;
287
Florin Coras90a63982017-12-19 04:50:01 -0800288 iov[0].iov_base = msgbuf;
289 iov[0].iov_len = 5;
290 mh.msg_iov = iov;
291 mh.msg_iovlen = 1;
292 mh.msg_control = ctl;
293 mh.msg_controllen = sizeof (ctl);
294
Dave Barachb7b92992018-10-17 10:38:51 -0400295 clib_memset (ctl, 0, sizeof (ctl));
Florin Coras90a63982017-12-19 04:50:01 -0800296
Florin Corasb384b542018-01-15 01:08:33 -0800297 if (wait != ~0)
298 {
299 timeout = clib_time_now (&scm->clib_time) + wait;
300 while (size != 5 && clib_time_now (&scm->clib_time) < timeout)
301 size = recvmsg (socket_fd, &mh, MSG_DONTWAIT);
302 }
303 else
304 size = recvmsg (socket_fd, &mh, 0);
305
Florin Coras90a63982017-12-19 04:50:01 -0800306 if (size != 5)
307 {
308 return (size == 0) ? clib_error_return (0, "disconnected") :
309 clib_error_return_unix (0, "recvmsg: malformed message (fd %d)",
310 socket_fd);
311 }
312
313 cmsg = CMSG_FIRSTHDR (&mh);
314 while (cmsg)
315 {
316 if (cmsg->cmsg_level == SOL_SOCKET)
317 {
318 if (cmsg->cmsg_type == SCM_CREDENTIALS)
319 {
320 cr = (struct ucred *) CMSG_DATA (cmsg);
321 uid = cr->uid;
322 gid = cr->gid;
323 pid = cr->pid;
324 }
325 else if (cmsg->cmsg_type == SCM_RIGHTS)
326 {
Dave Barach178cf492018-11-13 16:34:13 -0500327 clib_memcpy_fast (fds, CMSG_DATA (cmsg), sizeof (int) * n_fds);
Florin Coras90a63982017-12-19 04:50:01 -0800328 }
329 }
330 cmsg = CMSG_NXTHDR (&mh, cmsg);
331 }
332 return 0;
333}
334
Florin Corasd4c70922019-11-28 14:21:21 -0800335clib_error_t *
336vl_sock_api_recv_fd_msg (int socket_fd, int fds[], int n_fds, u32 wait)
337{
338 return vl_sock_api_recv_fd_msg_internal (socket_client_ctx, fds, n_fds,
339 wait);
340}
341
342clib_error_t *
343vl_sock_api_recv_fd_msg2 (socket_client_main_t * scm, int socket_fd,
344 int fds[], int n_fds, u32 wait)
345{
346 socket_client_main_t *old_ctx;
347 clib_error_t *error;
348
349 old_ctx = vl_socket_client_ctx_push (scm);
350 error = vl_sock_api_recv_fd_msg_internal (scm, fds, n_fds, wait);
351 vl_socket_client_ctx_pop (old_ctx);
352 return error;
353}
354
Florin Coras90a63982017-12-19 04:50:01 -0800355static void vl_api_sock_init_shm_reply_t_handler
356 (vl_api_sock_init_shm_reply_t * mp)
357{
Florin Coras59cea1a2019-11-25 13:40:42 -0800358 socket_client_main_t *scm = socket_client_ctx;
Florin Corasb384b542018-01-15 01:08:33 -0800359 ssvm_private_t *memfd = &scm->memfd_segment;
Florin Coras90a63982017-12-19 04:50:01 -0800360 i32 retval = ntohl (mp->retval);
Dave Barach39d69112019-11-27 11:42:13 -0500361 api_main_t *am = vlibapi_get_main ();
Florin Corasb384b542018-01-15 01:08:33 -0800362 clib_error_t *error;
363 int my_fd = -1;
Florin Coras90a63982017-12-19 04:50:01 -0800364 u8 *new_name;
365
366 if (retval)
367 {
368 clib_warning ("failed to init shmem");
369 return;
370 }
371
372 /*
373 * Check the socket for the magic fd
374 */
Florin Coras466f2892018-08-03 02:50:43 -0700375 error = vl_sock_api_recv_fd_msg (scm->socket_fd, &my_fd, 1, 5);
Florin Coras90a63982017-12-19 04:50:01 -0800376 if (error)
377 {
Florin Corasb384b542018-01-15 01:08:33 -0800378 clib_error_report (error);
Florin Coras90a63982017-12-19 04:50:01 -0800379 retval = -99;
380 return;
381 }
382
Dave Barachb7b92992018-10-17 10:38:51 -0400383 clib_memset (memfd, 0, sizeof (*memfd));
Florin Corasb384b542018-01-15 01:08:33 -0800384 memfd->fd = my_fd;
Florin Coras90a63982017-12-19 04:50:01 -0800385
386 /* Note: this closes memfd.fd */
Florin Coras5220a262020-09-29 18:11:24 -0700387 retval = ssvm_client_init_memfd (memfd);
Florin Coras90a63982017-12-19 04:50:01 -0800388 if (retval)
389 clib_warning ("WARNING: segment map returned %d", retval);
390
391 /*
392 * Pivot to the memory client segment that vpp just created
393 */
Florin Corasb384b542018-01-15 01:08:33 -0800394 am->vlib_rp = (void *) (memfd->requested_va + MMAP_PAGESIZE);
Florin Coras90a63982017-12-19 04:50:01 -0800395 am->shmem_hdr = (void *) am->vlib_rp->user_ctx;
396
397 new_name = format (0, "%v[shm]%c", scm->name, 0);
398 vl_client_install_client_message_handlers ();
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100399 if (scm->want_shm_pthread)
400 {
401 vl_client_connect_to_vlib_no_map ("pvt", (char *) new_name,
402 32 /* input_queue_length */ );
403 }
404 else
405 {
406 vl_client_connect_to_vlib_no_rx_pthread_no_map ("pvt",
407 (char *) new_name, 32
408 /* input_queue_length */
409 );
410 }
Florin Coras90a63982017-12-19 04:50:01 -0800411 vl_socket_client_enable_disable (0);
412 vec_free (new_name);
413}
414
415static void
416vl_api_sockclnt_create_reply_t_handler (vl_api_sockclnt_create_reply_t * mp)
417{
Florin Coras59cea1a2019-11-25 13:40:42 -0800418 socket_client_main_t *scm = socket_client_ctx;
Florin Coras90a63982017-12-19 04:50:01 -0800419 if (!mp->response)
Florin Coras2881dec2018-10-02 18:29:25 -0700420 {
421 scm->socket_enable = 1;
422 scm->client_index = clib_net_to_host_u32 (mp->index);
423 }
Florin Coras90a63982017-12-19 04:50:01 -0800424}
425
426#define foreach_sock_client_api_msg \
427_(SOCKCLNT_CREATE_REPLY, sockclnt_create_reply) \
428_(SOCK_INIT_SHM_REPLY, sock_init_shm_reply) \
429
430static void
431noop_handler (void *notused)
432{
433}
434
435void
436vl_sock_client_install_message_handlers (void)
437{
438
Filip Tehlar36217e32021-07-23 08:51:10 +0000439#define _(N, n) \
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100440 vl_msg_api_set_handlers ( \
441 VL_API_##N, #n, vl_api_##n##_t_handler, noop_handler, \
442 vl_api_##n##_t_endian, vl_api_##n##_t_print, sizeof (vl_api_##n##_t), 0, \
443 vl_api_##n##_t_print_json, vl_api_##n##_t_tojson, \
444 vl_api_##n##_t_fromjson, vl_api_##n##_t_calc_size);
Florin Coras90a63982017-12-19 04:50:01 -0800445 foreach_sock_client_api_msg;
446#undef _
447}
448
449int
Florin Coras59cea1a2019-11-25 13:40:42 -0800450vl_socket_client_connect_internal (socket_client_main_t * scm,
451 char *socket_path, char *client_name,
452 u32 socket_buffer_size)
Florin Coras90a63982017-12-19 04:50:01 -0800453{
Dave Barach59b25652017-09-10 15:04:27 -0400454 vl_api_sockclnt_create_t *mp;
Florin Coras90a63982017-12-19 04:50:01 -0800455 clib_socket_t *sock;
Dave Barach59b25652017-09-10 15:04:27 -0400456 clib_error_t *error;
457
458 /* Already connected? */
459 if (scm->socket_fd)
460 return (-2);
461
462 /* bogus call? */
463 if (socket_path == 0 || client_name == 0)
464 return (-3);
465
Florin Coras90a63982017-12-19 04:50:01 -0800466 sock = &scm->client_socket;
Dave Barach59b25652017-09-10 15:04:27 -0400467 sock->config = socket_path;
Florin Coras5fe94572021-05-24 08:58:15 -0700468 sock->flags = CLIB_SOCKET_F_IS_CLIENT;
Dave Barach59b25652017-09-10 15:04:27 -0400469
Florin Coras90a63982017-12-19 04:50:01 -0800470 if ((error = clib_socket_init (sock)))
Dave Barach59b25652017-09-10 15:04:27 -0400471 {
472 clib_error_report (error);
473 return (-1);
474 }
475
Florin Coras90a63982017-12-19 04:50:01 -0800476 vl_sock_client_install_message_handlers ();
477
Dave Barach59b25652017-09-10 15:04:27 -0400478 scm->socket_fd = sock->fd;
Dave Barach59b25652017-09-10 15:04:27 -0400479 scm->socket_buffer_size = socket_buffer_size ? socket_buffer_size :
480 SOCKET_CLIENT_DEFAULT_BUFFER_SIZE;
481 vec_validate (scm->socket_tx_buffer, scm->socket_buffer_size - 1);
482 vec_validate (scm->socket_rx_buffer, scm->socket_buffer_size - 1);
483 _vec_len (scm->socket_rx_buffer) = 0;
Florin Coras90a63982017-12-19 04:50:01 -0800484 _vec_len (scm->socket_tx_buffer) = 0;
485 scm->name = format (0, "%s", client_name);
Dave Barach59b25652017-09-10 15:04:27 -0400486
Florin Coras59cea1a2019-11-25 13:40:42 -0800487 mp = vl_socket_client_msg_alloc2 (scm, sizeof (*mp));
Florin Coras90a63982017-12-19 04:50:01 -0800488 mp->_vl_msg_id = htons (VL_API_SOCKCLNT_CREATE);
Ole Troan7adaa222019-08-27 15:05:27 +0200489 strncpy ((char *) mp->name, client_name, sizeof (mp->name) - 1);
490 mp->name[sizeof (mp->name) - 1] = 0;
Florin Coras90a63982017-12-19 04:50:01 -0800491 mp->context = 0xfeedface;
492
Florin Coras2881dec2018-10-02 18:29:25 -0700493 clib_time_init (&scm->clib_time);
494
Florin Coras59cea1a2019-11-25 13:40:42 -0800495 if (vl_socket_client_write_internal (scm) <= 0)
Florin Coras90a63982017-12-19 04:50:01 -0800496 return (-1);
497
Florin Coras59cea1a2019-11-25 13:40:42 -0800498 if (vl_socket_client_read_internal (scm, 5))
Florin Coras90a63982017-12-19 04:50:01 -0800499 return (-1);
500
Dave Barach59b25652017-09-10 15:04:27 -0400501 return (0);
502}
503
Florin Coras90a63982017-12-19 04:50:01 -0800504int
Florin Coras59cea1a2019-11-25 13:40:42 -0800505vl_socket_client_connect (char *socket_path, char *client_name,
506 u32 socket_buffer_size)
Dave Barach59b25652017-09-10 15:04:27 -0400507{
Florin Coras59cea1a2019-11-25 13:40:42 -0800508 return vl_socket_client_connect_internal (socket_client_ctx, socket_path,
509 client_name, socket_buffer_size);
510}
511
512int
513vl_socket_client_connect2 (socket_client_main_t * scm, char *socket_path,
514 char *client_name, u32 socket_buffer_size)
515{
516 socket_client_main_t *old_ctx;
517 int rv;
518
519 old_ctx = vl_socket_client_ctx_push (scm);
520 rv = vl_socket_client_connect_internal (socket_client_ctx, socket_path,
521 client_name, socket_buffer_size);
522 vl_socket_client_ctx_pop (old_ctx);
523 return rv;
524}
525
526int
527vl_socket_client_init_shm_internal (socket_client_main_t * scm,
528 vl_api_shm_elem_config_t * config,
529 int want_pthread)
530{
Florin Coras90a63982017-12-19 04:50:01 -0800531 vl_api_sock_init_shm_t *mp;
532 int rv, i;
533 u64 *cfg;
Dave Barach59b25652017-09-10 15:04:27 -0400534
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100535 scm->want_shm_pthread = want_pthread;
536
Florin Coras59cea1a2019-11-25 13:40:42 -0800537 mp = vl_socket_client_msg_alloc2 (scm, sizeof (*mp) +
538 vec_len (config) * sizeof (u64));
Dave Barachb7b92992018-10-17 10:38:51 -0400539 clib_memset (mp, 0, sizeof (*mp));
Florin Coras90a63982017-12-19 04:50:01 -0800540 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_SOCK_INIT_SHM);
Florin Coras2881dec2018-10-02 18:29:25 -0700541 mp->client_index = clib_host_to_net_u32 (scm->client_index);
Florin Coras90a63982017-12-19 04:50:01 -0800542 mp->requested_size = 64 << 20;
543
544 if (config)
545 {
546 for (i = 0; i < vec_len (config); i++)
547 {
548 cfg = (u64 *) & config[i];
549 mp->configs[i] = *cfg;
550 }
551 mp->nitems = vec_len (config);
552 }
Florin Coras59cea1a2019-11-25 13:40:42 -0800553 rv = vl_socket_client_write_internal (scm);
Florin Coras90a63982017-12-19 04:50:01 -0800554 if (rv <= 0)
555 return rv;
556
Florin Coras59cea1a2019-11-25 13:40:42 -0800557 if (vl_socket_client_read_internal (scm, 1))
Florin Coras90a63982017-12-19 04:50:01 -0800558 return -1;
559
560 return 0;
Dave Barach59b25652017-09-10 15:04:27 -0400561}
562
Florin Coras59cea1a2019-11-25 13:40:42 -0800563int
564vl_socket_client_init_shm (vl_api_shm_elem_config_t * config,
565 int want_pthread)
Florin Corasb384b542018-01-15 01:08:33 -0800566{
Florin Coras59cea1a2019-11-25 13:40:42 -0800567 return vl_socket_client_init_shm_internal (socket_client_ctx, config,
568 want_pthread);
569}
570
571int
572vl_socket_client_init_shm2 (socket_client_main_t * scm,
573 vl_api_shm_elem_config_t * config,
574 int want_pthread)
575{
576 socket_client_main_t *old_ctx;
577 int rv;
578
579 old_ctx = vl_socket_client_ctx_push (scm);
580 rv = vl_socket_client_init_shm_internal (socket_client_ctx, config,
581 want_pthread);
582 vl_socket_client_ctx_pop (old_ctx);
583 return rv;
584}
585
586clib_error_t *
587vl_socket_client_recv_fd_msg2 (socket_client_main_t * scm, int fds[],
588 int n_fds, u32 wait)
589{
Florin Corasb384b542018-01-15 01:08:33 -0800590 if (!scm->socket_fd)
591 return clib_error_return (0, "no socket");
Florin Corasd4c70922019-11-28 14:21:21 -0800592 return vl_sock_api_recv_fd_msg_internal (scm, fds, n_fds, wait);
Florin Corasb384b542018-01-15 01:08:33 -0800593}
594
Florin Coras59cea1a2019-11-25 13:40:42 -0800595clib_error_t *
596vl_socket_client_recv_fd_msg (int fds[], int n_fds, u32 wait)
597{
598 return vl_socket_client_recv_fd_msg2 (socket_client_ctx, fds, n_fds, wait);
599}
600
Dave Barach59b25652017-09-10 15:04:27 -0400601/*
602 * fd.io coding-style-patch-verification: ON
603 *
604 * Local Variables:
605 * eval: (c-set-style "gnu")
606 * End:
607 */