blob: f1488e2e513db535b4f0fdd43286ee779cdcc4dc [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 Troandfc9b7c2017-03-06 23:51:57 +010036/*
37 * Asynchronous mode:
38 * Client registers a callback. All messages are sent to the callback.
39 * Synchronous mode:
40 * Client calls blocking read().
41 * Clients are expected to collate events on a queue.
Damjan Marion5fec1e82017-04-13 19:13:47 +020042 * vac_write() -> suspends RX thread
43 * vac_read() -> resumes RX thread
Ole Troandfc9b7c2017-03-06 23:51:57 +010044 */
45
Damjan Marion7cd468a2016-12-19 23:05:39 +010046#define vl_typedefs /* define message structures */
47#include <vpp/api/vpe_all_api_h.h>
48#undef vl_typedefs
49
50#define vl_endianfun /* define message structures */
51#include <vpp/api/vpe_all_api_h.h>
52#undef vl_endianfun
53
54vlib_main_t vlib_global_main;
55vlib_main_t **vlib_mains;
56
57typedef struct {
Damjan Marion7cd468a2016-12-19 23:05:39 +010058 u8 connected_to_vlib;
Damjan Marion7cd468a2016-12-19 23:05:39 +010059 pthread_t rx_thread_handle;
Ole Troandfc9b7c2017-03-06 23:51:57 +010060 pthread_t timeout_thread_handle;
61 pthread_mutex_t queue_lock;
62 pthread_cond_t suspend_cv;
63 pthread_cond_t resume_cv;
64 pthread_mutex_t timeout_lock;
65 pthread_cond_t timeout_cv;
66 pthread_cond_t timeout_cancel_cv;
67 pthread_cond_t terminate_cv;
Damjan Marion5fec1e82017-04-13 19:13:47 +020068} vac_main_t;
Damjan Marion7cd468a2016-12-19 23:05:39 +010069
Damjan Marion5fec1e82017-04-13 19:13:47 +020070vac_main_t vac_main;
71vac_callback_t vac_callback;
Ole Troandfc9b7c2017-03-06 23:51:57 +010072u16 read_timeout = 0;
73bool rx_is_running = false;
74
Ole Troan73710c72018-06-04 22:27:49 +020075/* Set to true to enable memory tracing */
76bool mem_trace = false;
77
78__attribute__((constructor))
79static void
80vac_client_constructor (void)
81{
Ole Troan73710c72018-06-04 22:27:49 +020082 clib_mem_init (0, 1 << 30);
Dave Barach6a5adc32018-07-04 10:56:23 -040083#if USE_DLMALLOC == 0
84 {
85 u8 *heap;
86 mheap_t *h;
87
88 heap = clib_mem_get_per_cpu_heap ();
89 h = mheap_header (heap);
90 /* make the main heap thread-safe */
91 h->flags |= MHEAP_FLAG_THREAD_SAFE;
92 }
93#endif
Ole Troan73710c72018-06-04 22:27:49 +020094 if (mem_trace)
95 clib_mem_trace (1);
96}
97
98__attribute__((destructor))
99static void
100vac_client_destructor (void)
101{
102 if (mem_trace)
103 fformat(stderr, "TRACE: %s",
104 format (0, "%U\n",
105 format_mheap, clib_mem_get_heap (), 1));
106}
107
108
Ole Troandfc9b7c2017-03-06 23:51:57 +0100109static void
110init (void)
111{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200112 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100113 memset(pm, 0, sizeof(*pm));
114 pthread_mutex_init(&pm->queue_lock, NULL);
115 pthread_cond_init(&pm->suspend_cv, NULL);
116 pthread_cond_init(&pm->resume_cv, NULL);
117 pthread_mutex_init(&pm->timeout_lock, NULL);
118 pthread_cond_init(&pm->timeout_cv, NULL);
119 pthread_cond_init(&pm->timeout_cancel_cv, NULL);
120 pthread_cond_init(&pm->terminate_cv, NULL);
121}
122
123static void
124cleanup (void)
125{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200126 vac_main_t *pm = &vac_main;
Ole Troan73710c72018-06-04 22:27:49 +0200127 pthread_mutex_destroy(&pm->queue_lock);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100128 pthread_cond_destroy(&pm->suspend_cv);
129 pthread_cond_destroy(&pm->resume_cv);
Ole Troan73710c72018-06-04 22:27:49 +0200130 pthread_mutex_destroy(&pm->timeout_lock);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100131 pthread_cond_destroy(&pm->timeout_cv);
132 pthread_cond_destroy(&pm->timeout_cancel_cv);
133 pthread_cond_destroy(&pm->terminate_cv);
Ole Troan73710c72018-06-04 22:27:49 +0200134 memset(pm, 0, sizeof(*pm));
Ole Troandfc9b7c2017-03-06 23:51:57 +0100135}
Damjan Marion7cd468a2016-12-19 23:05:39 +0100136
137/*
138 * Satisfy external references when -lvlib is not available.
139 */
140void vlib_cli_output (struct vlib_main_t * vm, char * fmt, ...)
141{
142 clib_warning ("vlib_cli_output called...");
143}
144
145void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200146vac_free (void * msg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100147{
148 vl_msg_api_free (msg);
149}
150
151static void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200152vac_api_handler (void *msg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100153{
154 u16 id = ntohs(*((u16 *)msg));
Damjan Marion7cd468a2016-12-19 23:05:39 +0100155 msgbuf_t *msgbuf = (msgbuf_t *)(((u8 *)msg) - offsetof(msgbuf_t, data));
156 int l = ntohl(msgbuf->data_len);
157 if (l == 0)
158 clib_warning("Message ID %d has wrong length: %d\n", id, l);
159
160 /* Call Python callback */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200161 ASSERT(vac_callback);
162 (vac_callback)(msg, l);
163 vac_free(msg);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100164}
165
166static void *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200167vac_rx_thread_fn (void *arg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100168{
Florin Corase86a8ed2018-01-05 03:20:25 -0800169 svm_queue_t *q;
Dave Barach59b25652017-09-10 15:04:27 -0400170 vl_api_memclnt_keepalive_t *mp;
171 vl_api_memclnt_keepalive_reply_t *rmp;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200172 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100173 api_main_t *am = &api_main;
Dave Barach59b25652017-09-10 15:04:27 -0400174 vl_shmem_hdr_t *shmem_hdr;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100175 uword msg;
176
177 q = am->vl_input_queue;
178
Ole Troandfc9b7c2017-03-06 23:51:57 +0100179 while (1)
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100180 while (!svm_queue_sub(q, (u8 *)&msg, SVM_Q_WAIT, 0))
Ole Troandfc9b7c2017-03-06 23:51:57 +0100181 {
182 u16 id = ntohs(*((u16 *)msg));
183 switch (id) {
184 case VL_API_RX_THREAD_EXIT:
185 vl_msg_api_free((void *) msg);
186 /* signal waiting threads that this thread is about to terminate */
187 pthread_mutex_lock(&pm->queue_lock);
188 pthread_cond_signal(&pm->terminate_cv);
189 pthread_mutex_unlock(&pm->queue_lock);
190 pthread_exit(0);
191 return 0;
192 break;
193
194 case VL_API_MEMCLNT_RX_THREAD_SUSPEND:
195 vl_msg_api_free((void * )msg);
196 /* Suspend thread and signal reader */
197 pthread_mutex_lock(&pm->queue_lock);
198 pthread_cond_signal(&pm->suspend_cv);
199 /* Wait for the resume signal */
200 pthread_cond_wait (&pm->resume_cv, &pm->queue_lock);
201 pthread_mutex_unlock(&pm->queue_lock);
202 break;
203
204 case VL_API_MEMCLNT_READ_TIMEOUT:
205 clib_warning("Received read timeout in async thread\n");
206 vl_msg_api_free((void *) msg);
207 break;
208
Dave Barach59b25652017-09-10 15:04:27 -0400209 case VL_API_MEMCLNT_KEEPALIVE:
210 mp = (void *)msg;
211 rmp = vl_msg_api_alloc (sizeof (*rmp));
212 memset (rmp, 0, sizeof (*rmp));
213 rmp->_vl_msg_id = ntohs(VL_API_MEMCLNT_KEEPALIVE_REPLY);
214 rmp->context = mp->context;
215 shmem_hdr = am->shmem_hdr;
216 vl_msg_api_send_shmem(shmem_hdr->vl_input_queue, (u8 *)&rmp);
217 vl_msg_api_free((void *) msg);
218 break;
219
Ole Troandfc9b7c2017-03-06 23:51:57 +0100220 default:
Damjan Marion5fec1e82017-04-13 19:13:47 +0200221 vac_api_handler((void *)msg);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100222 }
223 }
224}
225
226static void *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200227vac_timeout_thread_fn (void *arg)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100228{
229 vl_api_memclnt_read_timeout_t *ep;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200230 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100231 api_main_t *am = &api_main;
232 struct timespec ts;
233 struct timeval tv;
234 u16 timeout;
235 int rv;
236
237 while (1)
238 {
239 /* Wait for poke */
240 pthread_mutex_lock(&pm->timeout_lock);
241 pthread_cond_wait (&pm->timeout_cv, &pm->timeout_lock);
242 timeout = read_timeout;
243 gettimeofday(&tv, NULL);
244 ts.tv_sec = tv.tv_sec + timeout;
245 ts.tv_nsec = 0;
246 rv = pthread_cond_timedwait (&pm->timeout_cancel_cv,
247 &pm->timeout_lock, &ts);
248 pthread_mutex_unlock(&pm->timeout_lock);
249 if (rv == ETIMEDOUT)
250 {
251 ep = vl_msg_api_alloc (sizeof (*ep));
252 ep->_vl_msg_id = ntohs(VL_API_MEMCLNT_READ_TIMEOUT);
253 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
254 }
255 }
Damjan Marion7cd468a2016-12-19 23:05:39 +0100256 pthread_exit(0);
257}
258
Ole Troandfc9b7c2017-03-06 23:51:57 +0100259void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200260vac_rx_suspend (void)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100261{
262 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200263 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100264 vl_api_memclnt_rx_thread_suspend_t *ep;
265
266 if (!pm->rx_thread_handle) return;
267 pthread_mutex_lock(&pm->queue_lock);
268 if (rx_is_running)
269 {
270 ep = vl_msg_api_alloc (sizeof (*ep));
271 ep->_vl_msg_id = ntohs(VL_API_MEMCLNT_RX_THREAD_SUSPEND);
272 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
273 /* Wait for RX thread to tell us it has suspendend */
274 pthread_cond_wait(&pm->suspend_cv, &pm->queue_lock);
275 rx_is_running = false;
276 }
277 pthread_mutex_unlock(&pm->queue_lock);
278}
279
280void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200281vac_rx_resume (void)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100282{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200283 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100284 if (!pm->rx_thread_handle) return;
285 pthread_mutex_lock(&pm->queue_lock);
Ole Troanad0697a2017-03-09 21:10:45 +0100286 if (rx_is_running) goto unlock;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100287 pthread_cond_signal(&pm->resume_cv);
288 rx_is_running = true;
Ole Troanad0697a2017-03-09 21:10:45 +0100289 unlock:
Ole Troandfc9b7c2017-03-06 23:51:57 +0100290 pthread_mutex_unlock(&pm->queue_lock);
291}
292
Ole Troan3cc49712017-03-08 12:02:24 +0100293static uword *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200294vac_msg_table_get_hash (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100295{
296 api_main_t *am = &api_main;
297 return (am->msg_index_by_name_and_crc);
298}
299
300int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200301vac_msg_table_size(void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100302{
303 api_main_t *am = &api_main;
304 return hash_elts(am->msg_index_by_name_and_crc);
305}
306
307int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200308vac_connect (char * name, char * chroot_prefix, vac_callback_t cb,
Dave Barachf9526922017-01-06 16:33:06 -0500309 int rx_qlen)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100310{
311 int rv = 0;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200312 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100313
Ole Troandfc9b7c2017-03-06 23:51:57 +0100314 init();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100315 if (chroot_prefix != NULL)
316 vl_set_memory_root_path (chroot_prefix);
317
318 if ((rv = vl_client_api_map("/vpe-api"))) {
319 clib_warning ("vl_client_api map rv %d", rv);
320 return rv;
321 }
322
Dave Barachf9526922017-01-06 16:33:06 -0500323 if (vl_client_connect(name, 0, rx_qlen) < 0) {
Damjan Marion7cd468a2016-12-19 23:05:39 +0100324 vl_client_api_unmap();
325 return (-1);
326 }
327
328 if (cb) {
329 /* Start the rx queue thread */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200330 rv = pthread_create(&pm->rx_thread_handle, NULL, vac_rx_thread_fn, 0);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100331 if (rv) {
332 clib_warning("pthread_create returned %d", rv);
333 vl_client_api_unmap();
334 return (-1);
335 }
Damjan Marion5fec1e82017-04-13 19:13:47 +0200336 vac_callback = cb;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100337 rx_is_running = true;
338 }
339
340 /* Start read timeout thread */
341 rv = pthread_create(&pm->timeout_thread_handle, NULL,
Damjan Marion5fec1e82017-04-13 19:13:47 +0200342 vac_timeout_thread_fn, 0);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100343 if (rv) {
344 clib_warning("pthread_create returned %d", rv);
345 vl_client_api_unmap();
346 return (-1);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100347 }
348
349 pm->connected_to_vlib = 1;
350
351 return (0);
352}
353
Neale Rannsc16f6b32018-06-03 21:21:19 -0700354static void
355set_timeout (unsigned short timeout)
356{
357 vac_main_t *pm = &vac_main;
358 pthread_mutex_lock(&pm->timeout_lock);
359 read_timeout = timeout;
360 pthread_cond_signal(&pm->timeout_cv);
361 pthread_mutex_unlock(&pm->timeout_lock);
362}
363
364static void
365unset_timeout (void)
366{
367 vac_main_t *pm = &vac_main;
368 pthread_mutex_lock(&pm->timeout_lock);
369 pthread_cond_signal(&pm->timeout_cancel_cv);
370 pthread_mutex_unlock(&pm->timeout_lock);
371}
372
Damjan Marion7cd468a2016-12-19 23:05:39 +0100373int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200374vac_disconnect (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100375{
376 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200377 vac_main_t *pm = &vac_main;
Neale Rannsc16f6b32018-06-03 21:21:19 -0700378 uword junk;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100379
Ole Troandfc9b7c2017-03-06 23:51:57 +0100380 if (!pm->connected_to_vlib) return 0;
381
382 if (pm->rx_thread_handle) {
Damjan Marion7cd468a2016-12-19 23:05:39 +0100383 vl_api_rx_thread_exit_t *ep;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100384 ep = vl_msg_api_alloc (sizeof (*ep));
385 ep->_vl_msg_id = ntohs(VL_API_RX_THREAD_EXIT);
386 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100387
388 /* wait (with timeout) until RX thread has finished */
389 struct timespec ts;
390 struct timeval tv;
391 gettimeofday(&tv, NULL);
392 ts.tv_sec = tv.tv_sec + 5;
393 ts.tv_nsec = 0;
394 pthread_mutex_lock(&pm->queue_lock);
395 int rv = pthread_cond_timedwait(&pm->terminate_cv, &pm->queue_lock, &ts);
396 pthread_mutex_unlock(&pm->queue_lock);
397 /* now join so we wait until thread has -really- finished */
398 if (rv == ETIMEDOUT)
399 pthread_cancel(pm->rx_thread_handle);
400 else
401 pthread_join(pm->rx_thread_handle, (void **) &junk);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100402 }
Neale Rannsc16f6b32018-06-03 21:21:19 -0700403 if (pm->timeout_thread_handle) {
404 /* cancel, wake then join the timeout thread */
Ole Troandfc9b7c2017-03-06 23:51:57 +0100405 pthread_cancel(pm->timeout_thread_handle);
Neale Rannsc16f6b32018-06-03 21:21:19 -0700406 set_timeout(0);
407 pthread_join(pm->timeout_thread_handle, (void **) &junk);
408 }
Ole Troandfc9b7c2017-03-06 23:51:57 +0100409
410 vl_client_disconnect();
411 vl_client_api_unmap();
Damjan Marion5fec1e82017-04-13 19:13:47 +0200412 vac_callback = 0;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100413
414 cleanup();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100415
416 return (0);
417}
418
419int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200420vac_read (char **p, int *l, u16 timeout)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100421{
Florin Corase86a8ed2018-01-05 03:20:25 -0800422 svm_queue_t *q;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100423 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200424 vac_main_t *pm = &vac_main;
Dave Barach59b25652017-09-10 15:04:27 -0400425 vl_api_memclnt_keepalive_t *mp;
426 vl_api_memclnt_keepalive_reply_t *rmp;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100427 uword msg;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100428 msgbuf_t *msgbuf;
Dave Barach59b25652017-09-10 15:04:27 -0400429 int rv;
430 vl_shmem_hdr_t *shmem_hdr;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100431
432 if (!pm->connected_to_vlib) return -1;
433
434 *l = 0;
435
436 if (am->our_pid == 0) return (-1);
437
Ole Troandfc9b7c2017-03-06 23:51:57 +0100438 /* Poke timeout thread */
439 if (timeout)
440 set_timeout(timeout);
441
Damjan Marion7cd468a2016-12-19 23:05:39 +0100442 q = am->vl_input_queue;
Dave Barach59b25652017-09-10 15:04:27 -0400443
444 again:
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100445 rv = svm_queue_sub(q, (u8 *)&msg, SVM_Q_WAIT, 0);
446
Damjan Marion7cd468a2016-12-19 23:05:39 +0100447 if (rv == 0) {
448 u16 msg_id = ntohs(*((u16 *)msg));
Ole Troandfc9b7c2017-03-06 23:51:57 +0100449 switch (msg_id) {
450 case VL_API_RX_THREAD_EXIT:
451 printf("Received thread exit\n");
Ole Troan73710c72018-06-04 22:27:49 +0200452 vl_msg_api_free((void *) msg);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100453 return -1;
454 case VL_API_MEMCLNT_RX_THREAD_SUSPEND:
455 printf("Received thread suspend\n");
456 goto error;
457 case VL_API_MEMCLNT_READ_TIMEOUT:
458 printf("Received read timeout %ds\n", timeout);
459 goto error;
Dave Barach59b25652017-09-10 15:04:27 -0400460 case VL_API_MEMCLNT_KEEPALIVE:
461 /* Handle an alive-check ping from vpp. */
462 mp = (void *)msg;
463 rmp = vl_msg_api_alloc (sizeof (*rmp));
464 memset (rmp, 0, sizeof (*rmp));
465 rmp->_vl_msg_id = ntohs(VL_API_MEMCLNT_KEEPALIVE_REPLY);
466 rmp->context = mp->context;
467 shmem_hdr = am->shmem_hdr;
468 vl_msg_api_send_shmem(shmem_hdr->vl_input_queue, (u8 *)&rmp);
469 vl_msg_api_free((void *) msg);
470 /*
471 * Python code is blissfully unaware of these pings, so
472 * act as if it never happened...
473 */
474 goto again;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100475
476 default:
477 msgbuf = (msgbuf_t *)(((u8 *)msg) - offsetof(msgbuf_t, data));
478 *l = ntohl(msgbuf->data_len);
479 if (*l == 0) {
480 printf("Unregistered API message: %d\n", msg_id);
481 goto error;
482 }
Damjan Marion7cd468a2016-12-19 23:05:39 +0100483 }
484 *p = (char *)msg;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100485
486 /* Let timeout notification thread know we're done */
487 unset_timeout();
488
Damjan Marion7cd468a2016-12-19 23:05:39 +0100489 } else {
490 printf("Read failed with %d\n", rv);
491 }
492 return (rv);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100493
494 error:
495 vl_msg_api_free((void *) msg);
496 /* Client might forget to resume RX thread on failure */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200497 vac_rx_resume ();
Ole Troandfc9b7c2017-03-06 23:51:57 +0100498 return -1;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100499}
500
501/*
502 * XXX: Makes the assumption that client_index is the first member
503 */
504typedef VL_API_PACKED(struct _vl_api_header {
505 u16 _vl_msg_id;
506 u32 client_index;
507}) vl_api_header_t;
508
509static unsigned int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200510vac_client_index (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100511{
512 return (api_main.my_client_index);
513}
514
515int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200516vac_write (char *p, int l)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100517{
518 int rv = -1;
519 api_main_t *am = &api_main;
520 vl_api_header_t *mp = vl_msg_api_alloc(l);
Florin Corase86a8ed2018-01-05 03:20:25 -0800521 svm_queue_t *q;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200522 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100523
524 if (!pm->connected_to_vlib) return -1;
525 if (!mp) return (-1);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100526
Damjan Marion7cd468a2016-12-19 23:05:39 +0100527 memcpy(mp, p, l);
Damjan Marion5fec1e82017-04-13 19:13:47 +0200528 mp->client_index = vac_client_index();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100529 q = am->shmem_hdr->vl_input_queue;
Florin Corase86a8ed2018-01-05 03:20:25 -0800530 rv = svm_queue_add(q, (u8 *)&mp, 0);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100531 if (rv != 0) {
Ole Troandfc9b7c2017-03-06 23:51:57 +0100532 clib_warning("vpe_api_write fails: %d\n", rv);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100533 /* Clear message */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200534 vac_free(mp);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100535 }
536 return (rv);
537}
538
Ole Troan3cc49712017-03-08 12:02:24 +0100539int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200540vac_get_msg_index (unsigned char * name)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100541{
Florin Corase86a8ed2018-01-05 03:20:25 -0800542 return vl_msg_api_get_msg_index (name);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100543}
Ole Troan3cc49712017-03-08 12:02:24 +0100544
545int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200546vac_msg_table_max_index(void)
Ole Troan3cc49712017-03-08 12:02:24 +0100547{
548 int max = 0;
549 hash_pair_t *hp;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200550 uword *h = vac_msg_table_get_hash();
Ole Troan3cc49712017-03-08 12:02:24 +0100551 hash_foreach_pair (hp, h,
552 ({
553 if (hp->value[0] > max)
554 max = hp->value[0];
555 }));
556
557 return max;
558}
559
560void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200561vac_set_error_handler (vac_error_callback_t cb)
Ole Troan3cc49712017-03-08 12:02:24 +0100562{
563 if (cb) clib_error_register_handler (cb, 0);
564}