blob: f58ffa325864150cf1bbc6bd8f4b49377b111084 [file] [log] [blame]
Damjan Marion8973b072022-03-01 15:51:18 +01001/* SPDX-License-Identifier: Apache-2.0
2 * Copyright(c) 2022 Cisco Systems, Inc.
3 */
4
5#include <vlib/vlib.h>
6#include <vlib/unix/unix.h>
7#include <vlib/stats/stats.h>
8#include <vnet/vnet.h>
9#include <vnet/devices/devices.h> /* vnet_get_aggregate_rx_packets */
10#include <vnet/interface.h>
11
Damjan Marionc5d81b92022-04-15 15:53:17 +020012vlib_stats_string_vector_t if_names = 0;
Damjan Marion8973b072022-03-01 15:51:18 +010013static u32 **dir_entry_indices = 0;
14
15static struct
16{
17 char *prefix, *name;
18 u32 index;
19} if_counters[] = {
20#define _(e, n, p) { .prefix = #p, .name = #n },
21 foreach_simple_interface_counter_name foreach_combined_interface_counter_name
22#undef _
23};
24
25static clib_error_t *
26statseg_sw_interface_add_del (vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
27{
Damjan Marionc5d81b92022-04-15 15:53:17 +020028 if (if_names == 0)
Damjan Marion8973b072022-03-01 15:51:18 +010029 {
Damjan Marionc5d81b92022-04-15 15:53:17 +020030 if_names = vlib_stats_add_string_vector ("/if/names");
Damjan Marion8973b072022-03-01 15:51:18 +010031
32 for (int i = 0; i < ARRAY_LEN (if_counters); i++)
33 if_counters[i].index = vlib_stats_find_entry_index (
34 "/%s/%s", if_counters[i].prefix, if_counters[i].name);
35 }
36
Damjan Marion8973b072022-03-01 15:51:18 +010037 vec_validate (dir_entry_indices, sw_if_index);
38
39 vlib_stats_segment_lock ();
40
41 if (is_add)
42 {
43 vnet_sw_interface_t *si, *si_sup;
44 vnet_hw_interface_t *hi_sup;
Damjan Marionc5d81b92022-04-15 15:53:17 +020045 u8 *name;
Damjan Marion8973b072022-03-01 15:51:18 +010046
47 si = vnet_get_sw_interface (vnm, sw_if_index);
48 si_sup = vnet_get_sup_sw_interface (vnm, si->sw_if_index);
49 ASSERT (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
50 hi_sup = vnet_get_hw_interface (vnm, si_sup->hw_if_index);
51
Damjan Marionc5d81b92022-04-15 15:53:17 +020052 name = format (0, "%v", hi_sup->name);
Damjan Marion8973b072022-03-01 15:51:18 +010053 if (si->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
Damjan Marionc5d81b92022-04-15 15:53:17 +020054 name = format (name, ".%d", si->sub.id);
Damjan Marion8973b072022-03-01 15:51:18 +010055
Damjan Marionc5d81b92022-04-15 15:53:17 +020056 vlib_stats_set_string_vector (&if_names, sw_if_index, "%v", name);
Damjan Marion8973b072022-03-01 15:51:18 +010057
Damjan Marion8973b072022-03-01 15:51:18 +010058 for (u32 index, i = 0; i < ARRAY_LEN (if_counters); i++)
59 {
Damjan Marionc5d81b92022-04-15 15:53:17 +020060 index = vlib_stats_add_symlink (
61 if_counters[i].index, sw_if_index, "/interfaces/%U/%s",
62 format_vlib_stats_symlink, name, if_counters[i].name);
Damjan Marion8973b072022-03-01 15:51:18 +010063 ASSERT (index != ~0);
64 vec_add1 (dir_entry_indices[sw_if_index], index);
65 }
Damjan Marionc5d81b92022-04-15 15:53:17 +020066
67 vec_free (name);
Damjan Marion8973b072022-03-01 15:51:18 +010068 }
69 else
70 {
Damjan Marion8973b072022-03-01 15:51:18 +010071 for (u32 i = 0; i < vec_len (dir_entry_indices[sw_if_index]); i++)
72 vlib_stats_remove_entry (dir_entry_indices[sw_if_index][i]);
73 vec_free (dir_entry_indices[sw_if_index]);
74 }
75
76 vlib_stats_segment_unlock ();
77
78 return 0;
79}
80
81VNET_SW_INTERFACE_ADD_DEL_FUNCTION (statseg_sw_interface_add_del);