blob: 546449090afb2192308f512ca1fd11c9d266d59e [file] [log] [blame]
Harald Welteae510dc2017-10-03 17:46:14 +08001/* (C) 2009-2017 by Harald Welte <laforge@gnumonks.org>
Harald Welte7b45d602010-05-13 11:35:30 +02002 *
3 * All Rights Reserved
4 *
Harald Weltee08da972017-11-13 01:00:26 +09005 * SPDX-License-Identifier: GPL-2.0+
6 *
Harald Welte7b45d602010-05-13 11:35:30 +02007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
Harald Welte9327c6d2011-08-17 16:06:06 +020023/*! \addtogroup rate_ctr
24 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020025 * Counters about events and their event rates.
26 *
Harald Welte53de0d32017-10-16 14:09:16 +020027 * As \ref osmo_counter and \ref osmo_stat_item are concerned only with
28 * a single given value that may be increased/decreased, or the difference
29 * to one given previous value, this module adds some support for keeping
30 * long term information about a given event rate.
31 *
32 * A \ref rate_ctr keeps information on the amount of events per second,
33 * per minute, per hour and per day.
34 *
35 * \ref rate_ctr come in groups: An application describes a group of counters
36 * with their names and identities once in a (typically const) \ref
37 * rate_ctr_group_desc.
38 *
39 * As objects (such as e.g. a subscriber or a PDP context) are
40 * allocated dynamically at runtime, the application calls \ref
41 * rate_ctr_group_alloc with a refernce to the \ref
42 * rate_ctr_group_desc, which causes the library to allocate one set of
43 * \ref rate_ctr: One for each in the group.
44 *
45 * The application then uses functions like \ref rate_ctr_add or \ref
46 * rate_ctr_inc to increment the value as certain events (e.g. location
47 * update) happens.
48 *
49 * The library internally keeps a timer once per second which iterates
50 * over all registered counters and which updates the per-second,
51 * per-minute, per-hour and per-day averages based on the current
52 * value.
53 *
54 * The counters can be reported using \ref stats or by VTY
55 * introspection, as well as by any application-specific code accessing
56 * the \ref rate_ctr.intv array directly.
57 *
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020058 * \file rate_ctr.c */
Harald Welte9327c6d2011-08-17 16:06:06 +020059
Harald Welteae510dc2017-10-03 17:46:14 +080060#include <stdbool.h>
Harald Welte7b45d602010-05-13 11:35:30 +020061#include <stdint.h>
Harald Welte7b45d602010-05-13 11:35:30 +020062#include <string.h>
63
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010064#include <osmocom/core/utils.h>
65#include <osmocom/core/linuxlist.h>
66#include <osmocom/core/talloc.h>
67#include <osmocom/core/timer.h>
68#include <osmocom/core/rate_ctr.h>
Harald Welteae510dc2017-10-03 17:46:14 +080069#include <osmocom/core/logging.h>
Harald Welte7b45d602010-05-13 11:35:30 +020070
71static LLIST_HEAD(rate_ctr_groups);
72
73static void *tall_rate_ctr_ctx;
74
Harald Welteae510dc2017-10-03 17:46:14 +080075
76static bool rate_ctrl_group_desc_validate(const struct rate_ctr_group_desc *desc, bool quiet)
77{
78 unsigned int i;
Harald Welteb48e82c2017-10-24 18:35:24 +020079 const struct rate_ctr_desc *ctr_desc;
Harald Welteae510dc2017-10-03 17:46:14 +080080
81 if (!desc) {
82 LOGP(DLGLOBAL, LOGL_ERROR, "NULL is not a valid counter group descriptor\n");
83 return false;
84 }
Harald Welteb48e82c2017-10-24 18:35:24 +020085 ctr_desc = desc->ctr_desc;
Harald Welteae510dc2017-10-03 17:46:14 +080086
87 DEBUGP(DLGLOBAL, "validating counter group %p(%s) with %u counters\n", desc,
88 desc->group_name_prefix, desc->num_ctr);
89
90 if (!osmo_identifier_valid(desc->group_name_prefix)) {
91 if (!quiet)
92 LOGP(DLGLOBAL, LOGL_ERROR, "'%s' is not a valid counter group identifier\n",
93 desc->group_name_prefix);
94 return false;
95 }
96
97 for (i = 0; i < desc->num_ctr; i++) {
98 if (!osmo_identifier_valid(ctr_desc[i].name)) {
99 if (!quiet)
100 LOGP(DLGLOBAL, LOGL_ERROR, "'%s' is not a valid counter identifier\n",
101 ctr_desc[i].name);
102 return false;
103 }
104 }
105
106 return true;
107}
108
109/* return 'in' if it doesn't contaon any '.'; otherwise allocate a copy and
110 * replace all '.' with ':' */
111static char *mangle_identifier_ifneeded(const void *ctx, const char *in)
112{
113 char *out;
114 unsigned int i;
115
116 if (!in)
117 return NULL;
118
119 if (!strchr(in, '.'))
120 return (char *)in;
121
122 out = talloc_strdup(ctx, in);
123 OSMO_ASSERT(out);
124
125 for (i = 0; i < strlen(out); i++) {
126 if (out[i] == '.')
127 out[i] = ':';
128 }
129
130 return out;
131}
132
133/* "mangle" a rate counter group descriptor, i.e. replace any '.' with ':' */
134static struct rate_ctr_group_desc *
135rate_ctr_group_desc_mangle(void *ctx, const struct rate_ctr_group_desc *desc)
136{
137 struct rate_ctr_group_desc *desc_new = talloc_zero(ctx, struct rate_ctr_group_desc);
138 int i;
139
140 OSMO_ASSERT(desc_new);
141
142 /* mangle the name_prefix but copy/keep the rest */
143 desc_new->group_name_prefix = mangle_identifier_ifneeded(desc_new, desc->group_name_prefix);
144 desc_new->group_description = desc->group_description;
145 desc_new->class_id = desc->class_id;
146 desc_new->num_ctr = desc->num_ctr;
147 desc_new->ctr_desc = talloc_array(desc_new, struct rate_ctr_desc, desc_new->num_ctr);
148 OSMO_ASSERT(desc_new->ctr_desc);
149
150 for (i = 0; i < desc->num_ctr; i++) {
151 struct rate_ctr_desc *ctrd_new = (struct rate_ctr_desc *) desc_new->ctr_desc;
152 const struct rate_ctr_desc *ctrd = desc->ctr_desc;
153
154 if (!ctrd[i].name) {
155 LOGP(DLGLOBAL, LOGL_ERROR, "counter group '%s'[%d] == NULL, aborting\n",
156 desc->group_name_prefix, i);
157 goto err_free;
158 }
159
160 ctrd_new[i].name = mangle_identifier_ifneeded(desc_new->ctr_desc, ctrd[i].name);
161 ctrd_new[i].description = ctrd[i].description;
162 }
163
164 if (!rate_ctrl_group_desc_validate(desc_new, false)) {
165 /* simple mangling of identifiers ('.' -> ':') was not sufficient to render a valid
166 * descriptor, we have to bail out */
167 LOGP(DLGLOBAL, LOGL_ERROR, "counter group '%s' still invalid after mangling\n",
168 desc->group_name_prefix);
169 goto err_free;
170 }
171
172 LOGP(DLGLOBAL, LOGL_INFO, "Needed to mangle ounter group '%s' names still using '.' as "
173 "separator, please consider updating the application\n", desc->group_name_prefix);
174
175 return desc_new;
176err_free:
177 talloc_free(desc_new);
178 return NULL;
179}
180
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200181/*! Allocate a new group of counters according to description
Harald Welte9327c6d2011-08-17 16:06:06 +0200182 * \param[in] ctx \ref talloc context
183 * \param[in] desc Rate counter group description
184 * \param[in] idx Index of new counter group
185 */
Harald Welte7b45d602010-05-13 11:35:30 +0200186struct rate_ctr_group *rate_ctr_group_alloc(void *ctx,
187 const struct rate_ctr_group_desc *desc,
188 unsigned int idx)
189{
190 unsigned int size;
191 struct rate_ctr_group *group;
192
Harald Welteae510dc2017-10-03 17:46:14 +0800193 /* attempt to mangle all '.' in identifiers to ':' for backwards compat */
194 if (!rate_ctrl_group_desc_validate(desc, true)) {
195 /* don't use 'ctx' here as it would screw up memory leak debugging e.g.
196 * in osmo-msc */
197 desc = rate_ctr_group_desc_mangle(NULL, desc);
198 if (!desc)
199 return NULL;
200 }
201
Harald Welte7b45d602010-05-13 11:35:30 +0200202 size = sizeof(struct rate_ctr_group) +
203 desc->num_ctr * sizeof(struct rate_ctr);
204
205 if (!ctx)
206 ctx = tall_rate_ctr_ctx;
207
208 group = talloc_zero_size(ctx, size);
209 if (!group)
210 return NULL;
211
212 group->desc = desc;
Harald Welte087fcff2010-05-13 12:16:17 +0200213 group->idx = idx;
Harald Welte7b45d602010-05-13 11:35:30 +0200214
215 llist_add(&group->list, &rate_ctr_groups);
216
217 return group;
218}
219
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200220/*! Free the memory for the specified group of counters */
Harald Welte7b45d602010-05-13 11:35:30 +0200221void rate_ctr_group_free(struct rate_ctr_group *grp)
222{
223 llist_del(&grp->list);
224 talloc_free(grp);
225}
226
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200227/*! Add a number to the counter */
Harald Welte7b45d602010-05-13 11:35:30 +0200228void rate_ctr_add(struct rate_ctr *ctr, int inc)
229{
230 ctr->current += inc;
231}
232
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200233/*! Return the counter difference since the last call to this function */
Jacob Erlbeck423c1e52015-10-19 13:45:42 +0200234int64_t rate_ctr_difference(struct rate_ctr *ctr)
235{
236 int64_t result = ctr->current - ctr->previous;
237 ctr->previous = ctr->current;
238
239 return result;
240}
241
Jacob Erlbeckee702cd2015-11-10 11:38:25 +0100242/* TODO: support update intervals > 1s */
243/* TODO: implement this as a special stats reporter */
244
Harald Welte7b45d602010-05-13 11:35:30 +0200245static void interval_expired(struct rate_ctr *ctr, enum rate_ctr_intv intv)
246{
247 /* calculate rate over last interval */
248 ctr->intv[intv].rate = ctr->current - ctr->intv[intv].last;
249 /* save current counter for next interval */
250 ctr->intv[intv].last = ctr->current;
Harald Welted2dce6d2010-05-13 13:28:12 +0200251
252 /* update the rate of the next bigger interval. This will
253 * be overwritten when that next larger interval expires */
254 if (intv + 1 < ARRAY_SIZE(ctr->intv))
255 ctr->intv[intv+1].rate += ctr->intv[intv].rate;
Harald Welte7b45d602010-05-13 11:35:30 +0200256}
257
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +0200258static struct osmo_timer_list rate_ctr_timer;
Harald Welte7b45d602010-05-13 11:35:30 +0200259static uint64_t timer_ticks;
260
261/* The one-second interval has expired */
262static void rate_ctr_group_intv(struct rate_ctr_group *grp)
263{
264 unsigned int i;
265
266 for (i = 0; i < grp->desc->num_ctr; i++) {
267 struct rate_ctr *ctr = &grp->ctr[i];
268
269 interval_expired(ctr, RATE_CTR_INTV_SEC);
270 if ((timer_ticks % 60) == 0)
271 interval_expired(ctr, RATE_CTR_INTV_MIN);
272 if ((timer_ticks % (60*60)) == 0)
273 interval_expired(ctr, RATE_CTR_INTV_HOUR);
274 if ((timer_ticks % (24*60*60)) == 0)
275 interval_expired(ctr, RATE_CTR_INTV_DAY);
276 }
277}
278
279static void rate_ctr_timer_cb(void *data)
280{
281 struct rate_ctr_group *ctrg;
282
283 /* Increment number of ticks before we calculate intervals,
284 * as a counter value of 0 would already wrap all counters */
285 timer_ticks++;
286
287 llist_for_each_entry(ctrg, &rate_ctr_groups, list)
288 rate_ctr_group_intv(ctrg);
289
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +0200290 osmo_timer_schedule(&rate_ctr_timer, 1, 0);
Harald Welte7b45d602010-05-13 11:35:30 +0200291}
292
Harald Welte53de0d32017-10-16 14:09:16 +0200293/*! Initialize the counter module. Call this once from your application.
294 * \param[in] tall_ctx Talloc context from which rate_ctr_group will be allocated
295 * \returns 0 on success; negative on error */
Harald Welte7b45d602010-05-13 11:35:30 +0200296int rate_ctr_init(void *tall_ctx)
297{
298 tall_rate_ctr_ctx = tall_ctx;
Pablo Neira Ayuso44f423f2017-05-08 18:00:28 +0200299 osmo_timer_setup(&rate_ctr_timer, rate_ctr_timer_cb, NULL);
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +0200300 osmo_timer_schedule(&rate_ctr_timer, 1, 0);
Harald Welte7b45d602010-05-13 11:35:30 +0200301
302 return 0;
303}
Daniel Willmann2d42dde2011-04-08 10:46:18 +0200304
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200305/*! Search for counter group based on group name and index
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200306 * \param[in] name Name of the counter group you're looking for
307 * \param[in] idx Index inside the counter group
308 * \returns \ref rate_ctr_group or NULL in case of error */
Daniel Willmann2d42dde2011-04-08 10:46:18 +0200309struct rate_ctr_group *rate_ctr_get_group_by_name_idx(const char *name, const unsigned int idx)
310{
311 struct rate_ctr_group *ctrg;
312
313 llist_for_each_entry(ctrg, &rate_ctr_groups, list) {
314 if (!ctrg->desc)
315 continue;
316
317 if (!strcmp(ctrg->desc->group_name_prefix, name) &&
318 ctrg->idx == idx) {
319 return ctrg;
320 }
321 }
322 return NULL;
323}
324
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200325/*! Search for counter based on group + name
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200326 * \param[in] ctrg pointer to \ref rate_ctr_group
327 * \param[in] name name of counter inside group
Harald Welte53de0d32017-10-16 14:09:16 +0200328 * \returns \ref rate_ctr or NULL in case of error
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200329 */
Holger Hans Peter Freythera9f526a2011-04-18 16:45:45 +0200330const struct rate_ctr *rate_ctr_get_by_name(const struct rate_ctr_group *ctrg, const char *name)
Daniel Willmann2d42dde2011-04-08 10:46:18 +0200331{
332 int i;
Holger Hans Peter Freythera9f526a2011-04-18 16:45:45 +0200333 const struct rate_ctr_desc *ctr_desc;
Daniel Willmann2d42dde2011-04-08 10:46:18 +0200334
335 if (!ctrg->desc)
336 return NULL;
337
338 for (i = 0; i < ctrg->desc->num_ctr; i++) {
339 ctr_desc = &ctrg->desc->ctr_desc[i];
340
341 if (!strcmp(ctr_desc->name, name)) {
342 return &ctrg->ctr[i];
343 }
344 }
345 return NULL;
346}
Harald Welte9327c6d2011-08-17 16:06:06 +0200347
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200348/*! Iterate over each counter in group and call function
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200349 * \param[in] counter group over whose counter to iterate
350 * \param[in] handle_counter function pointer
351 * \param[in] data Data to hand transparently to \ref handle_counter
352 * \returns 0 on success; negative otherwise
353 */
Jacob Erlbeck423c1e52015-10-19 13:45:42 +0200354int rate_ctr_for_each_counter(struct rate_ctr_group *ctrg,
355 rate_ctr_handler_t handle_counter, void *data)
356{
357 int rc = 0;
358 int i;
359
360 for (i = 0; i < ctrg->desc->num_ctr; i++) {
361 struct rate_ctr *ctr = &ctrg->ctr[i];
362 rc = handle_counter(ctrg,
363 ctr, &ctrg->desc->ctr_desc[i], data);
364 if (rc < 0)
365 return rc;
366 }
367
368 return rc;
369}
370
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200371/*! Iterate over all counter groups
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200372 * \param[in] handle_group function pointer of callback function
373 * \param[in] data Data to hand transparently to \ref handle_group
374 * \returns 0 on success; negative otherwise
375 */
Jacob Erlbeck423c1e52015-10-19 13:45:42 +0200376int rate_ctr_for_each_group(rate_ctr_group_handler_t handle_group, void *data)
377{
378 struct rate_ctr_group *statg;
379 int rc = 0;
380
381 llist_for_each_entry(statg, &rate_ctr_groups, list) {
382 rc = handle_group(statg, data);
383 if (rc < 0)
384 return rc;
385 }
386
387 return rc;
388}
389
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200390/*! @} */