blob: 54bc8d8f85941f92d8b868eab590d0ebba922b3d [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>
Dave Barach39d69112019-11-27 11:42:13 -050027#include <vlibapi/api_common.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080028
29/* A hack. vl_client_get_first_plugin_msg_id depends on it */
30#include <vlibmemory/socket_client.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
32#include <vlibmemory/vl_memory_msg_enum.h>
33
Dave Barach371e4e12016-07-08 09:38:52 -040034#define vl_typedefs /* define message structures */
35#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070036#undef vl_typedefs
37
Dave Barach371e4e12016-07-08 09:38:52 -040038#define vl_endianfun /* define message structures */
39#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070040#undef vl_endianfun
41
Klement Sekera9b7e8ac2021-11-22 21:26:20 +010042#define vl_calcsizefun
43#include <vlibmemory/vl_memory_api_h.h>
44#undef vl_calcsizefun
45
Ed Warnickecb9cada2015-12-08 15:45:58 -070046/* instantiate all the print functions we know about */
47#define vl_print(handle, ...) clib_warning (__VA_ARGS__)
48#define vl_printfun
49#include <vlibmemory/vl_memory_api_h.h>
50#undef vl_printfun
51
Ed Warnickecb9cada2015-12-08 15:45:58 -070052memory_client_main_t memory_client_main;
Dave Barach39d69112019-11-27 11:42:13 -050053__thread memory_client_main_t *my_memory_client_main = &memory_client_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Florin Coras684fb6e2019-12-09 16:42:50 -080055typedef struct rx_thread_fn_arg
56{
57 api_main_t *am;
58 memory_client_main_t *mm;
59} rx_thread_fn_arg_t;
60
Dave Barach371e4e12016-07-08 09:38:52 -040061static void *
62rx_thread_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -070063{
Florin Coras684fb6e2019-12-09 16:42:50 -080064 rx_thread_fn_arg_t *a = (rx_thread_fn_arg_t *) arg;
65 memory_client_main_t *mm;
Florin Corase86a8ed2018-01-05 03:20:25 -080066 svm_queue_t *q;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Florin Coras684fb6e2019-12-09 16:42:50 -080068 vlibapi_set_main (a->am);
69 vlibapi_set_memory_client_main (a->mm);
Florin Coras68f58d72020-05-11 18:03:40 +000070 free (a);
Florin Coras684fb6e2019-12-09 16:42:50 -080071
72 mm = vlibapi_get_memory_client_main ();
Dave Barach39d69112019-11-27 11:42:13 -050073 q = vlibapi_get_main ()->vl_input_queue;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
Dave Barach371e4e12016-07-08 09:38:52 -040075 /* So we can make the rx thread terminate cleanly */
76 if (setjmp (mm->rx_thread_jmpbuf) == 0)
77 {
78 mm->rx_thread_jmpbuf_valid = 1;
Nathan Skrzypczakd516ca42019-08-01 18:14:06 +020079 clib_mem_set_thread_index ();
Dave Barachcf5e8482017-10-17 11:48:29 -040080 while (1)
81 vl_msg_api_queue_handler (q);
Ed Warnickecb9cada2015-12-08 15:45:58 -070082 }
Dave Barach371e4e12016-07-08 09:38:52 -040083 pthread_exit (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070084}
85
Dave Barach371e4e12016-07-08 09:38:52 -040086static void
87vl_api_rx_thread_exit_t_handler (vl_api_rx_thread_exit_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070088{
Dave Barach39d69112019-11-27 11:42:13 -050089 memory_client_main_t *mm = vlibapi_get_memory_client_main ();
Ole Troanc5607892019-04-10 19:32:02 +020090 if (mm->rx_thread_jmpbuf_valid)
91 longjmp (mm->rx_thread_jmpbuf, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -070092}
93
Dave Barach371e4e12016-07-08 09:38:52 -040094static void
Ole Troan73710c72018-06-04 22:27:49 +020095vl_api_name_and_crc_free (void)
96{
Dave Barach39d69112019-11-27 11:42:13 -050097 api_main_t *am = vlibapi_get_main ();
Ole Troan73710c72018-06-04 22:27:49 +020098 int i;
99 u8 **keys = 0;
100 hash_pair_t *hp;
101
102 if (!am->msg_index_by_name_and_crc)
103 return;
104
105 /* *INDENT-OFF* */
106 hash_foreach_pair (hp, am->msg_index_by_name_and_crc,
107 ({
108 vec_add1 (keys, (u8 *) hp->key);
109 }));
110 /* *INDENT-ON* */
111 for (i = 0; i < vec_len (keys); i++)
112 vec_free (keys[i]);
113 vec_free (keys);
114 hash_free (am->msg_index_by_name_and_crc);
115}
116
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200117CLIB_NOSANITIZE_ADDR static void
118VL_API_VEC_UNPOISON (const void *v)
119{
120 const vec_header_t *vh = &((vec_header_t *) v)[-1];
121 CLIB_MEM_UNPOISON (vh, sizeof (*vh) + vec_len (v));
122}
123
Ole Troan73710c72018-06-04 22:27:49 +0200124static void
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400125vl_api_memclnt_create_reply_t_handler (vl_api_memclnt_create_reply_t * mp)
126{
127 serialize_main_t _sm, *sm = &_sm;
Dave Barach39d69112019-11-27 11:42:13 -0500128 api_main_t *am = vlibapi_get_main ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400129 u8 *tblv;
130 u32 nmsgs;
131 int i;
132 u8 *name_and_crc;
133 u32 msg_index;
134
135 am->my_client_index = mp->index;
136 am->my_registration = (vl_api_registration_t *) (uword) mp->handle;
137
138 /* Clean out any previous hash table (unlikely) */
Ole Troan73710c72018-06-04 22:27:49 +0200139 vl_api_name_and_crc_free ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400140
141 am->msg_index_by_name_and_crc = hash_create_string (0, sizeof (uword));
142
143 /* Recreate the vnet-side API message handler table */
Damjan Marion7bee80c2017-04-26 15:32:12 +0200144 tblv = uword_to_pointer (mp->message_table, u8 *);
Dave Barachcf5e8482017-10-17 11:48:29 -0400145 unserialize_open_data (sm, tblv, vec_len (tblv));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400146 unserialize_integer (sm, &nmsgs, sizeof (u32));
147
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200148 VL_API_VEC_UNPOISON (tblv);
149
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400150 for (i = 0; i < nmsgs; i++)
151 {
152 msg_index = unserialize_likely_small_unsigned_integer (sm);
153 unserialize_cstring (sm, (char **) &name_and_crc);
154 hash_set_mem (am->msg_index_by_name_and_crc, name_and_crc, msg_index);
155 }
156}
157
158static void
Dave Barach371e4e12016-07-08 09:38:52 -0400159noop_handler (void *notused)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160{
161}
162
Ole Troan2e1c8962019-04-10 09:44:23 +0200163void vl_msg_api_send_shmem (svm_queue_t * q, u8 * elem);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400164int
Neale Rannse72be392017-04-26 13:59:20 -0700165vl_client_connect (const char *name, int ctx_quota, int input_queue_size)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400166{
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400167 vl_api_memclnt_create_t *mp;
168 vl_api_memclnt_create_reply_t *rp;
Florin Corase86a8ed2018-01-05 03:20:25 -0800169 svm_queue_t *vl_input_queue;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400170 vl_shmem_hdr_t *shmem_hdr;
171 int rv = 0;
172 void *oldheap;
Dave Barach39d69112019-11-27 11:42:13 -0500173 api_main_t *am = vlibapi_get_main ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400174
175 if (am->my_registration)
176 {
177 clib_warning ("client %s already connected...", name);
178 return -1;
179 }
180
181 if (am->vlib_rp == 0)
182 {
183 clib_warning ("am->vlib_rp NULL");
184 return -1;
185 }
186
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400187 shmem_hdr = am->shmem_hdr;
188
189 if (shmem_hdr == 0 || shmem_hdr->vl_input_queue == 0)
190 {
191 clib_warning ("shmem_hdr / input queue NULL");
192 return -1;
193 }
194
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200195 CLIB_MEM_UNPOISON (shmem_hdr, sizeof (*shmem_hdr));
196 VL_MSG_API_SVM_QUEUE_UNPOISON (shmem_hdr->vl_input_queue);
197
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100198 oldheap = vl_msg_push_heap ();
Florin Corasc470e222018-08-01 07:53:18 -0700199 vl_input_queue = svm_queue_alloc_and_init (input_queue_size, sizeof (uword),
200 getpid ());
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100201 vl_msg_pop_heap (oldheap);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400202
203 am->my_client_index = ~0;
204 am->my_registration = 0;
205 am->vl_input_queue = vl_input_queue;
206
207 mp = vl_msg_api_alloc (sizeof (vl_api_memclnt_create_t));
Dave Barachb7b92992018-10-17 10:38:51 -0400208 clib_memset (mp, 0, sizeof (*mp));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400209 mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_CREATE);
210 mp->ctx_quota = ctx_quota;
211 mp->input_queue = (uword) vl_input_queue;
Ole Troan7adaa222019-08-27 15:05:27 +0200212 strncpy ((char *) mp->name, name, sizeof (mp->name) - 1);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400213
214 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
215
216 while (1)
217 {
218 int qstatus;
219 struct timespec ts, tsrem;
220 int i;
221
222 /* Wait up to 10 seconds */
223 for (i = 0; i < 1000; i++)
224 {
Florin Corase86a8ed2018-01-05 03:20:25 -0800225 qstatus = svm_queue_sub (vl_input_queue, (u8 *) & rp,
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100226 SVM_Q_NOWAIT, 0);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400227 if (qstatus == 0)
228 goto read_one_msg;
229 ts.tv_sec = 0;
230 ts.tv_nsec = 10000 * 1000; /* 10 ms */
231 while (nanosleep (&ts, &tsrem) < 0)
232 ts = tsrem;
233 }
234 /* Timeout... */
235 clib_warning ("memclnt_create_reply timeout");
236 return -1;
237
238 read_one_msg:
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200239 VL_MSG_API_UNPOISON (rp);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400240 if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_CREATE_REPLY)
241 {
242 clib_warning ("unexpected reply: id %d", ntohs (rp->_vl_msg_id));
243 continue;
244 }
245 rv = clib_net_to_host_u32 (rp->response);
246
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100247 msgbuf_t *msgbuf = (msgbuf_t *) ((u8 *) rp - offsetof (msgbuf_t, data));
248 vl_msg_api_handler ((void *) rp, ntohl (msgbuf->data_len));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400249 break;
250 }
251 return (rv);
252}
253
254static void
255vl_api_memclnt_delete_reply_t_handler (vl_api_memclnt_delete_reply_t * mp)
256{
257 void *oldheap;
Dave Barach39d69112019-11-27 11:42:13 -0500258 api_main_t *am = vlibapi_get_main ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400259
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100260 oldheap = vl_msg_push_heap ();
Florin Corase86a8ed2018-01-05 03:20:25 -0800261 svm_queue_free (am->vl_input_queue);
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100262 vl_msg_pop_heap (oldheap);
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400263
264 am->my_client_index = ~0;
265 am->my_registration = 0;
266 am->vl_input_queue = 0;
267}
268
Florin Coras940f78f2018-11-30 12:11:20 -0800269void
Florin Coraseaec2a62018-12-04 16:34:05 -0800270vl_client_send_disconnect (u8 do_cleanup)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400271{
272 vl_api_memclnt_delete_t *mp;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400273 vl_shmem_hdr_t *shmem_hdr;
Dave Barach39d69112019-11-27 11:42:13 -0500274 api_main_t *am = vlibapi_get_main ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400275
276 ASSERT (am->vlib_rp);
277 shmem_hdr = am->shmem_hdr;
278 ASSERT (shmem_hdr && shmem_hdr->vl_input_queue);
279
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400280 mp = vl_msg_api_alloc (sizeof (vl_api_memclnt_delete_t));
Dave Barachb7b92992018-10-17 10:38:51 -0400281 clib_memset (mp, 0, sizeof (*mp));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400282 mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_DELETE);
283 mp->index = am->my_client_index;
284 mp->handle = (uword) am->my_registration;
Florin Coraseaec2a62018-12-04 16:34:05 -0800285 mp->do_cleanup = do_cleanup;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400286
287 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
Florin Coras940f78f2018-11-30 12:11:20 -0800288}
289
290int
291vl_client_disconnect (void)
292{
293 vl_api_memclnt_delete_reply_t *rp;
294 svm_queue_t *vl_input_queue;
Dave Barach39d69112019-11-27 11:42:13 -0500295 api_main_t *am = vlibapi_get_main ();
Florin Coras940f78f2018-11-30 12:11:20 -0800296 time_t begin;
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100297 msgbuf_t *msgbuf;
Florin Coras940f78f2018-11-30 12:11:20 -0800298
299 vl_input_queue = am->vl_input_queue;
Florin Coraseaec2a62018-12-04 16:34:05 -0800300 vl_client_send_disconnect (0 /* wait for reply */ );
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400301
302 /*
303 * Have to be careful here, in case the client is disconnecting
304 * because e.g. the vlib process died, or is unresponsive.
305 */
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400306 begin = time (0);
307 while (1)
308 {
309 time_t now;
310
311 now = time (0);
312
313 if (now >= (begin + 2))
314 {
315 clib_warning ("peer unresponsive, give up");
316 am->my_client_index = ~0;
317 am->my_registration = 0;
318 am->shmem_hdr = 0;
Florin Corasd6c30d92018-01-29 05:11:24 -0800319 return -1;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400320 }
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100321 if (svm_queue_sub (vl_input_queue, (u8 *) & rp, SVM_Q_NOWAIT, 0) < 0)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400322 continue;
323
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +0200324 VL_MSG_API_UNPOISON (rp);
325
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400326 /* drain the queue */
327 if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_DELETE_REPLY)
328 {
Dave Barachcf5e8482017-10-17 11:48:29 -0400329 clib_warning ("queue drain: %d", ntohs (rp->_vl_msg_id));
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100330 msgbuf = (msgbuf_t *) ((u8 *) rp - offsetof (msgbuf_t, data));
331 vl_msg_api_handler ((void *) rp, ntohl (msgbuf->data_len));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400332 continue;
333 }
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100334 msgbuf = (msgbuf_t *) ((u8 *) rp - offsetof (msgbuf_t, data));
335 vl_msg_api_handler ((void *) rp, ntohl (msgbuf->data_len));
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400336 break;
337 }
Ole Troan73710c72018-06-04 22:27:49 +0200338
339 vl_api_name_and_crc_free ();
Florin Corasd6c30d92018-01-29 05:11:24 -0800340 return 0;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400341}
342
Dave Barach59b25652017-09-10 15:04:27 -0400343/**
344 * Stave off the binary API dead client reaper
345 * Only sent to inactive clients
346 */
347static void
348vl_api_memclnt_keepalive_t_handler (vl_api_memclnt_keepalive_t * mp)
349{
350 vl_api_memclnt_keepalive_reply_t *rmp;
351 api_main_t *am;
352 vl_shmem_hdr_t *shmem_hdr;
353
Dave Barach39d69112019-11-27 11:42:13 -0500354 am = vlibapi_get_main ();
Dave Barach59b25652017-09-10 15:04:27 -0400355 shmem_hdr = am->shmem_hdr;
356
357 rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400358 clib_memset (rmp, 0, sizeof (*rmp));
Dave Barach59b25652017-09-10 15:04:27 -0400359 rmp->_vl_msg_id = ntohs (VL_API_MEMCLNT_KEEPALIVE_REPLY);
360 rmp->context = mp->context;
361 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & rmp);
362}
363
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400364#define foreach_api_msg \
365_(RX_THREAD_EXIT, rx_thread_exit) \
366_(MEMCLNT_CREATE_REPLY, memclnt_create_reply) \
Dave Barach59b25652017-09-10 15:04:27 -0400367_(MEMCLNT_DELETE_REPLY, memclnt_delete_reply) \
368_(MEMCLNT_KEEPALIVE, memclnt_keepalive)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400369
Dave Barach59b25652017-09-10 15:04:27 -0400370void
371vl_client_install_client_message_handlers (void)
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400372{
Filip Tehlar36217e32021-07-23 08:51:10 +0000373 api_main_t *am = vlibapi_get_main ();
374#define _(N, n) \
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100375 vl_msg_api_set_handlers ( \
376 VL_API_##N, #n, vl_api_##n##_t_handler, noop_handler, \
377 vl_api_##n##_t_endian, vl_api_##n##_t_print, sizeof (vl_api_##n##_t), 0, \
378 vl_api_##n##_t_print_json, vl_api_##n##_t_tojson, \
379 vl_api_##n##_t_fromjson, vl_api_##n##_t_calc_size); \
Filip Tehlar36217e32021-07-23 08:51:10 +0000380 am->api_trace_cfg[VL_API_##N].replay_enable = 0;
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400381 foreach_api_msg;
382#undef _
Dave Barach59b25652017-09-10 15:04:27 -0400383}
384
Dave Barach59b25652017-09-10 15:04:27 -0400385int
386vl_client_api_map (const char *region_name)
387{
388 int rv;
389
390 if ((rv = vl_map_shmem (region_name, 0 /* is_vlib */ )) < 0)
391 return rv;
392
393 vl_client_install_client_message_handlers ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400394 return 0;
395}
396
397void
398vl_client_api_unmap (void)
399{
Florin Corasd6c30d92018-01-29 05:11:24 -0800400 vl_unmap_shmem_client ();
Dave Barach5c6c4bf2017-04-11 13:12:48 -0400401}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402
Florin Corasb384b542018-01-15 01:08:33 -0800403u8
404vl_mem_client_is_connected (void)
405{
Florin Coras64cf4592019-12-12 12:01:24 -0800406 return (my_memory_client_main->connected_to_vlib != 0);
Florin Corasb384b542018-01-15 01:08:33 -0800407}
408
Dave Barach371e4e12016-07-08 09:38:52 -0400409static int
Neale Rannse72be392017-04-26 13:59:20 -0700410connect_to_vlib_internal (const char *svm_name,
411 const char *client_name,
Dave Barach920180e2019-11-14 08:03:48 -0500412 int rx_queue_size, void *(*thread_fn) (void *),
Dave Barach39d69112019-11-27 11:42:13 -0500413 void *thread_fn_arg, int do_map)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414{
Dave Barach371e4e12016-07-08 09:38:52 -0400415 int rv = 0;
Dave Barach39d69112019-11-27 11:42:13 -0500416 memory_client_main_t *mm = vlibapi_get_memory_client_main ();
417 api_main_t *am = vlibapi_get_main ();
Dave Barach371e4e12016-07-08 09:38:52 -0400418
Dave Barach59b25652017-09-10 15:04:27 -0400419 if (do_map && (rv = vl_client_api_map (svm_name)))
Dave Barach371e4e12016-07-08 09:38:52 -0400420 {
421 clib_warning ("vl_client_api map rv %d", rv);
422 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 }
Dave Barach371e4e12016-07-08 09:38:52 -0400424
Dave Barach371e4e12016-07-08 09:38:52 -0400425 if (vl_client_connect (client_name, 0 /* punt quota */ ,
426 rx_queue_size /* input queue */ ) < 0)
427 {
428 vl_client_api_unmap ();
429 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 }
431
Dave Barach371e4e12016-07-08 09:38:52 -0400432 /* Start the rx queue thread */
433
Dave Barach920180e2019-11-14 08:03:48 -0500434 if (thread_fn)
Dave Barach371e4e12016-07-08 09:38:52 -0400435 {
Florin Coras684fb6e2019-12-09 16:42:50 -0800436 if (thread_fn == rx_thread_fn)
437 {
438 rx_thread_fn_arg_t *arg;
Florin Coras68f58d72020-05-11 18:03:40 +0000439 arg = malloc (sizeof (*arg));
Florin Coras684fb6e2019-12-09 16:42:50 -0800440 arg->am = vlibapi_get_main ();
441 arg->mm = vlibapi_get_memory_client_main ();
442 thread_fn_arg = (void *) arg;
443 }
444
Dave Barach371e4e12016-07-08 09:38:52 -0400445 rv = pthread_create (&mm->rx_thread_handle,
Dave Barach39d69112019-11-27 11:42:13 -0500446 NULL /*attr */ , thread_fn, thread_fn_arg);
Dave Barach371e4e12016-07-08 09:38:52 -0400447 if (rv)
IJsbrand Wijnands82295802019-10-08 13:50:55 +0200448 {
449 clib_warning ("pthread_create returned %d", rv);
450 am->rx_thread_handle = 0;
451 }
452 else
453 {
454 am->rx_thread_handle = mm->rx_thread_handle;
455 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456 }
Dave Barach371e4e12016-07-08 09:38:52 -0400457
458 mm->connected_to_vlib = 1;
459 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460}
461
Dave Barach371e4e12016-07-08 09:38:52 -0400462int
Neale Rannse72be392017-04-26 13:59:20 -0700463vl_client_connect_to_vlib (const char *svm_name,
464 const char *client_name, int rx_queue_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465{
Dave Barach371e4e12016-07-08 09:38:52 -0400466 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach39d69112019-11-27 11:42:13 -0500467 rx_thread_fn, 0 /* thread fn arg */ ,
468 1 /* do map */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469}
470
Dave Barach371e4e12016-07-08 09:38:52 -0400471int
Neale Rannse72be392017-04-26 13:59:20 -0700472vl_client_connect_to_vlib_no_rx_pthread (const char *svm_name,
473 const char *client_name,
Dave Barach371e4e12016-07-08 09:38:52 -0400474 int rx_queue_size)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475{
Dave Barach371e4e12016-07-08 09:38:52 -0400476 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach920180e2019-11-14 08:03:48 -0500477 0 /* no rx_thread_fn */ ,
Dave Barach39d69112019-11-27 11:42:13 -0500478 0 /* no thread fn arg */ ,
Dave Barach59b25652017-09-10 15:04:27 -0400479 1 /* do map */ );
480}
481
482int
483vl_client_connect_to_vlib_no_map (const char *svm_name,
484 const char *client_name, int rx_queue_size)
485{
486 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach39d69112019-11-27 11:42:13 -0500487 rx_thread_fn, 0 /* no thread fn arg */ ,
488 0 /* dont map */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489}
490
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100491int
492vl_client_connect_to_vlib_no_rx_pthread_no_map (const char *svm_name,
493 const char *client_name,
494 int rx_queue_size)
495{
496 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach39d69112019-11-27 11:42:13 -0500497 0 /* no thread_fn */ ,
498 0 /* no thread fn arg */ ,
Tomasz Kulasek97dcf5b2019-01-31 18:26:32 +0100499 0 /* dont map */ );
500}
501
Dave Barach920180e2019-11-14 08:03:48 -0500502int
503vl_client_connect_to_vlib_thread_fn (const char *svm_name,
504 const char *client_name,
505 int rx_queue_size,
Dave Barach39d69112019-11-27 11:42:13 -0500506 void *(*thread_fn) (void *), void *arg)
Dave Barach920180e2019-11-14 08:03:48 -0500507{
508 return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
Dave Barach39d69112019-11-27 11:42:13 -0500509 thread_fn, arg, 1 /* do map */ );
Dave Barach920180e2019-11-14 08:03:48 -0500510}
511
512
Florin Corasb384b542018-01-15 01:08:33 -0800513static void
514disconnect_from_vlib_internal (u8 do_unmap)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515{
Dave Barach39d69112019-11-27 11:42:13 -0500516 memory_client_main_t *mm = vlibapi_get_memory_client_main ();
517 api_main_t *am = vlibapi_get_main ();
Dave Barach371e4e12016-07-08 09:38:52 -0400518 uword junk;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519
Dave Barach371e4e12016-07-08 09:38:52 -0400520 if (mm->rx_thread_jmpbuf_valid)
521 {
522 vl_api_rx_thread_exit_t *ep;
523 ep = vl_msg_api_alloc (sizeof (*ep));
524 ep->_vl_msg_id = ntohs (VL_API_RX_THREAD_EXIT);
525 vl_msg_api_send_shmem (am->vl_input_queue, (u8 *) & ep);
526 pthread_join (mm->rx_thread_handle, (void **) &junk);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 }
Dave Barach371e4e12016-07-08 09:38:52 -0400528 if (mm->connected_to_vlib)
529 {
530 vl_client_disconnect ();
Florin Corasb384b542018-01-15 01:08:33 -0800531 if (do_unmap)
532 vl_client_api_unmap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533 }
Dave Barachb7b92992018-10-17 10:38:51 -0400534 clib_memset (mm, 0, sizeof (*mm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535}
536
Florin Corasb384b542018-01-15 01:08:33 -0800537void
538vl_client_disconnect_from_vlib (void)
539{
540 disconnect_from_vlib_internal (1);
541}
542
543void
544vl_client_disconnect_from_vlib_no_unmap (void)
545{
546 disconnect_from_vlib_internal (0);
547}
548
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549static void vl_api_get_first_msg_id_reply_t_handler
Dave Barach371e4e12016-07-08 09:38:52 -0400550 (vl_api_get_first_msg_id_reply_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551{
Dave Barach39d69112019-11-27 11:42:13 -0500552 memory_client_main_t *mm = vlibapi_get_memory_client_main ();
Dave Barach371e4e12016-07-08 09:38:52 -0400553 i32 retval = ntohl (mp->retval);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
Dave Barach371e4e12016-07-08 09:38:52 -0400555 mm->first_msg_id_reply = (retval >= 0) ? ntohs (mp->first_msg_id) : ~0;
556 mm->first_msg_id_reply_ready = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557}
558
Dave Barach371e4e12016-07-08 09:38:52 -0400559u16
Neale Rannse72be392017-04-26 13:59:20 -0700560vl_client_get_first_plugin_msg_id (const char *plugin_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561{
Dave Barach371e4e12016-07-08 09:38:52 -0400562 vl_api_get_first_msg_id_t *mp;
Dave Barach39d69112019-11-27 11:42:13 -0500563 api_main_t *am = vlibapi_get_main ();
564 memory_client_main_t *mm = vlibapi_get_memory_client_main ();
Dave Barach371e4e12016-07-08 09:38:52 -0400565 f64 timeout;
566 void *old_handler;
567 clib_time_t clib_time;
568 u16 rv = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569
Ole Troan7adaa222019-08-27 15:05:27 +0200570 if (strlen (plugin_name) + 1 > sizeof (mp->name))
Dave Barach371e4e12016-07-08 09:38:52 -0400571 return (rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
Dave Barachb7b92992018-10-17 10:38:51 -0400573 clib_memset (&clib_time, 0, sizeof (clib_time));
Dave Barach371e4e12016-07-08 09:38:52 -0400574 clib_time_init (&clib_time);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575
Dave Barach371e4e12016-07-08 09:38:52 -0400576 /* Push this plugin's first_msg_id_reply handler */
577 old_handler = am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY];
578 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = (void *)
579 vl_api_get_first_msg_id_reply_t_handler;
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100580 if (!am->msg_calc_size_funcs[VL_API_GET_FIRST_MSG_ID_REPLY])
581 {
582 am->msg_calc_size_funcs[VL_API_GET_FIRST_MSG_ID_REPLY] =
583 (uword (*) (void *)) vl_api_get_first_msg_id_reply_t_calc_size;
584 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
Dave Barach371e4e12016-07-08 09:38:52 -0400586 /* Ask the data-plane for the message-ID base of the indicated plugin */
587 mm->first_msg_id_reply_ready = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Florin Coras6d1caf92018-01-04 12:17:10 -0800589 /* Not using shm client */
590 if (!am->my_registration)
Dave Barach371e4e12016-07-08 09:38:52 -0400591 {
Florin Coras6d1caf92018-01-04 12:17:10 -0800592 mp = vl_socket_client_msg_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400593 clib_memset (mp, 0, sizeof (*mp));
Florin Coras6d1caf92018-01-04 12:17:10 -0800594 mp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID);
595 mp->client_index = am->my_client_index;
Ole Troan7adaa222019-08-27 15:05:27 +0200596 strncpy ((char *) mp->name, plugin_name, sizeof (mp->name) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
Florin Coras6d1caf92018-01-04 12:17:10 -0800598 if (vl_socket_client_write () <= 0)
599 goto sock_err;
600 if (vl_socket_client_read (1))
601 goto sock_err;
602
603 if (mm->first_msg_id_reply_ready == 1)
604 {
605 rv = mm->first_msg_id_reply;
606 goto result;
607 }
608
609 sock_err:
610 /* Restore old handler */
611 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
612
613 return -1;
614 }
615 else
616 {
617 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400618 clib_memset (mp, 0, sizeof (*mp));
Florin Coras6d1caf92018-01-04 12:17:10 -0800619 mp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID);
620 mp->client_index = am->my_client_index;
Ole Troan7adaa222019-08-27 15:05:27 +0200621 strncpy ((char *) mp->name, plugin_name, sizeof (mp->name) - 1);
Florin Coras6d1caf92018-01-04 12:17:10 -0800622
623 vl_msg_api_send_shmem (am->shmem_hdr->vl_input_queue, (u8 *) & mp);
624
625 /* Synchronously wait for the answer */
626 timeout = clib_time_now (&clib_time) + 1.0;
Dave Barach371e4e12016-07-08 09:38:52 -0400627 while (clib_time_now (&clib_time) < timeout)
628 {
629 if (mm->first_msg_id_reply_ready == 1)
630 {
631 rv = mm->first_msg_id_reply;
632 goto result;
633 }
634 }
635 /* Restore old handler */
636 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
637
638 return rv;
639 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640
641result:
642
Dave Barach371e4e12016-07-08 09:38:52 -0400643 /* Restore the old handler */
644 am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
Dave Barach371e4e12016-07-08 09:38:52 -0400646 if (rv == (u16) ~ 0)
647 clib_warning ("plugin '%s' not registered", plugin_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648
Dave Barach371e4e12016-07-08 09:38:52 -0400649 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650}
Dave Barach6931f592016-05-13 12:55:01 -0400651
Dave Barach371e4e12016-07-08 09:38:52 -0400652/*
653 * fd.io coding-style-patch-verification: ON
654 *
655 * Local Variables:
656 * eval: (c-set-style "gnu")
657 * End:
658 */