Stat segment / client: show run" works now
[vpp.git] / src / vpp / stats / stat_segment.c
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <vpp/stats/stats.h>
16
17 void
18 vlib_stat_segment_lock (void)
19 {
20   stats_main_t *sm = &stats_main;
21   clib_spinlock_lock (sm->stat_segment_lockp);
22 }
23
24 void
25 vlib_stat_segment_unlock (void)
26 {
27   stats_main_t *sm = &stats_main;
28   clib_spinlock_unlock (sm->stat_segment_lockp);
29 }
30
31 void *
32 vlib_stats_push_heap (void)
33 {
34   stats_main_t *sm = &stats_main;
35   ssvm_private_t *ssvmp = &sm->stat_segment;
36   ssvm_shared_header_t *shared_header;
37
38   ASSERT (ssvmp && ssvmp->sh);
39
40   shared_header = ssvmp->sh;
41
42   return ssvm_push_heap (shared_header);
43 }
44
45 void
46 vlib_stats_pop_heap (void *cm_arg, void *oldheap)
47 {
48   vlib_simple_counter_main_t *cm = (vlib_simple_counter_main_t *) cm_arg;
49   stats_main_t *sm = &stats_main;
50   ssvm_private_t *ssvmp = &sm->stat_segment;
51   ssvm_shared_header_t *shared_header;
52   char *stat_segment_name;
53   stat_segment_directory_entry_t *ep;
54   uword *p;
55
56   ASSERT (ssvmp && ssvmp->sh);
57
58   shared_header = ssvmp->sh;
59
60   /* Not all counters have names / hash-table entries */
61   if (cm->name || cm->stat_segment_name)
62     {
63       hash_pair_t *hp;
64       u8 *name_copy;
65
66       stat_segment_name = cm->stat_segment_name ?
67         cm->stat_segment_name : cm->name;
68
69       clib_spinlock_lock (sm->stat_segment_lockp);
70
71       /* Update hash table. The name must be copied into the segment */
72       hp = hash_get_pair (sm->counter_vector_by_name, stat_segment_name);
73       if (hp)
74         {
75           name_copy = (u8 *) hp->key;
76           ep = (stat_segment_directory_entry_t *) (hp->value[0]);
77           hash_unset_mem (sm->counter_vector_by_name, stat_segment_name);
78           vec_free (name_copy);
79           clib_mem_free (ep);
80         }
81       name_copy = format (0, "%s%c", stat_segment_name, 0);
82       ep = clib_mem_alloc (sizeof (*ep));
83       ep->type = STAT_DIR_TYPE_COUNTER_VECTOR;
84       ep->value = cm->counters;
85       hash_set_mem (sm->counter_vector_by_name, name_copy, ep);
86
87       /* Reset the client hash table pointer, since it WILL change! */
88       shared_header->opaque[STAT_SEGMENT_OPAQUE_DIR]
89         = sm->counter_vector_by_name;
90
91       /* Warn clients to refresh any pointers they might be holding */
92       shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] = (void *)
93         ((u64) shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] + 1);
94       clib_spinlock_unlock (sm->stat_segment_lockp);
95     }
96   ssvm_pop_heap (oldheap);
97 }
98
99 void
100 vlib_stats_register_error_index (u8 * name, u64 index)
101 {
102   stats_main_t *sm = &stats_main;
103   ssvm_private_t *ssvmp = &sm->stat_segment;
104   ssvm_shared_header_t *shared_header;
105   stat_segment_directory_entry_t *ep;
106   hash_pair_t *hp;
107   u8 *name_copy;
108   uword *p;
109
110   ASSERT (ssvmp && ssvmp->sh);
111
112   shared_header = ssvmp->sh;
113
114   clib_spinlock_lock (sm->stat_segment_lockp);
115
116   /* Update hash table. The name must be copied into the segment */
117   hp = hash_get_pair (sm->counter_vector_by_name, name);
118   if (hp)
119     {
120       name_copy = (u8 *) hp->key;
121       ep = (stat_segment_directory_entry_t *) (hp->value[0]);
122       hash_unset_mem (sm->counter_vector_by_name, name);
123       vec_free (name_copy);
124       clib_mem_free (ep);
125     }
126
127   ep = clib_mem_alloc (sizeof (*ep));
128   ep->type = STAT_DIR_TYPE_ERROR_INDEX;
129   ep->value = (void *) index;
130
131   hash_set_mem (sm->counter_vector_by_name, name, ep);
132
133   /* Reset the client hash table pointer, since it WILL change! */
134   shared_header->opaque[STAT_SEGMENT_OPAQUE_DIR] = sm->counter_vector_by_name;
135
136   /* Warn clients to refresh any pointers they might be holding */
137   shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] = (void *)
138     ((u64) shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] + 1);
139   clib_spinlock_unlock (sm->stat_segment_lockp);
140 }
141
142 void
143 vlib_stats_pop_heap2 (u64 * counter_vector, u32 thread_index, void *oldheap)
144 {
145   stats_main_t *sm = &stats_main;
146   ssvm_private_t *ssvmp = &sm->stat_segment;
147   ssvm_shared_header_t *shared_header;
148   stat_segment_directory_entry_t *ep;
149   hash_pair_t *hp;
150   u8 *error_vector_name;
151   u8 *name_copy;
152   uword *p;
153
154   ASSERT (ssvmp && ssvmp->sh);
155
156   shared_header = ssvmp->sh;
157
158   clib_spinlock_lock (sm->stat_segment_lockp);
159
160   error_vector_name = format (0, "/err/%d/counter_vector%c", thread_index, 0);
161
162   /* Update hash table. The name must be copied into the segment */
163   hp = hash_get_pair (sm->counter_vector_by_name, error_vector_name);
164   if (hp)
165     {
166       name_copy = (u8 *) hp->key;
167       ep = (stat_segment_directory_entry_t *) (hp->value[0]);
168       hash_unset_mem (sm->counter_vector_by_name, error_vector_name);
169       vec_free (name_copy);
170       clib_mem_free (ep);
171     }
172
173   ep = clib_mem_alloc (sizeof (*ep));
174   ep->type = STAT_DIR_TYPE_VECTOR_POINTER;
175   ep->value = counter_vector;
176
177   hash_set_mem (sm->counter_vector_by_name, error_vector_name, ep);
178
179   /* Reset the client hash table pointer, since it WILL change! */
180   shared_header->opaque[STAT_SEGMENT_OPAQUE_DIR] = sm->counter_vector_by_name;
181
182   /* Warn clients to refresh any pointers they might be holding */
183   shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] = (void *)
184     ((u64) shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] + 1);
185   clib_spinlock_unlock (sm->stat_segment_lockp);
186   ssvm_pop_heap (oldheap);
187 }
188
189 static clib_error_t *
190 map_stat_segment_init (vlib_main_t * vm)
191 {
192   stats_main_t *sm = &stats_main;
193   ssvm_private_t *ssvmp = &sm->stat_segment;
194   ssvm_shared_header_t *shared_header;
195   stat_segment_directory_entry_t *ep;
196   f64 *scalar_data;
197   u8 *name;
198   void *oldheap;
199   u32 *lock;
200   int rv;
201
202   ssvmp->ssvm_size = 32 << 20;  /*$$$$$ CONFIG PARAM */
203   ssvmp->i_am_master = 1;
204   ssvmp->my_pid = getpid ();
205   ssvmp->name = format (0, "/stats%c", 0);
206   ssvmp->requested_va = 0;
207
208   rv = ssvm_master_init (ssvmp, SSVM_SEGMENT_MEMFD);
209
210   if (rv)
211     return clib_error_return (0, "stat segment ssvm init failure");
212   shared_header = ssvmp->sh;
213
214   oldheap = ssvm_push_heap (shared_header);
215
216   /* Set up the name to counter-vector hash table */
217   sm->counter_vector_by_name = hash_create_string (0, sizeof (uword));
218
219   sm->stat_segment_lockp = clib_mem_alloc (sizeof (clib_spinlock_t));
220
221   /* Save the hash table address in the shared segment, for clients */
222   clib_spinlock_init (sm->stat_segment_lockp);
223   shared_header->opaque[STAT_SEGMENT_OPAQUE_LOCK] = sm->stat_segment_lockp;
224   shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] = (void *) 1;
225
226   /* Set up a few scalar stats */
227
228   scalar_data = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
229                                         CLIB_CACHE_LINE_BYTES);
230   sm->vector_rate_ptr = (scalar_data + 0);
231   sm->input_rate_ptr = (scalar_data + 1);
232   sm->last_runtime_ptr = (scalar_data + 2);
233   sm->last_runtime_stats_clear_ptr = (scalar_data + 3);
234
235   name = format (0, "vector_rate%c", 0);
236   ep = clib_mem_alloc (sizeof (*ep));
237   ep->type = STAT_DIR_TYPE_SCALAR_POINTER;
238   ep->value = sm->vector_rate_ptr;
239
240   hash_set_mem (sm->counter_vector_by_name, name, ep);
241
242   name = format (0, "input_rate%c", 0);
243   ep = clib_mem_alloc (sizeof (*ep));
244   ep->type = STAT_DIR_TYPE_SCALAR_POINTER;
245   ep->value = sm->input_rate_ptr;
246
247   hash_set_mem (sm->counter_vector_by_name, name, ep);
248
249   name = format (0, "last_update%c", 0);
250   ep = clib_mem_alloc (sizeof (*ep));
251   ep->type = STAT_DIR_TYPE_SCALAR_POINTER;
252   ep->value = sm->last_runtime_ptr;
253
254   hash_set_mem (sm->counter_vector_by_name, name, ep);
255
256   name = format (0, "last_stats_clear%c", 0);
257   ep = clib_mem_alloc (sizeof (*ep));
258   ep->type = STAT_DIR_TYPE_SCALAR_POINTER;
259   ep->value = sm->last_runtime_stats_clear_ptr;
260
261   hash_set_mem (sm->counter_vector_by_name, name, ep);
262
263
264   /* Publish the hash table */
265   shared_header->opaque[STAT_SEGMENT_OPAQUE_DIR] = sm->counter_vector_by_name;
266
267   ssvm_pop_heap (oldheap);
268
269   return 0;
270 }
271
272 VLIB_INIT_FUNCTION (map_stat_segment_init);
273
274 typedef struct
275 {
276   u8 *name;
277   stat_segment_directory_entry_t *dir_entry;
278 } show_stat_segment_t;
279
280 static int
281 name_sort_cmp (void *a1, void *a2)
282 {
283   show_stat_segment_t *n1 = a1;
284   show_stat_segment_t *n2 = a2;
285
286   return strcmp ((char *) n1->name, (char *) n2->name);
287 }
288
289 static u8 *
290 format_stat_dir_entry (u8 * s, va_list * args)
291 {
292   stat_segment_directory_entry_t *ep =
293     va_arg (*args, stat_segment_directory_entry_t *);
294   char *type_name;
295   char *format_string;
296
297   format_string = "%-10s %20llx";
298
299   switch (ep->type)
300     {
301     case STAT_DIR_TYPE_SCALAR_POINTER:
302       type_name = "ScalarPtr";
303       break;
304
305     case STAT_DIR_TYPE_VECTOR_POINTER:
306       type_name = "VectorPtr";
307       break;
308
309     case STAT_DIR_TYPE_COUNTER_VECTOR:
310       type_name = "CMainPtr";
311       break;
312
313     case STAT_DIR_TYPE_SERIALIZED_NODES:
314       type_name = "SerNodesPtr";
315       break;
316
317     case STAT_DIR_TYPE_ERROR_INDEX:
318       type_name = "ErrIndex";
319       format_string = "%-10s %20lld";
320       break;
321
322     default:
323       type_name = "illegal!";
324       break;
325     }
326
327   return format (s, format_string, type_name, ep->value);
328 }
329
330 static clib_error_t *
331 show_stat_segment_command_fn (vlib_main_t * vm,
332                               unformat_input_t * input,
333                               vlib_cli_command_t * cmd)
334 {
335   stats_main_t *sm = &stats_main;
336   ssvm_private_t *ssvmp = &sm->stat_segment;
337   ssvm_shared_header_t *shared_header;
338   counter_t *counter;
339   hash_pair_t *p;
340   show_stat_segment_t *show_data = 0;
341   show_stat_segment_t *this;
342   int i;
343
344   int verbose = 0;
345   u8 *s;
346
347   if (unformat (input, "verbose"))
348     verbose = 1;
349
350   clib_spinlock_lock (sm->stat_segment_lockp);
351
352   /* *INDENT-OFF* */
353   hash_foreach_pair (p, sm->counter_vector_by_name,
354   ({
355     vec_add2 (show_data, this, 1);
356
357     this->name = (u8 *) (p->key);
358     this->dir_entry = (stat_segment_directory_entry_t *)(p->value[0]);
359   }));
360   /* *INDENT-ON* */
361
362   clib_spinlock_unlock (sm->stat_segment_lockp);
363
364   vec_sort_with_function (show_data, name_sort_cmp);
365
366   vlib_cli_output (vm, "%-60s %10s %20s", "Name", "Type", "Value");
367
368   for (i = 0; i < vec_len (show_data); i++)
369     {
370       this = vec_elt_at_index (show_data, i);
371
372       vlib_cli_output (vm, "%-60s %31U",
373                        this->name, format_stat_dir_entry, this->dir_entry);
374     }
375
376   if (verbose)
377     {
378       ASSERT (ssvmp && ssvmp->sh);
379
380       shared_header = ssvmp->sh;
381
382       vlib_cli_output (vm, "%U", format_mheap,
383                        shared_header->heap, 0 /* verbose */ );
384     }
385
386   return 0;
387 }
388
389 /* *INDENT-OFF* */
390 VLIB_CLI_COMMAND (show_stat_segment_command, static) =
391 {
392   .path = "show statistics segment",
393   .short_help = "show statistics segment [verbose]",
394   .function = show_stat_segment_command_fn,
395 };
396 /* *INDENT-ON* */
397
398 static inline void
399 update_serialized_nodes (stats_main_t * sm)
400 {
401   int i;
402   vlib_main_t *vm = vlib_mains[0];
403   ssvm_private_t *ssvmp = &sm->stat_segment;
404   ssvm_shared_header_t *shared_header;
405   void *oldheap;
406   stat_segment_directory_entry_t *ep;
407   hash_pair_t *hp;
408   u8 *name_copy;
409
410   ASSERT (ssvmp && ssvmp->sh);
411
412   vec_reset_length (sm->serialized_nodes);
413
414   shared_header = ssvmp->sh;
415
416   oldheap = ssvm_push_heap (shared_header);
417
418   clib_spinlock_lock (sm->stat_segment_lockp);
419
420   vlib_node_get_nodes (0 /* vm, for barrier sync */ ,
421                        (u32) ~ 0 /* all threads */ ,
422                        1 /* include stats */ ,
423                        0 /* barrier sync */ ,
424                        &sm->node_dups, &sm->stat_vms);
425
426   sm->serialized_nodes = vlib_node_serialize (vm, sm->node_dups,
427                                               sm->serialized_nodes,
428                                               0 /* include nexts */ ,
429                                               1 /* include stats */ );
430
431   hp = hash_get_pair (sm->counter_vector_by_name, "serialized_nodes");
432   if (hp)
433     {
434       name_copy = (u8 *) hp->key;
435       ep = (stat_segment_directory_entry_t *) (hp->value[0]);
436
437       if (ep->value != sm->serialized_nodes)
438         {
439           ep->value = sm->serialized_nodes;
440           /* Warn clients to refresh any pointers they might be holding */
441           shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] = (void *)
442             ((u64) shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] + 1);
443         }
444     }
445   else
446     {
447       name_copy = format (0, "%s%c", "serialized_nodes", 0);
448       ep = clib_mem_alloc (sizeof (*ep));
449       ep->type = STAT_DIR_TYPE_SERIALIZED_NODES;
450       ep->value = sm->serialized_nodes;
451       hash_set_mem (sm->counter_vector_by_name, name_copy, ep);
452
453       /* Reset the client hash table pointer */
454       shared_header->opaque[STAT_SEGMENT_OPAQUE_DIR]
455         = sm->counter_vector_by_name;
456
457       /* Warn clients to refresh any pointers they might be holding */
458       shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] = (void *)
459         ((u64) shared_header->opaque[STAT_SEGMENT_OPAQUE_EPOCH] + 1);
460     }
461
462   clib_spinlock_unlock (sm->stat_segment_lockp);
463   ssvm_pop_heap (oldheap);
464 }
465
466 /*
467  * Called by stats_thread_fn, in stats.c, which runs in a
468  * separate pthread, which won't halt the parade
469  * in single-forwarding-core cases.
470  */
471
472 void
473 do_stat_segment_updates (stats_main_t * sm)
474 {
475   vlib_main_t *vm = vlib_mains[0];
476   f64 vector_rate;
477   u64 input_packets, last_input_packets;
478   f64 dt, now;
479   vlib_main_t *this_vlib_main;
480   int i, start;
481
482   /*
483    * Compute the average vector rate across all workers
484    */
485   vector_rate = 0.0;
486
487   start = vec_len (vlib_mains) > 1 ? 1 : 0;
488
489   for (i = start; i < vec_len (vlib_mains); i++)
490     {
491       this_vlib_main = vlib_mains[i];
492       vector_rate += vlib_last_vector_length_per_node (this_vlib_main);
493     }
494   vector_rate /= (f64) (i - start);
495
496   *sm->vector_rate_ptr = vector_rate / ((f64) (vec_len (vlib_mains) - start));
497
498   /*
499    * Compute the aggregate input rate
500    */
501   now = vlib_time_now (vm);
502   dt = now - sm->last_runtime_ptr[0];
503   input_packets = vnet_get_aggregate_rx_packets ();
504   *sm->input_rate_ptr = (f64) (input_packets - sm->last_input_packets) / dt;
505   sm->last_runtime_ptr[0] = now;
506   sm->last_input_packets = input_packets;
507   sm->last_runtime_stats_clear_ptr[0] =
508     vm->node_main.time_last_runtime_stats_clear;
509
510   update_serialized_nodes (sm);
511 }
512
513
514 /*
515  * fd.io coding-style-patch-verification: ON
516  *
517  * Local Variables:
518  * eval: (c-set-style "gnu")
519  * End:
520  */