4 * Copyright(c) 2017 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <sys/queue.h>
37 #include <rte_common.h>
38 #include <rte_malloc.h>
39 #include <rte_metrics.h>
40 #include <rte_lcore.h>
41 #include <rte_memzone.h>
42 #include <rte_spinlock.h>
44 #define RTE_METRICS_MAX_METRICS 256
45 #define RTE_METRICS_MEMZONE_NAME "RTE_METRICS"
48 * Internal stats metadata and value entry.
52 struct rte_metrics_meta_s {
54 char name[RTE_METRICS_MAX_NAME_LEN];
55 /** Current value for metric */
56 uint64_t value[RTE_MAX_ETHPORTS];
57 /** Used for global metrics */
58 uint64_t global_value;
59 /** Index of next root element (zero for none) */
60 uint16_t idx_next_set;
61 /** Index of next metric in set (zero for none) */
62 uint16_t idx_next_stat;
66 * Internal stats info structure.
69 * Offsets into metadata are used instead of pointers because ASLR
70 * means that having the same physical addresses in different
71 * processes is not guaranteed.
73 struct rte_metrics_data_s {
74 /** Index of last metadata entry with valid data.
75 * This value is not valid if cnt_stats is zero.
77 uint16_t idx_last_set;
78 /** Number of metrics. */
80 /** Metric data memory block. */
81 struct rte_metrics_meta_s metadata[RTE_METRICS_MAX_METRICS];
82 /** Metric data access lock */
87 rte_metrics_init(int socket_id)
89 struct rte_metrics_data_s *stats;
90 const struct rte_memzone *memzone;
92 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
95 memzone = rte_memzone_lookup(RTE_METRICS_MEMZONE_NAME);
98 memzone = rte_memzone_reserve(RTE_METRICS_MEMZONE_NAME,
99 sizeof(struct rte_metrics_data_s), socket_id, 0);
101 rte_exit(EXIT_FAILURE, "Unable to allocate stats memzone\n");
102 stats = memzone->addr;
103 memset(stats, 0, sizeof(struct rte_metrics_data_s));
104 rte_spinlock_init(&stats->lock);
108 rte_metrics_reg_name(const char *name)
110 const char * const list_names[] = {name};
112 return rte_metrics_reg_names(list_names, 1);
116 rte_metrics_reg_names(const char * const *names, uint16_t cnt_names)
118 struct rte_metrics_meta_s *entry;
119 struct rte_metrics_data_s *stats;
120 const struct rte_memzone *memzone;
124 /* Some sanity checks */
125 if (cnt_names < 1 || names == NULL)
128 memzone = rte_memzone_lookup(RTE_METRICS_MEMZONE_NAME);
131 stats = memzone->addr;
133 if (stats->cnt_stats + cnt_names >= RTE_METRICS_MAX_METRICS)
136 rte_spinlock_lock(&stats->lock);
138 /* Overwritten later if this is actually first set.. */
139 stats->metadata[stats->idx_last_set].idx_next_set = stats->cnt_stats;
141 stats->idx_last_set = idx_base = stats->cnt_stats;
143 for (idx_name = 0; idx_name < cnt_names; idx_name++) {
144 entry = &stats->metadata[idx_name + stats->cnt_stats];
145 strncpy(entry->name, names[idx_name],
146 RTE_METRICS_MAX_NAME_LEN);
147 memset(entry->value, 0, sizeof(entry->value));
148 entry->idx_next_stat = idx_name + stats->cnt_stats + 1;
150 entry->idx_next_stat = 0;
151 entry->idx_next_set = 0;
152 stats->cnt_stats += cnt_names;
154 rte_spinlock_unlock(&stats->lock);
160 rte_metrics_update_value(int port_id, uint16_t key, const uint64_t value)
162 return rte_metrics_update_values(port_id, key, &value, 1);
166 rte_metrics_update_values(int port_id,
168 const uint64_t *values,
171 struct rte_metrics_meta_s *entry;
172 struct rte_metrics_data_s *stats;
173 const struct rte_memzone *memzone;
176 uint16_t cnt_setsize;
178 if (port_id != RTE_METRICS_GLOBAL &&
179 (port_id < 0 || port_id > RTE_MAX_ETHPORTS))
185 memzone = rte_memzone_lookup(RTE_METRICS_MEMZONE_NAME);
188 stats = memzone->addr;
190 rte_spinlock_lock(&stats->lock);
193 while (idx_metric < stats->cnt_stats) {
194 entry = &stats->metadata[idx_metric];
195 if (entry->idx_next_stat == 0)
200 /* Check update does not cross set border */
201 if (count > cnt_setsize) {
202 rte_spinlock_unlock(&stats->lock);
206 if (port_id == RTE_METRICS_GLOBAL)
207 for (idx_value = 0; idx_value < count; idx_value++) {
208 idx_metric = key + idx_value;
209 stats->metadata[idx_metric].global_value =
213 for (idx_value = 0; idx_value < count; idx_value++) {
214 idx_metric = key + idx_value;
215 stats->metadata[idx_metric].value[port_id] =
218 rte_spinlock_unlock(&stats->lock);
223 rte_metrics_get_names(struct rte_metric_name *names,
226 struct rte_metrics_data_s *stats;
227 const struct rte_memzone *memzone;
231 memzone = rte_memzone_lookup(RTE_METRICS_MEMZONE_NAME);
232 /* If not allocated, fail silently */
236 stats = memzone->addr;
237 rte_spinlock_lock(&stats->lock);
239 if (capacity < stats->cnt_stats) {
240 return_value = stats->cnt_stats;
241 rte_spinlock_unlock(&stats->lock);
244 for (idx_name = 0; idx_name < stats->cnt_stats; idx_name++)
245 strncpy(names[idx_name].name,
246 stats->metadata[idx_name].name,
247 RTE_METRICS_MAX_NAME_LEN);
249 return_value = stats->cnt_stats;
250 rte_spinlock_unlock(&stats->lock);
255 rte_metrics_get_values(int port_id,
256 struct rte_metric_value *values,
259 struct rte_metrics_meta_s *entry;
260 struct rte_metrics_data_s *stats;
261 const struct rte_memzone *memzone;
265 if (port_id != RTE_METRICS_GLOBAL &&
266 (port_id < 0 || port_id > RTE_MAX_ETHPORTS))
269 memzone = rte_memzone_lookup(RTE_METRICS_MEMZONE_NAME);
270 /* If not allocated, fail silently */
273 stats = memzone->addr;
274 rte_spinlock_lock(&stats->lock);
276 if (values != NULL) {
277 if (capacity < stats->cnt_stats) {
278 return_value = stats->cnt_stats;
279 rte_spinlock_unlock(&stats->lock);
282 if (port_id == RTE_METRICS_GLOBAL)
284 idx_name < stats->cnt_stats;
286 entry = &stats->metadata[idx_name];
287 values[idx_name].key = idx_name;
288 values[idx_name].value = entry->global_value;
292 idx_name < stats->cnt_stats;
294 entry = &stats->metadata[idx_name];
295 values[idx_name].key = idx_name;
296 values[idx_name].value = entry->value[port_id];
299 return_value = stats->cnt_stats;
300 rte_spinlock_unlock(&stats->lock);