blob: d8e1ec9bce0accc87f1d9f64865eaa9775de40a0 [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;
Harald Welteec8b4502010-02-20 20:34:29 +010076
Pablo Neira Ayusof1418372011-11-13 02:02:12 +010077 if (*step == timer_nsteps) {
Pablo Neira Ayuso7a0ca162011-11-13 17:22:33 +010078 fprintf(stderr, "Main timer has finished, please, "
79 "wait a bit for the final report.\n");
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020080 return;
81 }
82 /* add 2^step pair of timers per step. */
83 add_in_this_step = (1 << *step);
84
85 for (i=0; i<add_in_this_step; i++) {
86 struct test_timer *v;
87
88 v = talloc_zero(NULL, struct test_timer);
89 if (v == NULL) {
90 fprintf(stderr, "timer_test: OOM!\n");
91 return;
92 }
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020093 osmo_gettimeofday(&v->start, NULL);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020094 v->timer.cb = secondary_timer_fired;
95 v->timer.data = v;
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +020096 unsigned int seconds = (i & 0x7) + 1;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020097 v->stop.tv_sec = v->start.tv_sec + seconds;
Neels Hofmeyr633a0e72016-09-22 04:24:38 +020098 v->stop.tv_usec = v->start.tv_usec;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +020099 osmo_timer_schedule(&v->timer, seconds, 0);
100 llist_add(&v->head, &timer_test_list);
101 }
Pablo Neira Ayuso7a0ca162011-11-13 17:22:33 +0100102 fprintf(stderr, "added %d timers in step %u (expired=%u)\n",
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200103 add_in_this_step, *step, expired_timers);
104 total_timers += add_in_this_step;
105 osmo_timer_schedule(&main_timer, TIME_BETWEEN_STEPS, 0);
106 (*step)++;
107}
108
109static void secondary_timer_fired(void *data)
110{
111 struct test_timer *v = data, *this, *tmp;
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200112 struct timeval current, res;
113 struct timeval precision = { 0, TIME_BETWEEN_TIMER_CHECKS + 1};
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200114 int i;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200115
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200116 osmo_gettimeofday(&current, NULL);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200117
118 timersub(&current, &v->stop, &res);
119 if (timercmp(&res, &precision, >)) {
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200120 fprintf(stderr, "ERROR: timer has expired too late:"
121 " wanted %d.%06d now %d.%06d diff %d.%06d\n",
122 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
123 (int)current.tv_sec, (int)current.tv_usec,
124 (int)res.tv_sec, (int)res.tv_usec
125 );
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200126 too_late++;
127 }
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200128 else if (timercmp(&current, &v->stop, <)) {
129 fprintf(stderr, "ERROR: timer has expired too soon:"
130 " wanted %d.%06d now %d.%06d diff %d.%06d\n",
131 (int)v->stop.tv_sec, (int)v->stop.tv_usec,
132 (int)current.tv_sec, (int)current.tv_usec,
133 (int)res.tv_sec, (int)res.tv_usec
134 );
135 too_soon++;
136 }
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200137
138 llist_del(&v->head);
139 talloc_free(data);
140 expired_timers++;
141 if (expired_timers == total_timers) {
Neels Hofmeyr9c9a0472016-09-22 04:23:34 +0200142 fprintf(stdout, "test over: added=%u expired=%u too_soon=%u too_late=%u\n",
143 total_timers, expired_timers, too_soon, too_late);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200144 exit(EXIT_SUCCESS);
145 }
146
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200147 /* "random" deletion of timers. */
148 i = 0;
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200149 llist_for_each_entry_safe(this, tmp, &timer_test_list, head) {
Neels Hofmeyrd73c1cc2016-09-22 05:20:53 +0200150 i ++;
151 if (!(i & 0x3)) {
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200152 osmo_timer_del(&this->timer);
153 llist_del(&this->head);
154 talloc_free(this);
155 expired_timers++;
156 }
157 }
Harald Welteec8b4502010-02-20 20:34:29 +0100158}
159
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100160int main(int argc, char *argv[])
Harald Welteec8b4502010-02-20 20:34:29 +0100161{
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100162 int c;
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200163 int steps;
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100164
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200165 osmo_gettimeofday_override = true;
Pablo Neira Ayuso72eb44c2011-11-13 17:40:09 +0100166
Pablo Neira Ayusof1418372011-11-13 02:02:12 +0100167 while ((c = getopt_long(argc, argv, "s:", NULL, NULL)) != -1) {
168 switch(c) {
169 case 's':
170 timer_nsteps = atoi(optarg);
171 if (timer_nsteps <= 0) {
172 fprintf(stderr, "%s: steps must be > 0\n",
173 argv[0]);
174 exit(EXIT_FAILURE);
175 }
176 break;
177 default:
178 exit(EXIT_FAILURE);
179 }
180 }
181
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200182 steps = ((MAIN_TIMER_NSTEPS * TIME_BETWEEN_STEPS + 20) * 1e6)
183 / TIME_BETWEEN_TIMER_CHECKS;
184
Neels Hofmeyr13a8fb82016-09-22 04:45:26 +0200185 fprintf(stdout, "Running timer test for %u steps\n", timer_nsteps);
Harald Welteec8b4502010-02-20 20:34:29 +0100186
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200187 osmo_timer_schedule(&main_timer, 1, 0);
Harald Welteec8b4502010-02-20 20:34:29 +0100188
189#ifdef HAVE_SYS_SELECT_H
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200190 while (steps--) {
191 osmo_timers_prepare();
192 osmo_timers_update();
193 osmo_gettimeofday_override_add(0, TIME_BETWEEN_TIMER_CHECKS);
Pablo Neira Ayuso9ebc5052011-09-26 11:46:32 +0200194 }
Harald Welteec8b4502010-02-20 20:34:29 +0100195#else
Pablo Neira Ayuso7a0ca162011-11-13 17:22:33 +0100196 fprintf(stdout, "Select not supported on this platform!\n");
Harald Welteec8b4502010-02-20 20:34:29 +0100197#endif
Neels Hofmeyr7b4d7272016-09-22 04:47:04 +0200198 return 0;
Harald Welteec8b4502010-02-20 20:34:29 +0100199}