blob: 10a0b95d06427e35a4e3ec066ea472d4785cd02b [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/*
2 * (C) 2008,2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +02003 * (C) 2011 by Harald Welte <laforge@gnumonks.org>
Harald Welteec8b4502010-02-20 20:34:29 +01004 * All Rights Reserved
5 *
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +02006 * Authors: Holger Hans Peter Freyther <zecke@selfish.org>
7 * Harald Welte <laforge@gnumonks.org>
8 * Pablo Neira Ayuso <pablo@gnumonks.org>
9 *
Harald Welteec8b4502010-02-20 20:34:29 +010010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020026
Harald Welteba6988b2011-08-17 12:46:48 +020027/*! \addtogroup timer
28 * @{
29 */
30
31/*! \file timer.c
32 */
33
Harald Welteec8b4502010-02-20 20:34:29 +010034#include <assert.h>
35#include <string.h>
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020036#include <limits.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010037#include <osmocom/core/timer.h>
Sylvain Munaut07f11032011-10-21 21:55:29 +020038#include <osmocom/core/timer_compat.h>
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020039#include <osmocom/core/linuxlist.h>
Harald Welteec8b4502010-02-20 20:34:29 +010040
Holger Hans Peter Freyther3f838b72015-08-20 18:17:15 +000041/* These store the amount of time that we wait until next timer expires. */
42static struct timeval nearest;
43static struct timeval *nearest_p;
44
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020045static struct rb_root timer_root = RB_ROOT;
Harald Welteec8b4502010-02-20 20:34:29 +010046
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020047static void __add_timer(struct osmo_timer_list *timer)
48{
49 struct rb_node **new = &(timer_root.rb_node);
50 struct rb_node *parent = NULL;
Harald Welteec8b4502010-02-20 20:34:29 +010051
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020052 while (*new) {
53 struct osmo_timer_list *this;
Harald Welteec8b4502010-02-20 20:34:29 +010054
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020055 this = container_of(*new, struct osmo_timer_list, node);
56
57 parent = *new;
58 if (timercmp(&timer->timeout, &this->timeout, <))
59 new = &((*new)->rb_left);
60 else
61 new = &((*new)->rb_right);
62 }
63
64 rb_link_node(&timer->node, parent, new);
65 rb_insert_color(&timer->node, &timer_root);
66}
Harald Welteba6988b2011-08-17 12:46:48 +020067
68/*! \brief add a new timer to the timer management
69 * \param[in] timer the timer that should be added
70 */
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +020071void osmo_timer_add(struct osmo_timer_list *timer)
Harald Welteec8b4502010-02-20 20:34:29 +010072{
Pablo Neira Ayusoa71b8ea2011-11-13 10:11:31 +010073 osmo_timer_del(timer);
74 timer->active = 1;
75 INIT_LLIST_HEAD(&timer->list);
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020076 __add_timer(timer);
Harald Welteec8b4502010-02-20 20:34:29 +010077}
78
Harald Welteba6988b2011-08-17 12:46:48 +020079/*! \brief schedule a timer at a given future relative time
80 * \param[in] timer the to-be-added timer
81 * \param[in] seconds number of seconds from now
82 * \param[in] microseconds number of microseconds from now
83 *
84 * This function can be used to (re-)schedule a given timer at a
85 * specified number of seconds+microseconds in the future. It will
86 * internally add it to the timer management data structures, thus
87 * osmo_timer_add() is automatically called.
88 */
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +020089void
90osmo_timer_schedule(struct osmo_timer_list *timer, int seconds, int microseconds)
Harald Welteec8b4502010-02-20 20:34:29 +010091{
92 struct timeval current_time;
93
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +020094 osmo_gettimeofday(&current_time, NULL);
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +020095 timer->timeout.tv_sec = seconds;
96 timer->timeout.tv_usec = microseconds;
97 timeradd(&timer->timeout, &current_time, &timer->timeout);
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +020098 osmo_timer_add(timer);
Harald Welteec8b4502010-02-20 20:34:29 +010099}
100
Harald Welteba6988b2011-08-17 12:46:48 +0200101/*! \brief delete a timer from timer management
102 * \param[in] timer the to-be-deleted timer
103 *
104 * This function can be used to delete a previously added/scheduled
105 * timer from the timer management code.
106 */
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +0200107void osmo_timer_del(struct osmo_timer_list *timer)
Harald Welteec8b4502010-02-20 20:34:29 +0100108{
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200109 if (timer->active) {
Harald Welteec8b4502010-02-20 20:34:29 +0100110 timer->active = 0;
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200111 rb_erase(&timer->node, &timer_root);
112 /* make sure this is not already scheduled for removal. */
113 if (!llist_empty(&timer->list))
114 llist_del_init(&timer->list);
Harald Welteec8b4502010-02-20 20:34:29 +0100115 }
116}
117
Harald Welteba6988b2011-08-17 12:46:48 +0200118/*! \brief check if given timer is still pending
119 * \param[in] timer the to-be-checked timer
120 * \return 1 if pending, 0 otherwise
121 *
122 * This function can be used to determine whether a given timer
123 * has alredy expired (returns 0) or is still pending (returns 1)
124 */
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +0200125int osmo_timer_pending(struct osmo_timer_list *timer)
Harald Welteec8b4502010-02-20 20:34:29 +0100126{
127 return timer->active;
128}
129
Harald Weltee30b6ac2012-07-13 12:21:04 +0200130/*! \brief compute the remaining time of a timer
131 * \param[in] timer the to-be-checked timer
Katerina Barone-Adesic28c6a02013-02-15 13:27:59 +0100132 * \param[in] now the current time (NULL if not known)
Harald Weltee30b6ac2012-07-13 12:21:04 +0200133 * \param[out] remaining remaining time until timer fires
134 * \return 0 if timer has not expired yet, -1 if it has
135 *
136 * This function can be used to determine the amount of time
137 * remaining until the expiration of the timer.
138 */
139int osmo_timer_remaining(const struct osmo_timer_list *timer,
140 const struct timeval *now,
141 struct timeval *remaining)
142{
143 struct timeval current_time;
144
Holger Hans Peter Freyther8e5435a2014-05-23 08:37:02 +0200145 if (!now)
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200146 osmo_gettimeofday(&current_time, NULL);
Holger Hans Peter Freyther8e5435a2014-05-23 08:37:02 +0200147 else
148 current_time = *now;
Harald Weltee30b6ac2012-07-13 12:21:04 +0200149
150 timersub(&timer->timeout, &current_time, remaining);
151
152 if (remaining->tv_sec < 0)
153 return -1;
154
155 return 0;
156}
157
Harald Weltede6e4982012-12-06 21:25:27 +0100158/*! \brief Determine time between now and the nearest timer
159 * \returns pointer to timeval of nearest timer, NULL if there is none
160 *
Harald Welteec8b4502010-02-20 20:34:29 +0100161 * if we have a nearest time return the delta between the current
162 * time and the time of the nearest timer.
163 * If the nearest timer timed out return NULL and then we will
164 * dispatch everything after the select
165 */
Harald Welte7e820202011-07-16 10:15:16 +0200166struct timeval *osmo_timers_nearest(void)
Harald Welteec8b4502010-02-20 20:34:29 +0100167{
Sylvain Munaut0061ded2011-10-18 20:11:03 +0200168 /* nearest_p is exactly what we need already: NULL if nothing is
169 * waiting, {0,0} if we must dispatch immediately, and the correct
170 * delay if we need to wait */
171 return nearest_p;
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200172}
Harald Welteec8b4502010-02-20 20:34:29 +0100173
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200174static void update_nearest(struct timeval *cand, struct timeval *current)
175{
176 if (cand->tv_sec != LONG_MAX) {
177 if (timercmp(cand, current, >))
178 timersub(cand, current, &nearest);
179 else {
180 /* loop again inmediately */
181 nearest.tv_sec = 0;
182 nearest.tv_usec = 0;
183 }
184 nearest_p = &nearest;
Harald Welteec8b4502010-02-20 20:34:29 +0100185 } else {
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200186 nearest_p = NULL;
Harald Welteec8b4502010-02-20 20:34:29 +0100187 }
Harald Welteec8b4502010-02-20 20:34:29 +0100188}
189
Harald Weltede6e4982012-12-06 21:25:27 +0100190/*! \brief Find the nearest time and update nearest_p */
Harald Welte7e820202011-07-16 10:15:16 +0200191void osmo_timers_prepare(void)
Harald Welteec8b4502010-02-20 20:34:29 +0100192{
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200193 struct rb_node *node;
194 struct timeval current;
Harald Welteec8b4502010-02-20 20:34:29 +0100195
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200196 osmo_gettimeofday(&current, NULL);
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200197
198 node = rb_first(&timer_root);
199 if (node) {
200 struct osmo_timer_list *this;
201 this = container_of(node, struct osmo_timer_list, node);
202 update_nearest(&this->timeout, &current);
Harald Welteec8b4502010-02-20 20:34:29 +0100203 } else {
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200204 nearest_p = NULL;
Harald Welteec8b4502010-02-20 20:34:29 +0100205 }
206}
207
Harald Weltede6e4982012-12-06 21:25:27 +0100208/*! \brief fire all timers... and remove them */
Harald Welte7e820202011-07-16 10:15:16 +0200209int osmo_timers_update(void)
Harald Welteec8b4502010-02-20 20:34:29 +0100210{
211 struct timeval current_time;
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200212 struct rb_node *node;
213 struct llist_head timer_eviction_list;
214 struct osmo_timer_list *this;
Harald Welteec8b4502010-02-20 20:34:29 +0100215 int work = 0;
216
Neels Hofmeyr8e2f7e82016-09-22 03:58:13 +0200217 osmo_gettimeofday(&current_time, NULL);
Harald Welteec8b4502010-02-20 20:34:29 +0100218
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200219 INIT_LLIST_HEAD(&timer_eviction_list);
220 for (node = rb_first(&timer_root); node; node = rb_next(node)) {
221 this = container_of(node, struct osmo_timer_list, node);
222
223 if (timercmp(&this->timeout, &current_time, >))
224 break;
225
226 llist_add(&this->list, &timer_eviction_list);
227 }
228
Harald Welteec8b4502010-02-20 20:34:29 +0100229 /*
230 * The callbacks might mess with our list and in this case
231 * even llist_for_each_entry_safe is not safe to use. To allow
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200232 * osmo_timer_del to be called from within the callback we need
233 * to restart the iteration for each element scheduled for removal.
Harald Welteec8b4502010-02-20 20:34:29 +0100234 *
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200235 * The problematic scenario is the following: Given two timers A
236 * and B that have expired at the same time. Thus, they are both
237 * in the eviction list in this order: A, then B. If we remove
238 * timer B from the A's callback, we continue with B in the next
239 * iteration step, leading to an access-after-release.
Harald Welteec8b4502010-02-20 20:34:29 +0100240 */
Harald Welteec8b4502010-02-20 20:34:29 +0100241restart:
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200242 llist_for_each_entry(this, &timer_eviction_list, list) {
243 osmo_timer_del(this);
244 this->cb(this->data);
245 work = 1;
246 goto restart;
Harald Welteec8b4502010-02-20 20:34:29 +0100247 }
248
249 return work;
250}
251
Harald Welte2d2e2cc2016-04-25 12:11:20 +0200252/*! \brief Check how many timers we have in the system
253 * \returns number of \ref osmo_timer_list registered */
Pablo Neira Ayuso0b21c1c2011-05-07 12:42:28 +0200254int osmo_timers_check(void)
Harald Welteec8b4502010-02-20 20:34:29 +0100255{
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200256 struct rb_node *node;
Harald Welteec8b4502010-02-20 20:34:29 +0100257 int i = 0;
258
Pablo Neira Ayuso066c9122011-09-26 11:45:03 +0200259 for (node = rb_first(&timer_root); node; node = rb_next(node)) {
Harald Welteec8b4502010-02-20 20:34:29 +0100260 i++;
261 }
262 return i;
263}
Harald Welteba6988b2011-08-17 12:46:48 +0200264
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200265/*! @} */