2015-11-02 15:48:18 +01:00
|
|
|
/* Copyright (c) 2015, The Tor Project, Inc. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
#include "or.h"
|
2015-11-02 21:36:09 +01:00
|
|
|
#include "compat_libevent.h"
|
2015-11-02 15:48:18 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include "periodic.h"
|
|
|
|
|
2015-11-02 21:36:09 +01:00
|
|
|
#ifdef HAVE_EVENT2_EVENT_H
|
|
|
|
#include <event2/event.h>
|
|
|
|
#else
|
|
|
|
#include <event.h>
|
|
|
|
#endif
|
|
|
|
|
2015-11-02 15:48:18 +01:00
|
|
|
static const int MAX_INTERVAL = 10 * 365 * 86400;
|
|
|
|
|
|
|
|
/** DOCDOC */
|
|
|
|
static void
|
|
|
|
periodic_event_set_interval(periodic_event_item_t *event,
|
|
|
|
time_t next_interval)
|
|
|
|
{
|
2015-11-02 21:36:09 +01:00
|
|
|
tor_assert(next_interval < MAX_INTERVAL);
|
|
|
|
struct timeval tv;
|
|
|
|
tv.tv_sec = next_interval;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
event_add(event->ev, &tv);
|
2015-11-02 15:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Wraps dispatches for periodic events, <b>data</b> will be a pointer to the
|
|
|
|
* event that needs to be called */
|
|
|
|
static void
|
2015-11-02 21:36:09 +01:00
|
|
|
periodic_event_dispatch(evutil_socket_t fd, short what, void *data)
|
2015-11-02 15:48:18 +01:00
|
|
|
{
|
2015-11-02 21:36:09 +01:00
|
|
|
(void)fd;
|
|
|
|
(void)what;
|
2015-11-02 15:48:18 +01:00
|
|
|
periodic_event_item_t *event = data;
|
|
|
|
|
|
|
|
time_t now = time(NULL);
|
|
|
|
const or_options_t *options = get_options();
|
|
|
|
int r = event->fn(now, options);
|
|
|
|
int next_interval = 0;
|
|
|
|
|
|
|
|
/* update the last run time if action was taken */
|
|
|
|
if (r==0) {
|
|
|
|
log_err(LD_BUG, "Invalid return value for periodic event from %s.",
|
|
|
|
event->name);
|
|
|
|
tor_assert(r != 0);
|
|
|
|
} else if (r > 0) {
|
|
|
|
event->last_action_time = now;
|
|
|
|
/* If the event is meant to happen after ten years, that's likely
|
|
|
|
* a bug, and somebody gave an absolute time rather than an interval.
|
|
|
|
*/
|
|
|
|
tor_assert(r < MAX_INTERVAL);
|
|
|
|
next_interval = r;
|
|
|
|
} else {
|
|
|
|
/* no action was taken, it is likely a precondition failed,
|
|
|
|
* we should reschedule for next second incase the precondition
|
|
|
|
* passes then */
|
|
|
|
next_interval = 1;
|
|
|
|
}
|
|
|
|
|
2015-11-02 21:36:09 +01:00
|
|
|
struct timeval tv = { next_interval , 0 };
|
|
|
|
event_add(event->ev, &tv);
|
2015-11-02 15:48:18 +01:00
|
|
|
|
|
|
|
log_info(LD_GENERAL, "Dispatching %s", event->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** DOCDOC */
|
|
|
|
void
|
|
|
|
periodic_event_reschedule(periodic_event_item_t *event)
|
|
|
|
{
|
|
|
|
periodic_event_set_interval(event, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Handles initial dispatch for periodic events. It should happen 1 second
|
|
|
|
* after the events are created to mimic behaviour before #3199's refactor */
|
|
|
|
void
|
|
|
|
periodic_event_launch(periodic_event_item_t *event)
|
|
|
|
{
|
2015-11-02 21:36:09 +01:00
|
|
|
if (event->ev) { /** Already setup? This is a bug */
|
2015-11-02 15:48:18 +01:00
|
|
|
log_err(LD_BUG, "Initial dispatch should only be done once.");
|
|
|
|
tor_assert(0);
|
|
|
|
}
|
|
|
|
|
2015-11-02 21:36:09 +01:00
|
|
|
event->ev = tor_event_new(tor_libevent_get_base(),
|
|
|
|
-1, 0,
|
|
|
|
periodic_event_dispatch,
|
|
|
|
event);
|
|
|
|
tor_assert(event->ev);
|
2015-11-02 15:48:18 +01:00
|
|
|
|
|
|
|
// Initial dispatch
|
2015-11-02 21:36:09 +01:00
|
|
|
periodic_event_dispatch(-1, EV_TIMEOUT, event);
|
2015-11-02 15:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** DOCDOC */
|
|
|
|
void
|
|
|
|
periodic_event_destroy(periodic_event_item_t *event)
|
|
|
|
{
|
|
|
|
if (!event)
|
|
|
|
return;
|
2015-11-02 21:36:09 +01:00
|
|
|
tor_event_free(event->ev);
|
2015-11-02 15:48:18 +01:00
|
|
|
event->last_action_time = 0;
|
|
|
|
}
|
|
|
|
|