export counters in a memfd segment
[vpp.git] / src / vlibmemory / memory_api.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 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 #include <signal.h>
18
19 #include <vlib/vlib.h>
20 #include <vlibapi/api.h>
21 #include <vlibmemory/api.h>
22 #include <vlibmemory/memory_api.h>
23
24 #include <vlibmemory/vl_memory_msg_enum.h>      /* enumerate all vlib messages */
25
26 #define vl_typedefs             /* define message structures */
27 #include <vlibmemory/vl_memory_api_h.h>
28 #undef vl_typedefs
29
30 /* instantiate all the print functions we know about */
31 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
32 #define vl_printfun
33 #include <vlibmemory/vl_memory_api_h.h>
34 #undef vl_printfun
35
36 /* instantiate all the endian swap functions we know about */
37 #define vl_endianfun
38 #include <vlibmemory/vl_memory_api_h.h>
39 #undef vl_endianfun
40
41 static inline void *
42 vl_api_memclnt_create_t_print (vl_api_memclnt_create_t * a, void *handle)
43 {
44   vl_print (handle, "vl_api_memclnt_create_t:\n");
45   vl_print (handle, "name: %s\n", a->name);
46   vl_print (handle, "input_queue: 0x%wx\n", a->input_queue);
47   vl_print (handle, "context: %u\n", (unsigned) a->context);
48   vl_print (handle, "ctx_quota: %ld\n", (long) a->ctx_quota);
49   return handle;
50 }
51
52 static inline void *
53 vl_api_memclnt_delete_t_print (vl_api_memclnt_delete_t * a, void *handle)
54 {
55   vl_print (handle, "vl_api_memclnt_delete_t:\n");
56   vl_print (handle, "index: %u\n", (unsigned) a->index);
57   vl_print (handle, "handle: 0x%wx\n", a->handle);
58   return handle;
59 }
60
61 volatile int **vl_api_queue_cursizes;
62
63 static void
64 memclnt_queue_callback (vlib_main_t * vm)
65 {
66   int i;
67   api_main_t *am = &api_main;
68
69   if (PREDICT_FALSE (vec_len (vl_api_queue_cursizes) !=
70                      1 + vec_len (am->vlib_private_rps)))
71     {
72       vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
73       svm_queue_t *q;
74
75       if (shmem_hdr == 0)
76         return;
77
78       q = shmem_hdr->vl_input_queue;
79       if (q == 0)
80         return;
81
82       vec_add1 (vl_api_queue_cursizes, &q->cursize);
83
84       for (i = 0; i < vec_len (am->vlib_private_rps); i++)
85         {
86           svm_region_t *vlib_rp = am->vlib_private_rps[i];
87
88           shmem_hdr = (void *) vlib_rp->user_ctx;
89           q = shmem_hdr->vl_input_queue;
90           vec_add1 (vl_api_queue_cursizes, &q->cursize);
91         }
92     }
93
94   for (i = 0; i < vec_len (vl_api_queue_cursizes); i++)
95     {
96       if (*vl_api_queue_cursizes[i])
97         {
98           vm->queue_signal_pending = 1;
99           vm->api_queue_nonempty = 1;
100           vlib_process_signal_event (vm, vl_api_clnt_node.index,
101                                      /* event_type */ QUEUE_SIGNAL_EVENT,
102                                      /* event_data */ 0);
103           break;
104         }
105     }
106 }
107
108 /*
109  * vl_api_memclnt_create_internal
110  */
111 u32
112 vl_api_memclnt_create_internal (char *name, svm_queue_t * q)
113 {
114   vl_api_registration_t **regpp;
115   vl_api_registration_t *regp;
116   svm_region_t *svm;
117   void *oldheap;
118   api_main_t *am = &api_main;
119
120   ASSERT (vlib_get_thread_index () == 0);
121   pool_get (am->vl_clients, regpp);
122
123   svm = am->vlib_rp;
124
125   pthread_mutex_lock (&svm->mutex);
126   oldheap = svm_push_data_heap (svm);
127   *regpp = clib_mem_alloc (sizeof (vl_api_registration_t));
128
129   regp = *regpp;
130   memset (regp, 0, sizeof (*regp));
131   regp->registration_type = REGISTRATION_TYPE_SHMEM;
132   regp->vl_api_registration_pool_index = regpp - am->vl_clients;
133   regp->vlib_rp = svm;
134   regp->shmem_hdr = am->shmem_hdr;
135
136   regp->vl_input_queue = q;
137   regp->name = format (0, "%s%c", name, 0);
138
139   pthread_mutex_unlock (&svm->mutex);
140   svm_pop_heap (oldheap);
141   return vl_msg_api_handle_from_index_and_epoch
142     (regp->vl_api_registration_pool_index,
143      am->shmem_hdr->application_restarts);
144 }
145
146 /*
147  * vl_api_memclnt_create_t_handler
148  */
149 void
150 vl_api_memclnt_create_t_handler (vl_api_memclnt_create_t * mp)
151 {
152   vl_api_registration_t **regpp;
153   vl_api_registration_t *regp;
154   vl_api_memclnt_create_reply_t *rp;
155   svm_region_t *svm;
156   svm_queue_t *q;
157   int rv = 0;
158   void *oldheap;
159   api_main_t *am = &api_main;
160
161   /*
162    * This is tortured. Maintain a vlib-address-space private
163    * pool of client registrations. We use the shared-memory virtual
164    * address of client structure as a handle, to allow direct
165    * manipulation of context quota vbls from the client library.
166    *
167    * This scheme causes trouble w/ API message trace replay, since
168    * some random VA from clib_mem_alloc() certainly won't
169    * occur in the Linux sim. The (very) few places
170    * that care need to use the pool index.
171    *
172    * Putting the registration object(s) into a pool in shared memory and
173    * using the pool index as a handle seems like a great idea.
174    * Unfortunately, each and every reference to that pool would need
175    * to be protected by a mutex:
176    *
177    *     Client                      VLIB
178    *     ------                      ----
179    *     convert pool index to
180    *     pointer.
181    *     <deschedule>
182    *                                 expand pool
183    *                                 <deschedule>
184    *     kaboom!
185    */
186
187   pool_get (am->vl_clients, regpp);
188
189   svm = am->vlib_rp;
190
191   pthread_mutex_lock (&svm->mutex);
192   oldheap = svm_push_data_heap (svm);
193   *regpp = clib_mem_alloc (sizeof (vl_api_registration_t));
194
195   regp = *regpp;
196   memset (regp, 0, sizeof (*regp));
197   regp->registration_type = REGISTRATION_TYPE_SHMEM;
198   regp->vl_api_registration_pool_index = regpp - am->vl_clients;
199   regp->vlib_rp = svm;
200   regp->shmem_hdr = am->shmem_hdr;
201   regp->clib_file_index = am->shmem_hdr->clib_file_index;
202
203   q = regp->vl_input_queue = (svm_queue_t *) (uword) mp->input_queue;
204
205   regp->name = format (0, "%s", mp->name);
206   vec_add1 (regp->name, 0);
207
208   if (am->serialized_message_table_in_shmem == 0)
209     am->serialized_message_table_in_shmem =
210       vl_api_serialize_message_table (am, 0);
211
212   pthread_mutex_unlock (&svm->mutex);
213   svm_pop_heap (oldheap);
214
215   rp = vl_msg_api_alloc (sizeof (*rp));
216   rp->_vl_msg_id = ntohs (VL_API_MEMCLNT_CREATE_REPLY);
217   rp->handle = (uword) regp;
218   rp->index = vl_msg_api_handle_from_index_and_epoch
219     (regp->vl_api_registration_pool_index,
220      am->shmem_hdr->application_restarts);
221   rp->context = mp->context;
222   rp->response = ntohl (rv);
223   rp->message_table =
224     pointer_to_uword (am->serialized_message_table_in_shmem);
225
226   vl_msg_api_send_shmem (q, (u8 *) & rp);
227 }
228
229 int
230 vl_api_call_reaper_functions (u32 client_index)
231 {
232   clib_error_t *error = 0;
233   _vl_msg_api_function_list_elt_t *i;
234
235   i = api_main.reaper_function_registrations;
236   while (i)
237     {
238       error = i->f (client_index);
239       if (error)
240         clib_error_report (error);
241       i = i->next_init_function;
242     }
243   return 0;
244 }
245
246 /*
247  * vl_api_memclnt_delete_t_handler
248  */
249 void
250 vl_api_memclnt_delete_t_handler (vl_api_memclnt_delete_t * mp)
251 {
252   vl_api_registration_t **regpp;
253   vl_api_registration_t *regp;
254   vl_api_memclnt_delete_reply_t *rp;
255   svm_region_t *svm;
256   void *oldheap;
257   api_main_t *am = &api_main;
258   u32 handle, client_index, epoch;
259
260   handle = mp->index;
261
262   if (vl_api_call_reaper_functions (handle))
263     return;
264
265   epoch = vl_msg_api_handle_get_epoch (handle);
266   client_index = vl_msg_api_handle_get_index (handle);
267
268   if (epoch != (am->shmem_hdr->application_restarts & VL_API_EPOCH_MASK))
269     {
270       clib_warning
271         ("Stale clnt delete index %d old epoch %d cur epoch %d",
272          client_index, epoch,
273          (am->shmem_hdr->application_restarts & VL_API_EPOCH_MASK));
274       return;
275     }
276
277   regpp = pool_elt_at_index (am->vl_clients, client_index);
278
279   if (!pool_is_free (am->vl_clients, regpp))
280     {
281       int i;
282       regp = *regpp;
283       svm = am->vlib_rp;
284       int private_registration = 0;
285
286       /*
287        * Note: the API message handling path will set am->vlib_rp
288        * as appropriate for pairwise / private memory segments
289        */
290       rp = vl_msg_api_alloc (sizeof (*rp));
291       rp->_vl_msg_id = ntohs (VL_API_MEMCLNT_DELETE_REPLY);
292       rp->handle = mp->handle;
293       rp->response = 1;
294
295       vl_msg_api_send_shmem (regp->vl_input_queue, (u8 *) & rp);
296
297       if (client_index != regp->vl_api_registration_pool_index)
298         {
299           clib_warning ("mismatch client_index %d pool_index %d",
300                         client_index, regp->vl_api_registration_pool_index);
301           vl_msg_api_free (rp);
302           return;
303         }
304
305       /* For horizontal scaling, add a hash table... */
306       for (i = 0; i < vec_len (am->vlib_private_rps); i++)
307         {
308           /* Is this a pairwise / private API segment? */
309           if (am->vlib_private_rps[i] == svm)
310             {
311               /* Note: account for the memfd header page */
312               u64 virtual_base = svm->virtual_base - MMAP_PAGESIZE;
313               u64 virtual_size = svm->virtual_size + MMAP_PAGESIZE;
314
315               /*
316                * Kill the registration pool element before we make
317                * the index vanish forever
318                */
319               pool_put_index (am->vl_clients,
320                               regp->vl_api_registration_pool_index);
321
322               vec_delete (am->vlib_private_rps, 1, i);
323               /* Kill it, accounting for the memfd header page */
324               if (munmap ((void *) virtual_base, virtual_size) < 0)
325                 clib_unix_warning ("munmap");
326               /* Reset the queue-length-address cache */
327               vec_reset_length (vl_api_queue_cursizes);
328               private_registration = 1;
329               break;
330             }
331         }
332
333       /* No dangling references, please */
334       *regpp = 0;
335
336       if (private_registration == 0)
337         {
338           pool_put_index (am->vl_clients,
339                           regp->vl_api_registration_pool_index);
340           pthread_mutex_lock (&svm->mutex);
341           oldheap = svm_push_data_heap (svm);
342           vec_free (regp->name);
343           /* Poison the old registration */
344           memset (regp, 0xF1, sizeof (*regp));
345           clib_mem_free (regp);
346           pthread_mutex_unlock (&svm->mutex);
347           svm_pop_heap (oldheap);
348           /*
349            * These messages must be freed manually, since they're set up
350            * as "bounce" messages. In the private_registration == 1 case,
351            * we kill the shared-memory segment which contains the message
352            * with munmap.
353            */
354           vl_msg_api_free (mp);
355         }
356     }
357   else
358     {
359       clib_warning ("unknown client ID %d", mp->index);
360     }
361 }
362
363 /**
364  * client answered a ping, stave off the grim reaper...
365  */
366 void
367   vl_api_memclnt_keepalive_reply_t_handler
368   (vl_api_memclnt_keepalive_reply_t * mp)
369 {
370   vl_api_registration_t *regp;
371   vlib_main_t *vm = vlib_get_main ();
372
373   regp = vl_api_client_index_to_registration (mp->context);
374   if (regp)
375     {
376       regp->last_heard = vlib_time_now (vm);
377       regp->unanswered_pings = 0;
378     }
379   else
380     clib_warning ("BUG: anonymous memclnt_keepalive_reply");
381 }
382
383 /**
384  * We can send ourselves these messages if someone uses the
385  * builtin binary api test tool...
386  */
387 static void
388 vl_api_memclnt_keepalive_t_handler (vl_api_memclnt_keepalive_t * mp)
389 {
390   vl_api_memclnt_keepalive_reply_t *rmp;
391   api_main_t *am;
392   vl_shmem_hdr_t *shmem_hdr;
393
394   am = &api_main;
395   shmem_hdr = am->shmem_hdr;
396
397   rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
398   memset (rmp, 0, sizeof (*rmp));
399   rmp->_vl_msg_id = ntohs (VL_API_MEMCLNT_KEEPALIVE_REPLY);
400   rmp->context = mp->context;
401   vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & rmp);
402 }
403
404 #define foreach_vlib_api_msg                            \
405 _(MEMCLNT_CREATE, memclnt_create)                       \
406 _(MEMCLNT_DELETE, memclnt_delete)                       \
407 _(MEMCLNT_KEEPALIVE, memclnt_keepalive)                 \
408 _(MEMCLNT_KEEPALIVE_REPLY, memclnt_keepalive_reply)     \
409
410 /*
411  * memory_api_init
412  */
413 int
414 vl_mem_api_init (const char *region_name)
415 {
416   int rv;
417   api_main_t *am = &api_main;
418   vl_msg_api_msg_config_t cfg;
419   vl_msg_api_msg_config_t *c = &cfg;
420   vl_shmem_hdr_t *shm;
421   vlib_main_t *vm = vlib_get_main ();
422
423   memset (c, 0, sizeof (*c));
424
425   if ((rv = vl_map_shmem (region_name, 1 /* is_vlib */ )) < 0)
426     return rv;
427
428 #define _(N,n) do {                                             \
429     c->id = VL_API_##N;                                         \
430     c->name = #n;                                               \
431     c->handler = vl_api_##n##_t_handler;                        \
432     c->cleanup = vl_noop_handler;                               \
433     c->endian = vl_api_##n##_t_endian;                          \
434     c->print = vl_api_##n##_t_print;                            \
435     c->size = sizeof(vl_api_##n##_t);                           \
436     c->traced = 1; /* trace, so these msgs print */             \
437     c->replay = 0; /* don't replay client create/delete msgs */ \
438     c->message_bounce = 0; /* don't bounce this message */      \
439     vl_msg_api_config(c);} while (0);
440
441   foreach_vlib_api_msg;
442 #undef _
443
444   /*
445    * special-case freeing of memclnt_delete messages, so we can
446    * simply munmap pairwise / private API segments...
447    */
448   am->message_bounce[VL_API_MEMCLNT_DELETE] = 1;
449   am->is_mp_safe[VL_API_MEMCLNT_KEEPALIVE_REPLY] = 1;
450
451   vlib_set_queue_signal_callback (vm, memclnt_queue_callback);
452
453   shm = am->shmem_hdr;
454   ASSERT (shm && shm->vl_input_queue);
455
456   /* Make a note so we can always find the primary region easily */
457   am->vlib_primary_rp = am->vlib_rp;
458
459   return 0;
460 }
461
462 static clib_error_t *
463 map_api_segment_init (vlib_main_t * vm)
464 {
465   api_main_t *am = &api_main;
466   int rv;
467
468   if ((rv = vl_mem_api_init (am->region_name)) < 0)
469     {
470       return clib_error_return (0, "vl_mem_api_init (%s) failed",
471                                 am->region_name);
472     }
473   return 0;
474 }
475
476 VLIB_INIT_FUNCTION (map_api_segment_init);
477
478 static void
479 send_memclnt_keepalive (vl_api_registration_t * regp, f64 now)
480 {
481   vl_api_memclnt_keepalive_t *mp;
482   svm_queue_t *q;
483   api_main_t *am = &api_main;
484   svm_region_t *save_vlib_rp = am->vlib_rp;
485   vl_shmem_hdr_t *save_shmem_hdr = am->shmem_hdr;
486
487   q = regp->vl_input_queue;
488
489   /*
490    * If the queue head is moving, assume that the client is processing
491    * messages and skip the ping. This heuristic may fail if the queue
492    * is in the same position as last time, net of wrapping; in which
493    * case, the client will receive a keepalive.
494    */
495   if (regp->last_queue_head != q->head)
496     {
497       regp->last_heard = now;
498       regp->unanswered_pings = 0;
499       regp->last_queue_head = q->head;
500       return;
501     }
502
503   /*
504    * push/pop shared memory segment, so this routine
505    * will work with "normal" as well as "private segment"
506    * memory clients..
507    */
508
509   am->vlib_rp = regp->vlib_rp;
510   am->shmem_hdr = regp->shmem_hdr;
511
512   mp = vl_msg_api_alloc (sizeof (*mp));
513   memset (mp, 0, sizeof (*mp));
514   mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MEMCLNT_KEEPALIVE);
515   mp->context = mp->client_index =
516     vl_msg_api_handle_from_index_and_epoch
517     (regp->vl_api_registration_pool_index,
518      am->shmem_hdr->application_restarts);
519
520   regp->unanswered_pings++;
521
522   /* Failure-to-send due to a stuffed queue is absolutely expected */
523   if (svm_queue_add (q, (u8 *) & mp, 1 /* nowait */ ))
524     vl_msg_api_free (mp);
525
526   am->vlib_rp = save_vlib_rp;
527   am->shmem_hdr = save_shmem_hdr;
528 }
529
530 static void
531 vl_mem_send_client_keepalive_w_reg (api_main_t * am, f64 now,
532                                     vl_api_registration_t ** regpp,
533                                     u32 ** dead_indices,
534                                     u32 ** confused_indices)
535 {
536   vl_api_registration_t *regp = *regpp;
537   if (regp)
538     {
539       /* If we haven't heard from this client recently... */
540       if (regp->last_heard < (now - 10.0))
541         {
542           if (regp->unanswered_pings == 2)
543             {
544               svm_queue_t *q;
545               q = regp->vl_input_queue;
546               if (kill (q->consumer_pid, 0) >= 0)
547                 {
548                   clib_warning ("REAPER: lazy binary API client '%s'",
549                                 regp->name);
550                   regp->unanswered_pings = 0;
551                   regp->last_heard = now;
552                 }
553               else
554                 {
555                   clib_warning ("REAPER: binary API client '%s' died",
556                                 regp->name);
557                   vec_add1 (*dead_indices, regpp - am->vl_clients);
558                 }
559             }
560           else
561             send_memclnt_keepalive (regp, now);
562         }
563       else
564         regp->unanswered_pings = 0;
565     }
566   else
567     {
568       clib_warning ("NULL client registration index %d",
569                     regpp - am->vl_clients);
570       vec_add1 (*confused_indices, regpp - am->vl_clients);
571     }
572 }
573
574 void
575 vl_mem_api_dead_client_scan (api_main_t * am, vl_shmem_hdr_t * shm, f64 now)
576 {
577   vl_api_registration_t **regpp;
578   static u32 *dead_indices;
579   static u32 *confused_indices;
580
581   vec_reset_length (dead_indices);
582   vec_reset_length (confused_indices);
583
584   /* *INDENT-OFF* */
585   pool_foreach (regpp, am->vl_clients, ({
586       vl_mem_send_client_keepalive_w_reg (am, now, regpp, &dead_indices,
587                                           &confused_indices);
588   }));
589   /* *INDENT-ON* */
590
591   /* This should "never happen," but if it does, fix it... */
592   if (PREDICT_FALSE (vec_len (confused_indices) > 0))
593     {
594       int i;
595       for (i = 0; i < vec_len (confused_indices); i++)
596         {
597           pool_put_index (am->vl_clients, confused_indices[i]);
598         }
599     }
600
601   if (PREDICT_FALSE (vec_len (dead_indices) > 0))
602     {
603       int i;
604       svm_region_t *svm;
605       void *oldheap;
606
607       /* Allow the application to clean up its registrations */
608       for (i = 0; i < vec_len (dead_indices); i++)
609         {
610           regpp = pool_elt_at_index (am->vl_clients, dead_indices[i]);
611           if (regpp)
612             {
613               u32 handle;
614
615               handle = vl_msg_api_handle_from_index_and_epoch
616                 (dead_indices[i], shm->application_restarts);
617               (void) vl_api_call_reaper_functions (handle);
618             }
619         }
620
621       svm = am->vlib_rp;
622       pthread_mutex_lock (&svm->mutex);
623       oldheap = svm_push_data_heap (svm);
624
625       for (i = 0; i < vec_len (dead_indices); i++)
626         {
627           regpp = pool_elt_at_index (am->vl_clients, dead_indices[i]);
628           if (regpp)
629             {
630               /* Is this a pairwise SVM segment? */
631               if ((*regpp)->vlib_rp != svm)
632                 {
633                   int i;
634                   svm_region_t *dead_rp = (*regpp)->vlib_rp;
635                   /* Note: account for the memfd header page */
636                   u64 virtual_base = dead_rp->virtual_base - MMAP_PAGESIZE;
637                   u64 virtual_size = dead_rp->virtual_size + MMAP_PAGESIZE;
638
639                   /* For horizontal scaling, add a hash table... */
640                   for (i = 0; i < vec_len (am->vlib_private_rps); i++)
641                     if (am->vlib_private_rps[i] == dead_rp)
642                       {
643                         vec_delete (am->vlib_private_rps, 1, i);
644                         goto found;
645                       }
646                   clib_warning ("private rp %llx AWOL", dead_rp);
647
648                 found:
649                   /* Kill it, accounting for the memfd header page */
650                   if (munmap ((void *) virtual_base, virtual_size) < 0)
651                     clib_unix_warning ("munmap");
652                   /* Reset the queue-length-address cache */
653                   vec_reset_length (vl_api_queue_cursizes);
654                 }
655               else
656                 {
657                   /* Poison the old registration */
658                   memset (*regpp, 0xF3, sizeof (**regpp));
659                   clib_mem_free (*regpp);
660                 }
661               /* no dangling references, please */
662               *regpp = 0;
663             }
664           else
665             {
666               svm_pop_heap (oldheap);
667               clib_warning ("Duplicate free, client index %d",
668                             regpp - am->vl_clients);
669               oldheap = svm_push_data_heap (svm);
670             }
671         }
672
673       svm_client_scan_this_region_nolock (am->vlib_rp);
674
675       pthread_mutex_unlock (&svm->mutex);
676       svm_pop_heap (oldheap);
677       for (i = 0; i < vec_len (dead_indices); i++)
678         pool_put_index (am->vl_clients, dead_indices[i]);
679     }
680 }
681
682 static inline int
683 void_mem_api_handle_msg_i (api_main_t * am, vlib_main_t * vm,
684                            vlib_node_runtime_t * node, svm_queue_t * q)
685 {
686   uword mp;
687   if (!svm_queue_sub2 (q, (u8 *) & mp))
688     {
689       vl_msg_api_handler_with_vm_node (am, (void *) mp, vm, node);
690       return 0;
691     }
692   return -1;
693 }
694
695 int
696 vl_mem_api_handle_msg_main (vlib_main_t * vm, vlib_node_runtime_t * node)
697 {
698   api_main_t *am = &api_main;
699   return void_mem_api_handle_msg_i (am, vm, node,
700                                     am->shmem_hdr->vl_input_queue);
701 }
702
703 int
704 vl_mem_api_handle_msg_private (vlib_main_t * vm, vlib_node_runtime_t * node,
705                                u32 reg_index)
706 {
707   api_main_t *am = &api_main;
708   vl_shmem_hdr_t *save_shmem_hdr = am->shmem_hdr;
709   svm_region_t *vlib_rp, *save_vlib_rp = am->vlib_rp;
710   svm_queue_t *q;
711   int rv;
712
713   vlib_rp = am->vlib_rp = am->vlib_private_rps[reg_index];
714
715   am->shmem_hdr = (void *) vlib_rp->user_ctx;
716   q = am->shmem_hdr->vl_input_queue;
717
718   rv = void_mem_api_handle_msg_i (am, vm, node, q);
719
720   am->shmem_hdr = save_shmem_hdr;
721   am->vlib_rp = save_vlib_rp;
722
723   return rv;
724 }
725
726 vl_api_registration_t *
727 vl_mem_api_client_index_to_registration (u32 handle)
728 {
729   vl_api_registration_t **regpp;
730   vl_api_registration_t *regp;
731   api_main_t *am = &api_main;
732   vl_shmem_hdr_t *shmem_hdr;
733   u32 index;
734
735   index = vl_msg_api_handle_get_index (handle);
736   regpp = am->vl_clients + index;
737
738   if (pool_is_free (am->vl_clients, regpp))
739     {
740       vl_msg_api_increment_missing_client_counter ();
741       return 0;
742     }
743   regp = *regpp;
744
745   shmem_hdr = (vl_shmem_hdr_t *) regp->shmem_hdr;
746   if (!vl_msg_api_handle_is_valid (handle, shmem_hdr->application_restarts))
747     {
748       vl_msg_api_increment_missing_client_counter ();
749       return 0;
750     }
751
752   return (regp);
753 }
754
755 svm_queue_t *
756 vl_api_client_index_to_input_queue (u32 index)
757 {
758   vl_api_registration_t *regp;
759   api_main_t *am = &api_main;
760
761   /* Special case: vlib trying to send itself a message */
762   if (index == (u32) ~ 0)
763     return (am->shmem_hdr->vl_input_queue);
764
765   regp = vl_mem_api_client_index_to_registration (index);
766   if (!regp)
767     return 0;
768   return (regp->vl_input_queue);
769 }
770
771 static clib_error_t *
772 setup_memclnt_exit (vlib_main_t * vm)
773 {
774   atexit (vl_unmap_shmem);
775   return 0;
776 }
777
778 VLIB_INIT_FUNCTION (setup_memclnt_exit);
779
780 u8 *
781 format_api_message_rings (u8 * s, va_list * args)
782 {
783   api_main_t *am = va_arg (*args, api_main_t *);
784   vl_shmem_hdr_t *shmem_hdr = va_arg (*args, vl_shmem_hdr_t *);
785   int main_segment = va_arg (*args, int);
786   ring_alloc_t *ap;
787   int i;
788
789   if (shmem_hdr == 0)
790     return format (s, "%8s %8s %8s %8s %8s\n",
791                    "Owner", "Size", "Nitems", "Hits", "Misses");
792
793   ap = shmem_hdr->vl_rings;
794
795   for (i = 0; i < vec_len (shmem_hdr->vl_rings); i++)
796     {
797       s = format (s, "%8s %8d %8d %8d %8d\n",
798                   "vlib", ap->size, ap->nitems, ap->hits, ap->misses);
799       ap++;
800     }
801
802   ap = shmem_hdr->client_rings;
803
804   for (i = 0; i < vec_len (shmem_hdr->client_rings); i++)
805     {
806       s = format (s, "%8s %8d %8d %8d %8d\n",
807                   "clnt", ap->size, ap->nitems, ap->hits, ap->misses);
808       ap++;
809     }
810
811   if (main_segment)
812     {
813       s = format (s, "%d ring miss fallback allocations\n", am->ring_misses);
814       s = format
815         (s,
816          "%d application restarts, %d reclaimed msgs, %d garbage collects\n",
817          shmem_hdr->application_restarts, shmem_hdr->restart_reclaims,
818          shmem_hdr->garbage_collects);
819     }
820   return s;
821 }
822
823 static clib_error_t *
824 vl_api_ring_command (vlib_main_t * vm,
825                      unformat_input_t * input, vlib_cli_command_t * cli_cmd)
826 {
827   int i;
828   vl_shmem_hdr_t *shmem_hdr;
829   api_main_t *am = &api_main;
830
831   /* First, dump the primary region rings.. */
832
833   if (am->vlib_primary_rp == 0 || am->vlib_primary_rp->user_ctx == 0)
834     {
835       vlib_cli_output (vm, "Shared memory segment not initialized...\n");
836       return 0;
837     }
838
839   shmem_hdr = (void *) am->vlib_primary_rp->user_ctx;
840
841   vlib_cli_output (vm, "Main API segment rings:");
842
843   vlib_cli_output (vm, "%U", format_api_message_rings, am,
844                    0 /* print header */ , 0 /* notused */ );
845
846   vlib_cli_output (vm, "%U", format_api_message_rings, am,
847                    shmem_hdr, 1 /* main segment */ );
848
849   for (i = 0; i < vec_len (am->vlib_private_rps); i++)
850     {
851       svm_region_t *vlib_rp = am->vlib_private_rps[i];
852       shmem_hdr = (void *) vlib_rp->user_ctx;
853       vl_api_registration_t **regpp;
854       vl_api_registration_t *regp = 0;
855
856       /* For horizontal scaling, add a hash table... */
857       /* *INDENT-OFF* */
858       pool_foreach (regpp, am->vl_clients,
859       ({
860         regp = *regpp;
861         if (regp && regp->vlib_rp == vlib_rp)
862           {
863             vlib_cli_output (vm, "%s segment rings:", regp->name);
864             goto found;
865           }
866       }));
867       vlib_cli_output (vm, "regp %llx not found?", regp);
868       continue;
869       /* *INDENT-ON* */
870     found:
871       vlib_cli_output (vm, "%U", format_api_message_rings, am,
872                        0 /* print header */ , 0 /* notused */ );
873       vlib_cli_output (vm, "%U", format_api_message_rings, am,
874                        shmem_hdr, 0 /* main segment */ );
875     }
876
877   return 0;
878 }
879
880 /*?
881  * Display binary api message allocation ring statistics
882 ?*/
883 /* *INDENT-OFF* */
884 VLIB_CLI_COMMAND (cli_show_api_ring_command, static) =
885 {
886   .path = "show api ring-stats",
887   .short_help = "Message ring statistics",
888   .function = vl_api_ring_command,
889 };
890 /* *INDENT-ON* */
891
892 clib_error_t *
893 vlibmemory_init (vlib_main_t * vm)
894 {
895   api_main_t *am = &api_main;
896   svm_map_region_args_t _a, *a = &_a;
897   clib_error_t *error;
898
899   memset (a, 0, sizeof (*a));
900   a->root_path = am->root_path;
901   a->name = SVM_GLOBAL_REGION_NAME;
902   a->baseva = (am->global_baseva != 0) ?
903     am->global_baseva : +svm_get_global_region_base_va ();
904   a->size = (am->global_size != 0) ? am->global_size : SVM_GLOBAL_REGION_SIZE;
905   a->flags = SVM_FLAGS_NODATA;
906   a->uid = am->api_uid;
907   a->gid = am->api_gid;
908   a->pvt_heap_size =
909     (am->global_pvt_heap_size !=
910      0) ? am->global_pvt_heap_size : SVM_PVT_MHEAP_SIZE;
911
912   svm_region_init_args (a);
913
914   error = vlib_call_init_function (vm, vlibsocket_init);
915
916   return error;
917 }
918
919 VLIB_INIT_FUNCTION (vlibmemory_init);
920
921 void
922 vl_set_memory_region_name (const char *name)
923 {
924   api_main_t *am = &api_main;
925   am->region_name = name;
926 }
927
928 /*
929  * fd.io coding-style-patch-verification: ON
930  *
931  * Local Variables:
932  * eval: (c-set-style "gnu")
933  * End:
934  */