blob: ec85c048a67df0bc9b22d12c173e0d3d8a6b2128 [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;
42static struct osmo_timer_list main_timer = {
43 .cb = main_timer_fired,
44 .data = &main_timer_step,
Harald Welteec8b4502010-02-20 20:34:29 +010045};
46
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020047static LLIST_HEAD(timer_test_list);
48
49struct test_timer {
50 struct llist_head head;
51 struct osmo_timer_list timer;
52 struct timeval start;
53 struct timeval stop;
Harald Welteec8b4502010-02-20 20:34:29 +010054};
55
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020056/* number of test steps. We add fact(steps) timers in the whole test. */
57#define MAIN_TIMER_NSTEPS 16
Harald Welteec8b4502010-02-20 20:34:29 +010058
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020059/* time between two steps, in secs. */
60#define TIME_BETWEEN_STEPS 1
61
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +020062/* how much time elapses between checks, in microsecs */
63#define TIME_BETWEEN_TIMER_CHECKS 423210
64
Pablo Neira Ayusof1418372011-11-13 02:02:12 +010065static int timer_nsteps = MAIN_TIMER_NSTEPS;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020066static unsigned int expired_timers = 0;
67static unsigned int total_timers = 0;
68static unsigned int too_late = 0;
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +020069static unsigned int too_soon = 0;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020070
71static void main_timer_fired(void *data)
Harald Welteec8b4502010-02-20 20:34:29 +010072{
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020073 unsigned int *step = data;
74 unsigned int add_in_this_step;
75 int i;
Neels Hofmeyrd0858c22016-09-22 04:50:13 +020076 printf("main_timer_fired()\n");
Harald Welteec8b4502010-02-20 20:34:29 +010077
Pablo Neira Ayusof1418372011-11-13 02:02:12 +010078 if (*step == timer_nsteps) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +020079 printf("Main timer has finished, please, "
80 "wait a bit for the final report.\n");
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020081 return;
82 }
83 /* add 2^step pair of timers per step. */
84 add_in_this_step = (1 << *step);
85
86 for (i=0; i<add_in_this_step; i++) {
87 struct test_timer *v;
88
89 v = talloc_zero(NULL, struct test_timer);
90 if (v == NULL) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +020091 printf("timer_test: OOM!\n");
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020092 return;
93 }
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020094 osmo_gettimeofday(&v->start, NULL);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020095 v->timer.cb = secondary_timer_fired;
96 v->timer.data = v;
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +020097 unsigned int seconds = (i & 0x7) + 1;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020098 v->stop.tv_sec = v->start.tv_sec + seconds;
Neels Hofmeyr633a0e72016-09-22 04:24:38 +020099 v->stop.tv_usec = v->start.tv_usec;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200100 osmo_timer_schedule(&v->timer, seconds, 0);
101 llist_add(&v->head, &timer_test_list);
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200102 printf("scheduled timer at %d.%06d\n",
103 (int)v->stop.tv_sec, (int)v->stop.tv_usec);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200104 }
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200105 printf("added %d timers in step %u (expired=%u)\n",
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200106 add_in_this_step, *step, expired_timers);
107 total_timers += add_in_this_step;
108 osmo_timer_schedule(&main_timer, TIME_BETWEEN_STEPS, 0);
109 (*step)++;
110}
111
112static void secondary_timer_fired(void *data)
113{
114 struct test_timer *v = data, *this, *tmp;
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200115 struct timeval current, res;
116 struct timeval precision = { 0, TIME_BETWEEN_TIMER_CHECKS + 1};
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200117 int i, deleted;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200118
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200119 osmo_gettimeofday(&current, NULL);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200120
121 timersub(&current, &v->stop, &res);
122 if (timercmp(&res, &precision, >)) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200123 printf("ERROR: timer has expired too late:"
124 " wanted %d.%06d now %d.%06d diff %d.%06d\n",
125 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
126 (int)current.tv_sec, (int)current.tv_usec,
127 (int)res.tv_sec, (int)res.tv_usec);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200128 too_late++;
129 }
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200130 else if (timercmp(&current, &v->stop, <)) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200131 printf("ERROR: timer has expired too soon:"
132 " wanted %d.%06d now %d.%06d diff %d.%06d\n",
133 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
134 (int)current.tv_sec, (int)current.tv_usec,
135 (int)res.tv_sec, (int)res.tv_usec);
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200136 too_soon++;
137 }
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200138 else
139 printf("timer fired on time: %d.%06d (+ %d.%06d)\n",
140 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
141 (int)res.tv_sec, (int)res.tv_usec);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200142
143 llist_del(&v->head);
144 talloc_free(data);
145 expired_timers++;
146 if (expired_timers == total_timers) {
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200147 printf("test over: added=%u expired=%u too_soon=%u too_late=%u\n",
148 total_timers, expired_timers, too_soon, too_late);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200149 exit(EXIT_SUCCESS);
150 }
151
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200152 /* "random" deletion of timers. */
153 i = 0;
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200154 deleted = 0;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200155 llist_for_each_entry_safe(this, tmp, &timer_test_list, head) {
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200156 i ++;
157 if (!(i & 0x3)) {
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200158 osmo_timer_del(&this->timer);
159 llist_del(&this->head);
160 talloc_free(this);
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200161 deleted++;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200162 }
163 }
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200164 expired_timers += deleted;
165 printf("early deleted %d timers, %d still active\n", deleted,
166 total_timers - expired_timers);
Harald Welteec8b4502010-02-20 20:34:29 +0100167}
168
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100169int main(int argc, char *argv[])
Harald Welteec8b4502010-02-20 20:34:29 +0100170{
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100171 int c;
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200172 int steps;
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100173
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200174 osmo_gettimeofday_override = true;
Pablo Neira Ayuso72eb44c2011-11-13 17:40:09 +0100175
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100176 while ((c = getopt_long(argc, argv, "s:", NULL, NULL)) != -1) {
177 switch(c) {
178 case 's':
179 timer_nsteps = atoi(optarg);
180 if (timer_nsteps <= 0) {
181 fprintf(stderr, "%s: steps must be > 0\n",
182 argv[0]);
183 exit(EXIT_FAILURE);
184 }
185 break;
186 default:
187 exit(EXIT_FAILURE);
188 }
189 }
190
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200191 steps = ((MAIN_TIMER_NSTEPS * TIME_BETWEEN_STEPS + 20) * 1e6)
192 / TIME_BETWEEN_TIMER_CHECKS;
193
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200194 printf("Running timer test for %d iterations,"
195 " %d steps of %d msecs each\n",
196 timer_nsteps, steps, TIME_BETWEEN_TIMER_CHECKS / 1000);
Harald Welteec8b4502010-02-20 20:34:29 +0100197
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200198 osmo_timer_schedule(&main_timer, 1, 0);
Harald Welteec8b4502010-02-20 20:34:29 +0100199
200#ifdef HAVE_SYS_SELECT_H
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200201 while (steps--) {
Neels Hofmeyrd0858c22016-09-22 04:50:13 +0200202 printf("%d.%06d\n", (int)osmo_gettimeofday_override_time.tv_sec,
203 (int)osmo_gettimeofday_override_time.tv_usec);
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200204 osmo_timers_prepare();
205 osmo_timers_update();
206 osmo_gettimeofday_override_add(0, TIME_BETWEEN_TIMER_CHECKS);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200207 }
Harald Welteec8b4502010-02-20 20:34:29 +0100208#else
Neels Hofmeyr255dac12016-09-22 04:48:32 +0200209 printf("Select not supported on this platform!\n");
Harald Welteec8b4502010-02-20 20:34:29 +0100210#endif
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200211 return 0;
Harald Welteec8b4502010-02-20 20:34:29 +0100212}