blob: 530a99677f4eb69362d484fd9c214c4a7e21412f [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
39/* instantiate all the print functions we know about */
40#define vl_print(handle, ...) clib_warning (__VA_ARGS__)
41#define vl_printfun
42#include <vlibmemory/vl_memory_api_h.h>
43#undef vl_printfun
44
45socket_client_main_t socket_client_main;
Florin Coras59cea1a2019-11-25 13:40:42 -080046__thread socket_client_main_t *socket_client_ctx = &socket_client_main;
Dave Barach59b25652017-09-10 15:04:27 -040047
48/* Debug aid */
49u32 vl (void *p) __attribute__ ((weak));
Florin Coras90a63982017-12-19 04:50:01 -080050
Dave Barach59b25652017-09-10 15:04:27 -040051u32
52vl (void *p)
53{
54 return vec_len (p);
55}
56
Florin Coras59cea1a2019-11-25 13:40:42 -080057static socket_client_main_t *
58vl_socket_client_ctx_push (socket_client_main_t * ctx)
Dave Barach59b25652017-09-10 15:04:27 -040059{
Florin Coras59cea1a2019-11-25 13:40:42 -080060 socket_client_main_t *old = socket_client_ctx;
61 socket_client_ctx = ctx;
62 return old;
63}
64
65static void
66vl_socket_client_ctx_pop (socket_client_main_t * old_ctx)
67{
68 socket_client_ctx = old_ctx;
69}
70
71static int
72vl_socket_client_read_internal (socket_client_main_t * scm, int wait)
73{
Florin Coras2881dec2018-10-02 18:29:25 -070074 u32 data_len = 0, msg_size;
Dave Barach59b25652017-09-10 15:04:27 -040075 int n, current_rx_index;
Florin Coras90a63982017-12-19 04:50:01 -080076 msgbuf_t *mbp = 0;
77 f64 timeout;
Dave Barach59b25652017-09-10 15:04:27 -040078
Florin Coras90a63982017-12-19 04:50:01 -080079 if (scm->socket_fd == 0)
80 return -1;
Dave Barach59b25652017-09-10 15:04:27 -040081
Florin Coras90a63982017-12-19 04:50:01 -080082 if (wait)
83 timeout = clib_time_now (&scm->clib_time) + wait;
Dave Barach59b25652017-09-10 15:04:27 -040084
85 while (1)
86 {
Florin Coras2881dec2018-10-02 18:29:25 -070087 while (vec_len (scm->socket_rx_buffer) < sizeof (*mbp))
Dave Barach59b25652017-09-10 15:04:27 -040088 {
Florin Coras2881dec2018-10-02 18:29:25 -070089 current_rx_index = vec_len (scm->socket_rx_buffer);
Dave Barach59b25652017-09-10 15:04:27 -040090 vec_validate (scm->socket_rx_buffer, current_rx_index
91 + scm->socket_buffer_size - 1);
92 _vec_len (scm->socket_rx_buffer) = current_rx_index;
93 n = read (scm->socket_fd, scm->socket_rx_buffer + current_rx_index,
94 scm->socket_buffer_size);
95 if (n < 0)
96 {
Florin Coras66a10032018-12-21 16:23:09 -080097 if (errno == EAGAIN)
98 continue;
99
Dave Barach59b25652017-09-10 15:04:27 -0400100 clib_unix_warning ("socket_read");
Florin Coras90a63982017-12-19 04:50:01 -0800101 return -1;
Dave Barach59b25652017-09-10 15:04:27 -0400102 }
103 _vec_len (scm->socket_rx_buffer) += n;
104 }
105
106#if CLIB_DEBUG > 1
107 if (n > 0)
108 clib_warning ("read %d bytes", n);
109#endif
110
Florin Coras2881dec2018-10-02 18:29:25 -0700111 mbp = (msgbuf_t *) (scm->socket_rx_buffer);
112 data_len = ntohl (mbp->data_len);
113 current_rx_index = vec_len (scm->socket_rx_buffer);
114 vec_validate (scm->socket_rx_buffer, current_rx_index + data_len);
115 _vec_len (scm->socket_rx_buffer) = current_rx_index;
116 mbp = (msgbuf_t *) (scm->socket_rx_buffer);
117 msg_size = data_len + sizeof (*mbp);
Dave Barach59b25652017-09-10 15:04:27 -0400118
Florin Coras2881dec2018-10-02 18:29:25 -0700119 while (vec_len (scm->socket_rx_buffer) < msg_size)
120 {
121 n = read (scm->socket_fd,
122 scm->socket_rx_buffer + vec_len (scm->socket_rx_buffer),
123 msg_size - vec_len (scm->socket_rx_buffer));
Florin Coras66a10032018-12-21 16:23:09 -0800124 if (n < 0)
Florin Coras2881dec2018-10-02 18:29:25 -0700125 {
Florin Coras66a10032018-12-21 16:23:09 -0800126 if (errno == EAGAIN)
127 continue;
128
Florin Coras2881dec2018-10-02 18:29:25 -0700129 clib_unix_warning ("socket_read");
130 return -1;
131 }
132 _vec_len (scm->socket_rx_buffer) += n;
133 }
134
135 if (vec_len (scm->socket_rx_buffer) >= data_len + sizeof (*mbp))
Dave Barach59b25652017-09-10 15:04:27 -0400136 {
137 vl_msg_api_socket_handler ((void *) (mbp->data));
138
Florin Coras2881dec2018-10-02 18:29:25 -0700139 if (vec_len (scm->socket_rx_buffer) == data_len + sizeof (*mbp))
Dave Barach59b25652017-09-10 15:04:27 -0400140 _vec_len (scm->socket_rx_buffer) = 0;
141 else
Florin Coras2881dec2018-10-02 18:29:25 -0700142 vec_delete (scm->socket_rx_buffer, data_len + sizeof (*mbp), 0);
Dave Barach59b25652017-09-10 15:04:27 -0400143 mbp = 0;
144
145 /* Quit if we're out of data, and not expecting a ping reply */
146 if (vec_len (scm->socket_rx_buffer) == 0
147 && scm->control_pings_outstanding == 0)
148 break;
149 }
Florin Coras90a63982017-12-19 04:50:01 -0800150 if (wait && clib_time_now (&scm->clib_time) >= timeout)
151 return -1;
Dave Barach59b25652017-09-10 15:04:27 -0400152 }
Florin Coras90a63982017-12-19 04:50:01 -0800153 return 0;
Dave Barach59b25652017-09-10 15:04:27 -0400154}
155
156int
Florin Coras59cea1a2019-11-25 13:40:42 -0800157vl_socket_client_read (int wait)
Dave Barach59b25652017-09-10 15:04:27 -0400158{
Florin Coras59cea1a2019-11-25 13:40:42 -0800159 return vl_socket_client_read_internal (socket_client_ctx, wait);
160}
161
162int
163vl_socket_client_read2 (socket_client_main_t * scm, int wait)
164{
165 socket_client_main_t *old_ctx;
166 int rv;
167
168 old_ctx = vl_socket_client_ctx_push (scm);
169 rv = vl_socket_client_read_internal (scm, wait);
170 vl_socket_client_ctx_pop (old_ctx);
171 return rv;
172}
173
174static int
175vl_socket_client_write_internal (socket_client_main_t * scm)
176{
Florin Coras90a63982017-12-19 04:50:01 -0800177 int n;
178
179 msgbuf_t msgbuf = {
180 .q = 0,
181 .gc_mark_timestamp = 0,
182 .data_len = htonl (scm->socket_tx_nbytes),
183 };
184
185 n = write (scm->socket_fd, &msgbuf, sizeof (msgbuf));
186 if (n < sizeof (msgbuf))
187 {
188 clib_unix_warning ("socket write (msgbuf)");
189 return -1;
190 }
191
192 n = write (scm->socket_fd, scm->socket_tx_buffer, scm->socket_tx_nbytes);
193 if (n < scm->socket_tx_nbytes)
194 {
195 clib_unix_warning ("socket write (msg)");
196 return -1;
197 }
198
199 return n;
200}
201
Florin Coras59cea1a2019-11-25 13:40:42 -0800202int
203vl_socket_client_write (void)
204{
205 return vl_socket_client_write_internal (socket_client_ctx);
206}
207
208int
209vl_socket_client_write2 (socket_client_main_t * scm)
210{
211 socket_client_main_t *old_ctx;
212 int rv;
213
214 old_ctx = vl_socket_client_ctx_push (scm);
215 rv = vl_socket_client_write_internal (scm);
216 vl_socket_client_ctx_pop (old_ctx);
217 return rv;
218}
219
220void *
221vl_socket_client_msg_alloc2 (socket_client_main_t * scm, int nbytes)
222{
223 scm->socket_tx_nbytes = nbytes;
224 return ((void *) scm->socket_tx_buffer);
225}
226
Florin Coras90a63982017-12-19 04:50:01 -0800227void *
228vl_socket_client_msg_alloc (int nbytes)
229{
Florin Coras59cea1a2019-11-25 13:40:42 -0800230 return vl_socket_client_msg_alloc2 (socket_client_ctx, nbytes);
Florin Coras90a63982017-12-19 04:50:01 -0800231}
232
233void
Florin Coras59cea1a2019-11-25 13:40:42 -0800234vl_socket_client_disconnect2 (socket_client_main_t * scm)
Florin Coras90a63982017-12-19 04:50:01 -0800235{
Florin Corasb384b542018-01-15 01:08:33 -0800236 if (vl_mem_client_is_connected ())
237 {
238 vl_client_disconnect_from_vlib_no_unmap ();
239 ssvm_delete_memfd (&scm->memfd_segment);
240 }
Florin Coras90a63982017-12-19 04:50:01 -0800241 if (scm->socket_fd && (close (scm->socket_fd) < 0))
242 clib_unix_warning ("close");
243 scm->socket_fd = 0;
244}
245
246void
Florin Coras59cea1a2019-11-25 13:40:42 -0800247vl_socket_client_disconnect (void)
248{
249 vl_socket_client_disconnect2 (socket_client_ctx);
250}
251
252void
253vl_socket_client_enable_disable2 (socket_client_main_t * scm, int enable)
254{
255 scm->socket_enable = enable;
256}
257
258void
Florin Coras90a63982017-12-19 04:50:01 -0800259vl_socket_client_enable_disable (int enable)
260{
Florin Coras59cea1a2019-11-25 13:40:42 -0800261 vl_socket_client_enable_disable2 (socket_client_ctx, enable);
Florin Coras90a63982017-12-19 04:50:01 -0800262}
263
Florin Corasd4c70922019-11-28 14:21:21 -0800264static clib_error_t *
265vl_sock_api_recv_fd_msg_internal (socket_client_main_t * scm, int fds[],
266 int n_fds, u32 wait)
Florin Coras90a63982017-12-19 04:50:01 -0800267{
268 char msgbuf[16];
Florin Coras466f2892018-08-03 02:50:43 -0700269 char ctl[CMSG_SPACE (sizeof (int) * n_fds)
270 + CMSG_SPACE (sizeof (struct ucred))];
Florin Coras90a63982017-12-19 04:50:01 -0800271 struct msghdr mh = { 0 };
272 struct iovec iov[1];
Florin Corasb384b542018-01-15 01:08:33 -0800273 ssize_t size = 0;
Florin Coras90a63982017-12-19 04:50:01 -0800274 struct ucred *cr = 0;
275 struct cmsghdr *cmsg;
276 pid_t pid __attribute__ ((unused));
277 uid_t uid __attribute__ ((unused));
278 gid_t gid __attribute__ ((unused));
Florin Corasd4c70922019-11-28 14:21:21 -0800279 int socket_fd;
Florin Corasb384b542018-01-15 01:08:33 -0800280 f64 timeout;
Florin Coras90a63982017-12-19 04:50:01 -0800281
Florin Corasd4c70922019-11-28 14:21:21 -0800282 socket_fd = scm->client_socket.fd;
283
Florin Coras90a63982017-12-19 04:50:01 -0800284 iov[0].iov_base = msgbuf;
285 iov[0].iov_len = 5;
286 mh.msg_iov = iov;
287 mh.msg_iovlen = 1;
288 mh.msg_control = ctl;
289 mh.msg_controllen = sizeof (ctl);
290
Dave Barachb7b92992018-10-17 10:38:51 -0400291 clib_memset (ctl, 0, sizeof (ctl));
Florin Coras90a63982017-12-19 04:50:01 -0800292
Florin Corasb384b542018-01-15 01:08:33 -0800293 if (wait != ~0)
294 {
295 timeout = clib_time_now (&scm->clib_time) + wait;
296 while (size != 5 && clib_time_now (&scm->clib_time) < timeout)
297 size = recvmsg (socket_fd, &mh, MSG_DONTWAIT);
298 }
299 else
300 size = recvmsg (socket_fd, &mh, 0);
301
Florin Coras90a63982017-12-19 04:50:01 -0800302 if (size != 5)
303 {
304 return (size == 0) ? clib_error_return (0, "disconnected") :
305 clib_error_return_unix (0, "recvmsg: malformed message (fd %d)",
306 socket_fd);
307 }
308
309 cmsg = CMSG_FIRSTHDR (&mh);
310 while (cmsg)
311 {
312 if (cmsg->cmsg_level == SOL_SOCKET)
313 {
314 if (cmsg->cmsg_type == SCM_CREDENTIALS)
315 {
316 cr = (struct ucred *) CMSG_DATA (cmsg);
317 uid = cr->uid;
318 gid = cr->gid;
319 pid = cr->pid;
320 }
321 else if (cmsg->cmsg_type == SCM_RIGHTS)
322 {
Dave Barach178cf492018-11-13 16:34:13 -0500323 clib_memcpy_fast (fds, CMSG_DATA (cmsg), sizeof (int) * n_fds);
Florin Coras90a63982017-12-19 04:50:01 -0800324 }
325 }
326 cmsg = CMSG_NXTHDR (&mh, cmsg);
327 }
328 return 0;
329}
330
Florin Corasd4c70922019-11-28 14:21:21 -0800331clib_error_t *
332vl_sock_api_recv_fd_msg (int socket_fd, int fds[], int n_fds, u32 wait)
333{
334 return vl_sock_api_recv_fd_msg_internal (socket_client_ctx, fds, n_fds,
335 wait);
336}
337
338clib_error_t *
339vl_sock_api_recv_fd_msg2 (socket_client_main_t * scm, int socket_fd,
340 int fds[], int n_fds, u32 wait)
341{
342 socket_client_main_t *old_ctx;
343 clib_error_t *error;
344
345 old_ctx = vl_socket_client_ctx_push (scm);
346 error = vl_sock_api_recv_fd_msg_internal (scm, fds, n_fds, wait);
347 vl_socket_client_ctx_pop (old_ctx);
348 return error;
349}
350
Florin Coras90a63982017-12-19 04:50:01 -0800351static void vl_api_sock_init_shm_reply_t_handler
352 (vl_api_sock_init_shm_reply_t * mp)
353{
Florin Coras59cea1a2019-11-25 13:40:42 -0800354 socket_client_main_t *scm = socket_client_ctx;
Florin Corasb384b542018-01-15 01:08:33 -0800355 ssvm_private_t *memfd = &scm->memfd_segment;
Florin Coras90a63982017-12-19 04:50:01 -0800356 i32 retval = ntohl (mp->retval);
Dave Barach39d69112019-11-27 11:42:13 -0500357 api_main_t *am = vlibapi_get_main ();
Florin Corasb384b542018-01-15 01:08:33 -0800358 clib_error_t *error;
359 int my_fd = -1;
Florin Coras90a63982017-12-19 04:50:01 -0800360 u8 *new_name;
361
362 if (retval)
363 {
364 clib_warning ("failed to init shmem");
365 return;
366 }
367
368 /*
369 * Check the socket for the magic fd
370 */
Florin Coras466f2892018-08-03 02:50:43 -0700371 error = vl_sock_api_recv_fd_msg (scm->socket_fd, &my_fd, 1, 5);
Florin Coras90a63982017-12-19 04:50:01 -0800372 if (error)
373 {
Florin Corasb384b542018-01-15 01:08:33 -0800374 clib_error_report (error);
Florin Coras90a63982017-12-19 04:50:01 -0800375 retval = -99;
376 return;
377 }
378
Dave Barachb7b92992018-10-17 10:38:51 -0400379 clib_memset (memfd, 0, sizeof (*memfd));
Florin Corasb384b542018-01-15 01:08:33 -0800380 memfd->fd = my_fd;
Florin Coras90a63982017-12-19 04:50:01 -0800381
382 /* Note: this closes memfd.fd */
Florin Coras5220a262020-09-29 18:11:24 -0700383 retval = ssvm_client_init_memfd (memfd);
Florin Coras90a63982017-12-19 04:50:01 -0800384 if (retval)
385 clib_warning ("WARNING: segment map returned %d", retval);
386
387 /*
388 * Pivot to the memory client segment that vpp just created
389 */
Florin Corasb384b542018-01-15 01:08:33 -0800390 am->vlib_rp = (void *) (memfd->requested_va + MMAP_PAGESIZE);
Florin Coras90a63982017-12-19 04:50:01 -0800391 am->shmem_hdr = (void *) am->vlib_rp->user_ctx;
392
393 new_name = format (0, "%v[shm]%c", scm->name, 0);
394 vl_client_install_client_message_handlers ();
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100395 if (scm->want_shm_pthread)
396 {
397 vl_client_connect_to_vlib_no_map ("pvt", (char *) new_name,
398 32 /* input_queue_length */ );
399 }
400 else
401 {
402 vl_client_connect_to_vlib_no_rx_pthread_no_map ("pvt",
403 (char *) new_name, 32
404 /* input_queue_length */
405 );
406 }
Florin Coras90a63982017-12-19 04:50:01 -0800407 vl_socket_client_enable_disable (0);
408 vec_free (new_name);
409}
410
411static void
412vl_api_sockclnt_create_reply_t_handler (vl_api_sockclnt_create_reply_t * mp)
413{
Florin Coras59cea1a2019-11-25 13:40:42 -0800414 socket_client_main_t *scm = socket_client_ctx;
Florin Coras90a63982017-12-19 04:50:01 -0800415 if (!mp->response)
Florin Coras2881dec2018-10-02 18:29:25 -0700416 {
417 scm->socket_enable = 1;
418 scm->client_index = clib_net_to_host_u32 (mp->index);
419 }
Florin Coras90a63982017-12-19 04:50:01 -0800420}
421
422#define foreach_sock_client_api_msg \
423_(SOCKCLNT_CREATE_REPLY, sockclnt_create_reply) \
424_(SOCK_INIT_SHM_REPLY, sock_init_shm_reply) \
425
426static void
427noop_handler (void *notused)
428{
429}
430
431void
432vl_sock_client_install_message_handlers (void)
433{
434
435#define _(N,n) \
436 vl_msg_api_set_handlers(VL_API_##N, #n, \
437 vl_api_##n##_t_handler, \
438 noop_handler, \
439 vl_api_##n##_t_endian, \
440 vl_api_##n##_t_print, \
441 sizeof(vl_api_##n##_t), 1);
442 foreach_sock_client_api_msg;
443#undef _
444}
445
446int
Florin Coras59cea1a2019-11-25 13:40:42 -0800447vl_socket_client_connect_internal (socket_client_main_t * scm,
448 char *socket_path, char *client_name,
449 u32 socket_buffer_size)
Florin Coras90a63982017-12-19 04:50:01 -0800450{
Dave Barach59b25652017-09-10 15:04:27 -0400451 vl_api_sockclnt_create_t *mp;
Florin Coras90a63982017-12-19 04:50:01 -0800452 clib_socket_t *sock;
Dave Barach59b25652017-09-10 15:04:27 -0400453 clib_error_t *error;
454
455 /* Already connected? */
456 if (scm->socket_fd)
457 return (-2);
458
459 /* bogus call? */
460 if (socket_path == 0 || client_name == 0)
461 return (-3);
462
Florin Coras90a63982017-12-19 04:50:01 -0800463 sock = &scm->client_socket;
Dave Barach59b25652017-09-10 15:04:27 -0400464 sock->config = socket_path;
Ole Troan4ff09ae2019-04-15 11:27:22 +0200465 sock->flags = CLIB_SOCKET_F_IS_CLIENT | CLIB_SOCKET_F_NON_BLOCKING_CONNECT;
Dave Barach59b25652017-09-10 15:04:27 -0400466
Florin Coras90a63982017-12-19 04:50:01 -0800467 if ((error = clib_socket_init (sock)))
Dave Barach59b25652017-09-10 15:04:27 -0400468 {
469 clib_error_report (error);
470 return (-1);
471 }
472
Florin Coras90a63982017-12-19 04:50:01 -0800473 vl_sock_client_install_message_handlers ();
474
Dave Barach59b25652017-09-10 15:04:27 -0400475 scm->socket_fd = sock->fd;
Dave Barach59b25652017-09-10 15:04:27 -0400476 scm->socket_buffer_size = socket_buffer_size ? socket_buffer_size :
477 SOCKET_CLIENT_DEFAULT_BUFFER_SIZE;
478 vec_validate (scm->socket_tx_buffer, scm->socket_buffer_size - 1);
479 vec_validate (scm->socket_rx_buffer, scm->socket_buffer_size - 1);
480 _vec_len (scm->socket_rx_buffer) = 0;
Florin Coras90a63982017-12-19 04:50:01 -0800481 _vec_len (scm->socket_tx_buffer) = 0;
482 scm->name = format (0, "%s", client_name);
Dave Barach59b25652017-09-10 15:04:27 -0400483
Florin Coras59cea1a2019-11-25 13:40:42 -0800484 mp = vl_socket_client_msg_alloc2 (scm, sizeof (*mp));
Florin Coras90a63982017-12-19 04:50:01 -0800485 mp->_vl_msg_id = htons (VL_API_SOCKCLNT_CREATE);
Ole Troan7adaa222019-08-27 15:05:27 +0200486 strncpy ((char *) mp->name, client_name, sizeof (mp->name) - 1);
487 mp->name[sizeof (mp->name) - 1] = 0;
Florin Coras90a63982017-12-19 04:50:01 -0800488 mp->context = 0xfeedface;
489
Florin Coras2881dec2018-10-02 18:29:25 -0700490 clib_time_init (&scm->clib_time);
491
Florin Coras59cea1a2019-11-25 13:40:42 -0800492 if (vl_socket_client_write_internal (scm) <= 0)
Florin Coras90a63982017-12-19 04:50:01 -0800493 return (-1);
494
Florin Coras59cea1a2019-11-25 13:40:42 -0800495 if (vl_socket_client_read_internal (scm, 5))
Florin Coras90a63982017-12-19 04:50:01 -0800496 return (-1);
497
Dave Barach59b25652017-09-10 15:04:27 -0400498 return (0);
499}
500
Florin Coras90a63982017-12-19 04:50:01 -0800501int
Florin Coras59cea1a2019-11-25 13:40:42 -0800502vl_socket_client_connect (char *socket_path, char *client_name,
503 u32 socket_buffer_size)
Dave Barach59b25652017-09-10 15:04:27 -0400504{
Florin Coras59cea1a2019-11-25 13:40:42 -0800505 return vl_socket_client_connect_internal (socket_client_ctx, socket_path,
506 client_name, socket_buffer_size);
507}
508
509int
510vl_socket_client_connect2 (socket_client_main_t * scm, char *socket_path,
511 char *client_name, u32 socket_buffer_size)
512{
513 socket_client_main_t *old_ctx;
514 int rv;
515
516 old_ctx = vl_socket_client_ctx_push (scm);
517 rv = vl_socket_client_connect_internal (socket_client_ctx, socket_path,
518 client_name, socket_buffer_size);
519 vl_socket_client_ctx_pop (old_ctx);
520 return rv;
521}
522
523int
524vl_socket_client_init_shm_internal (socket_client_main_t * scm,
525 vl_api_shm_elem_config_t * config,
526 int want_pthread)
527{
Florin Coras90a63982017-12-19 04:50:01 -0800528 vl_api_sock_init_shm_t *mp;
529 int rv, i;
530 u64 *cfg;
Dave Barach59b25652017-09-10 15:04:27 -0400531
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100532 scm->want_shm_pthread = want_pthread;
533
Florin Coras59cea1a2019-11-25 13:40:42 -0800534 mp = vl_socket_client_msg_alloc2 (scm, sizeof (*mp) +
535 vec_len (config) * sizeof (u64));
Dave Barachb7b92992018-10-17 10:38:51 -0400536 clib_memset (mp, 0, sizeof (*mp));
Florin Coras90a63982017-12-19 04:50:01 -0800537 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_SOCK_INIT_SHM);
Florin Coras2881dec2018-10-02 18:29:25 -0700538 mp->client_index = clib_host_to_net_u32 (scm->client_index);
Florin Coras90a63982017-12-19 04:50:01 -0800539 mp->requested_size = 64 << 20;
540
541 if (config)
542 {
543 for (i = 0; i < vec_len (config); i++)
544 {
545 cfg = (u64 *) & config[i];
546 mp->configs[i] = *cfg;
547 }
548 mp->nitems = vec_len (config);
549 }
Florin Coras59cea1a2019-11-25 13:40:42 -0800550 rv = vl_socket_client_write_internal (scm);
Florin Coras90a63982017-12-19 04:50:01 -0800551 if (rv <= 0)
552 return rv;
553
Florin Coras59cea1a2019-11-25 13:40:42 -0800554 if (vl_socket_client_read_internal (scm, 1))
Florin Coras90a63982017-12-19 04:50:01 -0800555 return -1;
556
557 return 0;
Dave Barach59b25652017-09-10 15:04:27 -0400558}
559
Florin Coras59cea1a2019-11-25 13:40:42 -0800560int
561vl_socket_client_init_shm (vl_api_shm_elem_config_t * config,
562 int want_pthread)
Florin Corasb384b542018-01-15 01:08:33 -0800563{
Florin Coras59cea1a2019-11-25 13:40:42 -0800564 return vl_socket_client_init_shm_internal (socket_client_ctx, config,
565 want_pthread);
566}
567
568int
569vl_socket_client_init_shm2 (socket_client_main_t * scm,
570 vl_api_shm_elem_config_t * config,
571 int want_pthread)
572{
573 socket_client_main_t *old_ctx;
574 int rv;
575
576 old_ctx = vl_socket_client_ctx_push (scm);
577 rv = vl_socket_client_init_shm_internal (socket_client_ctx, config,
578 want_pthread);
579 vl_socket_client_ctx_pop (old_ctx);
580 return rv;
581}
582
583clib_error_t *
584vl_socket_client_recv_fd_msg2 (socket_client_main_t * scm, int fds[],
585 int n_fds, u32 wait)
586{
Florin Corasb384b542018-01-15 01:08:33 -0800587 if (!scm->socket_fd)
588 return clib_error_return (0, "no socket");
Florin Corasd4c70922019-11-28 14:21:21 -0800589 return vl_sock_api_recv_fd_msg_internal (scm, fds, n_fds, wait);
Florin Corasb384b542018-01-15 01:08:33 -0800590}
591
Florin Coras59cea1a2019-11-25 13:40:42 -0800592clib_error_t *
593vl_socket_client_recv_fd_msg (int fds[], int n_fds, u32 wait)
594{
595 return vl_socket_client_recv_fd_msg2 (socket_client_ctx, fds, n_fds, wait);
596}
597
Dave Barach59b25652017-09-10 15:04:27 -0400598/*
599 * fd.io coding-style-patch-verification: ON
600 *
601 * Local Variables:
602 * eval: (c-set-style "gnu")
603 * End:
604 */