blob: fa83696ec34b10f7e62502bd073257a00ca319a9 [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#include <stdio.h>
16#include <stdlib.h>
17#include <stddef.h>
18#include <sys/types.h>
19#include <sys/socket.h>
20#include <sys/mman.h>
21#include <sys/stat.h>
22#include <netinet/in.h>
23#include <netdb.h>
24#include <signal.h>
Damjan Marion7cd468a2016-12-19 23:05:39 +010025#include <stdbool.h>
Damjan Marion7cd468a2016-12-19 23:05:39 +010026#include <vnet/vnet.h>
27#include <vlib/vlib.h>
28#include <vlib/unix/unix.h>
29#include <vlibapi/api.h>
30#include <vlibmemory/api.h>
31
32#include <vpp/api/vpe_msg_enum.h>
33
Damjan Marion5fec1e82017-04-13 19:13:47 +020034#include "vppapiclient.h"
Damjan Marion7cd468a2016-12-19 23:05:39 +010035
Ole Troande728ac2018-10-08 11:24:22 +020036bool timeout_cancelled;
37bool timeout_in_progress;
Ole Troanc5607892019-04-10 19:32:02 +020038bool rx_thread_done;
Ole Troande728ac2018-10-08 11:24:22 +020039
Ole Troandfc9b7c2017-03-06 23:51:57 +010040/*
41 * Asynchronous mode:
42 * Client registers a callback. All messages are sent to the callback.
43 * Synchronous mode:
44 * Client calls blocking read().
45 * Clients are expected to collate events on a queue.
Damjan Marion5fec1e82017-04-13 19:13:47 +020046 * vac_write() -> suspends RX thread
47 * vac_read() -> resumes RX thread
Ole Troandfc9b7c2017-03-06 23:51:57 +010048 */
49
Damjan Marion7cd468a2016-12-19 23:05:39 +010050#define vl_typedefs /* define message structures */
51#include <vpp/api/vpe_all_api_h.h>
52#undef vl_typedefs
53
54#define vl_endianfun /* define message structures */
55#include <vpp/api/vpe_all_api_h.h>
56#undef vl_endianfun
57
58vlib_main_t vlib_global_main;
59vlib_main_t **vlib_mains;
60
61typedef struct {
Damjan Marion7cd468a2016-12-19 23:05:39 +010062 u8 connected_to_vlib;
Damjan Marion7cd468a2016-12-19 23:05:39 +010063 pthread_t rx_thread_handle;
Ole Troandfc9b7c2017-03-06 23:51:57 +010064 pthread_t timeout_thread_handle;
65 pthread_mutex_t queue_lock;
66 pthread_cond_t suspend_cv;
67 pthread_cond_t resume_cv;
68 pthread_mutex_t timeout_lock;
Neale Ranns1d652792018-07-26 08:05:53 -070069 u8 timeout_loop;
Ole Troandfc9b7c2017-03-06 23:51:57 +010070 pthread_cond_t timeout_cv;
71 pthread_cond_t timeout_cancel_cv;
72 pthread_cond_t terminate_cv;
Damjan Marion5fec1e82017-04-13 19:13:47 +020073} vac_main_t;
Damjan Marion7cd468a2016-12-19 23:05:39 +010074
Damjan Marion5fec1e82017-04-13 19:13:47 +020075vac_main_t vac_main;
76vac_callback_t vac_callback;
Ole Troandfc9b7c2017-03-06 23:51:57 +010077u16 read_timeout = 0;
78bool rx_is_running = false;
Ole Troan4e588aa2018-09-07 11:01:47 +020079bool timeout_thread_cancelled = false;
Ole Troandfc9b7c2017-03-06 23:51:57 +010080
Ole Troan73710c72018-06-04 22:27:49 +020081/* Set to true to enable memory tracing */
82bool mem_trace = false;
83
84__attribute__((constructor))
85static void
86vac_client_constructor (void)
87{
Ole Troan73710c72018-06-04 22:27:49 +020088 clib_mem_init (0, 1 << 30);
Dave Barach6a5adc32018-07-04 10:56:23 -040089#if USE_DLMALLOC == 0
90 {
91 u8 *heap;
92 mheap_t *h;
93
94 heap = clib_mem_get_per_cpu_heap ();
95 h = mheap_header (heap);
96 /* make the main heap thread-safe */
97 h->flags |= MHEAP_FLAG_THREAD_SAFE;
98 }
99#endif
Ole Troan73710c72018-06-04 22:27:49 +0200100 if (mem_trace)
101 clib_mem_trace (1);
102}
103
104__attribute__((destructor))
105static void
106vac_client_destructor (void)
107{
108 if (mem_trace)
109 fformat(stderr, "TRACE: %s",
110 format (0, "%U\n",
111 format_mheap, clib_mem_get_heap (), 1));
112}
113
114
Ole Troandfc9b7c2017-03-06 23:51:57 +0100115static void
116init (void)
117{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200118 vac_main_t *pm = &vac_main;
Dave Barachb7b92992018-10-17 10:38:51 -0400119 clib_memset(pm, 0, sizeof(*pm));
Ole Troandfc9b7c2017-03-06 23:51:57 +0100120 pthread_mutex_init(&pm->queue_lock, NULL);
121 pthread_cond_init(&pm->suspend_cv, NULL);
122 pthread_cond_init(&pm->resume_cv, NULL);
123 pthread_mutex_init(&pm->timeout_lock, NULL);
Neale Ranns1d652792018-07-26 08:05:53 -0700124 pm->timeout_loop = 1;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100125 pthread_cond_init(&pm->timeout_cv, NULL);
126 pthread_cond_init(&pm->timeout_cancel_cv, NULL);
127 pthread_cond_init(&pm->terminate_cv, NULL);
128}
129
130static void
131cleanup (void)
132{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200133 vac_main_t *pm = &vac_main;
Ole Troan73710c72018-06-04 22:27:49 +0200134 pthread_mutex_destroy(&pm->queue_lock);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100135 pthread_cond_destroy(&pm->suspend_cv);
136 pthread_cond_destroy(&pm->resume_cv);
Ole Troan73710c72018-06-04 22:27:49 +0200137 pthread_mutex_destroy(&pm->timeout_lock);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100138 pthread_cond_destroy(&pm->timeout_cv);
139 pthread_cond_destroy(&pm->timeout_cancel_cv);
140 pthread_cond_destroy(&pm->terminate_cv);
Dave Barachb7b92992018-10-17 10:38:51 -0400141 clib_memset(pm, 0, sizeof(*pm));
Ole Troandfc9b7c2017-03-06 23:51:57 +0100142}
Damjan Marion7cd468a2016-12-19 23:05:39 +0100143
144/*
145 * Satisfy external references when -lvlib is not available.
146 */
147void vlib_cli_output (struct vlib_main_t * vm, char * fmt, ...)
148{
149 clib_warning ("vlib_cli_output called...");
150}
151
152void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200153vac_free (void * msg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100154{
155 vl_msg_api_free (msg);
156}
157
158static void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200159vac_api_handler (void *msg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100160{
161 u16 id = ntohs(*((u16 *)msg));
Damjan Marion7cd468a2016-12-19 23:05:39 +0100162 msgbuf_t *msgbuf = (msgbuf_t *)(((u8 *)msg) - offsetof(msgbuf_t, data));
163 int l = ntohl(msgbuf->data_len);
164 if (l == 0)
165 clib_warning("Message ID %d has wrong length: %d\n", id, l);
166
167 /* Call Python callback */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200168 ASSERT(vac_callback);
169 (vac_callback)(msg, l);
170 vac_free(msg);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100171}
172
173static void *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200174vac_rx_thread_fn (void *arg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100175{
Florin Corase86a8ed2018-01-05 03:20:25 -0800176 svm_queue_t *q;
Dave Barach59b25652017-09-10 15:04:27 -0400177 vl_api_memclnt_keepalive_t *mp;
178 vl_api_memclnt_keepalive_reply_t *rmp;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200179 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100180 api_main_t *am = &api_main;
Dave Barach59b25652017-09-10 15:04:27 -0400181 vl_shmem_hdr_t *shmem_hdr;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100182 uword msg;
183
184 q = am->vl_input_queue;
185
Ole Troandfc9b7c2017-03-06 23:51:57 +0100186 while (1)
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100187 while (!svm_queue_sub(q, (u8 *)&msg, SVM_Q_WAIT, 0))
Ole Troandfc9b7c2017-03-06 23:51:57 +0100188 {
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200189 VL_MSG_API_UNPOISON((void *)msg);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100190 u16 id = ntohs(*((u16 *)msg));
191 switch (id) {
192 case VL_API_RX_THREAD_EXIT:
193 vl_msg_api_free((void *) msg);
194 /* signal waiting threads that this thread is about to terminate */
195 pthread_mutex_lock(&pm->queue_lock);
Ole Troanc5607892019-04-10 19:32:02 +0200196 rx_thread_done = true;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100197 pthread_cond_signal(&pm->terminate_cv);
198 pthread_mutex_unlock(&pm->queue_lock);
199 pthread_exit(0);
200 return 0;
201 break;
202
203 case VL_API_MEMCLNT_RX_THREAD_SUSPEND:
204 vl_msg_api_free((void * )msg);
205 /* Suspend thread and signal reader */
206 pthread_mutex_lock(&pm->queue_lock);
207 pthread_cond_signal(&pm->suspend_cv);
208 /* Wait for the resume signal */
209 pthread_cond_wait (&pm->resume_cv, &pm->queue_lock);
210 pthread_mutex_unlock(&pm->queue_lock);
211 break;
212
213 case VL_API_MEMCLNT_READ_TIMEOUT:
214 clib_warning("Received read timeout in async thread\n");
215 vl_msg_api_free((void *) msg);
216 break;
217
Dave Barach59b25652017-09-10 15:04:27 -0400218 case VL_API_MEMCLNT_KEEPALIVE:
219 mp = (void *)msg;
220 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400221 clib_memset (rmp, 0, sizeof (*rmp));
Dave Barach59b25652017-09-10 15:04:27 -0400222 rmp->_vl_msg_id = ntohs(VL_API_MEMCLNT_KEEPALIVE_REPLY);
223 rmp->context = mp->context;
224 shmem_hdr = am->shmem_hdr;
225 vl_msg_api_send_shmem(shmem_hdr->vl_input_queue, (u8 *)&rmp);
226 vl_msg_api_free((void *) msg);
227 break;
228
Ole Troandfc9b7c2017-03-06 23:51:57 +0100229 default:
Damjan Marion5fec1e82017-04-13 19:13:47 +0200230 vac_api_handler((void *)msg);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100231 }
232 }
233}
234
235static void *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200236vac_timeout_thread_fn (void *arg)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100237{
238 vl_api_memclnt_read_timeout_t *ep;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200239 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100240 api_main_t *am = &api_main;
241 struct timespec ts;
242 struct timeval tv;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100243 int rv;
244
Neale Ranns1d652792018-07-26 08:05:53 -0700245 while (pm->timeout_loop)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100246 {
247 /* Wait for poke */
248 pthread_mutex_lock(&pm->timeout_lock);
Ole Troande728ac2018-10-08 11:24:22 +0200249 while (!timeout_in_progress)
250 pthread_cond_wait (&pm->timeout_cv, &pm->timeout_lock);
251
252 /* Starting timer */
Ole Troandfc9b7c2017-03-06 23:51:57 +0100253 gettimeofday(&tv, NULL);
Ole Troande728ac2018-10-08 11:24:22 +0200254 ts.tv_sec = tv.tv_sec + read_timeout;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100255 ts.tv_nsec = 0;
Ole Troande728ac2018-10-08 11:24:22 +0200256
257 if (!timeout_cancelled) {
258 rv = pthread_cond_timedwait (&pm->timeout_cancel_cv,
259 &pm->timeout_lock, &ts);
260 if (rv == ETIMEDOUT && !timeout_thread_cancelled) {
Ole Troandfc9b7c2017-03-06 23:51:57 +0100261 ep = vl_msg_api_alloc (sizeof (*ep));
262 ep->_vl_msg_id = ntohs(VL_API_MEMCLNT_READ_TIMEOUT);
263 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
264 }
Ole Troande728ac2018-10-08 11:24:22 +0200265 }
266
267 pthread_mutex_unlock(&pm->timeout_lock);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100268 }
Damjan Marion7cd468a2016-12-19 23:05:39 +0100269 pthread_exit(0);
270}
271
Ole Troandfc9b7c2017-03-06 23:51:57 +0100272void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200273vac_rx_suspend (void)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100274{
275 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200276 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100277 vl_api_memclnt_rx_thread_suspend_t *ep;
278
279 if (!pm->rx_thread_handle) return;
280 pthread_mutex_lock(&pm->queue_lock);
281 if (rx_is_running)
282 {
283 ep = vl_msg_api_alloc (sizeof (*ep));
284 ep->_vl_msg_id = ntohs(VL_API_MEMCLNT_RX_THREAD_SUSPEND);
285 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
Paul Vinciguerraec11b132018-09-24 05:25:00 -0700286 /* Wait for RX thread to tell us it has suspended */
Ole Troandfc9b7c2017-03-06 23:51:57 +0100287 pthread_cond_wait(&pm->suspend_cv, &pm->queue_lock);
288 rx_is_running = false;
289 }
290 pthread_mutex_unlock(&pm->queue_lock);
291}
292
293void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200294vac_rx_resume (void)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100295{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200296 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100297 if (!pm->rx_thread_handle) return;
298 pthread_mutex_lock(&pm->queue_lock);
Ole Troanad0697a2017-03-09 21:10:45 +0100299 if (rx_is_running) goto unlock;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100300 pthread_cond_signal(&pm->resume_cv);
301 rx_is_running = true;
Ole Troanad0697a2017-03-09 21:10:45 +0100302 unlock:
Ole Troandfc9b7c2017-03-06 23:51:57 +0100303 pthread_mutex_unlock(&pm->queue_lock);
304}
305
Ole Troan3cc49712017-03-08 12:02:24 +0100306static uword *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200307vac_msg_table_get_hash (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100308{
309 api_main_t *am = &api_main;
310 return (am->msg_index_by_name_and_crc);
311}
312
313int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200314vac_msg_table_size(void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100315{
316 api_main_t *am = &api_main;
317 return hash_elts(am->msg_index_by_name_and_crc);
318}
319
320int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200321vac_connect (char * name, char * chroot_prefix, vac_callback_t cb,
Dave Barachf9526922017-01-06 16:33:06 -0500322 int rx_qlen)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100323{
Ole Troanc5607892019-04-10 19:32:02 +0200324 rx_thread_done = false;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100325 int rv = 0;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200326 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100327
Ole Troandfc9b7c2017-03-06 23:51:57 +0100328 init();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100329 if (chroot_prefix != NULL)
330 vl_set_memory_root_path (chroot_prefix);
331
332 if ((rv = vl_client_api_map("/vpe-api"))) {
Ondrej Fabrye29cb672018-08-16 08:36:19 +0200333 clib_warning ("vl_client_api_map returned %d", rv);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100334 return rv;
335 }
336
Dave Barachf9526922017-01-06 16:33:06 -0500337 if (vl_client_connect(name, 0, rx_qlen) < 0) {
Damjan Marion7cd468a2016-12-19 23:05:39 +0100338 vl_client_api_unmap();
339 return (-1);
340 }
341
342 if (cb) {
343 /* Start the rx queue thread */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200344 rv = pthread_create(&pm->rx_thread_handle, NULL, vac_rx_thread_fn, 0);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100345 if (rv) {
346 clib_warning("pthread_create returned %d", rv);
347 vl_client_api_unmap();
348 return (-1);
349 }
Damjan Marion5fec1e82017-04-13 19:13:47 +0200350 vac_callback = cb;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100351 rx_is_running = true;
352 }
353
354 /* Start read timeout thread */
355 rv = pthread_create(&pm->timeout_thread_handle, NULL,
Damjan Marion5fec1e82017-04-13 19:13:47 +0200356 vac_timeout_thread_fn, 0);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100357 if (rv) {
358 clib_warning("pthread_create returned %d", rv);
359 vl_client_api_unmap();
360 return (-1);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100361 }
362
363 pm->connected_to_vlib = 1;
364
365 return (0);
366}
Neale Rannsc16f6b32018-06-03 21:21:19 -0700367static void
368set_timeout (unsigned short timeout)
369{
370 vac_main_t *pm = &vac_main;
371 pthread_mutex_lock(&pm->timeout_lock);
372 read_timeout = timeout;
Ole Troande728ac2018-10-08 11:24:22 +0200373 timeout_in_progress = true;
374 timeout_cancelled = false;
Neale Rannsc16f6b32018-06-03 21:21:19 -0700375 pthread_cond_signal(&pm->timeout_cv);
376 pthread_mutex_unlock(&pm->timeout_lock);
377}
378
379static void
380unset_timeout (void)
381{
382 vac_main_t *pm = &vac_main;
383 pthread_mutex_lock(&pm->timeout_lock);
Ole Troande728ac2018-10-08 11:24:22 +0200384 timeout_in_progress = false;
385 timeout_cancelled = true;
Neale Rannsc16f6b32018-06-03 21:21:19 -0700386 pthread_cond_signal(&pm->timeout_cancel_cv);
387 pthread_mutex_unlock(&pm->timeout_lock);
388}
389
Damjan Marion7cd468a2016-12-19 23:05:39 +0100390int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200391vac_disconnect (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100392{
393 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200394 vac_main_t *pm = &vac_main;
Neale Rannsc16f6b32018-06-03 21:21:19 -0700395 uword junk;
Ole Troanc5607892019-04-10 19:32:02 +0200396 int rv = 0;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100397
Ole Troandfc9b7c2017-03-06 23:51:57 +0100398 if (!pm->connected_to_vlib) return 0;
399
400 if (pm->rx_thread_handle) {
Damjan Marion7cd468a2016-12-19 23:05:39 +0100401 vl_api_rx_thread_exit_t *ep;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100402 ep = vl_msg_api_alloc (sizeof (*ep));
403 ep->_vl_msg_id = ntohs(VL_API_RX_THREAD_EXIT);
404 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100405
406 /* wait (with timeout) until RX thread has finished */
407 struct timespec ts;
408 struct timeval tv;
409 gettimeofday(&tv, NULL);
410 ts.tv_sec = tv.tv_sec + 5;
411 ts.tv_nsec = 0;
Ole Troanc5607892019-04-10 19:32:02 +0200412
Ole Troandfc9b7c2017-03-06 23:51:57 +0100413 pthread_mutex_lock(&pm->queue_lock);
Ole Troanc5607892019-04-10 19:32:02 +0200414 if (rx_thread_done == false)
415 rv = pthread_cond_timedwait(&pm->terminate_cv, &pm->queue_lock, &ts);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100416 pthread_mutex_unlock(&pm->queue_lock);
Ole Troanc5607892019-04-10 19:32:02 +0200417
Ole Troandfc9b7c2017-03-06 23:51:57 +0100418 /* now join so we wait until thread has -really- finished */
419 if (rv == ETIMEDOUT)
420 pthread_cancel(pm->rx_thread_handle);
421 else
422 pthread_join(pm->rx_thread_handle, (void **) &junk);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100423 }
Neale Rannsc16f6b32018-06-03 21:21:19 -0700424 if (pm->timeout_thread_handle) {
425 /* cancel, wake then join the timeout thread */
Neale Ranns1d652792018-07-26 08:05:53 -0700426 pm->timeout_loop = 0;
Ole Troan4e588aa2018-09-07 11:01:47 +0200427 timeout_thread_cancelled = true;
Neale Rannsc16f6b32018-06-03 21:21:19 -0700428 set_timeout(0);
429 pthread_join(pm->timeout_thread_handle, (void **) &junk);
430 }
Ole Troandfc9b7c2017-03-06 23:51:57 +0100431
432 vl_client_disconnect();
433 vl_client_api_unmap();
Damjan Marion5fec1e82017-04-13 19:13:47 +0200434 vac_callback = 0;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100435
436 cleanup();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100437
438 return (0);
439}
440
441int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200442vac_read (char **p, int *l, u16 timeout)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100443{
Florin Corase86a8ed2018-01-05 03:20:25 -0800444 svm_queue_t *q;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100445 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200446 vac_main_t *pm = &vac_main;
Dave Barach59b25652017-09-10 15:04:27 -0400447 vl_api_memclnt_keepalive_t *mp;
448 vl_api_memclnt_keepalive_reply_t *rmp;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100449 uword msg;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100450 msgbuf_t *msgbuf;
Dave Barach59b25652017-09-10 15:04:27 -0400451 int rv;
452 vl_shmem_hdr_t *shmem_hdr;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100453
Paul Vinciguerra08d82e92019-06-20 13:46:46 -0400454 /* svm_queue_sub(below) returns {-1, -2} */
455 if (!pm->connected_to_vlib) return -3;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100456
457 *l = 0;
458
Paul Vinciguerra08d82e92019-06-20 13:46:46 -0400459 /* svm_queue_sub(below) returns {-1, -2} */
460 if (am->our_pid == 0) return (-4);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100461
Ole Troandfc9b7c2017-03-06 23:51:57 +0100462 /* Poke timeout thread */
463 if (timeout)
464 set_timeout(timeout);
465
Damjan Marion7cd468a2016-12-19 23:05:39 +0100466 q = am->vl_input_queue;
Dave Barach59b25652017-09-10 15:04:27 -0400467
468 again:
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100469 rv = svm_queue_sub(q, (u8 *)&msg, SVM_Q_WAIT, 0);
470
Damjan Marion7cd468a2016-12-19 23:05:39 +0100471 if (rv == 0) {
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200472 VL_MSG_API_UNPOISON((void *)msg);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100473 u16 msg_id = ntohs(*((u16 *)msg));
Ole Troandfc9b7c2017-03-06 23:51:57 +0100474 switch (msg_id) {
475 case VL_API_RX_THREAD_EXIT:
Ole Troan73710c72018-06-04 22:27:49 +0200476 vl_msg_api_free((void *) msg);
Ole Troande728ac2018-10-08 11:24:22 +0200477 goto error;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100478 case VL_API_MEMCLNT_RX_THREAD_SUSPEND:
Ole Troandfc9b7c2017-03-06 23:51:57 +0100479 goto error;
480 case VL_API_MEMCLNT_READ_TIMEOUT:
Ole Troandfc9b7c2017-03-06 23:51:57 +0100481 goto error;
Dave Barach59b25652017-09-10 15:04:27 -0400482 case VL_API_MEMCLNT_KEEPALIVE:
483 /* Handle an alive-check ping from vpp. */
484 mp = (void *)msg;
485 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400486 clib_memset (rmp, 0, sizeof (*rmp));
Dave Barach59b25652017-09-10 15:04:27 -0400487 rmp->_vl_msg_id = ntohs(VL_API_MEMCLNT_KEEPALIVE_REPLY);
488 rmp->context = mp->context;
489 shmem_hdr = am->shmem_hdr;
490 vl_msg_api_send_shmem(shmem_hdr->vl_input_queue, (u8 *)&rmp);
491 vl_msg_api_free((void *) msg);
492 /*
493 * Python code is blissfully unaware of these pings, so
494 * act as if it never happened...
495 */
496 goto again;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100497
498 default:
499 msgbuf = (msgbuf_t *)(((u8 *)msg) - offsetof(msgbuf_t, data));
500 *l = ntohl(msgbuf->data_len);
501 if (*l == 0) {
Ole Troan4e588aa2018-09-07 11:01:47 +0200502 fprintf(stderr, "Unregistered API message: %d\n", msg_id);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100503 goto error;
504 }
Damjan Marion7cd468a2016-12-19 23:05:39 +0100505 }
506 *p = (char *)msg;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100507
Ole Troandfc9b7c2017-03-06 23:51:57 +0100508
Damjan Marion7cd468a2016-12-19 23:05:39 +0100509 } else {
Ole Troan4e588aa2018-09-07 11:01:47 +0200510 fprintf(stderr, "Read failed with %d\n", rv);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100511 }
Ole Troande728ac2018-10-08 11:24:22 +0200512 /* Let timeout notification thread know we're done */
513 if (timeout)
514 unset_timeout();
515
Damjan Marion7cd468a2016-12-19 23:05:39 +0100516 return (rv);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100517
518 error:
Ole Troande728ac2018-10-08 11:24:22 +0200519 if (timeout)
520 unset_timeout();
Ole Troandfc9b7c2017-03-06 23:51:57 +0100521 vl_msg_api_free((void *) msg);
522 /* Client might forget to resume RX thread on failure */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200523 vac_rx_resume ();
Ole Troandfc9b7c2017-03-06 23:51:57 +0100524 return -1;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100525}
526
527/*
528 * XXX: Makes the assumption that client_index is the first member
529 */
530typedef VL_API_PACKED(struct _vl_api_header {
531 u16 _vl_msg_id;
532 u32 client_index;
533}) vl_api_header_t;
534
Ole Troan94495f22018-08-02 11:58:12 +0200535static u32
Damjan Marion5fec1e82017-04-13 19:13:47 +0200536vac_client_index (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100537{
538 return (api_main.my_client_index);
539}
540
541int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200542vac_write (char *p, int l)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100543{
544 int rv = -1;
545 api_main_t *am = &api_main;
546 vl_api_header_t *mp = vl_msg_api_alloc(l);
Florin Corase86a8ed2018-01-05 03:20:25 -0800547 svm_queue_t *q;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200548 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100549
550 if (!pm->connected_to_vlib) return -1;
551 if (!mp) return (-1);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100552
Damjan Marion7cd468a2016-12-19 23:05:39 +0100553 memcpy(mp, p, l);
Damjan Marion5fec1e82017-04-13 19:13:47 +0200554 mp->client_index = vac_client_index();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100555 q = am->shmem_hdr->vl_input_queue;
Florin Corase86a8ed2018-01-05 03:20:25 -0800556 rv = svm_queue_add(q, (u8 *)&mp, 0);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100557 if (rv != 0) {
Ole Troan4e588aa2018-09-07 11:01:47 +0200558 fprintf(stderr, "vpe_api_write fails: %d\n", rv);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100559 /* Clear message */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200560 vac_free(mp);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100561 }
562 return (rv);
563}
564
Ole Troan3cc49712017-03-08 12:02:24 +0100565int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200566vac_get_msg_index (unsigned char * name)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100567{
Florin Corase86a8ed2018-01-05 03:20:25 -0800568 return vl_msg_api_get_msg_index (name);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100569}
Ole Troan3cc49712017-03-08 12:02:24 +0100570
571int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200572vac_msg_table_max_index(void)
Ole Troan3cc49712017-03-08 12:02:24 +0100573{
574 int max = 0;
575 hash_pair_t *hp;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200576 uword *h = vac_msg_table_get_hash();
Ole Troan3cc49712017-03-08 12:02:24 +0100577 hash_foreach_pair (hp, h,
578 ({
579 if (hp->value[0] > max)
580 max = hp->value[0];
581 }));
582
583 return max;
584}
585
586void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200587vac_set_error_handler (vac_error_callback_t cb)
Ole Troan3cc49712017-03-08 12:02:24 +0100588{
589 if (cb) clib_error_register_handler (cb, 0);
590}