blob: 7ae7867f05e30f70e901610ea70a28c5c5008eee [file] [log] [blame]
Dave Barach371e4e12016-07-08 09:38:52 -04001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
Dave Barach371e4e12016-07-08 09:38:52 -04003 * memory_vlib.c
Ed Warnickecb9cada2015-12-08 15:45:58 -07004 *
5 * Copyright (c) 2009 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <unistd.h>
24#include <sys/types.h>
Dave Barach80f54e22017-03-08 19:08:56 -050025#include <sys/stat.h>
26#include <fcntl.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070027#include <signal.h>
28#include <pthread.h>
29#include <vppinfra/vec.h>
30#include <vppinfra/hash.h>
31#include <vppinfra/pool.h>
32#include <vppinfra/format.h>
33#include <vppinfra/byte_order.h>
34#include <vppinfra/elog.h>
35#include <stdarg.h>
36#include <vlib/vlib.h>
37#include <vlib/unix/unix.h>
38#include <vlibapi/api.h>
39#include <vlibmemory/api.h>
40
Dave Barach49fe0462017-09-12 17:06:56 -040041/**
42 * @file
43 * @brief Binary API messaging via shared memory
44 * Low-level, primary provisioning interface
45 */
46/*? %%clicmd:group_label Binary API CLI %% ?*/
47/*? %%syscfg:group_label Binary API configuration %% ?*/
48
Ed Warnickecb9cada2015-12-08 15:45:58 -070049#define TRACE_VLIB_MEMORY_QUEUE 0
50
Dave Barach371e4e12016-07-08 09:38:52 -040051#include <vlibmemory/vl_memory_msg_enum.h> /* enumerate all vlib messages */
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Dave Barach371e4e12016-07-08 09:38:52 -040053#define vl_typedefs /* define message structures */
54#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070055#undef vl_typedefs
56
57/* instantiate all the print functions we know about */
58#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
59#define vl_printfun
Dave Barach371e4e12016-07-08 09:38:52 -040060#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070061#undef vl_printfun
62
63static inline void *
Dave Barach371e4e12016-07-08 09:38:52 -040064vl_api_memclnt_create_t_print (vl_api_memclnt_create_t * a, void *handle)
Ed Warnickecb9cada2015-12-08 15:45:58 -070065{
Dave Barach371e4e12016-07-08 09:38:52 -040066 vl_print (handle, "vl_api_memclnt_create_t:\n");
67 vl_print (handle, "name: %s\n", a->name);
68 vl_print (handle, "input_queue: 0x%wx\n", a->input_queue);
69 vl_print (handle, "context: %u\n", (unsigned) a->context);
70 vl_print (handle, "ctx_quota: %ld\n", (long) a->ctx_quota);
71 return handle;
Ed Warnickecb9cada2015-12-08 15:45:58 -070072}
73
74static inline void *
Dave Barach371e4e12016-07-08 09:38:52 -040075vl_api_memclnt_delete_t_print (vl_api_memclnt_delete_t * a, void *handle)
Ed Warnickecb9cada2015-12-08 15:45:58 -070076{
Dave Barach371e4e12016-07-08 09:38:52 -040077 vl_print (handle, "vl_api_memclnt_delete_t:\n");
78 vl_print (handle, "index: %u\n", (unsigned) a->index);
79 vl_print (handle, "handle: 0x%wx\n", a->handle);
80 return handle;
Ed Warnickecb9cada2015-12-08 15:45:58 -070081}
82
Dave Barach987e11d2017-02-27 13:10:27 -050083static inline void *
84vl_api_trace_plugin_msg_ids_t_print (vl_api_trace_plugin_msg_ids_t * a,
85 void *handle)
86{
87 vl_print (handle, "vl_api_trace_plugin_msg_ids: %s first %u last %u\n",
88 a->plugin_name,
89 clib_host_to_net_u16 (a->first_msg_id),
90 clib_host_to_net_u16 (a->last_msg_id));
91 return handle;
92}
93
Ed Warnickecb9cada2015-12-08 15:45:58 -070094/* instantiate all the endian swap functions we know about */
95#define vl_endianfun
Dave Barach371e4e12016-07-08 09:38:52 -040096#include <vlibmemory/vl_memory_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070097#undef vl_endianfun
98
Dave Barach59b25652017-09-10 15:04:27 -040099extern void vl_socket_api_send (vl_api_registration_t * rp, u8 * elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
Dave Barach371e4e12016-07-08 09:38:52 -0400101void
102vl_msg_api_send (vl_api_registration_t * rp, u8 * elem)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103{
Dave Barach371e4e12016-07-08 09:38:52 -0400104 if (PREDICT_FALSE (rp->registration_type > REGISTRATION_TYPE_SHMEM))
105 {
106 vl_socket_api_send (rp, elem);
107 }
108 else
109 {
Dave Barach59b25652017-09-10 15:04:27 -0400110 vl_msg_api_send_shmem (rp->vl_input_queue, (u8 *) & elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111 }
112}
113
Dave Barach557d1282016-11-10 14:22:49 -0500114u8 *
115vl_api_serialize_message_table (api_main_t * am, u8 * vector)
Dave Barach371e4e12016-07-08 09:38:52 -0400116{
Dave Barach557d1282016-11-10 14:22:49 -0500117 serialize_main_t _sm, *sm = &_sm;
118 hash_pair_t *hp;
119 u32 nmsg = hash_elts (am->msg_index_by_name_and_crc);
120
121 serialize_open_vector (sm, vector);
122
123 /* serialize the count */
124 serialize_integer (sm, nmsg, sizeof (u32));
125
Dave Barach987e11d2017-02-27 13:10:27 -0500126 /* *INDENT-OFF* */
127 hash_foreach_pair (hp, am->msg_index_by_name_and_crc,
128 ({
129 serialize_likely_small_unsigned_integer (sm, hp->value[0]);
130 serialize_cstring (sm, (char *) hp->key);
131 }));
132 /* *INDENT-ON* */
Dave Barach557d1282016-11-10 14:22:49 -0500133
134 return serialize_close_vector (sm);
Dave Barach371e4e12016-07-08 09:38:52 -0400135}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
137/*
Dave Barach52851e62017-08-07 09:35:25 -0400138 * vl_api_memclnt_create_internal
139 */
140
141u32
142vl_api_memclnt_create_internal (char *name, unix_shared_memory_queue_t * q)
143{
144 vl_api_registration_t **regpp;
145 vl_api_registration_t *regp;
146 svm_region_t *svm;
147 void *oldheap;
148 api_main_t *am = &api_main;
149
150 ASSERT (vlib_get_thread_index () == 0);
151 pool_get (am->vl_clients, regpp);
152
153 svm = am->vlib_rp;
154
155 pthread_mutex_lock (&svm->mutex);
156 oldheap = svm_push_data_heap (svm);
157 *regpp = clib_mem_alloc (sizeof (vl_api_registration_t));
158
159 regp = *regpp;
160 memset (regp, 0, sizeof (*regp));
161 regp->registration_type = REGISTRATION_TYPE_SHMEM;
162 regp->vl_api_registration_pool_index = regpp - am->vl_clients;
Florin Coras780fc392017-10-03 14:26:10 -0400163 regp->vlib_rp = svm;
164 regp->shmem_hdr = am->shmem_hdr;
Dave Barach52851e62017-08-07 09:35:25 -0400165
166 regp->vl_input_queue = q;
167 regp->name = format (0, "%s%c", name, 0);
168
169 pthread_mutex_unlock (&svm->mutex);
170 svm_pop_heap (oldheap);
171 return vl_msg_api_handle_from_index_and_epoch
172 (regp->vl_api_registration_pool_index,
173 am->shmem_hdr->application_restarts);
174}
175
176
177/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 * vl_api_memclnt_create_t_handler
179 */
Dave Barach371e4e12016-07-08 09:38:52 -0400180void
181vl_api_memclnt_create_t_handler (vl_api_memclnt_create_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182{
Dave Barach371e4e12016-07-08 09:38:52 -0400183 vl_api_registration_t **regpp;
184 vl_api_registration_t *regp;
185 vl_api_memclnt_create_reply_t *rp;
186 svm_region_t *svm;
187 unix_shared_memory_queue_t *q;
Dave Barach557d1282016-11-10 14:22:49 -0500188 int rv = 0;
Dave Barach371e4e12016-07-08 09:38:52 -0400189 void *oldheap;
190 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
Dave Barach371e4e12016-07-08 09:38:52 -0400192 /*
193 * This is tortured. Maintain a vlib-address-space private
194 * pool of client registrations. We use the shared-memory virtual
195 * address of client structure as a handle, to allow direct
196 * manipulation of context quota vbls from the client library.
197 *
198 * This scheme causes trouble w/ API message trace replay, since
199 * some random VA from clib_mem_alloc() certainly won't
200 * occur in the Linux sim. The (very) few places
201 * that care need to use the pool index.
202 *
203 * Putting the registration object(s) into a pool in shared memory and
204 * using the pool index as a handle seems like a great idea.
205 * Unfortunately, each and every reference to that pool would need
206 * to be protected by a mutex:
207 *
208 * Client VLIB
209 * ------ ----
210 * convert pool index to
211 * pointer.
212 * <deschedule>
213 * expand pool
214 * <deschedule>
215 * kaboom!
216 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
Dave Barach371e4e12016-07-08 09:38:52 -0400218 pool_get (am->vl_clients, regpp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219
Dave Barach371e4e12016-07-08 09:38:52 -0400220 svm = am->vlib_rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221
Dave Barach371e4e12016-07-08 09:38:52 -0400222 pthread_mutex_lock (&svm->mutex);
223 oldheap = svm_push_data_heap (svm);
224 *regpp = clib_mem_alloc (sizeof (vl_api_registration_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Dave Barach371e4e12016-07-08 09:38:52 -0400226 regp = *regpp;
227 memset (regp, 0, sizeof (*regp));
228 regp->registration_type = REGISTRATION_TYPE_SHMEM;
229 regp->vl_api_registration_pool_index = regpp - am->vl_clients;
Dave Barach59b25652017-09-10 15:04:27 -0400230 regp->vlib_rp = svm;
231 regp->shmem_hdr = am->shmem_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
Dave Barach371e4e12016-07-08 09:38:52 -0400233 q = regp->vl_input_queue = (unix_shared_memory_queue_t *) (uword)
234 mp->input_queue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
Dave Barach371e4e12016-07-08 09:38:52 -0400236 regp->name = format (0, "%s", mp->name);
237 vec_add1 (regp->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238
Dave Barachcf5e8482017-10-17 11:48:29 -0400239 if (am->serialized_message_table_in_shmem == 0)
240 am->serialized_message_table_in_shmem =
241 vl_api_serialize_message_table (am, 0);
Dave Barach59b25652017-09-10 15:04:27 -0400242
Dave Barach371e4e12016-07-08 09:38:52 -0400243 pthread_mutex_unlock (&svm->mutex);
244 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
Dave Barach371e4e12016-07-08 09:38:52 -0400246 rp = vl_msg_api_alloc (sizeof (*rp));
247 rp->_vl_msg_id = ntohs (VL_API_MEMCLNT_CREATE_REPLY);
248 rp->handle = (uword) regp;
249 rp->index = vl_msg_api_handle_from_index_and_epoch
250 (regp->vl_api_registration_pool_index,
251 am->shmem_hdr->application_restarts);
252 rp->context = mp->context;
253 rp->response = ntohl (rv);
Dave Barachcf5e8482017-10-17 11:48:29 -0400254 rp->message_table =
255 pointer_to_uword (am->serialized_message_table_in_shmem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256
Dave Barach371e4e12016-07-08 09:38:52 -0400257 vl_msg_api_send_shmem (q, (u8 *) & rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258}
259
Dave Barachb64e4e22017-03-14 09:10:56 -0400260static int
261call_reaper_functions (u32 client_index)
Dave Barach371e4e12016-07-08 09:38:52 -0400262{
Dave Barachb64e4e22017-03-14 09:10:56 -0400263 clib_error_t *error = 0;
264 _vl_msg_api_function_list_elt_t *i;
265
266 i = api_main.reaper_function_registrations;
267 while (i)
268 {
269 error = i->f (client_index);
270 if (error)
271 clib_error_report (error);
272 i = i->next_init_function;
273 }
Dave Barach371e4e12016-07-08 09:38:52 -0400274 return 0;
275}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
277/*
278 * vl_api_memclnt_delete_t_handler
279 */
Dave Barach371e4e12016-07-08 09:38:52 -0400280void
281vl_api_memclnt_delete_t_handler (vl_api_memclnt_delete_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282{
Dave Barach371e4e12016-07-08 09:38:52 -0400283 vl_api_registration_t **regpp;
284 vl_api_registration_t *regp;
285 vl_api_memclnt_delete_reply_t *rp;
286 svm_region_t *svm;
287 void *oldheap;
288 api_main_t *am = &api_main;
289 u32 handle, client_index, epoch;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Dave Barach371e4e12016-07-08 09:38:52 -0400291 handle = mp->index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
Dave Barachb64e4e22017-03-14 09:10:56 -0400293 if (call_reaper_functions (handle))
Dave Barach371e4e12016-07-08 09:38:52 -0400294 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
Dave Barach371e4e12016-07-08 09:38:52 -0400296 epoch = vl_msg_api_handle_get_epoch (handle);
297 client_index = vl_msg_api_handle_get_index (handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298
Dave Barach371e4e12016-07-08 09:38:52 -0400299 if (epoch != (am->shmem_hdr->application_restarts & VL_API_EPOCH_MASK))
300 {
301 clib_warning
302 ("Stale clnt delete index %d old epoch %d cur epoch %d",
303 client_index, epoch,
304 (am->shmem_hdr->application_restarts & VL_API_EPOCH_MASK));
305 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306 }
307
Dave Barach371e4e12016-07-08 09:38:52 -0400308 regpp = am->vl_clients + client_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Dave Barach371e4e12016-07-08 09:38:52 -0400310 if (!pool_is_free (am->vl_clients, regpp))
311 {
Dave Barach59b25652017-09-10 15:04:27 -0400312 int i;
Dave Barach371e4e12016-07-08 09:38:52 -0400313 regp = *regpp;
314 svm = am->vlib_rp;
Dave Barach59b25652017-09-10 15:04:27 -0400315 int private_registration = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Dave Barach59b25652017-09-10 15:04:27 -0400317 /*
318 * Note: the API message handling path will set am->vlib_rp
319 * as appropriate for pairwise / private memory segments
320 */
Dave Barach371e4e12016-07-08 09:38:52 -0400321 rp = vl_msg_api_alloc (sizeof (*rp));
322 rp->_vl_msg_id = ntohs (VL_API_MEMCLNT_DELETE_REPLY);
323 rp->handle = mp->handle;
324 rp->response = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
Dave Barach371e4e12016-07-08 09:38:52 -0400326 vl_msg_api_send_shmem (regp->vl_input_queue, (u8 *) & rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
Dave Barach371e4e12016-07-08 09:38:52 -0400328 if (client_index != regp->vl_api_registration_pool_index)
329 {
330 clib_warning ("mismatch client_index %d pool_index %d",
331 client_index, regp->vl_api_registration_pool_index);
332 vl_msg_api_free (rp);
333 return;
334 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
Dave Barach59b25652017-09-10 15:04:27 -0400336 /* For horizontal scaling, add a hash table... */
337 for (i = 0; i < vec_len (am->vlib_private_rps); i++)
338 {
339 /* Is this a pairwise / private API segment? */
340 if (am->vlib_private_rps[i] == svm)
341 {
342 /* Note: account for the memfd header page */
343 u64 virtual_base = svm->virtual_base - MMAP_PAGESIZE;
344 u64 virtual_size = svm->virtual_size + MMAP_PAGESIZE;
345
346 /*
347 * Kill the registration pool element before we make
348 * the index vanish forever
349 */
350 pool_put_index (am->vl_clients,
351 regp->vl_api_registration_pool_index);
352
353 vec_delete (am->vlib_private_rps, 1, i);
354 /* Kill it, accounting for the memfd header page */
355 if (munmap ((void *) virtual_base, virtual_size) < 0)
356 clib_unix_warning ("munmap");
357 /* Reset the queue-length-address cache */
358 vec_reset_length (vl_api_queue_cursizes);
359 private_registration = 1;
360 break;
361 }
362 }
363
Dave Barach371e4e12016-07-08 09:38:52 -0400364 /* No dangling references, please */
365 *regpp = 0;
366
Dave Barach59b25652017-09-10 15:04:27 -0400367 if (private_registration == 0)
368 {
369 pool_put_index (am->vl_clients,
370 regp->vl_api_registration_pool_index);
371 pthread_mutex_lock (&svm->mutex);
372 oldheap = svm_push_data_heap (svm);
373 /* Poison the old registration */
374 memset (regp, 0xF1, sizeof (*regp));
375 clib_mem_free (regp);
376 pthread_mutex_unlock (&svm->mutex);
377 svm_pop_heap (oldheap);
378 /*
379 * These messages must be freed manually, since they're set up
380 * as "bounce" messages. In the private_registration == 1 case,
381 * we kill the shared-memory segment which contains the message
382 * with munmap.
383 */
384 vl_msg_api_free (mp);
385 }
Dave Barach371e4e12016-07-08 09:38:52 -0400386 }
387 else
388 {
389 clib_warning ("unknown client ID %d", mp->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 }
391}
392
Dave Barach371e4e12016-07-08 09:38:52 -0400393void
394vl_api_get_first_msg_id_t_handler (vl_api_get_first_msg_id_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395{
Dave Barach371e4e12016-07-08 09:38:52 -0400396 vl_api_get_first_msg_id_reply_t *rmp;
397 unix_shared_memory_queue_t *q;
398 uword *p;
399 api_main_t *am = &api_main;
400 vl_api_msg_range_t *rp;
401 u8 name[64];
402 u16 first_msg_id = ~0;
403 int rv = -7; /* VNET_API_ERROR_INVALID_VALUE */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
Dave Barach371e4e12016-07-08 09:38:52 -0400405 q = vl_api_client_index_to_input_queue (mp->client_index);
406 if (!q)
407 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408
Dave Barach371e4e12016-07-08 09:38:52 -0400409 if (am->msg_range_by_name == 0)
410 goto out;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
Dave Barach371e4e12016-07-08 09:38:52 -0400412 strncpy ((char *) name, (char *) mp->name, ARRAY_LEN (name) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
Dave Barach371e4e12016-07-08 09:38:52 -0400414 p = hash_get_mem (am->msg_range_by_name, name);
415 if (p == 0)
416 goto out;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417
Dave Barach371e4e12016-07-08 09:38:52 -0400418 rp = vec_elt_at_index (am->msg_ranges, p[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419
Dave Barach371e4e12016-07-08 09:38:52 -0400420 first_msg_id = rp->first_msg_id;
421 rv = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422
423out:
424
Dave Barach371e4e12016-07-08 09:38:52 -0400425 rmp = vl_msg_api_alloc (sizeof (*rmp));
426 rmp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID_REPLY);
427 rmp->context = mp->context;
428 rmp->retval = ntohl (rv);
429 rmp->first_msg_id = ntohs (first_msg_id);
430 vl_msg_api_send_shmem (q, (u8 *) & rmp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431}
432
Dave Barach59b25652017-09-10 15:04:27 -0400433/**
434 * client answered a ping, stave off the grim reaper...
435 */
436
437void
438 vl_api_memclnt_keepalive_reply_t_handler
439 (vl_api_memclnt_keepalive_reply_t * mp)
440{
441 vl_api_registration_t *regp;
442 vlib_main_t *vm = vlib_get_main ();
443
444 regp = vl_api_client_index_to_registration (mp->context);
445 if (regp)
446 {
447 regp->last_heard = vlib_time_now (vm);
448 regp->unanswered_pings = 0;
449 }
450 else
451 clib_warning ("BUG: anonymous memclnt_keepalive_reply");
452}
453
454/**
455 * We can send ourselves these messages if someone uses the
456 * builtin binary api test tool...
457 */
458static void
459vl_api_memclnt_keepalive_t_handler (vl_api_memclnt_keepalive_t * mp)
460{
461 vl_api_memclnt_keepalive_reply_t *rmp;
462 api_main_t *am;
463 vl_shmem_hdr_t *shmem_hdr;
464
465 am = &api_main;
466 shmem_hdr = am->shmem_hdr;
467
468 rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
469 memset (rmp, 0, sizeof (*rmp));
470 rmp->_vl_msg_id = ntohs (VL_API_MEMCLNT_KEEPALIVE_REPLY);
471 rmp->context = mp->context;
472 vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & rmp);
473}
474
Dave Barach0d056e52017-09-28 15:11:16 -0400475void
476vl_api_api_versions_t_handler (vl_api_api_versions_t * mp)
477{
478 api_main_t *am = &api_main;
479 vl_api_api_versions_reply_t *rmp;
480 unix_shared_memory_queue_t *q;
481 u32 nmsg = vec_len (am->api_version_list);
482 int msg_size = sizeof (*rmp) + sizeof (rmp->api_versions[0]) * nmsg;
483 int i;
484
485 q = vl_api_client_index_to_input_queue (mp->client_index);
486 if (q == 0)
487 return;
488
489 rmp = vl_msg_api_alloc (msg_size);
490 memset (rmp, 0, msg_size);
491 rmp->_vl_msg_id = ntohs (VL_API_API_VERSIONS_REPLY);
492
493 /* fill in the message */
494 rmp->context = mp->context;
495 rmp->count = htonl (nmsg);
496
497 for (i = 0; i < nmsg; ++i)
498 {
499 api_version_t *vl = &am->api_version_list[i];
500 rmp->api_versions[i].major = htonl (vl->major);
501 rmp->api_versions[i].minor = htonl (vl->minor);
502 rmp->api_versions[i].patch = htonl (vl->patch);
Ole Troan7504e992017-10-10 08:43:35 +0200503 strncpy ((char *) rmp->api_versions[i].name, vl->name, 64 - 1);
Dave Barach0d056e52017-09-28 15:11:16 -0400504 }
505
506 vl_msg_api_send_shmem (q, (u8 *) & rmp);
507
508}
509
Dave Barach59b25652017-09-10 15:04:27 -0400510#define foreach_vlib_api_msg \
511_(MEMCLNT_CREATE, memclnt_create) \
512_(MEMCLNT_DELETE, memclnt_delete) \
513_(GET_FIRST_MSG_ID, get_first_msg_id) \
514_(MEMCLNT_KEEPALIVE, memclnt_keepalive) \
Dave Barach0d056e52017-09-28 15:11:16 -0400515_(MEMCLNT_KEEPALIVE_REPLY, memclnt_keepalive_reply) \
516_(API_VERSIONS, api_versions)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
518/*
519 * vl_api_init
520 */
Dave Barach371e4e12016-07-08 09:38:52 -0400521static int
Neale Rannse72be392017-04-26 13:59:20 -0700522memory_api_init (const char *region_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523{
Dave Barach371e4e12016-07-08 09:38:52 -0400524 int rv;
Dave Barach59b25652017-09-10 15:04:27 -0400525 api_main_t *am = &api_main;
Dave Barach371e4e12016-07-08 09:38:52 -0400526 vl_msg_api_msg_config_t cfg;
527 vl_msg_api_msg_config_t *c = &cfg;
528
Dave Barach0691d6e2017-01-05 10:08:52 -0500529 memset (c, 0, sizeof (*c));
530
Dave Barach371e4e12016-07-08 09:38:52 -0400531 if ((rv = vl_map_shmem (region_name, 1 /* is_vlib */ )) < 0)
532 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533
534#define _(N,n) do { \
535 c->id = VL_API_##N; \
536 c->name = #n; \
537 c->handler = vl_api_##n##_t_handler; \
538 c->cleanup = vl_noop_handler; \
539 c->endian = vl_api_##n##_t_endian; \
540 c->print = vl_api_##n##_t_print; \
541 c->size = sizeof(vl_api_##n##_t); \
542 c->traced = 1; /* trace, so these msgs print */ \
543 c->replay = 0; /* don't replay client create/delete msgs */ \
Dave Barach0691d6e2017-01-05 10:08:52 -0500544 c->message_bounce = 0; /* don't bounce this message */ \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 vl_msg_api_config(c);} while (0);
Dave Barach371e4e12016-07-08 09:38:52 -0400546
547 foreach_vlib_api_msg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548#undef _
549
Dave Barach59b25652017-09-10 15:04:27 -0400550 /*
551 * special-case freeing of memclnt_delete messages, so we can
552 * simply munmap pairwise / private API segments...
553 */
554 am->message_bounce[VL_API_MEMCLNT_DELETE] = 1;
555 am->is_mp_safe[VL_API_MEMCLNT_KEEPALIVE_REPLY] = 1;
556
Dave Barach371e4e12016-07-08 09:38:52 -0400557 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558}
559
560#define foreach_histogram_bucket \
561_(400) \
562_(200) \
563_(100) \
564_(10)
565
Dave Barach371e4e12016-07-08 09:38:52 -0400566typedef enum
567{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568#define _(n) SLEEP_##n##_US,
Dave Barach371e4e12016-07-08 09:38:52 -0400569 foreach_histogram_bucket
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570#undef _
571 SLEEP_N_BUCKETS,
572} histogram_index_t;
573
574static u64 vector_rate_histogram[SLEEP_N_BUCKETS];
575
Dave Barach371e4e12016-07-08 09:38:52 -0400576static void memclnt_queue_callback (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577
Dave Barach987e11d2017-02-27 13:10:27 -0500578/*
579 * Callback to send ourselves a plugin numbering-space trace msg
580 */
581static void
582send_one_plugin_msg_ids_msg (u8 * name, u16 first_msg_id, u16 last_msg_id)
583{
584 vl_api_trace_plugin_msg_ids_t *mp;
585 api_main_t *am = &api_main;
586 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
587 unix_shared_memory_queue_t *q;
588
589 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
590 memset (mp, 0, sizeof (*mp));
591
592 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_TRACE_PLUGIN_MSG_IDS);
593 strncpy ((char *) mp->plugin_name, (char *) name,
594 sizeof (mp->plugin_name) - 1);
595 mp->first_msg_id = clib_host_to_net_u16 (first_msg_id);
596 mp->last_msg_id = clib_host_to_net_u16 (last_msg_id);
597
598 q = shmem_hdr->vl_input_queue;
599
600 vl_msg_api_send_shmem (q, (u8 *) & mp);
601}
602
Dave Barach59b25652017-09-10 15:04:27 -0400603static void
604send_memclnt_keepalive (vl_api_registration_t * regp, f64 now)
605{
606 vl_api_memclnt_keepalive_t *mp;
607 unix_shared_memory_queue_t *q;
608 api_main_t *am = &api_main;
609 svm_region_t *save_vlib_rp = am->vlib_rp;
610 vl_shmem_hdr_t *save_shmem_hdr = am->shmem_hdr;
611
612 q = regp->vl_input_queue;
613
614 /*
615 * If the queue head is moving, assume that the client is processing
616 * messages and skip the ping. This heuristic may fail if the queue
617 * is in the same position as last time, net of wrapping; in which
618 * case, the client will receive a keepalive.
619 */
620 if (regp->last_queue_head != q->head)
621 {
622 regp->last_heard = now;
623 regp->unanswered_pings = 0;
624 regp->last_queue_head = q->head;
625 return;
626 }
627
628 /*
629 * push/pop shared memory segment, so this routine
630 * will work with "normal" as well as "private segment"
631 * memory clients..
632 */
633
634 am->vlib_rp = regp->vlib_rp;
635 am->shmem_hdr = regp->shmem_hdr;
636
637 mp = vl_msg_api_alloc (sizeof (*mp));
638 memset (mp, 0, sizeof (*mp));
639 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MEMCLNT_KEEPALIVE);
640 mp->context = mp->client_index =
641 vl_msg_api_handle_from_index_and_epoch
642 (regp->vl_api_registration_pool_index,
643 am->shmem_hdr->application_restarts);
644
645 regp->unanswered_pings++;
646
647 /* Failure-to-send due to a stuffed queue is absolutely expected */
648 if (unix_shared_memory_queue_add (q, (u8 *) & mp, 1 /* nowait */ ))
649 vl_msg_api_free (mp);
650
651 am->vlib_rp = save_vlib_rp;
652 am->shmem_hdr = save_shmem_hdr;
653}
654
655static void
656dead_client_scan (api_main_t * am, vl_shmem_hdr_t * shm, f64 now)
657{
658
659 vl_api_registration_t **regpp;
660 vl_api_registration_t *regp;
661 static u32 *dead_indices;
662 static u32 *confused_indices;
663
664 vec_reset_length (dead_indices);
665 vec_reset_length (confused_indices);
666
667 /* *INDENT-OFF* */
668 pool_foreach (regpp, am->vl_clients,
669 ({
670 regp = *regpp;
671 if (regp)
672 {
673 /* If we haven't heard from this client recently... */
674 if (regp->last_heard < (now - 10.0))
675 {
676 if (regp->unanswered_pings == 2)
677 {
678 unix_shared_memory_queue_t *q;
679 q = regp->vl_input_queue;
680 if (kill (q->consumer_pid, 0) >=0)
681 {
682 clib_warning ("REAPER: lazy binary API client '%s'",
683 regp->name);
684 regp->unanswered_pings = 0;
685 regp->last_heard = now;
686 }
687 else
688 {
689 clib_warning ("REAPER: binary API client '%s' died",
690 regp->name);
691 vec_add1(dead_indices, regpp - am->vl_clients);
692 }
693 }
694 else
695 send_memclnt_keepalive (regp, now);
696 }
697 else
698 regp->unanswered_pings = 0;
699 }
700 else
701 {
702 clib_warning ("NULL client registration index %d",
703 regpp - am->vl_clients);
704 vec_add1 (confused_indices, regpp - am->vl_clients);
705 }
706 }));
707 /* *INDENT-ON* */
708 /* This should "never happen," but if it does, fix it... */
709 if (PREDICT_FALSE (vec_len (confused_indices) > 0))
710 {
711 int i;
712 for (i = 0; i < vec_len (confused_indices); i++)
713 {
714 pool_put_index (am->vl_clients, confused_indices[i]);
715 }
716 }
717
718 if (PREDICT_FALSE (vec_len (dead_indices) > 0))
719 {
720 int i;
721 svm_region_t *svm;
722 void *oldheap;
723
724 /* Allow the application to clean up its registrations */
725 for (i = 0; i < vec_len (dead_indices); i++)
726 {
727 regpp = pool_elt_at_index (am->vl_clients, dead_indices[i]);
728 if (regpp)
729 {
730 u32 handle;
731
732 handle = vl_msg_api_handle_from_index_and_epoch
733 (dead_indices[i], shm->application_restarts);
734 (void) call_reaper_functions (handle);
735 }
736 }
737
738 svm = am->vlib_rp;
739 pthread_mutex_lock (&svm->mutex);
740 oldheap = svm_push_data_heap (svm);
741
742 for (i = 0; i < vec_len (dead_indices); i++)
743 {
744 regpp = pool_elt_at_index (am->vl_clients, dead_indices[i]);
745 if (regpp)
746 {
747 /* Is this a pairwise SVM segment? */
748 if ((*regpp)->vlib_rp != svm)
749 {
750 int i;
751 svm_region_t *dead_rp = (*regpp)->vlib_rp;
752 /* Note: account for the memfd header page */
753 u64 virtual_base = dead_rp->virtual_base - MMAP_PAGESIZE;
754 u64 virtual_size = dead_rp->virtual_size + MMAP_PAGESIZE;
755
756 /* For horizontal scaling, add a hash table... */
757 for (i = 0; i < vec_len (am->vlib_private_rps); i++)
758 if (am->vlib_private_rps[i] == dead_rp)
759 {
760 vec_delete (am->vlib_private_rps, 1, i);
761 goto found;
762 }
763 clib_warning ("private rp %llx AWOL", dead_rp);
764
765 found:
766 /* Kill it, accounting for the memfd header page */
767 if (munmap ((void *) virtual_base, virtual_size) < 0)
768 clib_unix_warning ("munmap");
769 /* Reset the queue-length-address cache */
770 vec_reset_length (vl_api_queue_cursizes);
771 }
772 else
773 {
774 /* Poison the old registration */
775 memset (*regpp, 0xF3, sizeof (**regpp));
776 clib_mem_free (*regpp);
777 }
778 /* no dangling references, please */
779 *regpp = 0;
780 }
781 else
782 {
783 svm_pop_heap (oldheap);
784 clib_warning ("Duplicate free, client index %d",
785 regpp - am->vl_clients);
786 oldheap = svm_push_data_heap (svm);
787 }
788 }
789
790 svm_client_scan_this_region_nolock (am->vlib_rp);
791
792 pthread_mutex_unlock (&svm->mutex);
793 svm_pop_heap (oldheap);
794 for (i = 0; i < vec_len (dead_indices); i++)
795 pool_put_index (am->vl_clients, dead_indices[i]);
796 }
797}
798
799
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800static uword
801memclnt_process (vlib_main_t * vm,
Dave Barach371e4e12016-07-08 09:38:52 -0400802 vlib_node_runtime_t * node, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803{
Dave Barach371e4e12016-07-08 09:38:52 -0400804 uword mp;
805 vl_shmem_hdr_t *shm;
806 unix_shared_memory_queue_t *q;
807 clib_error_t *e;
808 int rv;
809 api_main_t *am = &api_main;
810 f64 dead_client_scan_time;
811 f64 sleep_time, start_time;
812 f64 vector_rate;
Dave Barach59b25652017-09-10 15:04:27 -0400813 clib_error_t *socksvr_api_init (vlib_main_t * vm);
814 clib_error_t *error;
Dave Barach987e11d2017-02-27 13:10:27 -0500815 int i;
Dave Barach59b25652017-09-10 15:04:27 -0400816 vl_socket_args_for_process_t *a;
817 uword event_type;
818 uword *event_data = 0;
819 int private_segment_rotor = 0;
820 svm_region_t *vlib_rp;
821 f64 now;
Dave Barach371e4e12016-07-08 09:38:52 -0400822
823 vlib_set_queue_signal_callback (vm, memclnt_queue_callback);
824
825 if ((rv = memory_api_init (am->region_name)) < 0)
826 {
Dave Barach59b25652017-09-10 15:04:27 -0400827 clib_warning ("memory_api_init returned %d, quitting...", rv);
828 return 0;
829 }
830
831 if ((error = socksvr_api_init (vm)))
832 {
833 clib_error_report (error);
834 clib_warning ("socksvr_api_init failed, quitting...");
835 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836 }
837
Dave Barach371e4e12016-07-08 09:38:52 -0400838 shm = am->shmem_hdr;
839 ASSERT (shm);
840 q = shm->vl_input_queue;
841 ASSERT (q);
Dave Barach7939f902017-10-04 10:03:52 -0400842 /* Make a note so we can always find the primary region easily */
843 am->vlib_primary_rp = am->vlib_rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844
Dave Barach371e4e12016-07-08 09:38:52 -0400845 e = vlib_call_init_exit_functions
846 (vm, vm->api_init_function_registrations, 1 /* call_once */ );
847 if (e)
848 clib_error_report (e);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849
Dave Barach59b25652017-09-10 15:04:27 -0400850 sleep_time = 10.0;
851 dead_client_scan_time = vlib_time_now (vm) + 10.0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852
Dave Barach987e11d2017-02-27 13:10:27 -0500853 /*
854 * Send plugin message range messages for each plugin we loaded
855 */
856 for (i = 0; i < vec_len (am->msg_ranges); i++)
857 {
858 vl_api_msg_range_t *rp = am->msg_ranges + i;
859 send_one_plugin_msg_ids_msg (rp->name, rp->first_msg_id,
860 rp->last_msg_id);
861 }
862
Dave Barach49fe0462017-09-12 17:06:56 -0400863 /*
Dave Barach49fe0462017-09-12 17:06:56 -0400864 * Save the api message table snapshot, if configured
865 */
866 if (am->save_msg_table_filename)
867 {
868 int fd, rv;
869 u8 *chroot_file;
Dave Barach59b25652017-09-10 15:04:27 -0400870 u8 *serialized_message_table;
871
872 /*
873 * Snapshoot the api message table.
874 */
Dave Barach49fe0462017-09-12 17:06:56 -0400875 if (strstr ((char *) am->save_msg_table_filename, "..")
876 || index ((char *) am->save_msg_table_filename, '/'))
877 {
878 clib_warning ("illegal save-message-table filename '%s'",
879 am->save_msg_table_filename);
880 goto skip_save;
881 }
882
883 chroot_file = format (0, "/tmp/%s%c", am->save_msg_table_filename, 0);
884
885 fd = creat ((char *) chroot_file, 0644);
886
887 if (fd < 0)
888 {
889 clib_unix_warning ("creat");
890 goto skip_save;
891 }
Dave Barach59b25652017-09-10 15:04:27 -0400892
893 serialized_message_table = vl_api_serialize_message_table (am, 0);
894
Dave Barach49fe0462017-09-12 17:06:56 -0400895 rv = write (fd, serialized_message_table,
896 vec_len (serialized_message_table));
897
898 if (rv != vec_len (serialized_message_table))
899 clib_unix_warning ("write");
900
901 rv = close (fd);
902 if (rv < 0)
903 clib_unix_warning ("close");
904
905 vec_free (chroot_file);
Dave Barach59b25652017-09-10 15:04:27 -0400906 vec_free (serialized_message_table);
Dave Barach49fe0462017-09-12 17:06:56 -0400907 }
908
909skip_save:
Dave Barach49fe0462017-09-12 17:06:56 -0400910
Dave Barach371e4e12016-07-08 09:38:52 -0400911 /* $$$ pay attention to frame size, control CPU usage */
912 while (1)
913 {
Dave Barach371e4e12016-07-08 09:38:52 -0400914 i8 *headp;
915 int need_broadcast;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916
Dave Barach371e4e12016-07-08 09:38:52 -0400917 /*
918 * There's a reason for checking the queue before
919 * sleeping. If the vlib application crashes, it's entirely
920 * possible for a client to enqueue a connect request
921 * during the process restart interval.
922 *
923 * Unless some force of physics causes the new incarnation
924 * of the application to process the request, the client will
925 * sit and wait for Godot...
926 */
927 vector_rate = vlib_last_vector_length_per_node (vm);
928 start_time = vlib_time_now (vm);
929 while (1)
930 {
931 pthread_mutex_lock (&q->mutex);
932 if (q->cursize == 0)
933 {
934 vm->api_queue_nonempty = 0;
935 pthread_mutex_unlock (&q->mutex);
936
937 if (TRACE_VLIB_MEMORY_QUEUE)
938 {
939 /* *INDENT-OFF* */
940 ELOG_TYPE_DECLARE (e) =
941 {
942 .format = "q-underflow: len %d",
943 .format_args = "i4",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944 };
Dave Barach371e4e12016-07-08 09:38:52 -0400945 /* *INDENT-ON* */
946 struct
947 {
948 u32 len;
949 } *ed;
950 ed = ELOG_DATA (&vm->elog_main, e);
951 ed->len = 0;
952 }
953 sleep_time = 20.0;
954 break;
955 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956
Dave Barach371e4e12016-07-08 09:38:52 -0400957 headp = (i8 *) (q->data + sizeof (uword) * q->head);
958 clib_memcpy (&mp, headp, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959
Dave Barach371e4e12016-07-08 09:38:52 -0400960 q->head++;
961 need_broadcast = (q->cursize == q->maxsize / 2);
962 q->cursize--;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963
Dave Barach371e4e12016-07-08 09:38:52 -0400964 if (PREDICT_FALSE (q->head == q->maxsize))
965 q->head = 0;
966 pthread_mutex_unlock (&q->mutex);
967 if (need_broadcast)
968 (void) pthread_cond_broadcast (&q->condvar);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700969
Dave Barach371e4e12016-07-08 09:38:52 -0400970 vl_msg_api_handler_with_vm_node (am, (void *) mp, vm, node);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971
Dave Barach371e4e12016-07-08 09:38:52 -0400972 /* Allow no more than 10us without a pause */
973 if (vlib_time_now (vm) > start_time + 10e-6)
974 {
975 int index = SLEEP_400_US;
976 if (vector_rate > 40.0)
977 sleep_time = 400e-6;
978 else if (vector_rate > 20.0)
979 {
980 index = SLEEP_200_US;
981 sleep_time = 200e-6;
982 }
983 else if (vector_rate >= 1.0)
984 {
985 index = SLEEP_100_US;
986 sleep_time = 100e-6;
987 }
988 else
989 {
990 index = SLEEP_10_US;
991 sleep_time = 10e-6;
992 }
993 vector_rate_histogram[index] += 1;
994 break;
995 }
996 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997
Dave Barach59b25652017-09-10 15:04:27 -0400998 /*
999 * see if we have any private api shared-memory segments
1000 * If so, push required context variables, and process
1001 * a message.
1002 */
1003 if (PREDICT_FALSE (vec_len (am->vlib_private_rps)))
Dave Barach371e4e12016-07-08 09:38:52 -04001004 {
Dave Barach59b25652017-09-10 15:04:27 -04001005 unix_shared_memory_queue_t *save_vlib_input_queue = q;
1006 vl_shmem_hdr_t *save_shmem_hdr = am->shmem_hdr;
1007 svm_region_t *save_vlib_rp = am->vlib_rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001008
Dave Barach59b25652017-09-10 15:04:27 -04001009 vlib_rp = am->vlib_rp = am->vlib_private_rps[private_segment_rotor];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010
Dave Barach59b25652017-09-10 15:04:27 -04001011 am->shmem_hdr = (void *) vlib_rp->user_ctx;
1012 q = am->shmem_hdr->vl_input_queue;
1013
1014 pthread_mutex_lock (&q->mutex);
1015 if (q->cursize > 0)
Dave Barach371e4e12016-07-08 09:38:52 -04001016 {
Dave Barach59b25652017-09-10 15:04:27 -04001017 headp = (i8 *) (q->data + sizeof (uword) * q->head);
1018 clib_memcpy (&mp, headp, sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019
Dave Barach59b25652017-09-10 15:04:27 -04001020 q->head++;
1021 need_broadcast = (q->cursize == q->maxsize / 2);
1022 q->cursize--;
1023
1024 if (PREDICT_FALSE (q->head == q->maxsize))
1025 q->head = 0;
1026 pthread_mutex_unlock (&q->mutex);
Dave Barach756d5f72017-10-31 08:45:52 -04001027
Dave Barach59b25652017-09-10 15:04:27 -04001028 if (need_broadcast)
1029 (void) pthread_cond_broadcast (&q->condvar);
1030
Dave Barach59b25652017-09-10 15:04:27 -04001031 vl_msg_api_handler_with_vm_node (am, (void *) mp, vm, node);
1032 }
1033 else
1034 pthread_mutex_unlock (&q->mutex);
1035
1036 q = save_vlib_input_queue;
1037 am->shmem_hdr = save_shmem_hdr;
1038 am->vlib_rp = save_vlib_rp;
1039
1040 private_segment_rotor++;
1041 if (private_segment_rotor >= vec_len (am->vlib_private_rps))
1042 private_segment_rotor = 0;
1043 }
1044
1045 vlib_process_wait_for_event_or_clock (vm, sleep_time);
1046 vec_reset_length (event_data);
1047 event_type = vlib_process_get_events (vm, &event_data);
1048 now = vlib_time_now (vm);
1049
1050 switch (event_type)
1051 {
1052 case QUEUE_SIGNAL_EVENT:
1053 vm->queue_signal_pending = 0;
1054 break;
1055
1056 case SOCKET_READ_EVENT:
1057 for (i = 0; i < vec_len (event_data); i++)
Dave Barach371e4e12016-07-08 09:38:52 -04001058 {
Dave Barach59b25652017-09-10 15:04:27 -04001059 a = pool_elt_at_index (socket_main.process_args, event_data[i]);
1060 vl_api_socket_process_msg (a->clib_file, a->regp,
1061 (i8 *) a->data);
1062 vec_free (a->data);
1063 pool_put (socket_main.process_args, a);
Dave Barach371e4e12016-07-08 09:38:52 -04001064 }
Dave Barach59b25652017-09-10 15:04:27 -04001065 break;
Dave Barach371e4e12016-07-08 09:38:52 -04001066
Dave Barach59b25652017-09-10 15:04:27 -04001067 /* Timeout... */
1068 case -1:
1069 break;
1070
1071 default:
1072 clib_warning ("unknown event type %d", event_type);
1073 break;
1074 }
1075
1076 if (now > dead_client_scan_time)
1077 {
1078 dead_client_scan (am, shm, now);
1079 dead_client_scan_time = vlib_time_now (vm) + 10.0;
Dave Barach371e4e12016-07-08 09:38:52 -04001080 }
1081
1082 if (TRACE_VLIB_MEMORY_QUEUE)
1083 {
1084 /* *INDENT-OFF* */
1085 ELOG_TYPE_DECLARE (e) = {
1086 .format = "q-awake: len %d",
1087 .format_args = "i4",
1088 };
1089 /* *INDENT-ON* */
1090 struct
1091 {
1092 u32 len;
1093 } *ed;
1094 ed = ELOG_DATA (&vm->elog_main, e);
1095 ed->len = q->cursize;
1096 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097 }
1098
Dave Barach371e4e12016-07-08 09:38:52 -04001099 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100}
Dave Barach49fe0462017-09-12 17:06:56 -04001101/* *INDENT-OFF* */
Dave Barach59b25652017-09-10 15:04:27 -04001102VLIB_REGISTER_NODE (memclnt_node) =
1103{
1104 .function = memclnt_process,
1105 .type = VLIB_NODE_TYPE_PROCESS,
1106 .name = "api-rx-from-ring",
1107 .state = VLIB_NODE_STATE_DISABLED,
Dave Barach49fe0462017-09-12 17:06:56 -04001108};
1109/* *INDENT-ON* */
1110
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111
1112static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001113vl_api_show_histogram_command (vlib_main_t * vm,
1114 unformat_input_t * input,
1115 vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116{
Dave Barach371e4e12016-07-08 09:38:52 -04001117 u64 total_counts = 0;
1118 int i;
1119
1120 for (i = 0; i < SLEEP_N_BUCKETS; i++)
1121 {
1122 total_counts += vector_rate_histogram[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123 }
1124
Dave Barach371e4e12016-07-08 09:38:52 -04001125 if (total_counts == 0)
1126 {
1127 vlib_cli_output (vm, "No control-plane activity.");
1128 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001129 }
1130
1131#define _(n) \
1132 do { \
1133 f64 percent; \
1134 percent = ((f64) vector_rate_histogram[SLEEP_##n##_US]) \
1135 / (f64) total_counts; \
1136 percent *= 100.0; \
1137 vlib_cli_output (vm, "Sleep %3d us: %llu, %.2f%%",n, \
1138 vector_rate_histogram[SLEEP_##n##_US], \
1139 percent); \
1140 } while (0);
Dave Barach371e4e12016-07-08 09:38:52 -04001141 foreach_histogram_bucket;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142#undef _
1143
Dave Barach371e4e12016-07-08 09:38:52 -04001144 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145}
1146
Dave Barach49fe0462017-09-12 17:06:56 -04001147/*?
1148 * Display the binary api sleep-time histogram
1149?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001150/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001151VLIB_CLI_COMMAND (cli_show_api_histogram_command, static) =
1152{
1153 .path = "show api histogram",
1154 .short_help = "show api histogram",
1155 .function = vl_api_show_histogram_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156};
Dave Barach371e4e12016-07-08 09:38:52 -04001157/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158
1159static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001160vl_api_clear_histogram_command (vlib_main_t * vm,
1161 unformat_input_t * input,
1162 vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163{
Dave Barach371e4e12016-07-08 09:38:52 -04001164 int i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165
Dave Barach371e4e12016-07-08 09:38:52 -04001166 for (i = 0; i < SLEEP_N_BUCKETS; i++)
1167 vector_rate_histogram[i] = 0;
1168 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169}
1170
Dave Barach49fe0462017-09-12 17:06:56 -04001171/*?
1172 * Clear the binary api sleep-time histogram
1173?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001174/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001175VLIB_CLI_COMMAND (cli_clear_api_histogram_command, static) =
1176{
1177 .path = "clear api histogram",
1178 .short_help = "clear api histogram",
1179 .function = vl_api_clear_histogram_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180};
Dave Barach371e4e12016-07-08 09:38:52 -04001181/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182
Dave Barach59b25652017-09-10 15:04:27 -04001183volatile int **vl_api_queue_cursizes;
1184
Dave Barach371e4e12016-07-08 09:38:52 -04001185static void
1186memclnt_queue_callback (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187{
Dave Barach59b25652017-09-10 15:04:27 -04001188 int i;
1189 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001190
Dave Barach59b25652017-09-10 15:04:27 -04001191 if (PREDICT_FALSE (vec_len (vl_api_queue_cursizes) !=
1192 1 + vec_len (am->vlib_private_rps)))
Dave Barach16c75df2016-05-31 14:05:46 -04001193 {
Dave Barach16c75df2016-05-31 14:05:46 -04001194 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
Dave Barach371e4e12016-07-08 09:38:52 -04001195 unix_shared_memory_queue_t *q;
1196
Dave Barach16c75df2016-05-31 14:05:46 -04001197 if (shmem_hdr == 0)
Dave Barach371e4e12016-07-08 09:38:52 -04001198 return;
1199
Dave Barach16c75df2016-05-31 14:05:46 -04001200 q = shmem_hdr->vl_input_queue;
1201 if (q == 0)
Dave Barach371e4e12016-07-08 09:38:52 -04001202 return;
Dave Barach59b25652017-09-10 15:04:27 -04001203
1204 vec_add1 (vl_api_queue_cursizes, &q->cursize);
1205
1206 for (i = 0; i < vec_len (am->vlib_private_rps); i++)
1207 {
1208 svm_region_t *vlib_rp = am->vlib_private_rps[i];
1209
1210 shmem_hdr = (void *) vlib_rp->user_ctx;
1211 q = shmem_hdr->vl_input_queue;
1212 vec_add1 (vl_api_queue_cursizes, &q->cursize);
1213 }
Dave Barach16c75df2016-05-31 14:05:46 -04001214 }
Dave Barach371e4e12016-07-08 09:38:52 -04001215
Dave Barach59b25652017-09-10 15:04:27 -04001216 for (i = 0; i < vec_len (vl_api_queue_cursizes); i++)
Dave Barach16c75df2016-05-31 14:05:46 -04001217 {
Dave Barach59b25652017-09-10 15:04:27 -04001218 if (*vl_api_queue_cursizes[i])
1219 {
1220 vm->queue_signal_pending = 1;
1221 vm->api_queue_nonempty = 1;
1222 vlib_process_signal_event (vm, memclnt_node.index,
1223 /* event_type */ QUEUE_SIGNAL_EVENT,
1224 /* event_data */ 0);
1225 break;
1226 }
Dave Barach16c75df2016-05-31 14:05:46 -04001227 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228}
1229
Dave Barach371e4e12016-07-08 09:38:52 -04001230void
1231vl_enable_disable_memory_api (vlib_main_t * vm, int enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001232{
Dave Barach371e4e12016-07-08 09:38:52 -04001233 vlib_node_set_state (vm, memclnt_node.index,
1234 (enable
1235 ? VLIB_NODE_STATE_POLLING
1236 : VLIB_NODE_STATE_DISABLED));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001237}
1238
1239static uword
1240api_rx_from_node (vlib_main_t * vm,
Dave Barach371e4e12016-07-08 09:38:52 -04001241 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242{
Dave Barach371e4e12016-07-08 09:38:52 -04001243 uword n_packets = frame->n_vectors;
1244 uword n_left_from;
1245 u32 *from;
1246 static u8 *long_msg;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001247
Dave Barach371e4e12016-07-08 09:38:52 -04001248 vec_validate (long_msg, 4095);
1249 n_left_from = frame->n_vectors;
1250 from = vlib_frame_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251
Dave Barach371e4e12016-07-08 09:38:52 -04001252 while (n_left_from > 0)
1253 {
1254 u32 bi0;
1255 vlib_buffer_t *b0;
1256 void *msg;
1257 uword msg_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001258
Dave Barach371e4e12016-07-08 09:38:52 -04001259 bi0 = from[0];
1260 b0 = vlib_get_buffer (vm, bi0);
1261 from += 1;
1262 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001263
Dave Barach371e4e12016-07-08 09:38:52 -04001264 msg = b0->data + b0->current_data;
1265 msg_len = b0->current_length;
1266 if (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
1267 {
1268 ASSERT (long_msg != 0);
1269 _vec_len (long_msg) = 0;
1270 vec_add (long_msg, msg, msg_len);
1271 while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
1272 {
1273 b0 = vlib_get_buffer (vm, b0->next_buffer);
1274 msg = b0->data + b0->current_data;
1275 msg_len = b0->current_length;
1276 vec_add (long_msg, msg, msg_len);
1277 }
1278 msg = long_msg;
1279 }
1280 vl_msg_api_handler_no_trace_no_free (msg);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281 }
1282
Dave Barach371e4e12016-07-08 09:38:52 -04001283 /* Free what we've been given. */
1284 vlib_buffer_free (vm, vlib_frame_args (frame), n_packets);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285
Dave Barach371e4e12016-07-08 09:38:52 -04001286 return n_packets;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287}
1288
Dave Barach371e4e12016-07-08 09:38:52 -04001289/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290VLIB_REGISTER_NODE (api_rx_from_node_node,static) = {
1291 .function = api_rx_from_node,
1292 .type = VLIB_NODE_TYPE_INTERNAL,
1293 .vector_size = 4,
1294 .name = "api-rx-from-node",
1295};
Dave Barach371e4e12016-07-08 09:38:52 -04001296/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297
1298static clib_error_t *
1299setup_memclnt_exit (vlib_main_t * vm)
1300{
Dave Barach371e4e12016-07-08 09:38:52 -04001301 atexit (vl_unmap_shmem);
1302 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303}
1304
1305VLIB_INIT_FUNCTION (setup_memclnt_exit);
1306
Dave Barach59b25652017-09-10 15:04:27 -04001307u8 *
1308format_api_message_rings (u8 * s, va_list * args)
1309{
1310 api_main_t *am = va_arg (*args, api_main_t *);
1311 vl_shmem_hdr_t *shmem_hdr = va_arg (*args, vl_shmem_hdr_t *);
1312 int main_segment = va_arg (*args, int);
1313 ring_alloc_t *ap;
1314 int i;
1315
1316 if (shmem_hdr == 0)
1317 return format (s, "%8s %8s %8s %8s %8s\n",
1318 "Owner", "Size", "Nitems", "Hits", "Misses");
1319
1320 ap = shmem_hdr->vl_rings;
1321
1322 for (i = 0; i < vec_len (shmem_hdr->vl_rings); i++)
1323 {
1324 s = format (s, "%8s %8d %8d %8d %8d\n",
1325 "vlib", ap->size, ap->nitems, ap->hits, ap->misses);
1326 ap++;
1327 }
1328
1329 ap = shmem_hdr->client_rings;
1330
1331 for (i = 0; i < vec_len (shmem_hdr->client_rings); i++)
1332 {
1333 s = format (s, "%8s %8d %8d %8d %8d\n",
1334 "clnt", ap->size, ap->nitems, ap->hits, ap->misses);
1335 ap++;
1336 }
1337
1338 if (main_segment)
1339 {
1340 s = format (s, "%d ring miss fallback allocations\n", am->ring_misses);
1341 s = format
1342 (s,
1343 "%d application restarts, %d reclaimed msgs, %d garbage collects\n",
1344 shmem_hdr->application_restarts, shmem_hdr->restart_reclaims,
1345 shmem_hdr->garbage_collects);
1346 }
1347 return s;
1348}
1349
Ed Warnickecb9cada2015-12-08 15:45:58 -07001350
1351static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001352vl_api_ring_command (vlib_main_t * vm,
1353 unformat_input_t * input, vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354{
Dave Barach371e4e12016-07-08 09:38:52 -04001355 int i;
Dave Barach371e4e12016-07-08 09:38:52 -04001356 vl_shmem_hdr_t *shmem_hdr;
1357 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358
Dave Barach7939f902017-10-04 10:03:52 -04001359 /* First, dump the primary region rings.. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001360
Dave Barach7939f902017-10-04 10:03:52 -04001361 if (am->vlib_primary_rp == 0 || am->vlib_primary_rp->user_ctx == 0)
Dave Barach371e4e12016-07-08 09:38:52 -04001362 {
1363 vlib_cli_output (vm, "Shared memory segment not initialized...\n");
1364 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001365 }
1366
Dave Barach7939f902017-10-04 10:03:52 -04001367 shmem_hdr = (void *) am->vlib_primary_rp->user_ctx;
1368
Dave Barach59b25652017-09-10 15:04:27 -04001369 vlib_cli_output (vm, "Main API segment rings:");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370
Dave Barach59b25652017-09-10 15:04:27 -04001371 vlib_cli_output (vm, "%U", format_api_message_rings, am,
1372 0 /* print header */ , 0 /* notused */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001373
Dave Barach59b25652017-09-10 15:04:27 -04001374 vlib_cli_output (vm, "%U", format_api_message_rings, am,
1375 shmem_hdr, 1 /* main segment */ );
1376
1377 for (i = 0; i < vec_len (am->vlib_private_rps); i++)
Dave Barach371e4e12016-07-08 09:38:52 -04001378 {
Dave Barach59b25652017-09-10 15:04:27 -04001379 svm_region_t *vlib_rp = am->vlib_private_rps[i];
1380 shmem_hdr = (void *) vlib_rp->user_ctx;
1381 vl_api_registration_t **regpp;
Dave Barach7939f902017-10-04 10:03:52 -04001382 vl_api_registration_t *regp = 0;
Dave Barach59b25652017-09-10 15:04:27 -04001383
1384 /* For horizontal scaling, add a hash table... */
1385 /* *INDENT-OFF* */
1386 pool_foreach (regpp, am->vl_clients,
1387 ({
1388 regp = *regpp;
1389 if (regp && regp->vlib_rp == vlib_rp)
1390 {
1391 vlib_cli_output (vm, "%s segment rings:", regp->name);
1392 goto found;
1393 }
1394 }));
Dave Barach7939f902017-10-04 10:03:52 -04001395 vlib_cli_output (vm, "regp %llx not found?", regp);
1396 continue;
Dave Barach59b25652017-09-10 15:04:27 -04001397 /* *INDENT-ON* */
1398 found:
1399 vlib_cli_output (vm, "%U", format_api_message_rings, am,
Dave Barach7939f902017-10-04 10:03:52 -04001400 0 /* print header */ , 0 /* notused */ );
1401 vlib_cli_output (vm, "%U", format_api_message_rings, am,
Dave Barach59b25652017-09-10 15:04:27 -04001402 shmem_hdr, 0 /* main segment */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001403 }
1404
Dave Barach371e4e12016-07-08 09:38:52 -04001405 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001406}
1407
Dave Barach371e4e12016-07-08 09:38:52 -04001408void dump_socket_clients (vlib_main_t * vm, api_main_t * am)
1409 __attribute__ ((weak));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410
Dave Barach371e4e12016-07-08 09:38:52 -04001411void
1412dump_socket_clients (vlib_main_t * vm, api_main_t * am)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001413{
1414}
1415
1416static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001417vl_api_client_command (vlib_main_t * vm,
1418 unformat_input_t * input, vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001419{
Dave Barach371e4e12016-07-08 09:38:52 -04001420 vl_api_registration_t **regpp, *regp;
1421 unix_shared_memory_queue_t *q;
1422 char *health;
1423 api_main_t *am = &api_main;
1424 u32 *confused_indices = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001425
Dave Barach371e4e12016-07-08 09:38:52 -04001426 if (!pool_elts (am->vl_clients))
1427 goto socket_clients;
1428 vlib_cli_output (vm, "Shared memory clients");
1429 vlib_cli_output (vm, "%16s %8s %14s %18s %s",
1430 "Name", "PID", "Queue Length", "Queue VA", "Health");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001431
Dave Barach371e4e12016-07-08 09:38:52 -04001432 /* *INDENT-OFF* */
1433 pool_foreach (regpp, am->vl_clients,
1434 ({
1435 regp = *regpp;
1436
1437 if (regp)
1438 {
Dave Barach59b25652017-09-10 15:04:27 -04001439 if (regp->unanswered_pings > 0)
1440 health = "questionable";
Dave Barach371e4e12016-07-08 09:38:52 -04001441 else
Dave Barach59b25652017-09-10 15:04:27 -04001442 health = "OK";
1443
1444 q = regp->vl_input_queue;
1445
Dave Barach371e4e12016-07-08 09:38:52 -04001446 vlib_cli_output (vm, "%16s %8d %14d 0x%016llx %s\n",
1447 regp->name, q->consumer_pid, q->cursize,
1448 q, health);
1449 }
1450 else
1451 {
1452 clib_warning ("NULL client registration index %d",
1453 regpp - am->vl_clients);
1454 vec_add1 (confused_indices, regpp - am->vl_clients);
1455 }
1456 }));
1457 /* *INDENT-ON* */
1458
1459 /* This should "never happen," but if it does, fix it... */
1460 if (PREDICT_FALSE (vec_len (confused_indices) > 0))
1461 {
1462 int i;
1463 for (i = 0; i < vec_len (confused_indices); i++)
1464 {
1465 pool_put_index (am->vl_clients, confused_indices[i]);
1466 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467 }
Dave Barach371e4e12016-07-08 09:38:52 -04001468 vec_free (confused_indices);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001469
Dave Barach371e4e12016-07-08 09:38:52 -04001470 if (am->missing_clients)
1471 vlib_cli_output (vm, "%u messages with missing clients",
1472 am->missing_clients);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001473socket_clients:
Dave Barach371e4e12016-07-08 09:38:52 -04001474 dump_socket_clients (vm, am);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001475
Dave Barach371e4e12016-07-08 09:38:52 -04001476 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001477}
1478
Calvin16649372016-07-28 13:52:05 -04001479static clib_error_t *
1480vl_api_status_command (vlib_main_t * vm,
1481 unformat_input_t * input, vlib_cli_command_t * cli_cmd)
1482{
1483 api_main_t *am = &api_main;
1484
1485 // check if rx_trace and tx_trace are not null pointers
1486
1487 if (am->rx_trace == 0)
1488 {
1489 vlib_cli_output (vm, "RX Trace disabled\n");
1490 }
1491 else
1492 {
1493 if (am->rx_trace->enabled == 0)
1494 vlib_cli_output (vm, "RX Trace disabled\n");
1495 else
1496 vlib_cli_output (vm, "RX Trace enabled\n");
1497 }
1498
1499 if (am->tx_trace == 0)
1500 {
1501 vlib_cli_output (vm, "TX Trace disabled\n");
1502 }
1503 else
1504 {
1505 if (am->tx_trace->enabled == 0)
1506 vlib_cli_output (vm, "TX Trace disabled\n");
1507 else
1508 vlib_cli_output (vm, "TX Trace enabled\n");
1509 }
1510
1511 return 0;
1512}
1513
Dave Barach371e4e12016-07-08 09:38:52 -04001514/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001515VLIB_CLI_COMMAND (cli_show_api_command, static) =
1516{
1517 .path = "show api",
1518 .short_help = "Show API information",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001519};
Dave Barach371e4e12016-07-08 09:38:52 -04001520/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001521
Dave Barach49fe0462017-09-12 17:06:56 -04001522/*?
1523 * Display binary api message allocation ring statistics
1524?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001525/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001526VLIB_CLI_COMMAND (cli_show_api_ring_command, static) =
1527{
1528 .path = "show api ring-stats",
1529 .short_help = "Message ring statistics",
1530 .function = vl_api_ring_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531};
Dave Barach371e4e12016-07-08 09:38:52 -04001532/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533
Dave Barach49fe0462017-09-12 17:06:56 -04001534/*?
1535 * Display current api client connections
1536?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001537/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001538VLIB_CLI_COMMAND (cli_show_api_clients_command, static) =
1539{
1540 .path = "show api clients",
1541 .short_help = "Client information",
1542 .function = vl_api_client_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001543};
Dave Barach371e4e12016-07-08 09:38:52 -04001544/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001545
Dave Barach49fe0462017-09-12 17:06:56 -04001546/*?
1547 * Display the current api message tracing status
1548?*/
Calvin16649372016-07-28 13:52:05 -04001549/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001550VLIB_CLI_COMMAND (cli_show_api_status_command, static) =
1551{
1552 .path = "show api trace-status",
1553 .short_help = "Display API trace status",
1554 .function = vl_api_status_command,
Calvin16649372016-07-28 13:52:05 -04001555};
1556/* *INDENT-ON* */
1557
Ed Warnickecb9cada2015-12-08 15:45:58 -07001558static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001559vl_api_message_table_command (vlib_main_t * vm,
1560 unformat_input_t * input,
1561 vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001562{
Dave Barach371e4e12016-07-08 09:38:52 -04001563 api_main_t *am = &api_main;
1564 int i;
1565 int verbose = 0;
1566
1567 if (unformat (input, "verbose"))
1568 verbose = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001569
1570
Dave Barach371e4e12016-07-08 09:38:52 -04001571 if (verbose == 0)
1572 vlib_cli_output (vm, "%-4s %s", "ID", "Name");
1573 else
1574 vlib_cli_output (vm, "%-4s %-40s %6s %7s", "ID", "Name", "Bounce",
1575 "MP-safe");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001576
Dave Barach371e4e12016-07-08 09:38:52 -04001577 for (i = 1; i < vec_len (am->msg_names); i++)
1578 {
1579 if (verbose == 0)
1580 {
1581 vlib_cli_output (vm, "%-4d %s", i,
1582 am->msg_names[i] ? am->msg_names[i] :
1583 " [no handler]");
1584 }
1585 else
1586 {
1587 vlib_cli_output (vm, "%-4d %-40s %6d %7d", i,
1588 am->msg_names[i] ? am->msg_names[i] :
1589 " [no handler]", am->message_bounce[i],
1590 am->is_mp_safe[i]);
1591 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001592 }
1593
Dave Barach371e4e12016-07-08 09:38:52 -04001594 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001595}
1596
Dave Barach49fe0462017-09-12 17:06:56 -04001597/*?
1598 * Display the current api message decode tables
1599?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001600/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001601VLIB_CLI_COMMAND (cli_show_api_message_table_command, static) =
1602{
1603 .path = "show api message-table",
1604 .short_help = "Message Table",
1605 .function = vl_api_message_table_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001606};
Dave Barach371e4e12016-07-08 09:38:52 -04001607/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001608
Ed Warnickecb9cada2015-12-08 15:45:58 -07001609static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001610vl_api_trace_command (vlib_main_t * vm,
1611 unformat_input_t * input, vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612{
Dave Barach371e4e12016-07-08 09:38:52 -04001613 u32 nitems = 1024;
1614 vl_api_trace_which_t which = VL_API_TRACE_RX;
Dave Barach371e4e12016-07-08 09:38:52 -04001615 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001616
Dave Barach371e4e12016-07-08 09:38:52 -04001617 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1618 {
1619 if (unformat (input, "rx nitems %u", &nitems) || unformat (input, "rx"))
1620 goto configure;
1621 else if (unformat (input, "tx nitems %u", &nitems)
1622 || unformat (input, "tx"))
1623 {
1624 which = VL_API_TRACE_RX;
1625 goto configure;
1626 }
1627 else if (unformat (input, "on rx"))
1628 {
1629 vl_msg_api_trace_onoff (am, VL_API_TRACE_RX, 1);
1630 }
1631 else if (unformat (input, "on tx"))
1632 {
1633 vl_msg_api_trace_onoff (am, VL_API_TRACE_TX, 1);
1634 }
1635 else if (unformat (input, "on"))
1636 {
1637 vl_msg_api_trace_onoff (am, VL_API_TRACE_RX, 1);
1638 }
1639 else if (unformat (input, "off"))
1640 {
1641 vl_msg_api_trace_onoff (am, VL_API_TRACE_RX, 0);
1642 vl_msg_api_trace_onoff (am, VL_API_TRACE_TX, 0);
1643 }
1644 else if (unformat (input, "free"))
1645 {
1646 vl_msg_api_trace_onoff (am, VL_API_TRACE_RX, 0);
1647 vl_msg_api_trace_onoff (am, VL_API_TRACE_TX, 0);
1648 vl_msg_api_trace_free (am, VL_API_TRACE_RX);
1649 vl_msg_api_trace_free (am, VL_API_TRACE_TX);
1650 }
Dave Barach371e4e12016-07-08 09:38:52 -04001651 else if (unformat (input, "debug on"))
1652 {
1653 am->msg_print_flag = 1;
1654 }
1655 else if (unformat (input, "debug off"))
1656 {
1657 am->msg_print_flag = 0;
1658 }
1659 else
1660 return clib_error_return (0, "unknown input `%U'",
1661 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001662 }
Dave Barach371e4e12016-07-08 09:38:52 -04001663 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001664
Dave Barach371e4e12016-07-08 09:38:52 -04001665configure:
1666 if (vl_msg_api_trace_configure (am, which, nitems))
1667 {
1668 vlib_cli_output (vm, "warning: trace configure error (%d, %d)",
1669 which, nitems);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001670 }
1671
Dave Barach371e4e12016-07-08 09:38:52 -04001672 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001673}
1674
Dave Barach49fe0462017-09-12 17:06:56 -04001675/*?
1676 * Control the binary API trace mechanism
1677?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001678/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001679VLIB_CLI_COMMAND (trace, static) =
1680{
1681 .path = "set api-trace [on][on tx][on rx][off][free][debug on][debug off]",
1682 .short_help = "API trace",
1683 .function = vl_api_trace_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001684};
Dave Barach371e4e12016-07-08 09:38:52 -04001685/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001686
1687clib_error_t *
1688vlibmemory_init (vlib_main_t * vm)
1689{
Dave Barach309bef22016-01-22 16:09:52 -05001690 api_main_t *am = &api_main;
Dave Barachb3d93da2016-08-03 14:34:38 -04001691 svm_map_region_args_t _a, *a = &_a;
Dave Barach59b25652017-09-10 15:04:27 -04001692 clib_error_t *error;
Dave Barachc3799992016-08-15 11:12:27 -04001693
Dave Barachb3d93da2016-08-03 14:34:38 -04001694 memset (a, 0, sizeof (*a));
1695 a->root_path = am->root_path;
1696 a->name = SVM_GLOBAL_REGION_NAME;
Dave Barachc3799992016-08-15 11:12:27 -04001697 a->baseva = (am->global_baseva != 0) ?
Dave Barachb3d93da2016-08-03 14:34:38 -04001698 am->global_baseva : SVM_GLOBAL_REGION_BASEVA;
1699 a->size = (am->global_size != 0) ? am->global_size : SVM_GLOBAL_REGION_SIZE;
1700 a->flags = SVM_FLAGS_NODATA;
1701 a->uid = am->api_uid;
1702 a->gid = am->api_gid;
Dave Barachc3799992016-08-15 11:12:27 -04001703 a->pvt_heap_size =
1704 (am->global_pvt_heap_size !=
1705 0) ? am->global_pvt_heap_size : SVM_PVT_MHEAP_SIZE;
Dave Barachb3d93da2016-08-03 14:34:38 -04001706
1707 svm_region_init_args (a);
Dave Barach59b25652017-09-10 15:04:27 -04001708
1709 error = vlib_call_init_function (vm, vlibsocket_init);
1710
1711 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001712}
1713
1714VLIB_INIT_FUNCTION (vlibmemory_init);
1715
Dave Barach371e4e12016-07-08 09:38:52 -04001716void
Neale Rannse72be392017-04-26 13:59:20 -07001717vl_set_memory_region_name (const char *name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001718{
Dave Barach371e4e12016-07-08 09:38:52 -04001719 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001720
Dave Barach371e4e12016-07-08 09:38:52 -04001721 am->region_name = name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001722}
1723
Dave Barach371e4e12016-07-08 09:38:52 -04001724static int
1725range_compare (vl_api_msg_range_t * a0, vl_api_msg_range_t * a1)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001726{
Dave Barach371e4e12016-07-08 09:38:52 -04001727 int len0, len1, clen;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001728
Dave Barach371e4e12016-07-08 09:38:52 -04001729 len0 = vec_len (a0->name);
1730 len1 = vec_len (a1->name);
1731 clen = len0 < len1 ? len0 : len1;
1732 return (strncmp ((char *) a0->name, (char *) a1->name, clen));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001733}
1734
Dave Barach371e4e12016-07-08 09:38:52 -04001735static u8 *
1736format_api_msg_range (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001737{
Dave Barach371e4e12016-07-08 09:38:52 -04001738 vl_api_msg_range_t *rp = va_arg (*args, vl_api_msg_range_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001739
Dave Barach371e4e12016-07-08 09:38:52 -04001740 if (rp == 0)
Dave Barach49fe0462017-09-12 17:06:56 -04001741 s = format (s, "%-50s%9s%9s", "Name", "First-ID", "Last-ID");
Dave Barach371e4e12016-07-08 09:38:52 -04001742 else
Dave Barach49fe0462017-09-12 17:06:56 -04001743 s = format (s, "%-50s%9d%9d", rp->name, rp->first_msg_id,
Dave Barach371e4e12016-07-08 09:38:52 -04001744 rp->last_msg_id);
1745
1746 return s;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001747}
1748
1749static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001750vl_api_show_plugin_command (vlib_main_t * vm,
1751 unformat_input_t * input,
1752 vlib_cli_command_t * cli_cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001753{
Dave Barach371e4e12016-07-08 09:38:52 -04001754 api_main_t *am = &api_main;
1755 vl_api_msg_range_t *rp = 0;
1756 int i;
1757
1758 if (vec_len (am->msg_ranges) == 0)
1759 {
1760 vlib_cli_output (vm, "No plugin API message ranges configured...");
1761 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001762 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001763
Dave Barach371e4e12016-07-08 09:38:52 -04001764 rp = vec_dup (am->msg_ranges);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001765
Dave Barach371e4e12016-07-08 09:38:52 -04001766 vec_sort_with_function (rp, range_compare);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001767
Dave Barach371e4e12016-07-08 09:38:52 -04001768 vlib_cli_output (vm, "Plugin API message ID ranges...\n");
1769 vlib_cli_output (vm, "%U", format_api_msg_range, 0 /* header */ );
1770
1771 for (i = 0; i < vec_len (rp); i++)
1772 vlib_cli_output (vm, "%U", format_api_msg_range, rp + i);
1773
Dave Barachdfbee412017-03-02 18:24:10 -05001774 vec_free (rp);
1775
Dave Barach371e4e12016-07-08 09:38:52 -04001776 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001777}
1778
Dave Barach49fe0462017-09-12 17:06:56 -04001779/*?
1780 * Display the plugin binary API message range table
1781?*/
Dave Barach371e4e12016-07-08 09:38:52 -04001782/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04001783VLIB_CLI_COMMAND (cli_show_api_plugin_command, static) =
1784{
1785 .path = "show api plugin",
1786 .short_help = "show api plugin",
1787 .function = vl_api_show_plugin_command,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001788};
Dave Barach371e4e12016-07-08 09:38:52 -04001789/* *INDENT-ON* */
Dave Barach4e281a42015-12-14 11:13:29 -05001790
Dave Barach371e4e12016-07-08 09:38:52 -04001791static void
1792vl_api_rpc_call_t_handler (vl_api_rpc_call_t * mp)
Dave Barach4e281a42015-12-14 11:13:29 -05001793{
Dave Barach11b8dbf2017-04-24 10:46:54 -04001794 vl_api_rpc_call_reply_t *rmp;
Dave Barach371e4e12016-07-08 09:38:52 -04001795 int (*fp) (void *);
Dave Barach4e281a42015-12-14 11:13:29 -05001796 i32 rv = 0;
Dave Barach371e4e12016-07-08 09:38:52 -04001797 vlib_main_t *vm = vlib_get_main ();
Dave Barach4e281a42015-12-14 11:13:29 -05001798
1799 if (mp->function == 0)
1800 {
1801 rv = -1;
1802 clib_warning ("rpc NULL function pointer");
1803 }
Dave Barach371e4e12016-07-08 09:38:52 -04001804
Dave Barach4e281a42015-12-14 11:13:29 -05001805 else
1806 {
1807 if (mp->need_barrier_sync)
Dave Barach371e4e12016-07-08 09:38:52 -04001808 vlib_worker_thread_barrier_sync (vm);
Dave Barach4e281a42015-12-14 11:13:29 -05001809
Dave Barach371e4e12016-07-08 09:38:52 -04001810 fp = uword_to_pointer (mp->function, int (*)(void *));
1811 rv = fp (mp->data);
Dave Barach4e281a42015-12-14 11:13:29 -05001812
1813 if (mp->need_barrier_sync)
Dave Barach371e4e12016-07-08 09:38:52 -04001814 vlib_worker_thread_barrier_release (vm);
Dave Barach4e281a42015-12-14 11:13:29 -05001815 }
1816
1817 if (mp->send_reply)
1818 {
Dave Barach371e4e12016-07-08 09:38:52 -04001819 unix_shared_memory_queue_t *q =
1820 vl_api_client_index_to_input_queue (mp->client_index);
Dave Barach4e281a42015-12-14 11:13:29 -05001821 if (q)
Dave Barach371e4e12016-07-08 09:38:52 -04001822 {
1823 rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
Dave Barach11b8dbf2017-04-24 10:46:54 -04001824 rmp->_vl_msg_id = ntohs (VL_API_RPC_CALL_REPLY);
Dave Barach371e4e12016-07-08 09:38:52 -04001825 rmp->context = mp->context;
1826 rmp->retval = rv;
1827 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1828 }
Dave Barach4e281a42015-12-14 11:13:29 -05001829 }
1830 if (mp->multicast)
1831 {
1832 clib_warning ("multicast not yet implemented...");
1833 }
1834}
1835
Dave Barach371e4e12016-07-08 09:38:52 -04001836static void
Dave Barach11b8dbf2017-04-24 10:46:54 -04001837vl_api_rpc_call_reply_t_handler (vl_api_rpc_call_reply_t * mp)
Dave Barach4e281a42015-12-14 11:13:29 -05001838{
Dave Barach371e4e12016-07-08 09:38:52 -04001839 clib_warning ("unimplemented");
1840}
1841
John Lo7e9743a2017-09-23 08:59:58 -04001842always_inline void
1843vl_api_rpc_call_main_thread_inline (void *fp, u8 * data, u32 data_length,
1844 u8 force_rpc)
Dave Barach371e4e12016-07-08 09:38:52 -04001845{
1846 vl_api_rpc_call_t *mp;
Dave Barach4e281a42015-12-14 11:13:29 -05001847 api_main_t *am = &api_main;
1848 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
Dave Barache9183632016-10-04 16:53:56 -04001849 unix_shared_memory_queue_t *q;
Dave Barach4e281a42015-12-14 11:13:29 -05001850
Dave Barache9183632016-10-04 16:53:56 -04001851 /* Main thread: call the function directly */
John Lo7e9743a2017-09-23 08:59:58 -04001852 if ((force_rpc == 0) && (vlib_get_thread_index () == 0))
Dave Barache9183632016-10-04 16:53:56 -04001853 {
1854 vlib_main_t *vm = vlib_get_main ();
1855 void (*call_fp) (void *);
1856
1857 vlib_worker_thread_barrier_sync (vm);
1858
1859 call_fp = fp;
1860 call_fp (data);
1861
1862 vlib_worker_thread_barrier_release (vm);
1863 return;
1864 }
1865
1866 /* Any other thread, actually do an RPC call... */
Dave Barach4e281a42015-12-14 11:13:29 -05001867 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp) + data_length);
Dave Barache9183632016-10-04 16:53:56 -04001868
Dave Barach4e281a42015-12-14 11:13:29 -05001869 memset (mp, 0, sizeof (*mp));
Damjan Marionf1213b82016-03-13 02:22:06 +01001870 clib_memcpy (mp->data, data, data_length);
Dave Barach4e281a42015-12-14 11:13:29 -05001871 mp->_vl_msg_id = ntohs (VL_API_RPC_CALL);
Dave Barach371e4e12016-07-08 09:38:52 -04001872 mp->function = pointer_to_uword (fp);
Dave Barach4e281a42015-12-14 11:13:29 -05001873 mp->need_barrier_sync = 1;
Dave Barach371e4e12016-07-08 09:38:52 -04001874
Dave Barache9183632016-10-04 16:53:56 -04001875 /*
1876 * Use the "normal" control-plane mechanism for the main thread.
1877 * Well, almost. if the main input queue is full, we cannot
1878 * block. Otherwise, we can expect a barrier sync timeout.
1879 */
1880 q = shmem_hdr->vl_input_queue;
1881
1882 while (pthread_mutex_trylock (&q->mutex))
1883 vlib_worker_thread_barrier_check ();
1884
1885 while (PREDICT_FALSE (unix_shared_memory_queue_is_full (q)))
1886 {
1887 pthread_mutex_unlock (&q->mutex);
1888 vlib_worker_thread_barrier_check ();
1889 while (pthread_mutex_trylock (&q->mutex))
1890 vlib_worker_thread_barrier_check ();
1891 }
1892
1893 vl_msg_api_send_shmem_nolock (q, (u8 *) & mp);
1894
1895 pthread_mutex_unlock (&q->mutex);
Dave Barach4e281a42015-12-14 11:13:29 -05001896}
1897
John Lo7e9743a2017-09-23 08:59:58 -04001898/*
1899 * Check if called from worker threads.
1900 * If so, make rpc call of fp through shmem.
1901 * Otherwise, call fp directly
1902 */
1903void
1904vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length)
1905{
1906 vl_api_rpc_call_main_thread_inline (fp, data, data_length, /*force_rpc */
1907 0);
1908}
1909
1910/*
1911 * Always make rpc call of fp through shmem, useful for calling from threads
1912 * not setup as worker threads, such as DPDK callback thread
1913 */
1914void
1915vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length)
1916{
1917 vl_api_rpc_call_main_thread_inline (fp, data, data_length, /*force_rpc */
1918 1);
1919}
1920
Dave Barach987e11d2017-02-27 13:10:27 -05001921static void
1922vl_api_trace_plugin_msg_ids_t_handler (vl_api_trace_plugin_msg_ids_t * mp)
1923{
Dave Barachdfbee412017-03-02 18:24:10 -05001924 api_main_t *am = &api_main;
1925 vl_api_msg_range_t *rp;
1926 uword *p;
Dave Barach987e11d2017-02-27 13:10:27 -05001927
Dave Barachdfbee412017-03-02 18:24:10 -05001928 /* Noop (except for tracing) during normal operation */
1929 if (am->replay_in_progress == 0)
1930 return;
1931
1932 p = hash_get_mem (am->msg_range_by_name, mp->plugin_name);
1933 if (p == 0)
1934 {
1935 clib_warning ("WARNING: traced plugin '%s' not in current image",
1936 mp->plugin_name);
1937 return;
1938 }
1939
1940 rp = vec_elt_at_index (am->msg_ranges, p[0]);
1941 if (rp->first_msg_id != clib_net_to_host_u16 (mp->first_msg_id))
1942 {
1943 clib_warning ("WARNING: traced plugin '%s' first message id %d not %d",
1944 mp->plugin_name, clib_net_to_host_u16 (mp->first_msg_id),
1945 rp->first_msg_id);
1946 }
1947
1948 if (rp->last_msg_id != clib_net_to_host_u16 (mp->last_msg_id))
1949 {
1950 clib_warning ("WARNING: traced plugin '%s' last message id %d not %d",
1951 mp->plugin_name, clib_net_to_host_u16 (mp->last_msg_id),
1952 rp->last_msg_id);
1953 }
1954}
Dave Barach987e11d2017-02-27 13:10:27 -05001955
Dave Barach4e281a42015-12-14 11:13:29 -05001956#define foreach_rpc_api_msg \
1957_(RPC_CALL,rpc_call) \
Dave Barach11b8dbf2017-04-24 10:46:54 -04001958_(RPC_CALL_REPLY,rpc_call_reply)
Dave Barach4e281a42015-12-14 11:13:29 -05001959
Dave Barach987e11d2017-02-27 13:10:27 -05001960#define foreach_plugin_trace_msg \
1961_(TRACE_PLUGIN_MSG_IDS,trace_plugin_msg_ids)
1962
Dave Barach69128d02017-09-26 10:54:34 -04001963/*
1964 * Set the rpc callback at our earliest possible convenience.
1965 * This avoids ordering issues between thread_init() -> start_workers and
1966 * an init function which we could define here. If we ever intend to use
1967 * vlib all by itself, we can't create a link-time dependency on
1968 * an init function here and a typical "call foo_init first"
1969 * guitar lick.
1970 */
1971
1972extern void *rpc_call_main_thread_cb_fn;
1973
Dave Barach4e281a42015-12-14 11:13:29 -05001974static clib_error_t *
Dave Barach371e4e12016-07-08 09:38:52 -04001975rpc_api_hookup (vlib_main_t * vm)
Dave Barach4e281a42015-12-14 11:13:29 -05001976{
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001977 api_main_t *am = &api_main;
Dave Barach4e281a42015-12-14 11:13:29 -05001978#define _(N,n) \
1979 vl_msg_api_set_handlers(VL_API_##N, #n, \
1980 vl_api_##n##_t_handler, \
1981 vl_noop_handler, \
1982 vl_noop_handler, \
1983 vl_api_##n##_t_print, \
Dave Barach371e4e12016-07-08 09:38:52 -04001984 sizeof(vl_api_##n##_t), 0 /* do not trace */);
1985 foreach_rpc_api_msg;
Dave Barach4e281a42015-12-14 11:13:29 -05001986#undef _
Dave Barach987e11d2017-02-27 13:10:27 -05001987
1988#define _(N,n) \
1989 vl_msg_api_set_handlers(VL_API_##N, #n, \
1990 vl_api_##n##_t_handler, \
1991 vl_noop_handler, \
1992 vl_noop_handler, \
1993 vl_api_##n##_t_print, \
1994 sizeof(vl_api_##n##_t), 1 /* do trace */);
1995 foreach_plugin_trace_msg;
1996#undef _
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001997
1998 /* No reason to halt the parade to create a trace record... */
1999 am->is_mp_safe[VL_API_TRACE_PLUGIN_MSG_IDS] = 1;
Dave Barach69128d02017-09-26 10:54:34 -04002000 rpc_call_main_thread_cb_fn = vl_api_rpc_call_main_thread;
Dave Barach371e4e12016-07-08 09:38:52 -04002001 return 0;
Dave Barach4e281a42015-12-14 11:13:29 -05002002}
2003
Dave Barach371e4e12016-07-08 09:38:52 -04002004VLIB_API_INIT_FUNCTION (rpc_api_hookup);
2005
Dave Barach80f54e22017-03-08 19:08:56 -05002006typedef enum
2007{
2008 DUMP,
2009 CUSTOM_DUMP,
2010 REPLAY,
2011 INITIALIZERS,
2012} vl_api_replay_t;
2013
2014u8 *
2015format_vl_msg_api_trace_status (u8 * s, va_list * args)
2016{
2017 api_main_t *am = va_arg (*args, api_main_t *);
2018 vl_api_trace_which_t which = va_arg (*args, vl_api_trace_which_t);
2019 vl_api_trace_t *tp;
2020 char *trace_name;
2021
2022 switch (which)
2023 {
2024 case VL_API_TRACE_TX:
2025 tp = am->tx_trace;
2026 trace_name = "TX trace";
2027 break;
2028
2029 case VL_API_TRACE_RX:
2030 tp = am->rx_trace;
2031 trace_name = "RX trace";
2032 break;
2033
2034 default:
2035 abort ();
2036 }
2037
2038 if (tp == 0)
2039 {
2040 s = format (s, "%s: not yet configured.\n", trace_name);
2041 return s;
2042 }
2043
2044 s = format (s, "%s: used %d of %d items, %s enabled, %s wrapped\n",
2045 trace_name, vec_len (tp->traces), tp->nitems,
2046 tp->enabled ? "is" : "is not", tp->wrapped ? "has" : "has not");
2047 return s;
2048}
2049
2050void vl_msg_api_custom_dump_configure (api_main_t * am)
2051 __attribute__ ((weak));
2052void
2053vl_msg_api_custom_dump_configure (api_main_t * am)
2054{
2055}
2056
2057static void
2058vl_msg_api_process_file (vlib_main_t * vm, u8 * filename,
2059 u32 first_index, u32 last_index,
2060 vl_api_replay_t which)
2061{
2062 vl_api_trace_file_header_t *hp;
2063 int i, fd;
2064 struct stat statb;
2065 size_t file_size;
2066 u8 *msg;
2067 u8 endian_swap_needed = 0;
2068 api_main_t *am = &api_main;
2069 u8 *tmpbuf = 0;
2070 u32 nitems;
2071 void **saved_print_handlers = 0;
2072
2073 fd = open ((char *) filename, O_RDONLY);
2074
2075 if (fd < 0)
2076 {
2077 vlib_cli_output (vm, "Couldn't open %s\n", filename);
2078 return;
2079 }
2080
2081 if (fstat (fd, &statb) < 0)
2082 {
2083 vlib_cli_output (vm, "Couldn't stat %s\n", filename);
2084 close (fd);
2085 return;
2086 }
2087
2088 if (!(statb.st_mode & S_IFREG) || (statb.st_size < sizeof (*hp)))
2089 {
2090 vlib_cli_output (vm, "File not plausible: %s\n", filename);
2091 close (fd);
2092 return;
2093 }
2094
2095 file_size = statb.st_size;
2096 file_size = (file_size + 4095) & ~(4096);
2097
2098 hp = mmap (0, file_size, PROT_READ, MAP_PRIVATE, fd, 0);
2099
2100 if (hp == (vl_api_trace_file_header_t *) MAP_FAILED)
2101 {
2102 vlib_cli_output (vm, "mmap failed: %s\n", filename);
2103 close (fd);
2104 return;
2105 }
2106 close (fd);
2107
2108 if ((clib_arch_is_little_endian && hp->endian == VL_API_BIG_ENDIAN)
2109 || (clib_arch_is_big_endian && hp->endian == VL_API_LITTLE_ENDIAN))
2110 endian_swap_needed = 1;
2111
2112 if (endian_swap_needed)
2113 nitems = ntohl (hp->nitems);
2114 else
2115 nitems = hp->nitems;
2116
2117 if (last_index == (u32) ~ 0)
2118 {
2119 last_index = nitems - 1;
2120 }
2121
2122 if (first_index >= nitems || last_index >= nitems)
2123 {
2124 vlib_cli_output (vm, "Range (%d, %d) outside file range (0, %d)\n",
2125 first_index, last_index, nitems - 1);
2126 munmap (hp, file_size);
2127 return;
2128 }
2129 if (hp->wrapped)
2130 vlib_cli_output (vm,
2131 "Note: wrapped/incomplete trace, results may vary\n");
2132
2133 if (which == CUSTOM_DUMP)
2134 {
2135 saved_print_handlers = (void **) vec_dup (am->msg_print_handlers);
2136 vl_msg_api_custom_dump_configure (am);
2137 }
2138
2139
2140 msg = (u8 *) (hp + 1);
2141
2142 for (i = 0; i < first_index; i++)
2143 {
2144 trace_cfg_t *cfgp;
2145 int size;
2146 u16 msg_id;
2147
2148 size = clib_host_to_net_u32 (*(u32 *) msg);
2149 msg += sizeof (u32);
2150
2151 if (clib_arch_is_little_endian)
2152 msg_id = ntohs (*((u16 *) msg));
2153 else
2154 msg_id = *((u16 *) msg);
2155
2156 cfgp = am->api_trace_cfg + msg_id;
2157 if (!cfgp)
2158 {
2159 vlib_cli_output (vm, "Ugh: msg id %d no trace config\n", msg_id);
2160 munmap (hp, file_size);
2161 return;
2162 }
2163 msg += size;
2164 }
2165
2166 if (which == REPLAY)
2167 am->replay_in_progress = 1;
2168
2169 for (; i <= last_index; i++)
2170 {
2171 trace_cfg_t *cfgp;
2172 u16 *msg_idp;
2173 u16 msg_id;
2174 int size;
2175
2176 if (which == DUMP)
2177 vlib_cli_output (vm, "---------- trace %d -----------\n", i);
2178
2179 size = clib_host_to_net_u32 (*(u32 *) msg);
2180 msg += sizeof (u32);
2181
2182 if (clib_arch_is_little_endian)
2183 msg_id = ntohs (*((u16 *) msg));
2184 else
2185 msg_id = *((u16 *) msg);
2186
2187 cfgp = am->api_trace_cfg + msg_id;
2188 if (!cfgp)
2189 {
2190 vlib_cli_output (vm, "Ugh: msg id %d no trace config\n", msg_id);
2191 munmap (hp, file_size);
2192 vec_free (tmpbuf);
2193 am->replay_in_progress = 0;
2194 return;
2195 }
2196
2197 /* Copy the buffer (from the read-only mmap'ed file) */
2198 vec_validate (tmpbuf, size - 1 + sizeof (uword));
2199 clib_memcpy (tmpbuf + sizeof (uword), msg, size);
2200 memset (tmpbuf, 0xf, sizeof (uword));
2201
2202 /*
2203 * Endian swap if needed. All msg data is supposed to be
2204 * in network byte order. All msg handlers are supposed to
2205 * know that. The generic message dumpers don't know that.
2206 * One could fix apigen, I suppose.
2207 */
2208 if ((which == DUMP && clib_arch_is_little_endian) || endian_swap_needed)
2209 {
2210 void (*endian_fp) (void *);
2211 if (msg_id >= vec_len (am->msg_endian_handlers)
2212 || (am->msg_endian_handlers[msg_id] == 0))
2213 {
2214 vlib_cli_output (vm, "Ugh: msg id %d no endian swap\n", msg_id);
2215 munmap (hp, file_size);
2216 vec_free (tmpbuf);
2217 am->replay_in_progress = 0;
2218 return;
2219 }
2220 endian_fp = am->msg_endian_handlers[msg_id];
2221 (*endian_fp) (tmpbuf + sizeof (uword));
2222 }
2223
2224 /* msg_id always in network byte order */
2225 if (clib_arch_is_little_endian)
2226 {
2227 msg_idp = (u16 *) (tmpbuf + sizeof (uword));
2228 *msg_idp = msg_id;
2229 }
2230
2231 switch (which)
2232 {
2233 case CUSTOM_DUMP:
2234 case DUMP:
2235 if (msg_id < vec_len (am->msg_print_handlers) &&
2236 am->msg_print_handlers[msg_id])
2237 {
2238 u8 *(*print_fp) (void *, void *);
2239
2240 print_fp = (void *) am->msg_print_handlers[msg_id];
2241 (*print_fp) (tmpbuf + sizeof (uword), vm);
2242 }
2243 else
2244 {
2245 vlib_cli_output (vm, "Skipping msg id %d: no print fcn\n",
2246 msg_id);
2247 break;
2248 }
2249 break;
2250
2251 case INITIALIZERS:
2252 if (msg_id < vec_len (am->msg_print_handlers) &&
2253 am->msg_print_handlers[msg_id])
2254 {
2255 u8 *s;
2256 int j;
2257 u8 *(*print_fp) (void *, void *);
2258
2259 print_fp = (void *) am->msg_print_handlers[msg_id];
2260
2261 vlib_cli_output (vm, "/*");
2262
2263 (*print_fp) (tmpbuf + sizeof (uword), vm);
2264 vlib_cli_output (vm, "*/\n");
2265
2266 s = format (0, "static u8 * vl_api_%s_%d[%d] = {",
2267 am->msg_names[msg_id], i,
2268 am->api_trace_cfg[msg_id].size);
2269
2270 for (j = 0; j < am->api_trace_cfg[msg_id].size; j++)
2271 {
2272 if ((j & 7) == 0)
2273 s = format (s, "\n ");
2274 s = format (s, "0x%02x,", tmpbuf[sizeof (uword) + j]);
2275 }
2276 s = format (s, "\n};\n%c", 0);
2277 vlib_cli_output (vm, (char *) s);
2278 vec_free (s);
2279 }
2280 break;
2281
2282 case REPLAY:
2283 if (msg_id < vec_len (am->msg_print_handlers) &&
2284 am->msg_print_handlers[msg_id] && cfgp->replay_enable)
2285 {
2286 void (*handler) (void *);
2287
2288 handler = (void *) am->msg_handlers[msg_id];
2289
2290 if (!am->is_mp_safe[msg_id])
2291 vl_msg_api_barrier_sync ();
2292 (*handler) (tmpbuf + sizeof (uword));
2293 if (!am->is_mp_safe[msg_id])
2294 vl_msg_api_barrier_release ();
2295 }
2296 else
2297 {
2298 if (cfgp->replay_enable)
2299 vlib_cli_output (vm, "Skipping msg id %d: no handler\n",
2300 msg_id);
2301 break;
2302 }
2303 break;
2304 }
2305
2306 _vec_len (tmpbuf) = 0;
2307 msg += size;
2308 }
2309
2310 if (saved_print_handlers)
2311 {
2312 clib_memcpy (am->msg_print_handlers, saved_print_handlers,
2313 vec_len (am->msg_print_handlers) * sizeof (void *));
2314 vec_free (saved_print_handlers);
2315 }
2316
2317 munmap (hp, file_size);
2318 vec_free (tmpbuf);
2319 am->replay_in_progress = 0;
2320}
2321
2322static clib_error_t *
2323api_trace_command_fn (vlib_main_t * vm,
2324 unformat_input_t * input, vlib_cli_command_t * cmd)
2325{
2326 u32 nitems = 256 << 10;
2327 api_main_t *am = &api_main;
2328 vl_api_trace_which_t which = VL_API_TRACE_RX;
2329 u8 *filename;
2330 u32 first = 0;
2331 u32 last = (u32) ~ 0;
2332 FILE *fp;
2333 int rv;
2334
2335 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2336 {
2337 if (unformat (input, "on") || unformat (input, "enable"))
2338 {
2339 if (unformat (input, "nitems %d", &nitems))
2340 ;
2341 vl_msg_api_trace_configure (am, which, nitems);
2342 vl_msg_api_trace_onoff (am, which, 1 /* on */ );
2343 }
2344 else if (unformat (input, "off"))
2345 {
2346 vl_msg_api_trace_onoff (am, which, 0);
2347 }
2348 else if (unformat (input, "save %s", &filename))
2349 {
2350 u8 *chroot_filename;
2351 if (strstr ((char *) filename, "..")
2352 || index ((char *) filename, '/'))
2353 {
2354 vlib_cli_output (vm, "illegal characters in filename '%s'",
2355 filename);
2356 return 0;
2357 }
2358
2359 chroot_filename = format (0, "/tmp/%s%c", filename, 0);
2360
2361 vec_free (filename);
2362
2363 fp = fopen ((char *) chroot_filename, "w");
2364 if (fp == NULL)
2365 {
2366 vlib_cli_output (vm, "Couldn't create %s\n", chroot_filename);
2367 return 0;
2368 }
2369 rv = vl_msg_api_trace_save (am, which, fp);
2370 fclose (fp);
2371 if (rv == -1)
2372 vlib_cli_output (vm, "API Trace data not present\n");
2373 else if (rv == -2)
2374 vlib_cli_output (vm, "File for writing is closed\n");
2375 else if (rv == -10)
2376 vlib_cli_output (vm, "Error while writing header to file\n");
2377 else if (rv == -11)
2378 vlib_cli_output (vm, "Error while writing trace to file\n");
2379 else if (rv == -12)
2380 vlib_cli_output (vm,
2381 "Error while writing end of buffer trace to file\n");
2382 else if (rv == -13)
2383 vlib_cli_output (vm,
2384 "Error while writing start of buffer trace to file\n");
2385 else if (rv < 0)
2386 vlib_cli_output (vm, "Unkown error while saving: %d", rv);
2387 else
2388 vlib_cli_output (vm, "API trace saved to %s\n", chroot_filename);
2389 vec_free (chroot_filename);
2390 }
2391 else if (unformat (input, "dump %s", &filename))
2392 {
2393 vl_msg_api_process_file (vm, filename, first, last, DUMP);
2394 }
2395 else if (unformat (input, "custom-dump %s", &filename))
2396 {
2397 vl_msg_api_process_file (vm, filename, first, last, CUSTOM_DUMP);
2398 }
2399 else if (unformat (input, "replay %s", &filename))
2400 {
2401 vl_msg_api_process_file (vm, filename, first, last, REPLAY);
2402 }
2403 else if (unformat (input, "initializers %s", &filename))
2404 {
2405 vl_msg_api_process_file (vm, filename, first, last, INITIALIZERS);
2406 }
2407 else if (unformat (input, "tx"))
2408 {
2409 which = VL_API_TRACE_TX;
2410 }
2411 else if (unformat (input, "first %d", &first))
2412 {
2413 ;
2414 }
2415 else if (unformat (input, "last %d", &last))
2416 {
2417 ;
2418 }
2419 else if (unformat (input, "status"))
2420 {
2421 vlib_cli_output (vm, "%U", format_vl_msg_api_trace_status,
2422 am, which);
2423 }
2424 else if (unformat (input, "free"))
2425 {
2426 vl_msg_api_trace_onoff (am, which, 0);
2427 vl_msg_api_trace_free (am, which);
2428 }
2429 else if (unformat (input, "post-mortem-on"))
2430 vl_msg_api_post_mortem_dump_enable_disable (1 /* enable */ );
2431 else if (unformat (input, "post-mortem-off"))
2432 vl_msg_api_post_mortem_dump_enable_disable (0 /* enable */ );
2433 else
2434 return clib_error_return (0, "unknown input `%U'",
2435 format_unformat_error, input);
2436 }
2437 return 0;
2438}
2439
Dave Barach49fe0462017-09-12 17:06:56 -04002440/*?
2441 * Display, replay, or save a binary API trace
2442?*/
2443
Dave Barach80f54e22017-03-08 19:08:56 -05002444/* *INDENT-OFF* */
Dave Barach49fe0462017-09-12 17:06:56 -04002445VLIB_CLI_COMMAND (api_trace_command, static) =
2446{
2447 .path = "api trace",
2448 .short_help =
2449 "api trace [on|off][dump|save|replay <file>][status][free][post-mortem-on]",
2450 .function = api_trace_command_fn,
Dave Barach80f54e22017-03-08 19:08:56 -05002451};
2452/* *INDENT-ON* */
2453
2454static clib_error_t *
2455api_config_fn (vlib_main_t * vm, unformat_input_t * input)
2456{
2457 u32 nitems = 256 << 10;
2458 vl_api_trace_which_t which = VL_API_TRACE_RX;
2459 api_main_t *am = &api_main;
2460
2461 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2462 {
2463 if (unformat (input, "on") || unformat (input, "enable"))
2464 {
2465 if (unformat (input, "nitems %d", &nitems))
2466 ;
2467 vl_msg_api_trace_configure (am, which, nitems);
2468 vl_msg_api_trace_onoff (am, which, 1 /* on */ );
2469 vl_msg_api_post_mortem_dump_enable_disable (1 /* enable */ );
2470 }
Dave Barach49fe0462017-09-12 17:06:56 -04002471 else if (unformat (input, "save-api-table %s",
2472 &am->save_msg_table_filename))
2473 ;
Dave Barach80f54e22017-03-08 19:08:56 -05002474 else
2475 return clib_error_return (0, "unknown input `%U'",
2476 format_unformat_error, input);
2477 }
2478 return 0;
2479}
2480
Dave Barach49fe0462017-09-12 17:06:56 -04002481/*?
2482 * This module has three configuration parameters:
2483 * "on" or "enable" - enables binary api tracing
2484 * "nitems <nnn>" - sets the size of the circular buffer to <nnn>
2485 * "save-api-table <filename>" - dumps the API message table to /tmp/<filename>
2486?*/
Dave Barach80f54e22017-03-08 19:08:56 -05002487VLIB_CONFIG_FUNCTION (api_config_fn, "api-trace");
2488
Dave Barach10d8cc62017-05-30 09:30:07 -04002489static clib_error_t *
2490api_queue_config_fn (vlib_main_t * vm, unformat_input_t * input)
2491{
2492 api_main_t *am = &api_main;
2493 u32 nitems;
2494
2495 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2496 {
2497 if (unformat (input, "length %d", &nitems) ||
2498 (unformat (input, "len %d", &nitems)))
2499 {
2500 if (nitems >= 1024)
2501 am->vlib_input_queue_length = nitems;
2502 else
2503 clib_warning ("vlib input queue length %d too small, ignored",
2504 nitems);
2505 }
2506 else
2507 return clib_error_return (0, "unknown input `%U'",
2508 format_unformat_error, input);
2509 }
2510 return 0;
2511}
2512
2513VLIB_CONFIG_FUNCTION (api_queue_config_fn, "api-queue");
2514
Dave Barach49fe0462017-09-12 17:06:56 -04002515static u8 *
2516extract_name (u8 * s)
2517{
2518 u8 *rv;
2519
2520 rv = vec_dup (s);
2521
2522 while (vec_len (rv) && rv[vec_len (rv)] != '_')
2523 _vec_len (rv)--;
2524
2525 rv[vec_len (rv)] = 0;
2526
2527 return rv;
2528}
2529
2530static u8 *
2531extract_crc (u8 * s)
2532{
2533 int i;
2534 u8 *rv;
2535
2536 rv = vec_dup (s);
2537
2538 for (i = vec_len (rv) - 1; i >= 0; i--)
2539 {
2540 if (rv[i] == '_')
2541 {
2542 vec_delete (rv, i + 1, 0);
2543 break;
2544 }
2545 }
2546 return rv;
2547}
2548
2549typedef struct
2550{
2551 u8 *name_and_crc;
2552 u8 *name;
2553 u8 *crc;
2554 u32 msg_index;
2555 int which;
2556} msg_table_unserialize_t;
2557
2558static int
2559table_id_cmp (void *a1, void *a2)
2560{
2561 msg_table_unserialize_t *n1 = a1;
2562 msg_table_unserialize_t *n2 = a2;
2563
2564 return (n1->msg_index - n2->msg_index);
2565}
2566
2567static int
2568table_name_and_crc_cmp (void *a1, void *a2)
2569{
2570 msg_table_unserialize_t *n1 = a1;
2571 msg_table_unserialize_t *n2 = a2;
2572
2573 return strcmp ((char *) n1->name_and_crc, (char *) n2->name_and_crc);
2574}
2575
2576static clib_error_t *
2577dump_api_table_file_command_fn (vlib_main_t * vm,
2578 unformat_input_t * input,
2579 vlib_cli_command_t * cmd)
2580{
2581 u8 *filename = 0;
2582 api_main_t *am = &api_main;
2583 serialize_main_t _sm, *sm = &_sm;
2584 clib_error_t *error;
2585 u32 nmsgs;
2586 u32 msg_index;
2587 u8 *name_and_crc;
2588 int compare_current = 0;
2589 int numeric_sort = 0;
2590 msg_table_unserialize_t *table = 0, *item;
2591 u32 i;
2592 u32 ndifferences = 0;
2593
2594 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2595 {
2596 if (unformat (input, "file %s", &filename))
2597 ;
2598 else if (unformat (input, "compare-current")
2599 || unformat (input, "compare"))
2600 compare_current = 1;
2601 else if (unformat (input, "numeric"))
2602 numeric_sort = 1;
2603 else
2604 return clib_error_return (0, "unknown input `%U'",
2605 format_unformat_error, input);
2606 }
2607
2608 if (numeric_sort && compare_current)
2609 return clib_error_return
2610 (0, "Comparison and numeric sorting are incompatible");
2611
2612 if (filename == 0)
2613 return clib_error_return (0, "File not specified");
2614
2615 /* Load the serialized message table from the table dump */
2616
Dave Barach59b25652017-09-10 15:04:27 -04002617 error = unserialize_open_clib_file (sm, (char *) filename);
Dave Barach49fe0462017-09-12 17:06:56 -04002618
2619 if (error)
2620 return error;
2621
2622 unserialize_integer (sm, &nmsgs, sizeof (u32));
2623
2624 for (i = 0; i < nmsgs; i++)
2625 {
2626 msg_index = unserialize_likely_small_unsigned_integer (sm);
2627 unserialize_cstring (sm, (char **) &name_and_crc);
2628 vec_add2 (table, item, 1);
2629 item->msg_index = msg_index;
2630 item->name_and_crc = name_and_crc;
2631 item->name = extract_name (name_and_crc);
2632 item->crc = extract_crc (name_and_crc);
2633 item->which = 0; /* file */
2634 }
2635 serialize_close (sm);
2636
2637 /* Compare with the current image? */
2638 if (compare_current)
2639 {
2640 /* Append the current message table */
Dave Barach59b25652017-09-10 15:04:27 -04002641 u8 *tblv = vl_api_serialize_message_table (am, 0);
Dave Barach49fe0462017-09-12 17:06:56 -04002642
2643 serialize_open_vector (sm, tblv);
2644 unserialize_integer (sm, &nmsgs, sizeof (u32));
2645
2646 for (i = 0; i < nmsgs; i++)
2647 {
2648 msg_index = unserialize_likely_small_unsigned_integer (sm);
2649 unserialize_cstring (sm, (char **) &name_and_crc);
2650
2651 vec_add2 (table, item, 1);
2652 item->msg_index = msg_index;
2653 item->name_and_crc = name_and_crc;
2654 item->name = extract_name (name_and_crc);
2655 item->crc = extract_crc (name_and_crc);
2656 item->which = 1; /* current_image */
2657 }
Dave Barach59b25652017-09-10 15:04:27 -04002658 vec_free (tblv);
Dave Barach49fe0462017-09-12 17:06:56 -04002659 }
2660
2661 /* Sort the table. */
2662 if (numeric_sort)
2663 vec_sort_with_function (table, table_id_cmp);
2664 else
2665 vec_sort_with_function (table, table_name_and_crc_cmp);
2666
2667 if (compare_current)
2668 {
2669 ndifferences = 0;
2670
2671 /*
2672 * In this case, the recovered table will have two entries per
2673 * API message. So, if entries i and i+1 match, the message definitions
2674 * are identical. Otherwise, the crc is different, or a message is
2675 * present in only one of the tables.
2676 */
2677 vlib_cli_output (vm, "%=60s %s", "Message Name", "Result");
2678
2679 for (i = 0; i < vec_len (table);)
2680 {
2681 /* Last message lonely? */
2682 if (i == vec_len (table) - 1)
2683 {
2684 ndifferences++;
2685 goto last_unique;
2686 }
2687
2688 /* Identical pair? */
2689 if (!strncmp
2690 ((char *) table[i].name_and_crc,
2691 (char *) table[i + 1].name_and_crc,
2692 vec_len (table[i].name_and_crc)))
2693 {
2694 i += 2;
2695 continue;
2696 }
2697
2698 ndifferences++;
2699
2700 /* Only in one of two tables? */
2701 if (strncmp ((char *) table[i].name, (char *) table[i + 1].name,
2702 vec_len (table[i].name)))
2703 {
2704 last_unique:
2705 vlib_cli_output (vm, "%-60s only in %s",
2706 table[i].name, table[i].which ?
2707 "image" : "file");
2708 i++;
2709 continue;
2710 }
2711 /* In both tables, but with different signatures */
2712 vlib_cli_output (vm, "%-60s definition changed", table[i].name);
2713 i += 2;
2714 }
2715 if (ndifferences == 0)
2716 vlib_cli_output (vm, "No api message signature differences found.");
2717 else
2718 vlib_cli_output (vm, "Found %u api message signature differences",
2719 ndifferences);
2720 goto cleanup;
2721 }
2722
2723 /* Dump the table, sorted as shown above */
2724 vlib_cli_output (vm, "%=60s %=8s %=10s", "Message name", "MsgID", "CRC");
2725
2726 for (i = 0; i < vec_len (table); i++)
2727 {
2728 item = table + i;
2729 vlib_cli_output (vm, "%-60s %8u %10s", item->name,
2730 item->msg_index, item->crc);
2731 }
2732
2733cleanup:
2734 for (i = 0; i < vec_len (table); i++)
2735 {
2736 vec_free (table[i].name_and_crc);
2737 vec_free (table[i].name);
2738 vec_free (table[i].crc);
2739 }
2740
2741 vec_free (table);
2742
2743 return 0;
2744}
2745
2746/*?
2747 * Displays a serialized API message decode table, sorted by message name
2748 *
2749 * @cliexpar
2750 * @cliexstart{show api dump file <filename>}
2751 * Message name MsgID CRC
2752 * accept_session 407 8e2a127e
2753 * accept_session_reply 408 67d8c22a
2754 * add_node_next 549 e4202993
2755 * add_node_next_reply 550 e89d6eed
2756 * etc.
2757 * @cliexend
2758?*/
2759
2760/*?
2761 * Compares a serialized API message decode table with the current image
2762 *
2763 * @cliexpar
2764 * @cliexstart{show api dump file <filename> compare}
2765 * ip_add_del_route definition changed
2766 * ip_table_add_del definition changed
2767 * l2_macs_event only in image
2768 * vnet_ip4_fib_counters only in file
2769 * vnet_ip4_nbr_counters only in file
2770 * @cliexend
2771?*/
2772
2773/*?
Dave Barach905c14a2017-09-25 08:47:59 -04002774 * Display a serialized API message decode table, compare a saved
2775 * decode table with the current image, to establish API differences.
2776 *
Dave Barach49fe0462017-09-12 17:06:56 -04002777?*/
2778/* *INDENT-OFF* */
2779VLIB_CLI_COMMAND (dump_api_table_file, static) =
2780{
2781 .path = "show api dump",
2782 .short_help = "show api dump file <filename> [numeric | compare-current]",
2783 .function = dump_api_table_file_command_fn,
2784};
2785/* *INDENT-ON* */
2786
Dave Barach371e4e12016-07-08 09:38:52 -04002787/*
2788 * fd.io coding-style-patch-verification: ON
2789 *
2790 * Local Variables:
2791 * eval: (c-set-style "gnu")
2792 * End:
2793 */