FD.io VPP  v16.09
Vector Packet Processing
memory_shared.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * memclnt_shared.c - API message handling, common code for both clients
4  * and the vlib process itself.
5  *
6  *
7  * Copyright (c) 2009 Cisco and/or its affiliates.
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at:
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *------------------------------------------------------------------
20  */
21 
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stddef.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <signal.h>
28 #include <vppinfra/format.h>
29 #include <vppinfra/byte_order.h>
30 #include <vppinfra/error.h>
31 #include <vlib/vlib.h>
32 #include <vlib/unix/unix.h>
33 #include <vlibmemory/api.h>
35 
37 
38 #define vl_typedefs
40 #undef vl_typedefs
41 
42 static inline void *
43 vl_msg_api_alloc_internal (int nbytes, int pool)
44 {
45  int i;
46  msgbuf_t *rv;
47  ring_alloc_t *ap;
49  void *oldheap;
51  api_main_t *am = &api_main;
52 
53  shmem_hdr = am->shmem_hdr;
54 
55  if (shmem_hdr == 0)
56  {
57  clib_warning ("shared memory header NULL");
58  return 0;
59  }
60 
61  /* account for the msgbuf_t header */
62  nbytes += sizeof (msgbuf_t);
63 
64  if (shmem_hdr->vl_rings == 0)
65  {
66  clib_warning ("vl_rings NULL");
67  return 0;
68  }
69 
70  if (shmem_hdr->client_rings == 0)
71  {
72  clib_warning ("client_rings NULL");
73  return 0;
74  }
75 
76  ap = pool ? shmem_hdr->vl_rings : shmem_hdr->client_rings;
77  for (i = 0; i < vec_len (ap); i++)
78  {
79  /* Too big? */
80  if (nbytes > ap[i].size)
81  {
82  continue;
83  }
84 
85  q = ap[i].rp;
86  if (pool == 0)
87  {
88  pthread_mutex_lock (&q->mutex);
89  }
90  rv = (msgbuf_t *) (&q->data[0] + q->head * q->elsize);
91  /*
92  * Is this item still in use?
93  */
94  if (rv->q)
95  {
96  /* yes, loser; try next larger pool */
97  ap[i].misses++;
98  if (pool == 0)
99  pthread_mutex_unlock (&q->mutex);
100  continue;
101  }
102  /* OK, we have a winner */
103  ap[i].hits++;
104  /*
105  * Remember the source queue, although we
106  * don't need to know the queue to free the item.
107  */
108  rv->q = q;
109  q->head++;
110  if (q->head == q->maxsize)
111  q->head = 0;
112 
113  if (pool == 0)
114  pthread_mutex_unlock (&q->mutex);
115  goto out;
116  }
117 
118  /*
119  * Request too big, or head element of all size-compatible rings
120  * still in use. Fall back to shared-memory malloc.
121  */
122  am->ring_misses++;
123 
124  pthread_mutex_lock (&am->vlib_rp->mutex);
125  oldheap = svm_push_data_heap (am->vlib_rp);
126  rv = clib_mem_alloc (nbytes);
127  rv->q = 0;
128  svm_pop_heap (oldheap);
129  pthread_mutex_unlock (&am->vlib_rp->mutex);
130 
131 out:
132  rv->data_len = htonl (nbytes - sizeof (msgbuf_t));
133  return (rv->data);
134 }
135 
136 void *
137 vl_msg_api_alloc (int nbytes)
138 {
139  int pool;
140  api_main_t *am = &api_main;
142 
143  /*
144  * Clients use pool-0, vlib proc uses pool 1
145  */
146  pool = (am->our_pid == shmem_hdr->vl_pid);
147  return vl_msg_api_alloc_internal (nbytes, pool);
148 }
149 
150 void *
152 {
153  return vl_msg_api_alloc_internal (nbytes, 0);
154 }
155 
156 void
158 {
159  msgbuf_t *rv;
160  void *oldheap;
161  api_main_t *am = &api_main;
162 
163  rv = (msgbuf_t *) (((u8 *) a) - offsetof (msgbuf_t, data));
164 
165  /*
166  * Here's the beauty of the scheme. Only one proc/thread has
167  * control of a given message buffer. To free a buffer, we just clear the
168  * queue field, and leave. No locks, no hits, no errors...
169  */
170  if (rv->q)
171  {
172  rv->q = 0;
173  return;
174  }
175 
176  pthread_mutex_lock (&am->vlib_rp->mutex);
177  oldheap = svm_push_data_heap (am->vlib_rp);
178  clib_mem_free (rv);
179  svm_pop_heap (oldheap);
180  pthread_mutex_unlock (&am->vlib_rp->mutex);
181 }
182 
183 static void
185 {
186  msgbuf_t *rv;
187  void *oldheap;
188  api_main_t *am = &api_main;
189 
190  rv = (msgbuf_t *) (((u8 *) a) - offsetof (msgbuf_t, data));
191  /*
192  * Here's the beauty of the scheme. Only one proc/thread has
193  * control of a given message buffer. To free a buffer, we just clear the
194  * queue field, and leave. No locks, no hits, no errors...
195  */
196  if (rv->q)
197  {
198  rv->q = 0;
199  return;
200  }
201 
202  oldheap = svm_push_data_heap (am->vlib_rp);
203  clib_mem_free (rv);
204  svm_pop_heap (oldheap);
205 }
206 
207 void
209 {
210  api_main_t *am = &api_main;
211 
212  am->root_path = name;
213 }
214 
215 void
217 {
218  api_main_t *am = &api_main;
219 
220  am->api_uid = uid;
221 }
222 
223 void
225 {
226  api_main_t *am = &api_main;
227 
228  am->api_gid = gid;
229 }
230 
231 void
233 {
234  api_main_t *am = &api_main;
235 
236  am->global_baseva = baseva;
237 }
238 
239 void
241 {
242  api_main_t *am = &api_main;
243 
244  am->global_size = size;
245 }
246 
247 void
249 {
250  api_main_t *am = &api_main;
251 
252  am->api_size = size;
253 }
254 
255 void
257 {
258  api_main_t *am = &api_main;
259 
261 }
262 
263 void
265 {
266  api_main_t *am = &api_main;
267 
268  am->api_pvt_heap_size = size;
269 }
270 
271 int
272 vl_map_shmem (char *region_name, int is_vlib)
273 {
274  svm_map_region_args_t _a, *a = &_a;
275  svm_region_t *vlib_rp, *root_rp;
276  void *oldheap;
278  api_main_t *am = &api_main;
279  int i;
280  struct timespec ts, tsrem;
281 
282  if (is_vlib == 0)
284 
285  memset (a, 0, sizeof (*a));
286 
287  a->name = region_name;
288  a->size = am->api_size ? am->api_size : (16 << 20);
289  a->flags = SVM_FLAGS_MHEAP;
290  a->uid = am->api_uid;
291  a->gid = am->api_gid;
293 
294  vlib_rp = svm_region_find_or_create (a);
295 
296  if (vlib_rp == 0)
297  return (-2);
298 
299  pthread_mutex_lock (&vlib_rp->mutex);
300  /* Has someone else set up the shared-memory variable table? */
301  if (vlib_rp->user_ctx)
302  {
303  am->shmem_hdr = (void *) vlib_rp->user_ctx;
304  am->our_pid = getpid ();
305  if (is_vlib)
306  {
308  uword old_msg;
309  /*
310  * application restart. Reset cached pids, API message
311  * rings, list of clients; otherwise, various things
312  * fail. (e.g. queue non-empty notification)
313  */
314 
315  /* ghosts keep the region from disappearing properly */
318  q = am->shmem_hdr->vl_input_queue;
319  am->shmem_hdr->vl_pid = getpid ();
320  q->consumer_pid = am->shmem_hdr->vl_pid;
321  /* Drain the input queue, freeing msgs */
322  for (i = 0; i < 10; i++)
323  {
324  if (pthread_mutex_trylock (&q->mutex) == 0)
325  {
326  pthread_mutex_unlock (&q->mutex);
327  goto mutex_ok;
328  }
329  ts.tv_sec = 0;
330  ts.tv_nsec = 10000 * 1000; /* 10 ms */
331  while (nanosleep (&ts, &tsrem) < 0)
332  ts = tsrem;
333  }
334  /* Mutex buggered, "fix" it */
335  memset (&q->mutex, 0, sizeof (q->mutex));
336  clib_warning ("forcibly release main input queue mutex");
337 
338  mutex_ok:
339  am->vlib_rp = vlib_rp;
341  (u8 *) & old_msg,
342  1 /* nowait */ )
343  != -2 /* queue underflow */ )
344  {
345  vl_msg_api_free_nolock ((void *) old_msg);
347  }
348  pthread_mutex_unlock (&vlib_rp->mutex);
349  root_rp = svm_get_root_rp ();
350  ASSERT (root_rp);
351  /* Clean up the root region client list */
352  pthread_mutex_lock (&root_rp->mutex);
354  pthread_mutex_unlock (&root_rp->mutex);
355  }
356  else
357  {
358  pthread_mutex_unlock (&vlib_rp->mutex);
359  }
360  am->vlib_rp = vlib_rp;
361  vec_add1 (am->mapped_shmem_regions, vlib_rp);
362  return 0;
363  }
364  /* Clients simply have to wait... */
365  if (!is_vlib)
366  {
367  pthread_mutex_unlock (&vlib_rp->mutex);
368 
369  /* Wait up to 100 seconds... */
370  for (i = 0; i < 10000; i++)
371  {
372  ts.tv_sec = 0;
373  ts.tv_nsec = 10000 * 1000; /* 10 ms */
374  while (nanosleep (&ts, &tsrem) < 0)
375  ts = tsrem;
376  if (vlib_rp->user_ctx)
377  goto ready;
378  }
379  /* Clean up and leave... */
380  svm_region_unmap (vlib_rp);
381  clib_warning ("region init fail");
382  return (-2);
383 
384  ready:
385  am->shmem_hdr = (void *) vlib_rp->user_ctx;
386  am->our_pid = getpid ();
387  am->vlib_rp = vlib_rp;
388  vec_add1 (am->mapped_shmem_regions, vlib_rp);
389  return 0;
390  }
391 
392  /* Nope, it's our problem... */
393 
394  oldheap = svm_push_data_heap (vlib_rp);
395 
396  vec_validate (shmem_hdr, 0);
397  shmem_hdr->version = VL_SHM_VERSION;
398 
399  /* vlib main input queue */
400  shmem_hdr->vl_input_queue =
401  unix_shared_memory_queue_init (1024, sizeof (uword), getpid (),
402  am->vlib_signal);
403 
404  /* Set up the msg ring allocator */
405 #define _(sz,n) \
406  do { \
407  ring_alloc_t _rp; \
408  _rp.rp = unix_shared_memory_queue_init ((n), (sz), 0, 0); \
409  _rp.size = (sz); \
410  _rp.nitems = n; \
411  _rp.hits = 0; \
412  _rp.misses = 0; \
413  vec_add1(shmem_hdr->vl_rings, _rp); \
414  } while (0);
415 
417 #undef _
418 
419 #define _(sz,n) \
420  do { \
421  ring_alloc_t _rp; \
422  _rp.rp = unix_shared_memory_queue_init ((n), (sz), 0, 0); \
423  _rp.size = (sz); \
424  _rp.nitems = n; \
425  _rp.hits = 0; \
426  _rp.misses = 0; \
427  vec_add1(shmem_hdr->client_rings, _rp); \
428  } while (0);
429 
431 #undef _
432 
433  am->shmem_hdr = shmem_hdr;
434  am->vlib_rp = vlib_rp;
435  am->our_pid = getpid ();
436  if (is_vlib)
437  am->shmem_hdr->vl_pid = am->our_pid;
438 
439  svm_pop_heap (oldheap);
440 
441  /*
442  * After absolutely everything that a client might see is set up,
443  * declare the shmem region valid
444  */
445  vlib_rp->user_ctx = shmem_hdr;
446 
447  pthread_mutex_unlock (&vlib_rp->mutex);
448  vec_add1 (am->mapped_shmem_regions, vlib_rp);
449  return 0;
450 }
451 
452 void
454 {
455  api_main_t *am = &api_main;
456 
457  vec_add1 (am->mapped_shmem_regions, rp);
458 }
459 
460 void
462 {
463  svm_region_t *rp;
464  int i;
465  api_main_t *am = &api_main;
466 
467  if (!svm_get_root_rp ())
468  return;
469 
470  for (i = 0; i < vec_len (am->mapped_shmem_regions); i++)
471  {
472  rp = am->mapped_shmem_regions[i];
473  svm_region_unmap (rp);
474  }
475 
477  am->shmem_hdr = 0;
478 
479  svm_region_exit ();
480  /* $$$ more careful cleanup, valgrind run... */
481  vec_free (am->msg_handlers);
484 }
485 
486 void
488 {
489  api_main_t *am = &api_main;
490  uword *trace = (uword *) elem;
491 
492  if (am->tx_trace && am->tx_trace->enabled)
493  vl_msg_api_trace (am, am->tx_trace, (void *) trace[0]);
494 
495  (void) unix_shared_memory_queue_add (q, elem, 0 /* nowait */ );
496 }
497 
498 void
500 {
501  api_main_t *am = &api_main;
502  uword *trace = (uword *) elem;
503 
504  if (am->tx_trace && am->tx_trace->enabled)
505  vl_msg_api_trace (am, am->tx_trace, (void *) trace[0]);
506 
507  (void) unix_shared_memory_queue_add_nolock (q, elem);
508 }
509 
510 static void
512 {
513  api_main_t *am = &api_main;
514  int rv;
515 
516  am->my_client_index = mp->index;
518 
519  rv = ntohl (mp->response);
520 
521  if (rv < 0)
522  clib_warning ("WARNING: API mismatch detected");
523 }
524 
526  __attribute__ ((weak));
527 
528 void
530 {
531  int i;
532 
533  for (i = 0; i < ARRAY_LEN (mp->api_versions); i++)
534  mp->api_versions[i] = 0;
535 }
536 
537 int
538 vl_client_connect (char *name, int ctx_quota, int input_queue_size)
539 {
540  svm_region_t *svm;
543  unix_shared_memory_queue_t *vl_input_queue;
545  int rv = 0;
546  void *oldheap;
547  api_main_t *am = &api_main;
548 
549  if (am->my_registration)
550  {
551  clib_warning ("client %s already connected...", name);
552  return -1;
553  }
554 
555  if (am->vlib_rp == 0)
556  {
557  clib_warning ("am->vlib_rp NULL");
558  return -1;
559  }
560 
561  svm = am->vlib_rp;
562  shmem_hdr = am->shmem_hdr;
563 
564  if (shmem_hdr == 0 || shmem_hdr->vl_input_queue == 0)
565  {
566  clib_warning ("shmem_hdr / input queue NULL");
567  return -1;
568  }
569 
570  pthread_mutex_lock (&svm->mutex);
571  oldheap = svm_push_data_heap (svm);
572  vl_input_queue =
573  unix_shared_memory_queue_init (input_queue_size, sizeof (uword),
574  getpid (), 0);
575  pthread_mutex_unlock (&svm->mutex);
576  svm_pop_heap (oldheap);
577 
578  am->my_client_index = ~0;
579  am->my_registration = 0;
580  am->vl_input_queue = vl_input_queue;
581 
583  memset (mp, 0, sizeof (*mp));
584  mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_CREATE);
585  mp->ctx_quota = ctx_quota;
586  mp->input_queue = (uword) vl_input_queue;
587  strncpy ((char *) mp->name, name, sizeof (mp->name) - 1);
588 
590 
591  vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
592 
593  while (1)
594  {
595  int qstatus;
596  struct timespec ts, tsrem;
597  int i;
598 
599  /* Wait up to 10 seconds */
600  for (i = 0; i < 1000; i++)
601  {
602  qstatus = unix_shared_memory_queue_sub (vl_input_queue, (u8 *) & rp,
603  1 /* nowait */ );
604  if (qstatus == 0)
605  goto read_one_msg;
606  ts.tv_sec = 0;
607  ts.tv_nsec = 10000 * 1000; /* 10 ms */
608  while (nanosleep (&ts, &tsrem) < 0)
609  ts = tsrem;
610  }
611  /* Timeout... */
612  clib_warning ("memclnt_create_reply timeout");
613  return -1;
614 
615  read_one_msg:
616  if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_CREATE_REPLY)
617  {
618  clib_warning ("unexpected reply: id %d", ntohs (rp->_vl_msg_id));
619  continue;
620  }
621  rv = clib_net_to_host_u32 (rp->response);
622 
623  vl_msg_api_handler ((void *) rp);
624  break;
625  }
626  return (rv);
627 }
628 
629 static void
631 {
632  void *oldheap;
633  api_main_t *am = &api_main;
634 
635  pthread_mutex_lock (&am->vlib_rp->mutex);
636  oldheap = svm_push_data_heap (am->vlib_rp);
638  pthread_mutex_unlock (&am->vlib_rp->mutex);
639  svm_pop_heap (oldheap);
640 
641  am->my_client_index = ~0;
642  am->my_registration = 0;
643  am->vl_input_queue = 0;
644 }
645 
646 void
648 {
651  unix_shared_memory_queue_t *vl_input_queue;
653  time_t begin;
654  api_main_t *am = &api_main;
655 
656  ASSERT (am->vlib_rp);
657  shmem_hdr = am->shmem_hdr;
658  ASSERT (shmem_hdr && shmem_hdr->vl_input_queue);
659 
660  vl_input_queue = am->vl_input_queue;
661 
663  memset (mp, 0, sizeof (*mp));
664  mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_DELETE);
665  mp->index = am->my_client_index;
666  mp->handle = (uword) am->my_registration;
667 
668  vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
669 
670  /*
671  * Have to be careful here, in case the client is disconnecting
672  * because e.g. the vlib process died, or is unresponsive.
673  */
674 
675  begin = time (0);
676  while (1)
677  {
678  time_t now;
679 
680  now = time (0);
681 
682  if (now >= (begin + 2))
683  {
684  clib_warning ("peer unresponsive, give up");
685  am->my_client_index = ~0;
686  am->my_registration = 0;
687  am->shmem_hdr = 0;
688  break;
689  }
690  if (unix_shared_memory_queue_sub (vl_input_queue, (u8 *) & rp, 1) < 0)
691  continue;
692 
693  /* drain the queue */
694  if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_DELETE_REPLY)
695  {
696  vl_msg_api_handler ((void *) rp);
697  continue;
698  }
699  vl_msg_api_handler ((void *) rp);
700  break;
701  }
702 }
703 
704 static inline vl_api_registration_t *
706 {
707  vl_api_registration_t **regpp;
708  vl_api_registration_t *regp;
709  api_main_t *am = &api_main;
710  u32 index;
711 
712  index = vl_msg_api_handle_get_index (handle);
714  != vl_msg_api_handle_get_epoch (handle))
715  {
717  return 0;
718  }
719 
720  regpp = am->vl_clients + index;
721 
722  if (pool_is_free (am->vl_clients, regpp))
723  {
725  return 0;
726  }
727  regp = *regpp;
728  return (regp);
729 }
730 
733 {
735 }
736 
739 {
740  vl_api_registration_t *regp;
741 
743  if (!regp)
744  return 0;
745  return (regp->vl_input_queue);
746 }
747 
748 #define foreach_api_client_msg \
749 _(MEMCLNT_CREATE_REPLY, memclnt_create_reply) \
750 _(MEMCLNT_DELETE_REPLY, memclnt_delete_reply)
751 
752 int
753 vl_client_api_map (char *region_name)
754 {
755  int rv;
756 
757  if ((rv = vl_map_shmem (region_name, 0 /* is_vlib */ )) < 0)
758  {
759  return rv;
760  }
761 
762 #define _(N,n) \
763  vl_msg_api_set_handlers(VL_API_##N, 0 /* name */, \
764  vl_api_##n##_t_handler, \
765  0/* cleanup */, 0/* endian */, 0/* print */, \
766  sizeof(vl_api_##n##_t), 1);
768 #undef _
769  return 0;
770 }
771 
772 void
774 {
775  vl_unmap_shmem ();
776 }
777 
778 /*
779  * fd.io coding-style-patch-verification: ON
780  *
781  * Local Variables:
782  * eval: (c-set-style "gnu")
783  * End:
784  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:396
static void * vl_msg_api_alloc_internal(int nbytes, int pool)
Definition: memory_shared.c:43
u64 pvt_heap_size
Definition: svm.h:76
u64 api_pvt_heap_size
Definition: api.h:162
void vl_client_api_unmap(void)
svm_region_t * svm_get_root_rp(void)
Definition: svm.c:54
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:343
int vl_client_api_map(char *region_name)
static void svm_pop_heap(void *oldheap)
Definition: svm.h:189
a
Definition: bitmap.h:516
void vl_set_global_memory_baseva(u64 baseva)
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
Definition: memory_vlib.c:1168
#define foreach_clnt_aring_size
Definition: api.h:60
u64 api_size
Definition: api.h:156
u32 application_restarts
Definition: api.h:84
void vl_set_memory_uid(int uid)
unix_shared_memory_queue_t * vl_input_queue
Definition: api.h:73
int my_client_index
Definition: api.h:171
void unix_shared_memory_queue_free(unix_shared_memory_queue_t *q)
void vl_set_global_pvt_heap_size(u64 size)
void vl_unmap_shmem(void)
int vl_client_connect(char *name, int ctx_quota, int input_queue_size)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:482
int api_uid
Definition: api.h:145
ring_alloc_t * client_rings
Definition: api.h:81
u8 data[0]
Definition: api.h:96
#define pool_is_free(P, E)
Use free bitmap to query whether given element is free.
Definition: pool.h:203
static vl_api_registration_t * vl_api_client_index_to_registration_internal(u32 handle)
void * vl_msg_api_alloc(int nbytes)
int api_gid
Definition: api.h:147
void vl_set_memory_root_path(char *name)
unix_shared_memory_queue_t * vl_input_queue
Definition: api.h:165
void vl_set_global_memory_size(u64 size)
#define SVM_FLAGS_MHEAP
Definition: svm.h:32
api_main_t api_main
Definition: api.h:185
int our_pid
Definition: api.h:129
vl_api_registration_t * my_registration
Definition: api.h:177
u32 ring_misses
Definition: api.h:123
static void * svm_push_data_heap(svm_region_t *rp)
Definition: svm.h:181
vl_api_registration_t ** vl_clients
Definition: api.h:133
void * svm_region_find_or_create(svm_map_region_args_t *a)
Definition: svm.c:839
volatile void * user_ctx
Definition: svm.h:52
char * name
Definition: svm.h:73
int vl_map_shmem(char *region_name, int is_vlib)
svm_region_t * vlib_rp
Definition: api.h:130
int unix_shared_memory_queue_add_nolock(unix_shared_memory_queue_t *q, u8 *elem)
#define clib_warning(format, args...)
Definition: error.h:59
unsigned long u64
Definition: types.h:89
struct vl_shmem_hdr_ * shmem_hdr
Definition: api.h:132
vl_shmem_hdr_t * shmem_hdr
int unix_shared_memory_queue_add(unix_shared_memory_queue_t *q, u8 *elem, int nowait)
volatile int vl_pid
Definition: api.h:70
void vl_register_mapped_shmem_region(svm_region_t *rp)
vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
void(** msg_print_handlers)(void *, void *)
Definition: api.h:118
void vl_msg_api_send_shmem_nolock(unix_shared_memory_queue_t *q, u8 *elem)
void vl_msg_api_send_shmem(unix_shared_memory_queue_t *q, u8 *elem)
void svm_region_exit()
Definition: svm.c:1078
static u32 vl_msg_api_handle_get_index(u32 index)
Definition: api.h:111
void vl_set_api_pvt_heap_size(u64 size)
u64 global_size
Definition: api.h:153
u8 enabled
Definition: api.h:82
int unix_shared_memory_queue_sub(unix_shared_memory_queue_t *q, u8 *elem, int nowait)
ring_alloc_t * vl_rings
Definition: api.h:78
u64 global_baseva
Definition: api.h:150
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:300
unix_shared_memory_queue_t * vl_input_queue
Definition: api.h:53
unix_shared_memory_queue_t * q
Definition: api.h:94
void vl_msg_api_trace(api_main_t *am, vl_api_trace_t *tp, void *msg)
Definition: api_shared.c:83
void vl_set_memory_gid(int gid)
static void vl_msg_api_free_nolock(void *a)
void vl_msg_api_free(void *a)
#define ARRAY_LEN(x)
Definition: clib.h:59
#define VL_SHM_VERSION
Definition: api.h:99
struct msgbuf_ msgbuf_t
#define foreach_vl_aring_size
Definition: api.h:55
int version
Definition: api.h:67
vl_api_trace_t * tx_trace
Definition: api.h:126
#define ASSERT(truth)
#define VL_API_EPOCH_MASK
Definition: api.h:101
unsigned int u32
Definition: types.h:88
void svm_region_init_chroot(char *root_path)
Definition: svm.c:799
static void vl_api_memclnt_create_reply_t_handler(vl_api_memclnt_create_reply_t *mp)
u32 data_len
Definition: api.h:95
Definition: api.h:92
unix_shared_memory_queue_t * unix_shared_memory_queue_init(int nels, int elsize, int consumer_pid, int signal_when_queue_non_empty)
u32 size
Definition: vhost-user.h:77
static void clib_mem_free(void *p)
Definition: mem.h:154
u32 misses
Definition: api.h:47
u64 global_pvt_heap_size
Definition: api.h:159
static void * clib_mem_alloc(uword size)
Definition: mem.h:107
u32 restart_reclaims
Definition: api.h:87
i32 vlib_signal
Definition: api.h:179
u64 uword
Definition: types.h:112
char * root_path
Definition: api.h:182
#define foreach_api_client_msg
void(** msg_endian_handlers)(void *)
Definition: api.h:117
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
void vl_msg_api_handler(void *the_msg)
Definition: api_shared.c:520
void svm_region_unmap(void *rp_arg)
Definition: svm.c:958
void svm_client_scan_this_region_nolock(svm_region_t *rp)
Definition: svm.c:1126
unix_shared_memory_queue_t * vl_api_client_index_to_input_queue(u32 index)
static void vl_api_memclnt_delete_reply_t_handler(vl_api_memclnt_delete_reply_t *mp)
void vl_client_add_api_signatures(vl_api_memclnt_create_t *mp)
unix_shared_memory_queue_t * rp
Definition: api.h:43
void vl_msg_api_increment_missing_client_counter(void)
Definition: api_shared.c:53
void(** msg_handlers)(void *)
Definition: api.h:114
void vl_set_api_memory_size(u64 size)
void * vl_msg_api_alloc_as_if_client(int nbytes)
static u32 vl_msg_api_handle_get_epoch(u32 index)
Definition: api.h:105
svm_region_t ** mapped_shmem_regions
Definition: api.h:131
u32 hits
Definition: api.h:46
void vl_client_disconnect(void)
pthread_mutex_t mutex
Definition: svm.h:42
struct _unix_shared_memory_queue unix_shared_memory_queue_t
static svm_region_t * root_rp
Definition: svm.c:46