658fd7e584c91ac5718e296236b7536fd4416a9a
[vpp.git] / src / vpp-api / vapi / vapi.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <stdint.h>
21 #include <arpa/inet.h>
22 #include <stddef.h>
23 #include <assert.h>
24
25 #include <vpp-api/vapi/vapi_dbg.h>
26 #include <vpp-api/vapi/vapi.h>
27 #include <vpp-api/vapi/vapi_internal.h>
28 #include <vppinfra/types.h>
29 #include <vppinfra/pool.h>
30 #include <vlib/vlib.h>
31 #include <vlibapi/api_common.h>
32 #include <vlibmemory/api_common.h>
33
34 /* we need to use control pings for some stuff and because we're forced to put
35  * the code in headers, we need a way to be able to grab the ids of these
36  * messages - so declare them here as extern */
37 vapi_msg_id_t vapi_msg_id_control_ping = 0;
38 vapi_msg_id_t vapi_msg_id_control_ping_reply = 0;
39
40 struct
41 {
42   size_t count;
43   vapi_message_desc_t **msgs;
44   size_t max_len_name_with_crc;
45 } __vapi_metadata;
46
47 typedef struct
48 {
49   u32 context;
50   vapi_cb_t callback;
51   void *callback_ctx;
52   bool is_dump;
53 } vapi_req_t;
54
55 static const u32 context_counter_mask = (1 << 31);
56
57 typedef struct
58 {
59   vapi_error_e (*cb) (vapi_ctx_t ctx, void *callback_ctx, vapi_msg_id_t id,
60                       void *payload);
61   void *ctx;
62 } vapi_generic_cb_with_ctx;
63
64 typedef struct
65 {
66   vapi_error_e (*cb) (vapi_ctx_t ctx, void *callback_ctx, void *payload);
67   void *ctx;
68 } vapi_event_cb_with_ctx;
69
70 struct vapi_ctx_s
71 {
72   vapi_mode_e mode;
73   int requests_size;            /* size of the requests array (circular queue) */
74   int requests_start;           /* index of first request */
75   int requests_count;           /* number of used slots */
76   vapi_req_t *requests;
77   u32 context_counter;
78   vapi_generic_cb_with_ctx generic_cb;
79   vapi_event_cb_with_ctx *event_cbs;
80   u16 *vapi_msg_id_t_to_vl_msg_id;
81   u16 vl_msg_id_max;
82   vapi_msg_id_t *vl_msg_id_to_vapi_msg_t;
83   bool connected;
84   pthread_mutex_t requests_mutex;
85 };
86
87 u32
88 vapi_gen_req_context (vapi_ctx_t ctx)
89 {
90   ++ctx->context_counter;
91   ctx->context_counter %= context_counter_mask;
92   return ctx->context_counter | context_counter_mask;
93 }
94
95 size_t
96 vapi_get_request_count (vapi_ctx_t ctx)
97 {
98   return ctx->requests_count;
99 }
100
101 bool
102 vapi_requests_full (vapi_ctx_t ctx)
103 {
104   return (ctx->requests_count == ctx->requests_size);
105 }
106
107 bool
108 vapi_requests_empty (vapi_ctx_t ctx)
109 {
110   return (0 == ctx->requests_count);
111 }
112
113 static int
114 vapi_requests_end (vapi_ctx_t ctx)
115 {
116   return (ctx->requests_start + ctx->requests_count) % ctx->requests_size;
117 }
118
119 void
120 vapi_store_request (vapi_ctx_t ctx, u32 context, bool is_dump,
121                     vapi_cb_t callback, void *callback_ctx)
122 {
123   assert (!vapi_requests_full (ctx));
124   /* if the mutex is not held, bad things will happen */
125   assert (0 != pthread_mutex_trylock (&ctx->requests_mutex));
126   const int requests_end = vapi_requests_end (ctx);
127   vapi_req_t *slot = &ctx->requests[requests_end];
128   slot->is_dump = is_dump;
129   slot->context = context;
130   slot->callback = callback;
131   slot->callback_ctx = callback_ctx;
132   VAPI_DBG ("stored@%d: context:%x (start is @%d)", requests_end, context,
133             ctx->requests_start);
134   ++ctx->requests_count;
135   assert (!vapi_requests_empty (ctx));
136 }
137
138 #if VAPI_DEBUG_ALLOC
139 struct to_be_freed_s;
140 struct to_be_freed_s
141 {
142   void *v;
143   struct to_be_freed_s *next;
144 };
145
146 static struct to_be_freed_s *to_be_freed = NULL;
147
148 void
149 vapi_add_to_be_freed (void *v)
150 {
151   struct to_be_freed_s *prev = NULL;
152   struct to_be_freed_s *tmp;
153   tmp = to_be_freed;
154   while (tmp && tmp->v)
155     {
156       prev = tmp;
157       tmp = tmp->next;
158     }
159   if (!tmp)
160     {
161       if (!prev)
162         {
163           tmp = to_be_freed = calloc (1, sizeof (*to_be_freed));
164         }
165       else
166         {
167           tmp = prev->next = calloc (1, sizeof (*to_be_freed));
168         }
169     }
170   VAPI_DBG ("To be freed %p", v);
171   tmp->v = v;
172 }
173
174 void
175 vapi_trace_free (void *v)
176 {
177   struct to_be_freed_s *tmp = to_be_freed;
178   while (tmp && tmp->v != v)
179     {
180       tmp = tmp->next;
181     }
182   if (tmp && tmp->v == v)
183     {
184       VAPI_DBG ("Freed %p", v);
185       tmp->v = NULL;
186     }
187   else
188     {
189       VAPI_ERR ("Trying to free untracked pointer %p", v);
190       abort ();
191     }
192 }
193
194 void
195 vapi_to_be_freed_validate ()
196 {
197   struct to_be_freed_s *tmp = to_be_freed;
198   while (tmp)
199     {
200       if (tmp->v)
201         {
202           VAPI_ERR ("Unfreed msg %p!", tmp->v);
203         }
204       tmp = tmp->next;
205     }
206 }
207
208 #endif
209
210 void *
211 vapi_msg_alloc (vapi_ctx_t ctx, size_t size)
212 {
213   if (!ctx->connected)
214     {
215       return NULL;
216     }
217   void *rv = vl_msg_api_alloc_or_null (size);
218   return rv;
219 }
220
221 void
222 vapi_msg_free (vapi_ctx_t ctx, void *msg)
223 {
224   if (!ctx->connected)
225     {
226       return;
227     }
228 #if VAPI_DEBUG_ALLOC
229   vapi_trace_free (msg);
230 #endif
231   vl_msg_api_free (msg);
232 }
233
234 vapi_msg_id_t
235 vapi_lookup_vapi_msg_id_t (vapi_ctx_t ctx, u16 vl_msg_id)
236 {
237   if (vl_msg_id <= ctx->vl_msg_id_max)
238     {
239       return ctx->vl_msg_id_to_vapi_msg_t[vl_msg_id];
240     }
241   return INVALID_MSG_ID;
242 }
243
244 vapi_error_e
245 vapi_ctx_alloc (vapi_ctx_t * result)
246 {
247   vapi_ctx_t ctx = calloc (1, sizeof (struct vapi_ctx_s));
248   if (!ctx)
249     {
250       return VAPI_ENOMEM;
251     }
252   ctx->context_counter = 0;
253   ctx->vapi_msg_id_t_to_vl_msg_id =
254     malloc (__vapi_metadata.count *
255             sizeof (*ctx->vapi_msg_id_t_to_vl_msg_id));
256   if (!ctx->vapi_msg_id_t_to_vl_msg_id)
257     {
258       goto fail;
259     }
260   ctx->event_cbs = calloc (__vapi_metadata.count, sizeof (*ctx->event_cbs));
261   if (!ctx->event_cbs)
262     {
263       goto fail;
264     }
265   pthread_mutex_init (&ctx->requests_mutex, NULL);
266   *result = ctx;
267   return VAPI_OK;
268 fail:
269   vapi_ctx_free (ctx);
270   return VAPI_ENOMEM;
271 }
272
273 void
274 vapi_ctx_free (vapi_ctx_t ctx)
275 {
276   assert (!ctx->connected);
277   free (ctx->requests);
278   free (ctx->vapi_msg_id_t_to_vl_msg_id);
279   free (ctx->event_cbs);
280   free (ctx->vl_msg_id_to_vapi_msg_t);
281   pthread_mutex_destroy (&ctx->requests_mutex);
282   free (ctx);
283 }
284
285 bool
286 vapi_is_msg_available (vapi_ctx_t ctx, vapi_msg_id_t id)
287 {
288   return vapi_lookup_vl_msg_id (ctx, id) != UINT16_MAX;
289 }
290
291 vapi_error_e
292 vapi_connect (vapi_ctx_t ctx, const char *name,
293               const char *chroot_prefix,
294               int max_outstanding_requests,
295               int response_queue_size, vapi_mode_e mode)
296 {
297   if (response_queue_size <= 0 || max_outstanding_requests <= 0)
298     {
299       return VAPI_EINVAL;
300     }
301   ctx->requests_size = max_outstanding_requests;
302   const size_t size = ctx->requests_size * sizeof (*ctx->requests);
303   void *tmp = realloc (ctx->requests, size);
304   if (!tmp)
305     {
306       return VAPI_ENOMEM;
307     }
308   ctx->requests = tmp;
309   memset (ctx->requests, 0, size);
310   /* coverity[MISSING_LOCK] - 177211 requests_mutex is not needed here */
311   ctx->requests_start = ctx->requests_count = 0;
312   if (chroot_prefix)
313     {
314       VAPI_DBG ("set memory root path `%s'", chroot_prefix);
315       vl_set_memory_root_path ((char *) chroot_prefix);
316     }
317   static char api_map[] = "/vpe-api";
318   VAPI_DBG ("client api map `%s'", api_map);
319   if ((vl_client_api_map (api_map)) < 0)
320     {
321       return VAPI_EMAP_FAIL;
322     }
323   VAPI_DBG ("connect client `%s'", name);
324   if (vl_client_connect ((char *) name, 0, response_queue_size) < 0)
325     {
326       vl_client_api_unmap ();
327       return VAPI_ECON_FAIL;
328     }
329 #if VAPI_DEBUG_CONNECT
330   VAPI_DBG ("start probing messages");
331 #endif
332   int rv;
333   int i;
334   for (i = 0; i < __vapi_metadata.count; ++i)
335     {
336       vapi_message_desc_t *m = __vapi_metadata.msgs[i];
337       u8 scratch[m->name_with_crc_len + 1];
338       memcpy (scratch, m->name_with_crc, m->name_with_crc_len + 1);
339       u32 id = vl_api_get_msg_index (scratch);
340       if (INVALID_MSG_ID != id)
341         {
342           if (id > UINT16_MAX)
343             {
344               VAPI_ERR ("Returned vl_msg_id `%u' > UINT16MAX `%u'!", id,
345                         UINT16_MAX);
346               rv = VAPI_EINVAL;
347               goto fail;
348             }
349           if (id > ctx->vl_msg_id_max)
350             {
351               vapi_msg_id_t *tmp = realloc (ctx->vl_msg_id_to_vapi_msg_t,
352                                             sizeof
353                                             (*ctx->vl_msg_id_to_vapi_msg_t) *
354                                             (id + 1));
355               if (!tmp)
356                 {
357                   rv = VAPI_ENOMEM;
358                   goto fail;
359                 }
360               ctx->vl_msg_id_to_vapi_msg_t = tmp;
361               ctx->vl_msg_id_max = id;
362             }
363           ctx->vl_msg_id_to_vapi_msg_t[id] = m->id;
364           ctx->vapi_msg_id_t_to_vl_msg_id[m->id] = id;
365 #if VAPI_DEBUG_CONNECT
366           VAPI_DBG ("Message `%s' has vl_msg_id `%u'", m->name_with_crc,
367                     (unsigned) id);
368 #endif
369         }
370       else
371         {
372           ctx->vapi_msg_id_t_to_vl_msg_id[m->id] = UINT16_MAX;
373           VAPI_DBG ("Message `%s' not available", m->name_with_crc);
374         }
375     }
376 #if VAPI_DEBUG_CONNECT
377   VAPI_DBG ("finished probing messages");
378 #endif
379   if (!vapi_is_msg_available (ctx, vapi_msg_id_control_ping) ||
380       !vapi_is_msg_available (ctx, vapi_msg_id_control_ping_reply))
381     {
382       VAPI_ERR
383         ("control ping or control ping reply not available, cannot connect");
384       rv = VAPI_EINCOMPATIBLE;
385       goto fail;
386     }
387   ctx->mode = mode;
388   ctx->connected = true;
389   return VAPI_OK;
390 fail:
391   vl_client_disconnect ();
392   vl_client_api_unmap ();
393   return rv;
394 }
395
396 vapi_error_e
397 vapi_disconnect (vapi_ctx_t ctx)
398 {
399   if (!ctx->connected)
400     {
401       return VAPI_EINVAL;
402     }
403   vl_client_disconnect ();
404   vl_client_api_unmap ();
405 #if VAPI_DEBUG_ALLOC
406   vapi_to_be_freed_validate ();
407 #endif
408   ctx->connected = false;
409   return VAPI_OK;
410 }
411
412 vapi_error_e
413 vapi_get_fd (vapi_ctx_t ctx, int *fd)
414 {
415   return VAPI_ENOTSUP;
416 }
417
418 vapi_error_e
419 vapi_send (vapi_ctx_t ctx, void *msg)
420 {
421   vapi_error_e rv = VAPI_OK;
422   if (!ctx || !msg || !ctx->connected)
423     {
424       rv = VAPI_EINVAL;
425       goto out;
426     }
427   int tmp;
428   unix_shared_memory_queue_t *q = api_main.shmem_hdr->vl_input_queue;
429 #if VAPI_DEBUG
430   unsigned msgid = be16toh (*(u16 *) msg);
431   if (msgid <= ctx->vl_msg_id_max)
432     {
433       vapi_msg_id_t id = ctx->vl_msg_id_to_vapi_msg_t[msgid];
434       if (id < __vapi_metadata.count)
435         {
436           VAPI_DBG ("send msg@%p:%u[%s]", msg, msgid,
437                     __vapi_metadata.msgs[id]->name);
438         }
439       else
440         {
441           VAPI_DBG ("send msg@%p:%u[UNKNOWN]", msg, msgid);
442         }
443     }
444   else
445     {
446       VAPI_DBG ("send msg@%p:%u[UNKNOWN]", msg, msgid);
447     }
448 #endif
449   tmp = unix_shared_memory_queue_add (q, (u8 *) & msg,
450                                       VAPI_MODE_BLOCKING ==
451                                       ctx->mode ? 0 : 1);
452   if (tmp < 0)
453     {
454       rv = VAPI_EAGAIN;
455     }
456 out:
457   VAPI_DBG ("vapi_send() rv = %d", rv);
458   return rv;
459 }
460
461 vapi_error_e
462 vapi_send2 (vapi_ctx_t ctx, void *msg1, void *msg2)
463 {
464   vapi_error_e rv = VAPI_OK;
465   if (!ctx || !msg1 || !msg2 || !ctx->connected)
466     {
467       rv = VAPI_EINVAL;
468       goto out;
469     }
470   unix_shared_memory_queue_t *q = api_main.shmem_hdr->vl_input_queue;
471 #if VAPI_DEBUG
472   unsigned msgid1 = be16toh (*(u16 *) msg1);
473   unsigned msgid2 = be16toh (*(u16 *) msg2);
474   const char *name1 = "UNKNOWN";
475   const char *name2 = "UNKNOWN";
476   if (msgid1 <= ctx->vl_msg_id_max)
477     {
478       vapi_msg_id_t id = ctx->vl_msg_id_to_vapi_msg_t[msgid1];
479       if (id < __vapi_metadata.count)
480         {
481           name1 = __vapi_metadata.msgs[id]->name;
482         }
483     }
484   if (msgid2 <= ctx->vl_msg_id_max)
485     {
486       vapi_msg_id_t id = ctx->vl_msg_id_to_vapi_msg_t[msgid2];
487       if (id < __vapi_metadata.count)
488         {
489           name2 = __vapi_metadata.msgs[id]->name;
490         }
491     }
492   VAPI_DBG ("send two: %u[%s], %u[%s]", msgid1, name1, msgid2, name2);
493 #endif
494   int tmp = unix_shared_memory_queue_add2 (q, (u8 *) & msg1, (u8 *) & msg2,
495                                            VAPI_MODE_BLOCKING ==
496                                            ctx->mode ? 0 : 1);
497   if (tmp < 0)
498     {
499       rv = VAPI_EAGAIN;
500     }
501 out:
502   VAPI_DBG ("vapi_send() rv = %d", rv);
503   return rv;
504 }
505
506 vapi_error_e
507 vapi_recv (vapi_ctx_t ctx, void **msg, size_t * msg_size)
508 {
509   if (!ctx || !ctx->connected || !msg || !msg_size)
510     {
511       return VAPI_EINVAL;
512     }
513   vapi_error_e rv = VAPI_OK;
514   api_main_t *am = &api_main;
515   uword data;
516
517   if (am->our_pid == 0)
518     {
519       return VAPI_EINVAL;
520     }
521
522   unix_shared_memory_queue_t *q = am->vl_input_queue;
523   VAPI_DBG ("doing shm queue sub");
524   int tmp = unix_shared_memory_queue_sub (q, (u8 *) & data, 0);
525   if (tmp == 0)
526     {
527 #if VAPI_DEBUG_ALLOC
528       vapi_add_to_be_freed ((void *) data);
529 #endif
530       msgbuf_t *msgbuf =
531         (msgbuf_t *) ((u8 *) data - offsetof (msgbuf_t, data));
532       if (!msgbuf->data_len)
533         {
534           vapi_msg_free (ctx, (u8 *) data);
535           return VAPI_EAGAIN;
536         }
537       *msg = (u8 *) data;
538       *msg_size = ntohl (msgbuf->data_len);
539 #if VAPI_DEBUG
540       unsigned msgid = be16toh (*(u16 *) * msg);
541       if (msgid <= ctx->vl_msg_id_max)
542         {
543           vapi_msg_id_t id = ctx->vl_msg_id_to_vapi_msg_t[msgid];
544           if (id < __vapi_metadata.count)
545             {
546               VAPI_DBG ("recv msg@%p:%u[%s]", *msg, msgid,
547                         __vapi_metadata.msgs[id]->name);
548             }
549           else
550             {
551               VAPI_DBG ("recv msg@%p:%u[UNKNOWN]", *msg, msgid);
552             }
553         }
554       else
555         {
556           VAPI_DBG ("recv msg@%p:%u[UNKNOWN]", *msg, msgid);
557         }
558 #endif
559     }
560   else
561     {
562       rv = VAPI_EAGAIN;
563     }
564   return rv;
565 }
566
567 vapi_error_e
568 vapi_wait (vapi_ctx_t ctx, vapi_wait_mode_e mode)
569 {
570   return VAPI_ENOTSUP;
571 }
572
573 static vapi_error_e
574 vapi_dispatch_response (vapi_ctx_t ctx, vapi_msg_id_t id,
575                         u32 context, void *msg)
576 {
577   int mrv;
578   if (0 != (mrv = pthread_mutex_lock (&ctx->requests_mutex)))
579     {
580       VAPI_DBG ("pthread_mutex_lock() failed, rv=%d:%s", mrv, strerror (mrv));
581       return VAPI_MUTEX_FAILURE;
582     }
583   int tmp = ctx->requests_start;
584   const int requests_end = vapi_requests_end (ctx);
585   while (ctx->requests[tmp].context != context && tmp != requests_end)
586     {
587       ++tmp;
588       if (tmp == ctx->requests_size)
589         {
590           tmp = 0;
591         }
592     }
593   VAPI_DBG ("dispatch, search from %d, %s at %d", ctx->requests_start,
594             ctx->requests[tmp].context == context ? "matched" : "stopped",
595             tmp);
596   vapi_error_e rv = VAPI_OK;
597   if (ctx->requests[tmp].context == context)
598     {
599       while (ctx->requests_start != tmp)
600         {
601           VAPI_ERR ("No response to req with context=%u",
602                     (unsigned) ctx->requests[tmp].context);
603           ctx->requests[ctx->requests_start].callback (ctx,
604                                                        ctx->requests
605                                                        [ctx->
606                                                         requests_start].callback_ctx,
607                                                        VAPI_ENORESP, true,
608                                                        NULL);
609           memset (&ctx->requests[ctx->requests_start], 0,
610                   sizeof (ctx->requests[ctx->requests_start]));
611           ++ctx->requests_start;
612           --ctx->requests_count;
613           if (ctx->requests_start == ctx->requests_size)
614             {
615               ctx->requests_start = 0;
616             }
617         }
618       // now ctx->requests_start == tmp
619       int payload_offset = vapi_get_payload_offset (id);
620       void *payload = ((u8 *) msg) + payload_offset;
621       bool is_last = true;
622       if (ctx->requests[tmp].is_dump)
623         {
624           if (vapi_msg_id_control_ping_reply == id)
625             {
626               payload = NULL;
627             }
628           else
629             {
630               is_last = false;
631             }
632         }
633       if (payload_offset != -1)
634         {
635           rv =
636             ctx->requests[tmp].callback (ctx, ctx->requests[tmp].callback_ctx,
637                                          VAPI_OK, is_last, payload);
638         }
639       else
640         {
641           /* this is a message without payload, so bend the callback a little
642            */
643           rv =
644             ((vapi_error_e (*)(vapi_ctx_t, void *, vapi_error_e, bool))
645              ctx->requests[tmp].callback) (ctx,
646                                            ctx->requests[tmp].callback_ctx,
647                                            VAPI_OK, is_last);
648         }
649       if (is_last)
650         {
651           memset (&ctx->requests[ctx->requests_start], 0,
652                   sizeof (ctx->requests[ctx->requests_start]));
653           ++ctx->requests_start;
654           --ctx->requests_count;
655           if (ctx->requests_start == ctx->requests_size)
656             {
657               ctx->requests_start = 0;
658             }
659         }
660       VAPI_DBG ("after dispatch, req start = %d, end = %d, count = %d",
661                 ctx->requests_start, requests_end, ctx->requests_count);
662     }
663   if (0 != (mrv = pthread_mutex_unlock (&ctx->requests_mutex)))
664     {
665       VAPI_DBG ("pthread_mutex_unlock() failed, rv=%d:%s", mrv,
666                 strerror (mrv));
667       abort ();                 /* this really shouldn't happen */
668     }
669   return rv;
670 }
671
672 static vapi_error_e
673 vapi_dispatch_event (vapi_ctx_t ctx, vapi_msg_id_t id, void *msg)
674 {
675   if (ctx->event_cbs[id].cb)
676     {
677       return ctx->event_cbs[id].cb (ctx, ctx->event_cbs[id].ctx, msg);
678     }
679   else if (ctx->generic_cb.cb)
680     {
681       return ctx->generic_cb.cb (ctx, ctx->generic_cb.ctx, id, msg);
682     }
683   else
684     {
685       VAPI_DBG
686         ("No handler/generic handler for msg id %u[%s], message ignored",
687          (unsigned) id, __vapi_metadata.msgs[id]->name);
688     }
689   return VAPI_OK;
690 }
691
692 bool
693 vapi_msg_is_with_context (vapi_msg_id_t id)
694 {
695   assert (id <= __vapi_metadata.count);
696   return __vapi_metadata.msgs[id]->has_context;
697 }
698
699 vapi_error_e
700 vapi_dispatch_one (vapi_ctx_t ctx)
701 {
702   VAPI_DBG ("vapi_dispatch_one()");
703   void *msg;
704   size_t size;
705   vapi_error_e rv = vapi_recv (ctx, &msg, &size);
706   if (VAPI_OK != rv)
707     {
708       VAPI_DBG ("vapi_recv failed with rv=%d", rv);
709       return rv;
710     }
711   u16 vpp_id = be16toh (*(u16 *) msg);
712   if (vpp_id > ctx->vl_msg_id_max)
713     {
714       VAPI_ERR ("Unknown msg ID received, id `%u', out of range <0,%u>",
715                 (unsigned) vpp_id, (unsigned) ctx->vl_msg_id_max);
716       vapi_msg_free (ctx, msg);
717       return VAPI_EINVAL;
718     }
719   if (INVALID_MSG_ID == (unsigned) ctx->vl_msg_id_to_vapi_msg_t[vpp_id])
720     {
721       VAPI_ERR ("Unknown msg ID received, id `%u' marked as not supported",
722                 (unsigned) vpp_id);
723       vapi_msg_free (ctx, msg);
724       return VAPI_EINVAL;
725     }
726   const vapi_msg_id_t id = ctx->vl_msg_id_to_vapi_msg_t[vpp_id];
727   const size_t expect_size = vapi_get_message_size (id);
728   if (size < expect_size)
729     {
730       VAPI_ERR
731         ("Invalid msg received, unexpected size `%zu' < expected min `%zu'",
732          size, expect_size);
733       vapi_msg_free (ctx, msg);
734       return VAPI_EINVAL;
735     }
736   u32 context;
737   vapi_get_swap_to_host_func (id) (msg);
738   if (vapi_msg_is_with_context (id))
739     {
740       context = *(u32 *) (((u8 *) msg) + vapi_get_context_offset (id));
741       /* is this a message originating from VAPI? */
742       VAPI_DBG ("dispatch, context is %x", context);
743       if (context & context_counter_mask)
744         {
745           rv = vapi_dispatch_response (ctx, id, context, msg);
746           goto done;
747         }
748     }
749   rv = vapi_dispatch_event (ctx, id, msg);
750
751 done:
752   vapi_msg_free (ctx, msg);
753   return rv;
754 }
755
756 vapi_error_e
757 vapi_dispatch (vapi_ctx_t ctx)
758 {
759   vapi_error_e rv = VAPI_OK;
760   while (!vapi_requests_empty (ctx))
761     {
762       rv = vapi_dispatch_one (ctx);
763       if (VAPI_OK != rv)
764         {
765           return rv;
766         }
767     }
768   return rv;
769 }
770
771 void
772 vapi_set_event_cb (vapi_ctx_t ctx, vapi_msg_id_t id,
773                    vapi_event_cb callback, void *callback_ctx)
774 {
775   vapi_event_cb_with_ctx *c = &ctx->event_cbs[id];
776   c->cb = callback;
777   c->ctx = callback_ctx;
778 }
779
780 void
781 vapi_clear_event_cb (vapi_ctx_t ctx, vapi_msg_id_t id)
782 {
783   vapi_set_event_cb (ctx, id, NULL, NULL);
784 }
785
786 void
787 vapi_set_generic_event_cb (vapi_ctx_t ctx, vapi_generic_event_cb callback,
788                            void *callback_ctx)
789 {
790   ctx->generic_cb.cb = callback;
791   ctx->generic_cb.ctx = callback_ctx;
792 }
793
794 void
795 vapi_clear_generic_event_cb (vapi_ctx_t ctx)
796 {
797   ctx->generic_cb.cb = NULL;
798   ctx->generic_cb.ctx = NULL;
799 }
800
801 u16
802 vapi_lookup_vl_msg_id (vapi_ctx_t ctx, vapi_msg_id_t id)
803 {
804   assert (id < __vapi_metadata.count);
805   return ctx->vapi_msg_id_t_to_vl_msg_id[id];
806 }
807
808 int
809 vapi_get_client_index (vapi_ctx_t ctx)
810 {
811   return api_main.my_client_index;
812 }
813
814 bool
815 vapi_is_nonblocking (vapi_ctx_t ctx)
816 {
817   return (VAPI_MODE_NONBLOCKING == ctx->mode);
818 }
819
820 size_t
821 vapi_get_max_request_count (vapi_ctx_t ctx)
822 {
823   return ctx->requests_size - 1;
824 }
825
826 int
827 vapi_get_payload_offset (vapi_msg_id_t id)
828 {
829   assert (id < __vapi_metadata.count);
830   return __vapi_metadata.msgs[id]->payload_offset;
831 }
832
833 void (*vapi_get_swap_to_host_func (vapi_msg_id_t id)) (void *msg)
834 {
835   assert (id < __vapi_metadata.count);
836   return __vapi_metadata.msgs[id]->swap_to_host;
837 }
838
839 void (*vapi_get_swap_to_be_func (vapi_msg_id_t id)) (void *msg)
840 {
841   assert (id < __vapi_metadata.count);
842   return __vapi_metadata.msgs[id]->swap_to_be;
843 }
844
845 size_t
846 vapi_get_message_size (vapi_msg_id_t id)
847 {
848   assert (id < __vapi_metadata.count);
849   return __vapi_metadata.msgs[id]->size;
850 }
851
852 size_t
853 vapi_get_context_offset (vapi_msg_id_t id)
854 {
855   assert (id < __vapi_metadata.count);
856   return __vapi_metadata.msgs[id]->context_offset;
857 }
858
859 vapi_msg_id_t
860 vapi_register_msg (vapi_message_desc_t * msg)
861 {
862   int i = 0;
863   for (i = 0; i < __vapi_metadata.count; ++i)
864     {
865       if (!strcmp
866           (msg->name_with_crc, __vapi_metadata.msgs[i]->name_with_crc))
867         {
868           /* this happens if somebody is linking together several objects while
869            * using the static inline headers, just fill in the already
870            * assigned id here so that all the objects are in sync */
871           msg->id = __vapi_metadata.msgs[i]->id;
872           return msg->id;
873         }
874     }
875   vapi_msg_id_t id = __vapi_metadata.count;
876   ++__vapi_metadata.count;
877   __vapi_metadata.msgs =
878     realloc (__vapi_metadata.msgs,
879              sizeof (*__vapi_metadata.msgs) * __vapi_metadata.count);
880   __vapi_metadata.msgs[id] = msg;
881   size_t s = strlen (msg->name_with_crc);
882   if (s > __vapi_metadata.max_len_name_with_crc)
883     {
884       __vapi_metadata.max_len_name_with_crc = s;
885     }
886   msg->id = id;
887   return id;
888 }
889
890 vapi_error_e
891 vapi_producer_lock (vapi_ctx_t ctx)
892 {
893   int mrv;
894   if (0 != (mrv = pthread_mutex_lock (&ctx->requests_mutex)))
895     {
896       VAPI_DBG ("pthread_mutex_lock() failed, rv=%d:%s", mrv, strerror (mrv));
897       (void) mrv;               /* avoid warning if the above debug is not enabled */
898       return VAPI_MUTEX_FAILURE;
899     }
900   return VAPI_OK;
901 }
902
903 vapi_error_e
904 vapi_producer_unlock (vapi_ctx_t ctx)
905 {
906   int mrv;
907   if (0 != (mrv = pthread_mutex_unlock (&ctx->requests_mutex)))
908     {
909       VAPI_DBG ("pthread_mutex_unlock() failed, rv=%d:%s", mrv,
910                 strerror (mrv));
911       (void) mrv;               /* avoid warning if the above debug is not enabled */
912       return VAPI_MUTEX_FAILURE;
913     }
914   return VAPI_OK;
915 }
916
917 size_t
918 vapi_get_message_count ()
919 {
920   return __vapi_metadata.count;
921 }
922
923 const char *
924 vapi_get_msg_name (vapi_msg_id_t id)
925 {
926   return __vapi_metadata.msgs[id]->name;
927 }
928
929 /*
930  * fd.io coding-style-patch-verification: ON
931  *
932  * Local Variables:
933  * eval: (c-set-style "gnu")
934  * End:
935  */