blob: d2b0204da8e79b0d579507050c93e2f93c390afb [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/*
2 * (C) 2008 by Holger Hans Peter Freyther <zecke@selfish.org>
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +02003 * (C) 2011 by Harald Welte <laforge@gnumonks.org>
Harald Welteec8b4502010-02-20 20:34:29 +01004 * All Rights Reserved
5 *
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +02006 * Authors: Holger Hans Peter Freyther <zecke@selfish.org>
7 * Pablo Neira Ayuso <pablo@gnumonks.org>
8 *
Harald Welteec8b4502010-02-20 20:34:29 +01009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <stdio.h>
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020026#include <stdlib.h>
Pablo Neira Ayuso72eb44c2011-11-13 17:40:09 +010027#include <signal.h>
Pablo Neira Ayusof1418372011-11-13 02:02:12 +010028#include <getopt.h>
Harald Welteb53717f2012-08-02 08:42:59 +020029#include <unistd.h>
Harald Welteec8b4502010-02-20 20:34:29 +010030
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020031#include <osmocom/core/talloc.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010032#include <osmocom/core/timer.h>
33#include <osmocom/core/select.h>
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020034#include <osmocom/core/linuxlist.h>
Harald Welteec8b4502010-02-20 20:34:29 +010035
Alex Badea695e5fb2013-01-05 20:59:00 +020036#include "../config.h"
Harald Welteec8b4502010-02-20 20:34:29 +010037
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020038static void main_timer_fired(void *data);
39static void secondary_timer_fired(void *data);
Harald Welteec8b4502010-02-20 20:34:29 +010040
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020041static unsigned int main_timer_step = 0;
Pablo Neira Ayuso44f423f2017-05-08 18:00:28 +020042static struct osmo_timer_list main_timer;
Harald Welteec8b4502010-02-20 20:34:29 +010043
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020044static LLIST_HEAD(timer_test_list);
45
46struct test_timer {
47 struct llist_head head;
48 struct osmo_timer_list timer;
49 struct timeval start;
50 struct timeval stop;
Harald Welteec8b4502010-02-20 20:34:29 +010051};
52
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020053/* number of test steps. We add fact(steps) timers in the whole test. */
Neels Hofmeyrdbc68172016-09-22 04:21:50 +020054#define MAIN_TIMER_NSTEPS 8
Harald Welteec8b4502010-02-20 20:34:29 +010055
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020056/* time between two steps, in secs. */
57#define TIME_BETWEEN_STEPS 1
58
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +020059/* how much time elapses between checks, in microsecs */
60#define TIME_BETWEEN_TIMER_CHECKS 423210
61
Pablo Neira Ayusof1418372011-11-13 02:02:12 +010062static int timer_nsteps = MAIN_TIMER_NSTEPS;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020063static unsigned int expired_timers = 0;
64static unsigned int total_timers = 0;
65static unsigned int too_late = 0;
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +020066static unsigned int too_soon = 0;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020067
68static void main_timer_fired(void *data)
Harald Welteec8b4502010-02-20 20:34:29 +010069{
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020070 unsigned int *step = data;
71 unsigned int add_in_this_step;
72 int i;
Neels Hofmeyrd0858c22016-09-22 04:50:13 +020073 printf("main_timer_fired()\n");
Harald Welteec8b4502010-02-20 20:34:29 +010074
Pablo Neira Ayusof1418372011-11-13 02:02:12 +010075 if (*step == timer_nsteps) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +020076 printf("Main timer has finished, please, "
77 "wait a bit for the final report.\n");
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020078 return;
79 }
80 /* add 2^step pair of timers per step. */
81 add_in_this_step = (1 << *step);
82
83 for (i=0; i<add_in_this_step; i++) {
84 struct test_timer *v;
85
86 v = talloc_zero(NULL, struct test_timer);
87 if (v == NULL) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +020088 printf("timer_test: OOM!\n");
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020089 return;
90 }
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020091 osmo_gettimeofday(&v->start, NULL);
Pablo Neira Ayuso44f423f2017-05-08 18:00:28 +020092 osmo_timer_setup(&v->timer, secondary_timer_fired, v);
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +020093 unsigned int seconds = (i & 0x7) + 1;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020094 v->stop.tv_sec = v->start.tv_sec + seconds;
Neels Hofmeyr633a0e72016-09-22 04:24:38 +020095 v->stop.tv_usec = v->start.tv_usec;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020096 osmo_timer_schedule(&v->timer, seconds, 0);
97 llist_add(&v->head, &timer_test_list);
Neels Hofmeyrd0858c22016-09-22 04:50:13 +020098 printf("scheduled timer at %d.%06d\n",
99 (int)v->stop.tv_sec, (int)v->stop.tv_usec);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200100 }
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200101 printf("added %d timers in step %u (expired=%u)\n",
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200102 add_in_this_step, *step, expired_timers);
103 total_timers += add_in_this_step;
104 osmo_timer_schedule(&main_timer, TIME_BETWEEN_STEPS, 0);
105 (*step)++;
106}
107
108static void secondary_timer_fired(void *data)
109{
110 struct test_timer *v = data, *this, *tmp;
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200111 struct timeval current, res;
112 struct timeval precision = { 0, TIME_BETWEEN_TIMER_CHECKS + 1};
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200113 int i, deleted;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200114
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200115 osmo_gettimeofday(&current, NULL);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200116
117 timersub(&current, &v->stop, &res);
118 if (timercmp(&res, &precision, >)) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200119 printf("ERROR: timer has expired too late:"
120 " wanted %d.%06d now %d.%06d diff %d.%06d\n",
121 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
122 (int)current.tv_sec, (int)current.tv_usec,
123 (int)res.tv_sec, (int)res.tv_usec);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200124 too_late++;
125 }
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200126 else if (timercmp(&current, &v->stop, <)) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200127 printf("ERROR: timer has expired too soon:"
128 " wanted %d.%06d now %d.%06d diff %d.%06d\n",
129 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
130 (int)current.tv_sec, (int)current.tv_usec,
131 (int)res.tv_sec, (int)res.tv_usec);
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200132 too_soon++;
133 }
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200134 else
135 printf("timer fired on time: %d.%06d (+ %d.%06d)\n",
136 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
137 (int)res.tv_sec, (int)res.tv_usec);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200138
139 llist_del(&v->head);
140 talloc_free(data);
141 expired_timers++;
142 if (expired_timers == total_timers) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200143 printf("test over: added=%u expired=%u too_soon=%u too_late=%u\n",
144 total_timers, expired_timers, too_soon, too_late);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200145 exit(EXIT_SUCCESS);
146 }
147
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200148 /* "random" deletion of timers. */
149 i = 0;
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200150 deleted = 0;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200151 llist_for_each_entry_safe(this, tmp, &timer_test_list, head) {
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200152 i ++;
153 if (!(i & 0x3)) {
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200154 osmo_timer_del(&this->timer);
155 llist_del(&this->head);
156 talloc_free(this);
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200157 deleted++;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200158 }
159 }
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200160 expired_timers += deleted;
161 printf("early deleted %d timers, %d still active\n", deleted,
162 total_timers - expired_timers);
Harald Welteec8b4502010-02-20 20:34:29 +0100163}
164
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100165int main(int argc, char *argv[])
Harald Welteec8b4502010-02-20 20:34:29 +0100166{
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100167 int c;
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200168 int steps;
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100169
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200170 osmo_gettimeofday_override = true;
Pablo Neira Ayuso72eb44c2011-11-13 17:40:09 +0100171
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100172 while ((c = getopt_long(argc, argv, "s:", NULL, NULL)) != -1) {
173 switch(c) {
174 case 's':
175 timer_nsteps = atoi(optarg);
176 if (timer_nsteps <= 0) {
177 fprintf(stderr, "%s: steps must be > 0\n",
178 argv[0]);
179 exit(EXIT_FAILURE);
180 }
181 break;
182 default:
183 exit(EXIT_FAILURE);
184 }
185 }
186
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200187 steps = ((MAIN_TIMER_NSTEPS * TIME_BETWEEN_STEPS + 20) * 1e6)
188 / TIME_BETWEEN_TIMER_CHECKS;
189
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200190 printf("Running timer test for %d iterations,"
191 " %d steps of %d msecs each\n",
192 timer_nsteps, steps, TIME_BETWEEN_TIMER_CHECKS / 1000);
Harald Welteec8b4502010-02-20 20:34:29 +0100193
Pablo Neira Ayuso44f423f2017-05-08 18:00:28 +0200194 osmo_timer_setup(&main_timer, main_timer_fired, &main_timer_step);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200195 osmo_timer_schedule(&main_timer, 1, 0);
Harald Welteec8b4502010-02-20 20:34:29 +0100196
197#ifdef HAVE_SYS_SELECT_H
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200198 while (steps--) {
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200199 printf("%d.%06d\n", (int)osmo_gettimeofday_override_time.tv_sec,
200 (int)osmo_gettimeofday_override_time.tv_usec);
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200201 osmo_timers_prepare();
202 osmo_timers_update();
203 osmo_gettimeofday_override_add(0, TIME_BETWEEN_TIMER_CHECKS);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200204 }
Harald Welteec8b4502010-02-20 20:34:29 +0100205#else
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200206 printf("Select not supported on this platform!\n");
Harald Welteec8b4502010-02-20 20:34:29 +0100207#endif
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200208 return 0;
Harald Welteec8b4502010-02-20 20:34:29 +0100209}