#include <sys/queue.h>
#include <sys/time.h>
#include <assert.h>
#include <limits.h>
#include <unistd.h>
#include <syslog.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <search.h>
#include "timer.h"
#include "logit.h"
#include "prog_ops.h"
struct rtadvd_timer_head_t ra_timer = TAILQ_HEAD_INITIALIZER(ra_timer);
static struct timespec tm_limit = { LONG_MAX, 1000000000L - 1 };
static struct timespec tm_max;
void
rtadvd_timer_init(void)
{
TAILQ_INIT(&ra_timer);
tm_max = tm_limit;
}
struct rtadvd_timer *
rtadvd_add_timer(struct rtadvd_timer *(*timeout) (void *),
void (*update) (void *, struct timespec *),
void *timeodata, void *updatedata)
{
struct rtadvd_timer *newtimer;
assert(timeout != NULL);
if ((newtimer = malloc(sizeof(*newtimer))) == NULL) {
logit(LOG_ERR, "%s: malloc: %m", __func__);
exit(EXIT_FAILURE);
}
memset(newtimer, 0, sizeof(*newtimer));
newtimer->expire = timeout;
newtimer->update = update;
newtimer->expire_data = timeodata;
newtimer->update_data = updatedata;
newtimer->tm = tm_max;
TAILQ_INSERT_TAIL(&ra_timer, newtimer, next);
return(newtimer);
}
void
rtadvd_remove_timer(struct rtadvd_timer **timer)
{
if (*timer) {
TAILQ_REMOVE(&ra_timer, *timer, next);
free(*timer);
*timer = NULL;
}
}
void
rtadvd_set_timer(struct timespec *tm, struct rtadvd_timer *timer)
{
struct timespec now;
prog_clock_gettime(CLOCK_MONOTONIC, &now);
timespecadd(&now, tm, &timer->tm);
if (timespeccmp(&timer->tm, &tm_max, <))
tm_max = timer->tm;
timer->enabled = true;
}
struct timespec *
rtadvd_check_timer(void)
{
static struct timespec returnval;
struct timespec now;
struct rtadvd_timer *tm, *tmn;
prog_clock_gettime(CLOCK_MONOTONIC, &now);
tm_max = tm_limit;
TAILQ_FOREACH_SAFE(tm, &ra_timer, next, tmn) {
if (!tm->enabled)
continue;
if (timespeccmp(&tm->tm, &now, <=)) {
if ((*tm->expire)(tm->expire_data) == NULL)
continue;
if (tm->update)
(*tm->update)(tm->update_data, &tm->tm);
timespecadd(&tm->tm, &now, &tm->tm);
}
if (timespeccmp(&tm->tm, &tm_max, <))
tm_max = tm->tm;
}
if (timespeccmp(&tm_max, &tm_limit, ==))
return(NULL);
if (timespeccmp(&tm_max, &now, <)) {
timespecclear(&returnval);
} else
timespecsub(&tm_max, &now, &returnval);
return(&returnval);
}
struct timespec *
rtadvd_timer_rest(struct rtadvd_timer *timer)
{
static struct timespec returnval;
struct timespec now;
prog_clock_gettime(CLOCK_MONOTONIC, &now);
if (timespeccmp(&timer->tm, &now, <=)) {
if (timer->enabled)
logit(LOG_DEBUG,
"%s: a timer must be expired, but not yet",
__func__);
returnval.tv_sec = 0;
returnval.tv_nsec = 0;
}
else
timespecsub(&timer->tm, &now, &returnval);
return(&returnval);
}