blob: bb377f1b531eb35f0a89991d89a152e1e33199bb [file] [log] [blame]
Dave Barach371e4e12016-07-08 09:38:52 -04001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
3 * memory_client.c - API message handling, client code.
4 *
5 * Copyright (c) 2010 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
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <setjmp.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021
Florin Corase86a8ed2018-01-05 03:20:25 -080022#include <svm/svm.h>
Florin Coras4d9b9d82018-01-14 12:25:50 -080023#include <svm/ssvm.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080024#include <vppinfra/serialize.h>
25#include <vppinfra/hash.h>
26#include <vlibmemory/memory_client.h>
27
28/* A hack. vl_client_get_first_plugin_msg_id depends on it */
29#include <vlibmemory/socket_client.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
31#include <vlibmemory/vl_memory_msg_enum.h>
32
Dave Barach371e4e12016-07-08 09:38:52 -040033#define vl_typedefs /* define message structures */
34#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070035#undef vl_typedefs
36
Dave Barach371e4e12016-07-08 09:38:52 -040037#define vl_endianfun /* define message structures */
38#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070039#undef vl_endianfun
40
41/* instantiate all the print functions we know about */
42#define vl_print(handle, ...) clib_warning (__VA_ARGS__)
43#define vl_printfun
44#include <vlibmemory/vl_memory_api_h.h>
45#undef vl_printfun
46
Ed Warnickecb9cada2015-12-08 15:45:58 -070047memory_client_main_t memory_client_main;
48
Dave Barach371e4e12016-07-08 09:38:52 -040049static void *
50rx_thread_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -070051{
Florin Corase86a8ed2018-01-05 03:20:25 -080052 svm_queue_t *q;
Dave Barach371e4e12016-07-08 09:38:52 -040053 memory_client_main_t *mm = &memory_client_main;
54 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Dave Barach371e4e12016-07-08 09:38:52 -040056 q = am->vl_input_queue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057
Dave Barach371e4e12016-07-08 09:38:52 -040058 /* So we can make the rx thread terminate cleanly */
59 if (setjmp (mm->rx_thread_jmpbuf) == 0)
60 {
61 mm->rx_thread_jmpbuf_valid = 1;
Nathan Skrzypczakd516ca42019-08-01 18:14:06 +020062 clib_mem_set_thread_index ();
Dave Barachcf5e8482017-10-17 11:48:29 -040063 while (1)
64 vl_msg_api_queue_handler (q);
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 }
Dave Barach371e4e12016-07-08 09:38:52 -040066 pthread_exit (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070067}
68
Dave Barach371e4e12016-07-08 09:38:52 -040069static void
70vl_api_rx_thread_exit_t_handler (vl_api_rx_thread_exit_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070071{
Dave Barach371e4e12016-07-08 09:38:52 -040072 memory_client_main_t *mm = &memory_client_main;
Ole Troanc5607892019-04-10 19:32:02 +020073 if (mm->rx_thread_jmpbuf_valid)
74 longjmp (mm->rx_thread_jmpbuf, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -070075}
76
Dave Barach371e4e12016-07-08 09:38:52 -040077static void
Ole Troan73710c72018-06-04 22:27:49 +020078vl_api_name_and_crc_free (void)
79{
80 api_main_t *am = &api_main;
81 int i;
82 u8 **keys = 0;
83 hash_pair_t *hp;
84
85 if (!am->msg_index_by_name_and_crc)
86 return;
87
88 /* *INDENT-OFF* */
89 hash_foreach_pair (hp, am->msg_index_by_name_and_crc,
90 ({
91 vec_add1 (keys, (u8 *) hp->key);
92 }));
93 /* *INDENT-ON* */
94 for (i = 0; i < vec_len (keys); i++)
95 vec_free (keys[i]);
96 vec_free (keys);
97 hash_free (am->msg_index_by_name_and_crc);
98}
99
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200100CLIB_NOSANITIZE_ADDR static void
101VL_API_VEC_UNPOISON (const void *v)
102{
103 const vec_header_t *vh = &((vec_header_t *) v)[-1];
104 CLIB_MEM_UNPOISON (vh, sizeof (*vh) + vec_len (v));
105}
106
Ole Troan73710c72018-06-04 22:27:49 +0200107static void
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400108vl_api_memclnt_create_reply_t_handler (vl_api_memclnt_create_reply_t * mp)
109{
110 serialize_main_t _sm, *sm = &_sm;
111 api_main_t *am = &api_main;
112 u8 *tblv;
113 u32 nmsgs;
114 int i;
115 u8 *name_and_crc;
116 u32 msg_index;
117
118 am->my_client_index = mp->index;
119 am->my_registration = (vl_api_registration_t *) (uword) mp->handle;
120
121 /* Clean out any previous hash table (unlikely) */
Ole Troan73710c72018-06-04 22:27:49 +0200122 vl_api_name_and_crc_free ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400123
124 am->msg_index_by_name_and_crc = hash_create_string (0, sizeof (uword));
125
126 /* Recreate the vnet-side API message handler table */
Damjan Marion7bee80c2017-04-26 15:32:12 +0200127 tblv = uword_to_pointer (mp->message_table, u8 *);
Dave Barachcf5e8482017-10-17 11:48:29 -0400128 unserialize_open_data (sm, tblv, vec_len (tblv));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400129 unserialize_integer (sm, &nmsgs, sizeof (u32));
130
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200131 VL_API_VEC_UNPOISON (tblv);
132
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400133 for (i = 0; i < nmsgs; i++)
134 {
135 msg_index = unserialize_likely_small_unsigned_integer (sm);
136 unserialize_cstring (sm, (char **) &name_and_crc);
137 hash_set_mem (am->msg_index_by_name_and_crc, name_and_crc, msg_index);
138 }
139}
140
141static void
Dave Barach371e4e12016-07-08 09:38:52 -0400142noop_handler (void *notused)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143{
144}
145
Ole Troan2e1c8962019-04-10 09:44:23 +0200146void vl_msg_api_send_shmem (svm_queue_t * q, u8 * elem);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400147int
Neale Rannse72be392017-04-26 13:59:20 -0700148vl_client_connect (const char *name, int ctx_quota, int input_queue_size)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400149{
150 svm_region_t *svm;
151 vl_api_memclnt_create_t *mp;
152 vl_api_memclnt_create_reply_t *rp;
Florin Corase86a8ed2018-01-05 03:20:25 -0800153 svm_queue_t *vl_input_queue;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400154 vl_shmem_hdr_t *shmem_hdr;
155 int rv = 0;
156 void *oldheap;
157 api_main_t *am = &api_main;
158
159 if (am->my_registration)
160 {
161 clib_warning ("client %s already connected...", name);
162 return -1;
163 }
164
165 if (am->vlib_rp == 0)
166 {
167 clib_warning ("am->vlib_rp NULL");
168 return -1;
169 }
170
171 svm = am->vlib_rp;
172 shmem_hdr = am->shmem_hdr;
173
174 if (shmem_hdr == 0 || shmem_hdr->vl_input_queue == 0)
175 {
176 clib_warning ("shmem_hdr / input queue NULL");
177 return -1;
178 }
179
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200180 CLIB_MEM_UNPOISON (shmem_hdr, sizeof (*shmem_hdr));
181 VL_MSG_API_SVM_QUEUE_UNPOISON (shmem_hdr->vl_input_queue);
182
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400183 pthread_mutex_lock (&svm->mutex);
184 oldheap = svm_push_data_heap (svm);
Florin Corasc470e222018-08-01 07:53:18 -0700185 vl_input_queue = svm_queue_alloc_and_init (input_queue_size, sizeof (uword),
186 getpid ());
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400187 svm_pop_heap (oldheap);
Ole Troan73710c72018-06-04 22:27:49 +0200188 pthread_mutex_unlock (&svm->mutex);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400189
190 am->my_client_index = ~0;
191 am->my_registration = 0;
192 am->vl_input_queue = vl_input_queue;
193
194 mp = vl_msg_api_alloc (sizeof (vl_api_memclnt_create_t));
Dave Barachb7b92992018-10-17 10:38:51 -0400195 clib_memset (mp, 0, sizeof (*mp));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400196 mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_CREATE);
197 mp->ctx_quota = ctx_quota;
198 mp->input_queue = (uword) vl_input_queue;
Ole Troan7adaa222019-08-27 15:05:27 +0200199 strncpy ((char *) mp->name, name, sizeof (mp->name) - 1);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400200
201 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
202
203 while (1)
204 {
205 int qstatus;
206 struct timespec ts, tsrem;
207 int i;
208
209 /* Wait up to 10 seconds */
210 for (i = 0; i < 1000; i++)
211 {
Florin Corase86a8ed2018-01-05 03:20:25 -0800212 qstatus = svm_queue_sub (vl_input_queue, (u8 *) & rp,
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100213 SVM_Q_NOWAIT, 0);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400214 if (qstatus == 0)
215 goto read_one_msg;
216 ts.tv_sec = 0;
217 ts.tv_nsec = 10000 * 1000; /* 10 ms */
218 while (nanosleep (&ts, &tsrem) < 0)
219 ts = tsrem;
220 }
221 /* Timeout... */
222 clib_warning ("memclnt_create_reply timeout");
223 return -1;
224
225 read_one_msg:
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200226 VL_MSG_API_UNPOISON (rp);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400227 if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_CREATE_REPLY)
228 {
229 clib_warning ("unexpected reply: id %d", ntohs (rp->_vl_msg_id));
230 continue;
231 }
232 rv = clib_net_to_host_u32 (rp->response);
233
234 vl_msg_api_handler ((void *) rp);
235 break;
236 }
237 return (rv);
238}
239
240static void
241vl_api_memclnt_delete_reply_t_handler (vl_api_memclnt_delete_reply_t * mp)
242{
243 void *oldheap;
244 api_main_t *am = &api_main;
245
246 pthread_mutex_lock (&am->vlib_rp->mutex);
247 oldheap = svm_push_data_heap (am->vlib_rp);
Florin Corase86a8ed2018-01-05 03:20:25 -0800248 svm_queue_free (am->vl_input_queue);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400249 pthread_mutex_unlock (&am->vlib_rp->mutex);
250 svm_pop_heap (oldheap);
251
252 am->my_client_index = ~0;
253 am->my_registration = 0;
254 am->vl_input_queue = 0;
255}
256
Florin Coras940f78f2018-11-30 12:11:20 -0800257void
Florin Coraseaec2a62018-12-04 16:34:05 -0800258vl_client_send_disconnect (u8 do_cleanup)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400259{
260 vl_api_memclnt_delete_t *mp;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400261 vl_shmem_hdr_t *shmem_hdr;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400262 api_main_t *am = &api_main;
263
264 ASSERT (am->vlib_rp);
265 shmem_hdr = am->shmem_hdr;
266 ASSERT (shmem_hdr && shmem_hdr->vl_input_queue);
267
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400268 mp = vl_msg_api_alloc (sizeof (vl_api_memclnt_delete_t));
Dave Barachb7b92992018-10-17 10:38:51 -0400269 clib_memset (mp, 0, sizeof (*mp));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400270 mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_DELETE);
271 mp->index = am->my_client_index;
272 mp->handle = (uword) am->my_registration;
Florin Coraseaec2a62018-12-04 16:34:05 -0800273 mp->do_cleanup = do_cleanup;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400274
275 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
Florin Coras940f78f2018-11-30 12:11:20 -0800276}
277
278int
279vl_client_disconnect (void)
280{
281 vl_api_memclnt_delete_reply_t *rp;
282 svm_queue_t *vl_input_queue;
283 api_main_t *am = &api_main;
284 time_t begin;
285
286 vl_input_queue = am->vl_input_queue;
Florin Coraseaec2a62018-12-04 16:34:05 -0800287 vl_client_send_disconnect (0 /* wait for reply */ );
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400288
289 /*
290 * Have to be careful here, in case the client is disconnecting
291 * because e.g. the vlib process died, or is unresponsive.
292 */
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400293 begin = time (0);
294 while (1)
295 {
296 time_t now;
297
298 now = time (0);
299
300 if (now >= (begin + 2))
301 {
302 clib_warning ("peer unresponsive, give up");
303 am->my_client_index = ~0;
304 am->my_registration = 0;
305 am->shmem_hdr = 0;
Florin Corasd6c30d92018-01-29 05:11:24 -0800306 return -1;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400307 }
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100308 if (svm_queue_sub (vl_input_queue, (u8 *) & rp, SVM_Q_NOWAIT, 0) < 0)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400309 continue;
310
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200311 VL_MSG_API_UNPOISON (rp);
312
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400313 /* drain the queue */
314 if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_DELETE_REPLY)
315 {
Dave Barachcf5e8482017-10-17 11:48:29 -0400316 clib_warning ("queue drain: %d", ntohs (rp->_vl_msg_id));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400317 vl_msg_api_handler ((void *) rp);
318 continue;
319 }
320 vl_msg_api_handler ((void *) rp);
321 break;
322 }
Ole Troan73710c72018-06-04 22:27:49 +0200323
324 vl_api_name_and_crc_free ();
Florin Corasd6c30d92018-01-29 05:11:24 -0800325 return 0;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400326}
327
Dave Barach59b25652017-09-10 15:04:27 -0400328/**
329 * Stave off the binary API dead client reaper
330 * Only sent to inactive clients
331 */
332static void
333vl_api_memclnt_keepalive_t_handler (vl_api_memclnt_keepalive_t * mp)
334{
335 vl_api_memclnt_keepalive_reply_t *rmp;
336 api_main_t *am;
337 vl_shmem_hdr_t *shmem_hdr;
338
339 am = &api_main;
340 shmem_hdr = am->shmem_hdr;
341
342 rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400343 clib_memset (rmp, 0, sizeof (*rmp));
Dave Barach59b25652017-09-10 15:04:27 -0400344 rmp->_vl_msg_id = ntohs (VL_API_MEMCLNT_KEEPALIVE_REPLY);
345 rmp->context = mp->context;
346 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & rmp);
347}
348
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400349#define foreach_api_msg \
350_(RX_THREAD_EXIT, rx_thread_exit) \
351_(MEMCLNT_CREATE_REPLY, memclnt_create_reply) \
Dave Barach59b25652017-09-10 15:04:27 -0400352_(MEMCLNT_DELETE_REPLY, memclnt_delete_reply) \
353_(MEMCLNT_KEEPALIVE, memclnt_keepalive)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400354
Dave Barach59b25652017-09-10 15:04:27 -0400355void
356vl_client_install_client_message_handlers (void)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400357{
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400358
359#define _(N,n) \
360 vl_msg_api_set_handlers(VL_API_##N, #n, \
361 vl_api_##n##_t_handler, \
362 noop_handler, \
363 vl_api_##n##_t_endian, \
364 vl_api_##n##_t_print, \
365 sizeof(vl_api_##n##_t), 1);
366 foreach_api_msg;
367#undef _
Dave Barach59b25652017-09-10 15:04:27 -0400368}
369
Dave Barach59b25652017-09-10 15:04:27 -0400370int
371vl_client_api_map (const char *region_name)
372{
373 int rv;
374
375 if ((rv = vl_map_shmem (region_name, 0 /* is_vlib */ )) < 0)
376 return rv;
377
378 vl_client_install_client_message_handlers ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400379 return 0;
380}
381
382void
383vl_client_api_unmap (void)
384{
Florin Corasd6c30d92018-01-29 05:11:24 -0800385 vl_unmap_shmem_client ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400386}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
Florin Corasb384b542018-01-15 01:08:33 -0800388u8
389vl_mem_client_is_connected (void)
390{
391 return (memory_client_main.connected_to_vlib != 0);
392}
393
Dave Barach371e4e12016-07-08 09:38:52 -0400394static int
Neale Rannse72be392017-04-26 13:59:20 -0700395connect_to_vlib_internal (const char *svm_name,
396 const char *client_name,
Dave Barach920180e2019-11-14 08:03:48 -0500397 int rx_queue_size, void *(*thread_fn) (void *),
398 int do_map)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399{
Dave Barach371e4e12016-07-08 09:38:52 -0400400 int rv = 0;
401 memory_client_main_t *mm = &memory_client_main;
IJsbrand Wijnands82295802019-10-08 13:50:55 +0200402 api_main_t *am = &api_main;
Dave Barach371e4e12016-07-08 09:38:52 -0400403
Dave Barach59b25652017-09-10 15:04:27 -0400404 if (do_map && (rv = vl_client_api_map (svm_name)))
Dave Barach371e4e12016-07-08 09:38:52 -0400405 {
406 clib_warning ("vl_client_api map rv %d", rv);
407 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 }
Dave Barach371e4e12016-07-08 09:38:52 -0400409
Dave Barach371e4e12016-07-08 09:38:52 -0400410 if (vl_client_connect (client_name, 0 /* punt quota */ ,
411 rx_queue_size /* input queue */ ) < 0)
412 {
413 vl_client_api_unmap ();
414 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 }
416
Dave Barach371e4e12016-07-08 09:38:52 -0400417 /* Start the rx queue thread */
418
Dave Barach920180e2019-11-14 08:03:48 -0500419 if (thread_fn)
Dave Barach371e4e12016-07-08 09:38:52 -0400420 {
421 rv = pthread_create (&mm->rx_thread_handle,
Dave Barach920180e2019-11-14 08:03:48 -0500422 NULL /*attr */ , thread_fn, 0);
Dave Barach371e4e12016-07-08 09:38:52 -0400423 if (rv)
IJsbrand Wijnands82295802019-10-08 13:50:55 +0200424 {
425 clib_warning ("pthread_create returned %d", rv);
426 am->rx_thread_handle = 0;
427 }
428 else
429 {
430 am->rx_thread_handle = mm->rx_thread_handle;
431 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 }
Dave Barach371e4e12016-07-08 09:38:52 -0400433
434 mm->connected_to_vlib = 1;
435 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436}
437
Dave Barach371e4e12016-07-08 09:38:52 -0400438int
Neale Rannse72be392017-04-26 13:59:20 -0700439vl_client_connect_to_vlib (const char *svm_name,
440 const char *client_name, int rx_queue_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441{
Dave Barach371e4e12016-07-08 09:38:52 -0400442 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach920180e2019-11-14 08:03:48 -0500443 rx_thread_fn, 1 /* do map */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444}
445
Dave Barach371e4e12016-07-08 09:38:52 -0400446int
Neale Rannse72be392017-04-26 13:59:20 -0700447vl_client_connect_to_vlib_no_rx_pthread (const char *svm_name,
448 const char *client_name,
Dave Barach371e4e12016-07-08 09:38:52 -0400449 int rx_queue_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450{
Dave Barach371e4e12016-07-08 09:38:52 -0400451 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach920180e2019-11-14 08:03:48 -0500452 0 /* no rx_thread_fn */ ,
Dave Barach59b25652017-09-10 15:04:27 -0400453 1 /* do map */ );
454}
455
456int
457vl_client_connect_to_vlib_no_map (const char *svm_name,
458 const char *client_name, int rx_queue_size)
459{
460 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach920180e2019-11-14 08:03:48 -0500461 rx_thread_fn, 0 /* dont map */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462}
463
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100464int
465vl_client_connect_to_vlib_no_rx_pthread_no_map (const char *svm_name,
466 const char *client_name,
467 int rx_queue_size)
468{
469 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
470 0 /* want pthread */ ,
471 0 /* dont map */ );
472}
473
Dave Barach920180e2019-11-14 08:03:48 -0500474int
475vl_client_connect_to_vlib_thread_fn (const char *svm_name,
476 const char *client_name,
477 int rx_queue_size,
478 void *(*thread_fn) (void *))
479{
480 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
481 thread_fn, 1 /* do map */ );
482}
483
484
Florin Corasb384b542018-01-15 01:08:33 -0800485static void
486disconnect_from_vlib_internal (u8 do_unmap)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487{
Dave Barach371e4e12016-07-08 09:38:52 -0400488 memory_client_main_t *mm = &memory_client_main;
489 api_main_t *am = &api_main;
490 uword junk;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Dave Barach371e4e12016-07-08 09:38:52 -0400492 if (mm->rx_thread_jmpbuf_valid)
493 {
494 vl_api_rx_thread_exit_t *ep;
495 ep = vl_msg_api_alloc (sizeof (*ep));
496 ep->_vl_msg_id = ntohs (VL_API_RX_THREAD_EXIT);
497 vl_msg_api_send_shmem (am->vl_input_queue, (u8 *) & ep);
498 pthread_join (mm->rx_thread_handle, (void **) &junk);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499 }
Dave Barach371e4e12016-07-08 09:38:52 -0400500 if (mm->connected_to_vlib)
501 {
502 vl_client_disconnect ();
Florin Corasb384b542018-01-15 01:08:33 -0800503 if (do_unmap)
504 vl_client_api_unmap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505 }
Dave Barachb7b92992018-10-17 10:38:51 -0400506 clib_memset (mm, 0, sizeof (*mm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507}
508
Florin Corasb384b542018-01-15 01:08:33 -0800509void
510vl_client_disconnect_from_vlib (void)
511{
512 disconnect_from_vlib_internal (1);
513}
514
515void
516vl_client_disconnect_from_vlib_no_unmap (void)
517{
518 disconnect_from_vlib_internal (0);
519}
520
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521static void vl_api_get_first_msg_id_reply_t_handler
Dave Barach371e4e12016-07-08 09:38:52 -0400522 (vl_api_get_first_msg_id_reply_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523{
Dave Barach371e4e12016-07-08 09:38:52 -0400524 memory_client_main_t *mm = &memory_client_main;
525 i32 retval = ntohl (mp->retval);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526
Dave Barach371e4e12016-07-08 09:38:52 -0400527 mm->first_msg_id_reply = (retval >= 0) ? ntohs (mp->first_msg_id) : ~0;
528 mm->first_msg_id_reply_ready = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529}
530
Dave Barach371e4e12016-07-08 09:38:52 -0400531u16
Neale Rannse72be392017-04-26 13:59:20 -0700532vl_client_get_first_plugin_msg_id (const char *plugin_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533{
Dave Barach371e4e12016-07-08 09:38:52 -0400534 vl_api_get_first_msg_id_t *mp;
535 api_main_t *am = &api_main;
536 memory_client_main_t *mm = &memory_client_main;
537 f64 timeout;
538 void *old_handler;
539 clib_time_t clib_time;
540 u16 rv = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
Ole Troan7adaa222019-08-27 15:05:27 +0200542 if (strlen (plugin_name) + 1 > sizeof (mp->name))
Dave Barach371e4e12016-07-08 09:38:52 -0400543 return (rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544
Dave Barachb7b92992018-10-17 10:38:51 -0400545 clib_memset (&clib_time, 0, sizeof (clib_time));
Dave Barach371e4e12016-07-08 09:38:52 -0400546 clib_time_init (&clib_time);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547
Dave Barach371e4e12016-07-08 09:38:52 -0400548 /* Push this plugin's first_msg_id_reply handler */
549 old_handler = am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY];
550 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = (void *)
551 vl_api_get_first_msg_id_reply_t_handler;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552
Dave Barach371e4e12016-07-08 09:38:52 -0400553 /* Ask the data-plane for the message-ID base of the indicated plugin */
554 mm->first_msg_id_reply_ready = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
Florin Coras6d1caf92018-01-04 12:17:10 -0800556 /* Not using shm client */
557 if (!am->my_registration)
Dave Barach371e4e12016-07-08 09:38:52 -0400558 {
Florin Coras6d1caf92018-01-04 12:17:10 -0800559 mp = vl_socket_client_msg_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400560 clib_memset (mp, 0, sizeof (*mp));
Florin Coras6d1caf92018-01-04 12:17:10 -0800561 mp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID);
562 mp->client_index = am->my_client_index;
Ole Troan7adaa222019-08-27 15:05:27 +0200563 strncpy ((char *) mp->name, plugin_name, sizeof (mp->name) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564
Florin Coras6d1caf92018-01-04 12:17:10 -0800565 if (vl_socket_client_write () <= 0)
566 goto sock_err;
567 if (vl_socket_client_read (1))
568 goto sock_err;
569
570 if (mm->first_msg_id_reply_ready == 1)
571 {
572 rv = mm->first_msg_id_reply;
573 goto result;
574 }
575
576 sock_err:
577 /* Restore old handler */
578 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
579
580 return -1;
581 }
582 else
583 {
584 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400585 clib_memset (mp, 0, sizeof (*mp));
Florin Coras6d1caf92018-01-04 12:17:10 -0800586 mp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID);
587 mp->client_index = am->my_client_index;
Ole Troan7adaa222019-08-27 15:05:27 +0200588 strncpy ((char *) mp->name, plugin_name, sizeof (mp->name) - 1);
Florin Coras6d1caf92018-01-04 12:17:10 -0800589
590 vl_msg_api_send_shmem (am->shmem_hdr->vl_input_queue, (u8 *) & mp);
591
592 /* Synchronously wait for the answer */
593 timeout = clib_time_now (&clib_time) + 1.0;
Dave Barach371e4e12016-07-08 09:38:52 -0400594 while (clib_time_now (&clib_time) < timeout)
595 {
596 if (mm->first_msg_id_reply_ready == 1)
597 {
598 rv = mm->first_msg_id_reply;
599 goto result;
600 }
601 }
602 /* Restore old handler */
603 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
604
605 return rv;
606 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607
608result:
609
Dave Barach371e4e12016-07-08 09:38:52 -0400610 /* Restore the old handler */
611 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612
Dave Barach371e4e12016-07-08 09:38:52 -0400613 if (rv == (u16) ~ 0)
614 clib_warning ("plugin '%s' not registered", plugin_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615
Dave Barach371e4e12016-07-08 09:38:52 -0400616 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617}
Dave Barach6931f592016-05-13 12:55:01 -0400618
Dave Barach371e4e12016-07-08 09:38:52 -0400619/*
620 * fd.io coding-style-patch-verification: ON
621 *
622 * Local Variables:
623 * eval: (c-set-style "gnu")
624 * End:
625 */