mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Allow enabling or disabling *Statistics while Tor is running.
With this patch we stop scheduling when we should write statistics using a single timestamp in run_scheduled_events(). Instead, we remember when a statistics interval starts separately for each statistic type in geoip.c and rephist.c. Every time run_scheduled_events() tries to write stats to disk, it learns when it should schedule the next such attempt. This patch also enables all statistics to be stopped and restarted at a later time. This patch comes with a few refactorings, some of which were not easily doable without the patch.
This commit is contained in:
parent
cafd868a78
commit
166c2f4d92
3
changes/statsswitch
Normal file
3
changes/statsswitch
Normal file
@ -0,0 +1,3 @@
|
||||
o Major features:
|
||||
- Allow enabling or disabling *Statistics while Tor is running.
|
||||
|
@ -1246,8 +1246,15 @@ options_act(or_options_t *old_options)
|
||||
}
|
||||
|
||||
if (! bool_eq(options->BridgeRelay, old_options->BridgeRelay)) {
|
||||
log_info(LD_GENERAL, "Bridge status changed. Forgetting GeoIP stats.");
|
||||
geoip_remove_old_clients(time(NULL)+(2*60*60));
|
||||
if (options->BridgeRelay) {
|
||||
geoip_bridge_stats_init(time(NULL) + (2 * 60 * 60));
|
||||
log_info(LD_CONFIG, "We are acting as a bridge now. Starting new "
|
||||
"GeoIP stats interval in 2 hours from now.");
|
||||
} else {
|
||||
geoip_bridge_stats_term();
|
||||
log_info(LD_GENERAL, "We are no longer acting as a bridge. "
|
||||
"Forgetting GeoIP stats.");
|
||||
}
|
||||
}
|
||||
|
||||
if (options_transition_affects_workers(old_options, options)) {
|
||||
@ -1317,6 +1324,40 @@ options_act(or_options_t *old_options)
|
||||
}
|
||||
}
|
||||
|
||||
if (options->CellStatistics || options->DirReqStatistics ||
|
||||
options->EntryStatistics || options->ExitPortStatistics) {
|
||||
time_t now = time(NULL);
|
||||
if ((!old_options || !old_options->CellStatistics) &&
|
||||
options->CellStatistics)
|
||||
rep_hist_buffer_stats_init(now);
|
||||
if ((!old_options || !old_options->DirReqStatistics) &&
|
||||
options->DirReqStatistics)
|
||||
geoip_dirreq_stats_init(now);
|
||||
if ((!old_options || !old_options->EntryStatistics) &&
|
||||
options->EntryStatistics)
|
||||
geoip_entry_stats_init(now);
|
||||
if ((!old_options || !old_options->ExitPortStatistics) &&
|
||||
options->ExitPortStatistics)
|
||||
rep_hist_exit_stats_init(now);
|
||||
if (!old_options)
|
||||
log_notice(LD_CONFIG, "Configured to measure statistics. Look for "
|
||||
"the *-stats files that will first be written to the "
|
||||
"data directory in 24 hours from now.");
|
||||
}
|
||||
|
||||
if (old_options && old_options->CellStatistics &&
|
||||
!options->CellStatistics)
|
||||
rep_hist_buffer_stats_term();
|
||||
if (old_options && old_options->DirReqStatistics &&
|
||||
!options->DirReqStatistics)
|
||||
geoip_dirreq_stats_term();
|
||||
if (old_options && old_options->EntryStatistics &&
|
||||
!options->EntryStatistics)
|
||||
geoip_entry_stats_term();
|
||||
if (old_options && old_options->ExitPortStatistics &&
|
||||
!options->ExitPortStatistics)
|
||||
rep_hist_exit_stats_term();
|
||||
|
||||
/* Check if we need to parse and add the EntryNodes config option. */
|
||||
if (options->EntryNodes &&
|
||||
(!old_options ||
|
||||
@ -3688,16 +3729,6 @@ options_transition_allowed(or_options_t *old, or_options_t *new_val,
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (old->CellStatistics != new_val->CellStatistics ||
|
||||
old->DirReqStatistics != new_val->DirReqStatistics ||
|
||||
old->EntryStatistics != new_val->EntryStatistics ||
|
||||
old->ExitPortStatistics != new_val->ExitPortStatistics) {
|
||||
*msg = tor_strdup("While Tor is running, changing either "
|
||||
"CellStatistics, DirReqStatistics, EntryStatistics, "
|
||||
"or ExitPortStatistics is not allowed.");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (old->DisableAllSwap != new_val->DisableAllSwap) {
|
||||
*msg = tor_strdup("While Tor is running, changing DisableAllSwap "
|
||||
"is not allowed.");
|
||||
|
399
src/or/geoip.c
399
src/or/geoip.c
@ -4,7 +4,8 @@
|
||||
/**
|
||||
* \file geoip.c
|
||||
* \brief Functions related to maintaining an IP-to-country database and to
|
||||
* summarizing client connections by country.
|
||||
* summarizing client connections by country to entry guards, bridges, and
|
||||
* directories as well as statistics on answering network status requests.
|
||||
*/
|
||||
|
||||
#define GEOIP_PRIVATE
|
||||
@ -26,16 +27,11 @@ typedef struct geoip_entry_t {
|
||||
intptr_t country; /**< An index into geoip_countries */
|
||||
} geoip_entry_t;
|
||||
|
||||
/** For how many periods should we remember per-country request history? */
|
||||
#define REQUEST_HIST_LEN 1
|
||||
/** How long are the periods for which we should remember request history? */
|
||||
#define REQUEST_HIST_PERIOD (24*60*60)
|
||||
|
||||
/** A per-country record for GeoIP request history. */
|
||||
typedef struct geoip_country_t {
|
||||
char countrycode[3];
|
||||
uint32_t n_v2_ns_requests[REQUEST_HIST_LEN];
|
||||
uint32_t n_v3_ns_requests[REQUEST_HIST_LEN];
|
||||
uint32_t n_v2_ns_requests;
|
||||
uint32_t n_v3_ns_requests;
|
||||
} geoip_country_t;
|
||||
|
||||
/** A list of geoip_country_t */
|
||||
@ -293,14 +289,6 @@ typedef struct clientmap_entry_t {
|
||||
/** Map from client IP address to last time seen. */
|
||||
static HT_HEAD(clientmap, clientmap_entry_t) client_history =
|
||||
HT_INITIALIZER();
|
||||
/** Time at which we started tracking client IP history. */
|
||||
static time_t client_history_starts = 0;
|
||||
|
||||
/** When did the current period of checking per-country request history
|
||||
* start? */
|
||||
static time_t current_request_period_starts = 0;
|
||||
/** How many older request periods are we remembering? */
|
||||
static int n_old_request_periods = 0;
|
||||
|
||||
/** Hashtable helper: compute a hash of a clientmap_entry_t. */
|
||||
static INLINE unsigned
|
||||
@ -320,6 +308,23 @@ HT_PROTOTYPE(clientmap, clientmap_entry_t, node, clientmap_entry_hash,
|
||||
HT_GENERATE(clientmap, clientmap_entry_t, node, clientmap_entry_hash,
|
||||
clientmap_entries_eq, 0.6, malloc, realloc, free);
|
||||
|
||||
/** Clear history of connecting clients used by entry and bridge stats. */
|
||||
static void
|
||||
client_history_clear(void)
|
||||
{
|
||||
clientmap_entry_t **ent, **next, *this;
|
||||
for (ent = HT_START(clientmap, &client_history); ent != NULL;
|
||||
ent = next) {
|
||||
if ((*ent)->action == GEOIP_CLIENT_CONNECT) {
|
||||
this = *ent;
|
||||
next = HT_NEXT_RMV(clientmap, &client_history, ent);
|
||||
tor_free(this);
|
||||
} else {
|
||||
next = HT_NEXT(clientmap, &client_history, ent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** How often do we update our estimate which share of v2 and v3 directory
|
||||
* requests is sent to us? We could as well trigger updates of shares from
|
||||
* network status updates, but that means adding a lot of calls into code
|
||||
@ -381,25 +386,6 @@ geoip_get_mean_shares(time_t now, double *v2_share_out,
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Rotate period of v2 and v3 network status requests. */
|
||||
static void
|
||||
rotate_request_period(void)
|
||||
{
|
||||
SMARTLIST_FOREACH_BEGIN(geoip_countries, geoip_country_t *, c) {
|
||||
#if REQUEST_HIST_LEN > 1
|
||||
memmove(&c->n_v2_ns_requests[0], &c->n_v2_ns_requests[1],
|
||||
sizeof(uint32_t)*(REQUEST_HIST_LEN-1));
|
||||
memmove(&c->n_v3_ns_requests[0], &c->n_v3_ns_requests[1],
|
||||
sizeof(uint32_t)*(REQUEST_HIST_LEN-1));
|
||||
#endif
|
||||
c->n_v2_ns_requests[REQUEST_HIST_LEN-1] = 0;
|
||||
c->n_v3_ns_requests[REQUEST_HIST_LEN-1] = 0;
|
||||
} SMARTLIST_FOREACH_END(c);
|
||||
current_request_period_starts += REQUEST_HIST_PERIOD;
|
||||
if (n_old_request_periods < REQUEST_HIST_LEN-1)
|
||||
++n_old_request_periods;
|
||||
}
|
||||
|
||||
/** Note that we've seen a client connect from the IP <b>addr</b> (host order)
|
||||
* at time <b>now</b>. Ignored by all but bridges and directories if
|
||||
* configured accordingly. */
|
||||
@ -414,35 +400,12 @@ geoip_note_client_seen(geoip_client_action_t action,
|
||||
if (!options->EntryStatistics &&
|
||||
(!(options->BridgeRelay && options->BridgeRecordUsageByCountry)))
|
||||
return;
|
||||
/* Did we recently switch from bridge to relay or back? */
|
||||
if (client_history_starts > now)
|
||||
return;
|
||||
} else {
|
||||
if (options->BridgeRelay || options->BridgeAuthoritativeDir ||
|
||||
!options->DirReqStatistics)
|
||||
return;
|
||||
}
|
||||
|
||||
/* As a bridge that doesn't rotate request periods every 24 hours,
|
||||
* possibly rotate now. */
|
||||
if (options->BridgeRelay) {
|
||||
while (current_request_period_starts + REQUEST_HIST_PERIOD < now) {
|
||||
if (!geoip_countries)
|
||||
init_geoip_countries();
|
||||
if (!current_request_period_starts) {
|
||||
current_request_period_starts = now;
|
||||
break;
|
||||
}
|
||||
/* Also discard all items in the client history that are too old.
|
||||
* (This only works here because bridge and directory stats are
|
||||
* independent. Otherwise, we'd only want to discard those items
|
||||
* with action GEOIP_CLIENT_NETWORKSTATUS{_V2}.) */
|
||||
geoip_remove_old_clients(current_request_period_starts);
|
||||
/* Now rotate request period */
|
||||
rotate_request_period();
|
||||
}
|
||||
}
|
||||
|
||||
lookup.ipaddr = addr;
|
||||
lookup.action = (int)action;
|
||||
ent = HT_FIND(clientmap, &client_history, &lookup);
|
||||
@ -464,20 +427,15 @@ geoip_note_client_seen(geoip_client_action_t action,
|
||||
if (country_idx >= 0 && country_idx < smartlist_len(geoip_countries)) {
|
||||
geoip_country_t *country = smartlist_get(geoip_countries, country_idx);
|
||||
if (action == GEOIP_CLIENT_NETWORKSTATUS)
|
||||
++country->n_v3_ns_requests[REQUEST_HIST_LEN-1];
|
||||
++country->n_v3_ns_requests;
|
||||
else
|
||||
++country->n_v2_ns_requests[REQUEST_HIST_LEN-1];
|
||||
++country->n_v2_ns_requests;
|
||||
}
|
||||
|
||||
/* Periodically determine share of requests that we should see */
|
||||
if (last_time_determined_shares + REQUEST_SHARE_INTERVAL < now)
|
||||
geoip_determine_shares(now);
|
||||
}
|
||||
|
||||
if (!client_history_starts) {
|
||||
client_history_starts = now;
|
||||
current_request_period_starts = now;
|
||||
}
|
||||
}
|
||||
|
||||
/** HT_FOREACH helper: remove a clientmap_entry_t from the hashtable if it's
|
||||
@ -494,18 +452,13 @@ _remove_old_client_helper(struct clientmap_entry_t *ent, void *_cutoff)
|
||||
}
|
||||
}
|
||||
|
||||
/** Forget about all clients that haven't connected since <b>cutoff</b>.
|
||||
* If <b>cutoff</b> is in the future, clients won't be added to the history
|
||||
* until this time is reached. This is useful to prevent relays that switch
|
||||
* to bridges from reporting unbelievable numbers of clients. */
|
||||
/** Forget about all clients that haven't connected since <b>cutoff</b>. */
|
||||
void
|
||||
geoip_remove_old_clients(time_t cutoff)
|
||||
{
|
||||
clientmap_HT_FOREACH_FN(&client_history,
|
||||
_remove_old_client_helper,
|
||||
&cutoff);
|
||||
if (client_history_starts < cutoff)
|
||||
client_history_starts = cutoff;
|
||||
}
|
||||
|
||||
/** How many responses are we giving to clients requesting v2 network
|
||||
@ -551,13 +504,6 @@ geoip_note_ns_response(geoip_client_action_t action,
|
||||
* multiple of this value. */
|
||||
#define IP_GRANULARITY 8
|
||||
|
||||
/** Return the time at which we started recording geoip data. */
|
||||
time_t
|
||||
geoip_get_history_start(void)
|
||||
{
|
||||
return client_history_starts;
|
||||
}
|
||||
|
||||
/** Helper type: used to sort per-country totals by value. */
|
||||
typedef struct c_hist_t {
|
||||
char country[3]; /**< Two-letter country code. */
|
||||
@ -633,7 +579,7 @@ HT_GENERATE(dirreqmap, dirreq_map_entry_t, node, dirreq_map_ent_hash,
|
||||
dirreq_map_ent_eq, 0.6, malloc, realloc, free);
|
||||
|
||||
/** Helper: Put <b>entry</b> into map of directory requests using
|
||||
* <b>tunneled</b> and <b>dirreq_id</b> as key parts. If there is
|
||||
* <b>type</b> and <b>dirreq_id</b> as key parts. If there is
|
||||
* already an entry for that key, print out a BUG warning and return. */
|
||||
static void
|
||||
_dirreq_map_put(dirreq_map_entry_t *entry, dirreq_type_t type,
|
||||
@ -654,7 +600,7 @@ _dirreq_map_put(dirreq_map_entry_t *entry, dirreq_type_t type,
|
||||
}
|
||||
|
||||
/** Helper: Look up and return an entry in the map of directory requests
|
||||
* using <b>tunneled</b> and <b>dirreq_id</b> as key parts. If there
|
||||
* using <b>type</b> and <b>dirreq_id</b> as key parts. If there
|
||||
* is no such entry, return NULL. */
|
||||
static dirreq_map_entry_t *
|
||||
_dirreq_map_get(dirreq_type_t type, uint64_t dirreq_id)
|
||||
@ -817,124 +763,94 @@ geoip_get_dirreq_history(geoip_client_action_t action,
|
||||
return result;
|
||||
}
|
||||
|
||||
/** How long do we have to have observed per-country request history before we
|
||||
* are willing to talk about it? */
|
||||
#define GEOIP_MIN_OBSERVATION_TIME (12*60*60)
|
||||
|
||||
/** Helper for geoip_get_client_history_dirreq() and
|
||||
* geoip_get_client_history_bridge(). */
|
||||
static char *
|
||||
geoip_get_client_history(time_t now, geoip_client_action_t action,
|
||||
int min_observation_time, unsigned granularity)
|
||||
/** Return a newly allocated comma-separated string containing entries for
|
||||
* all the countries from which we've seen enough clients connect as a
|
||||
* bridge, directory, or entry guard. The entry format is cc=num where num
|
||||
* is the number of IPs we've seen connecting from that country, and cc is
|
||||
* a lowercased country code. Returns NULL if we don't want to export
|
||||
* geoip data yet. */
|
||||
char *
|
||||
geoip_get_client_history(geoip_client_action_t action)
|
||||
{
|
||||
char *result = NULL;
|
||||
unsigned granularity = IP_GRANULARITY;
|
||||
smartlist_t *chunks = NULL;
|
||||
smartlist_t *entries = NULL;
|
||||
int n_countries = geoip_get_n_countries();
|
||||
int i;
|
||||
clientmap_entry_t **ent;
|
||||
unsigned *counts = NULL;
|
||||
unsigned total = 0;
|
||||
|
||||
if (!geoip_is_loaded())
|
||||
return NULL;
|
||||
if (client_history_starts < (now - min_observation_time)) {
|
||||
smartlist_t *chunks = NULL;
|
||||
smartlist_t *entries = NULL;
|
||||
int n_countries = geoip_get_n_countries();
|
||||
int i;
|
||||
clientmap_entry_t **ent;
|
||||
unsigned *counts = tor_malloc_zero(sizeof(unsigned)*n_countries);
|
||||
unsigned total = 0;
|
||||
HT_FOREACH(ent, clientmap, &client_history) {
|
||||
int country;
|
||||
if ((*ent)->action != (int)action)
|
||||
continue;
|
||||
country = geoip_get_country_by_ip((*ent)->ipaddr);
|
||||
if (country < 0)
|
||||
country = 0; /** unresolved requests are stored at index 0. */
|
||||
tor_assert(0 <= country && country < n_countries);
|
||||
++counts[country];
|
||||
++total;
|
||||
}
|
||||
/* Don't record anything if we haven't seen enough IPs. */
|
||||
if (total < MIN_IPS_TO_NOTE_ANYTHING)
|
||||
goto done;
|
||||
/* Make a list of c_hist_t */
|
||||
entries = smartlist_create();
|
||||
for (i = 0; i < n_countries; ++i) {
|
||||
unsigned c = counts[i];
|
||||
const char *countrycode;
|
||||
c_hist_t *ent;
|
||||
/* Only report a country if it has a minimum number of IPs. */
|
||||
if (c >= MIN_IPS_TO_NOTE_COUNTRY) {
|
||||
c = round_to_next_multiple_of(c, granularity);
|
||||
countrycode = geoip_get_country_name(i);
|
||||
ent = tor_malloc(sizeof(c_hist_t));
|
||||
strlcpy(ent->country, countrycode, sizeof(ent->country));
|
||||
ent->total = c;
|
||||
smartlist_add(entries, ent);
|
||||
}
|
||||
}
|
||||
/* Sort entries. Note that we must do this _AFTER_ rounding, or else
|
||||
* the sort order could leak info. */
|
||||
smartlist_sort(entries, _c_hist_compare);
|
||||
|
||||
/* Build the result. */
|
||||
chunks = smartlist_create();
|
||||
SMARTLIST_FOREACH(entries, c_hist_t *, ch, {
|
||||
char *buf=NULL;
|
||||
tor_asprintf(&buf, "%s=%u", ch->country, ch->total);
|
||||
smartlist_add(chunks, buf);
|
||||
});
|
||||
result = smartlist_join_strings(chunks, ",", 0, NULL);
|
||||
done:
|
||||
tor_free(counts);
|
||||
if (chunks) {
|
||||
SMARTLIST_FOREACH(chunks, char *, c, tor_free(c));
|
||||
smartlist_free(chunks);
|
||||
}
|
||||
if (entries) {
|
||||
SMARTLIST_FOREACH(entries, c_hist_t *, c, tor_free(c));
|
||||
smartlist_free(entries);
|
||||
counts = tor_malloc_zero(sizeof(unsigned)*n_countries);
|
||||
HT_FOREACH(ent, clientmap, &client_history) {
|
||||
int country;
|
||||
if ((*ent)->action != (int)action)
|
||||
continue;
|
||||
country = geoip_get_country_by_ip((*ent)->ipaddr);
|
||||
if (country < 0)
|
||||
country = 0; /** unresolved requests are stored at index 0. */
|
||||
tor_assert(0 <= country && country < n_countries);
|
||||
++counts[country];
|
||||
++total;
|
||||
}
|
||||
/* Don't record anything if we haven't seen enough IPs. */
|
||||
if (total < MIN_IPS_TO_NOTE_ANYTHING)
|
||||
goto done;
|
||||
/* Make a list of c_hist_t */
|
||||
entries = smartlist_create();
|
||||
for (i = 0; i < n_countries; ++i) {
|
||||
unsigned c = counts[i];
|
||||
const char *countrycode;
|
||||
c_hist_t *ent;
|
||||
/* Only report a country if it has a minimum number of IPs. */
|
||||
if (c >= MIN_IPS_TO_NOTE_COUNTRY) {
|
||||
c = round_to_next_multiple_of(c, granularity);
|
||||
countrycode = geoip_get_country_name(i);
|
||||
ent = tor_malloc(sizeof(c_hist_t));
|
||||
strlcpy(ent->country, countrycode, sizeof(ent->country));
|
||||
ent->total = c;
|
||||
smartlist_add(entries, ent);
|
||||
}
|
||||
}
|
||||
/* Sort entries. Note that we must do this _AFTER_ rounding, or else
|
||||
* the sort order could leak info. */
|
||||
smartlist_sort(entries, _c_hist_compare);
|
||||
|
||||
/* Build the result. */
|
||||
chunks = smartlist_create();
|
||||
SMARTLIST_FOREACH(entries, c_hist_t *, ch, {
|
||||
char *buf=NULL;
|
||||
tor_asprintf(&buf, "%s=%u", ch->country, ch->total);
|
||||
smartlist_add(chunks, buf);
|
||||
});
|
||||
result = smartlist_join_strings(chunks, ",", 0, NULL);
|
||||
done:
|
||||
tor_free(counts);
|
||||
if (chunks) {
|
||||
SMARTLIST_FOREACH(chunks, char *, c, tor_free(c));
|
||||
smartlist_free(chunks);
|
||||
}
|
||||
if (entries) {
|
||||
SMARTLIST_FOREACH(entries, c_hist_t *, c, tor_free(c));
|
||||
smartlist_free(entries);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/** Return a newly allocated comma-separated string containing entries for
|
||||
* all the countries from which we've seen enough clients connect as a
|
||||
* directory. The entry format is cc=num where num is the number of IPs
|
||||
* we've seen connecting from that country, and cc is a lowercased country
|
||||
* code. Returns NULL if we don't want to export geoip data yet. */
|
||||
char *
|
||||
geoip_get_client_history_dirreq(time_t now,
|
||||
geoip_client_action_t action)
|
||||
{
|
||||
return geoip_get_client_history(now, action,
|
||||
DIR_RECORD_USAGE_MIN_OBSERVATION_TIME,
|
||||
DIR_RECORD_USAGE_GRANULARITY);
|
||||
}
|
||||
|
||||
/** Return a newly allocated comma-separated string containing entries for
|
||||
* all the countries from which we've seen enough clients connect as a
|
||||
* bridge. The entry format is cc=num where num is the number of IPs
|
||||
* we've seen connecting from that country, and cc is a lowercased country
|
||||
* code. Returns NULL if we don't want to export geoip data yet. */
|
||||
char *
|
||||
geoip_get_client_history_bridge(time_t now,
|
||||
geoip_client_action_t action)
|
||||
{
|
||||
return geoip_get_client_history(now, action,
|
||||
GEOIP_MIN_OBSERVATION_TIME,
|
||||
IP_GRANULARITY);
|
||||
}
|
||||
|
||||
/** Return a newly allocated string holding the per-country request history
|
||||
* for <b>action</b> in a format suitable for an extra-info document, or NULL
|
||||
* on failure. */
|
||||
char *
|
||||
geoip_get_request_history(time_t now, geoip_client_action_t action)
|
||||
geoip_get_request_history(geoip_client_action_t action)
|
||||
{
|
||||
smartlist_t *entries, *strings;
|
||||
char *result;
|
||||
unsigned granularity = IP_GRANULARITY;
|
||||
int min_observation_time = GEOIP_MIN_OBSERVATION_TIME;
|
||||
|
||||
if (client_history_starts >= (now - min_observation_time))
|
||||
return NULL;
|
||||
if (action != GEOIP_CLIENT_NETWORKSTATUS &&
|
||||
action != GEOIP_CLIENT_NETWORKSTATUS_V2)
|
||||
return NULL;
|
||||
@ -943,13 +859,10 @@ geoip_get_request_history(time_t now, geoip_client_action_t action)
|
||||
|
||||
entries = smartlist_create();
|
||||
SMARTLIST_FOREACH(geoip_countries, geoip_country_t *, c, {
|
||||
uint32_t *n = (action == GEOIP_CLIENT_NETWORKSTATUS)
|
||||
? c->n_v3_ns_requests : c->n_v2_ns_requests;
|
||||
uint32_t tot = 0;
|
||||
int i;
|
||||
c_hist_t *ent;
|
||||
for (i=0; i < REQUEST_HIST_LEN; ++i)
|
||||
tot += n[i];
|
||||
tot = (action == GEOIP_CLIENT_NETWORKSTATUS) ?
|
||||
c->n_v3_ns_requests : c->n_v2_ns_requests;
|
||||
if (!tot)
|
||||
continue;
|
||||
ent = tor_malloc_zero(sizeof(c_hist_t));
|
||||
@ -973,7 +886,8 @@ geoip_get_request_history(time_t now, geoip_client_action_t action)
|
||||
return result;
|
||||
}
|
||||
|
||||
/** Start time of directory request stats. */
|
||||
/** Start time of directory request stats or 0 if we're not collecting
|
||||
* directory request statistics. */
|
||||
static time_t start_of_dirreq_stats_interval;
|
||||
|
||||
/** Initialize directory request stats. */
|
||||
@ -983,8 +897,47 @@ geoip_dirreq_stats_init(time_t now)
|
||||
start_of_dirreq_stats_interval = now;
|
||||
}
|
||||
|
||||
/** Write dirreq statistics to $DATADIR/stats/dirreq-stats. */
|
||||
/** Stop collecting directory request stats in a way that we can re-start
|
||||
* doing so in geoip_dirreq_stats_init(). */
|
||||
void
|
||||
geoip_dirreq_stats_term(void)
|
||||
{
|
||||
SMARTLIST_FOREACH(geoip_countries, geoip_country_t *, c, {
|
||||
c->n_v2_ns_requests = c->n_v3_ns_requests = 0;
|
||||
});
|
||||
{
|
||||
clientmap_entry_t **ent, **next, *this;
|
||||
for (ent = HT_START(clientmap, &client_history); ent != NULL;
|
||||
ent = next) {
|
||||
if ((*ent)->action == GEOIP_CLIENT_NETWORKSTATUS ||
|
||||
(*ent)->action == GEOIP_CLIENT_NETWORKSTATUS_V2) {
|
||||
this = *ent;
|
||||
next = HT_NEXT_RMV(clientmap, &client_history, ent);
|
||||
tor_free(this);
|
||||
} else {
|
||||
next = HT_NEXT(clientmap, &client_history, ent);
|
||||
}
|
||||
}
|
||||
}
|
||||
v2_share_times_seconds = v3_share_times_seconds = 0.0;
|
||||
last_time_determined_shares = 0;
|
||||
share_seconds = 0;
|
||||
memset(ns_v2_responses, 0, sizeof(ns_v2_responses));
|
||||
memset(ns_v3_responses, 0, sizeof(ns_v3_responses));
|
||||
{
|
||||
dirreq_map_entry_t **ent, **next, *this;
|
||||
for (ent = HT_START(dirreqmap, &dirreq_map); ent != NULL; ent = next) {
|
||||
this = *ent;
|
||||
next = HT_NEXT_RMV(dirreqmap, &dirreq_map, ent);
|
||||
tor_free(this);
|
||||
}
|
||||
}
|
||||
start_of_dirreq_stats_interval = 0;
|
||||
}
|
||||
|
||||
/** Write dirreq statistics to $DATADIR/stats/dirreq-stats and return when
|
||||
* we would next want to write. */
|
||||
time_t
|
||||
geoip_dirreq_stats_write(time_t now)
|
||||
{
|
||||
char *statsdir = NULL, *filename = NULL;
|
||||
@ -995,8 +948,10 @@ geoip_dirreq_stats_write(time_t now)
|
||||
FILE *out;
|
||||
int i;
|
||||
|
||||
if (!get_options()->DirReqStatistics)
|
||||
goto done;
|
||||
if (!start_of_dirreq_stats_interval)
|
||||
return 0; /* Not initialized. */
|
||||
if (start_of_dirreq_stats_interval + WRITE_STATS_INTERVAL > now)
|
||||
goto done; /* Not ready to write. */
|
||||
|
||||
/* Discard all items in the client history that are too old. */
|
||||
geoip_remove_old_clients(start_of_dirreq_stats_interval);
|
||||
@ -1005,10 +960,8 @@ geoip_dirreq_stats_write(time_t now)
|
||||
if (check_private_dir(statsdir, CPD_CREATE) < 0)
|
||||
goto done;
|
||||
filename = get_datadir_fname2("stats", "dirreq-stats");
|
||||
data_v2 = geoip_get_client_history_dirreq(now,
|
||||
GEOIP_CLIENT_NETWORKSTATUS_V2);
|
||||
data_v3 = geoip_get_client_history_dirreq(now,
|
||||
GEOIP_CLIENT_NETWORKSTATUS);
|
||||
data_v2 = geoip_get_client_history(GEOIP_CLIENT_NETWORKSTATUS_V2);
|
||||
data_v3 = geoip_get_client_history(GEOIP_CLIENT_NETWORKSTATUS);
|
||||
format_iso_time(written, now);
|
||||
out = start_writing_to_stdio_file(filename, OPEN_FLAGS_APPEND,
|
||||
0600, &open_file);
|
||||
@ -1022,13 +975,16 @@ geoip_dirreq_stats_write(time_t now)
|
||||
tor_free(data_v2);
|
||||
tor_free(data_v3);
|
||||
|
||||
data_v2 = geoip_get_request_history(now, GEOIP_CLIENT_NETWORKSTATUS_V2);
|
||||
data_v3 = geoip_get_request_history(now, GEOIP_CLIENT_NETWORKSTATUS);
|
||||
data_v2 = geoip_get_request_history(GEOIP_CLIENT_NETWORKSTATUS_V2);
|
||||
data_v3 = geoip_get_request_history(GEOIP_CLIENT_NETWORKSTATUS);
|
||||
if (fprintf(out, "dirreq-v3-reqs %s\ndirreq-v2-reqs %s\n",
|
||||
data_v3 ? data_v3 : "", data_v2 ? data_v2 : "") < 0)
|
||||
goto done;
|
||||
tor_free(data_v2);
|
||||
tor_free(data_v3);
|
||||
SMARTLIST_FOREACH(geoip_countries, geoip_country_t *, c, {
|
||||
c->n_v2_ns_requests = c->n_v3_ns_requests = 0;
|
||||
});
|
||||
#define RESPONSE_GRANULARITY 8
|
||||
for (i = 0; i < GEOIP_NS_RESPONSE_NUM; i++) {
|
||||
ns_v2_responses[i] = round_uint32_to_next_multiple_of(
|
||||
@ -1083,9 +1039,6 @@ geoip_dirreq_stats_write(time_t now)
|
||||
finish_writing_to_file(open_file);
|
||||
open_file = NULL;
|
||||
|
||||
/* Rotate request period */
|
||||
rotate_request_period();
|
||||
|
||||
start_of_dirreq_stats_interval = now;
|
||||
|
||||
done:
|
||||
@ -1095,9 +1048,11 @@ geoip_dirreq_stats_write(time_t now)
|
||||
tor_free(statsdir);
|
||||
tor_free(data_v2);
|
||||
tor_free(data_v3);
|
||||
return start_of_dirreq_stats_interval + WRITE_STATS_INTERVAL;
|
||||
}
|
||||
|
||||
/** Start time of bridge stats. */
|
||||
/** Start time of bridge stats or 0 if we're not collecting bridge
|
||||
* statistics. */
|
||||
static time_t start_of_bridge_stats_interval;
|
||||
|
||||
/** Initialize bridge stats. */
|
||||
@ -1107,6 +1062,15 @@ geoip_bridge_stats_init(time_t now)
|
||||
start_of_bridge_stats_interval = now;
|
||||
}
|
||||
|
||||
/** Stop collecting bridge stats in a way that we can re-start doing so in
|
||||
* geoip_bridge_stats_init(). */
|
||||
void
|
||||
geoip_bridge_stats_term(void)
|
||||
{
|
||||
client_history_clear();
|
||||
start_of_bridge_stats_interval = 0;
|
||||
}
|
||||
|
||||
/** Parse the bridge statistics as they are written to extra-info
|
||||
* descriptors for being returned to controller clients. Return the
|
||||
* controller string if successful, or NULL otherwise. */
|
||||
@ -1186,16 +1150,9 @@ geoip_bridge_stats_write(time_t now)
|
||||
written[ISO_TIME_LEN+1], *out = NULL, *controller_str;
|
||||
size_t len;
|
||||
|
||||
/* If we changed from relay to bridge recently, adapt starting time
|
||||
* of current measurements. */
|
||||
if (start_of_bridge_stats_interval < client_history_starts)
|
||||
start_of_bridge_stats_interval = client_history_starts;
|
||||
|
||||
/* Check if 24 hours have passed since starting measurements. */
|
||||
if (now < start_of_bridge_stats_interval +
|
||||
DIR_ENTRY_RECORD_USAGE_RETAIN_IPS)
|
||||
return start_of_bridge_stats_interval +
|
||||
DIR_ENTRY_RECORD_USAGE_RETAIN_IPS;
|
||||
if (now < start_of_bridge_stats_interval + WRITE_STATS_INTERVAL)
|
||||
return start_of_bridge_stats_interval + WRITE_STATS_INTERVAL;
|
||||
|
||||
/* Discard all items in the client history that are too old. */
|
||||
geoip_remove_old_clients(start_of_bridge_stats_interval);
|
||||
@ -1204,7 +1161,7 @@ geoip_bridge_stats_write(time_t now)
|
||||
if (check_private_dir(statsdir, CPD_CREATE) < 0)
|
||||
goto done;
|
||||
filename = get_datadir_fname2("stats", "bridge-stats");
|
||||
data = geoip_get_client_history_bridge(now, GEOIP_CLIENT_CONNECT);
|
||||
data = geoip_get_client_history(GEOIP_CLIENT_CONNECT);
|
||||
format_iso_time(written, now);
|
||||
len = strlen("bridge-stats-end (999999 s)\nbridge-ips \n") +
|
||||
ISO_TIME_LEN + (data ? strlen(data) : 0) + 42;
|
||||
@ -1230,7 +1187,7 @@ geoip_bridge_stats_write(time_t now)
|
||||
tor_free(data);
|
||||
tor_free(out);
|
||||
return start_of_bridge_stats_interval +
|
||||
DIR_ENTRY_RECORD_USAGE_RETAIN_IPS;
|
||||
WRITE_STATS_INTERVAL;
|
||||
}
|
||||
|
||||
/** Try to load the most recent bridge statistics from disk, unless we
|
||||
@ -1278,7 +1235,8 @@ geoip_get_bridge_stats_controller(time_t now)
|
||||
return bridge_stats_controller;
|
||||
}
|
||||
|
||||
/** Start time of entry stats. */
|
||||
/** Start time of entry stats or 0 if we're not collecting entry
|
||||
* statistics. */
|
||||
static time_t start_of_entry_stats_interval;
|
||||
|
||||
/** Initialize entry stats. */
|
||||
@ -1288,8 +1246,18 @@ geoip_entry_stats_init(time_t now)
|
||||
start_of_entry_stats_interval = now;
|
||||
}
|
||||
|
||||
/** Write entry statistics to $DATADIR/stats/entry-stats. */
|
||||
/** Stop collecting entry stats in a way that we can re-start doing so in
|
||||
* geoip_entry_stats_init(). */
|
||||
void
|
||||
geoip_entry_stats_term(void)
|
||||
{
|
||||
client_history_clear();
|
||||
start_of_entry_stats_interval = 0;
|
||||
}
|
||||
|
||||
/** Write entry statistics to $DATADIR/stats/entry-stats and return time
|
||||
* when we would next want to write. */
|
||||
time_t
|
||||
geoip_entry_stats_write(time_t now)
|
||||
{
|
||||
char *statsdir = NULL, *filename = NULL;
|
||||
@ -1298,8 +1266,10 @@ geoip_entry_stats_write(time_t now)
|
||||
open_file_t *open_file = NULL;
|
||||
FILE *out;
|
||||
|
||||
if (!get_options()->EntryStatistics)
|
||||
goto done;
|
||||
if (!start_of_entry_stats_interval)
|
||||
return 0; /* Not initialized. */
|
||||
if (start_of_entry_stats_interval + WRITE_STATS_INTERVAL > now)
|
||||
goto done; /* Not ready to write. */
|
||||
|
||||
/* Discard all items in the client history that are too old. */
|
||||
geoip_remove_old_clients(start_of_entry_stats_interval);
|
||||
@ -1308,7 +1278,7 @@ geoip_entry_stats_write(time_t now)
|
||||
if (check_private_dir(statsdir, CPD_CREATE) < 0)
|
||||
goto done;
|
||||
filename = get_datadir_fname2("stats", "entry-stats");
|
||||
data = geoip_get_client_history_dirreq(now, GEOIP_CLIENT_CONNECT);
|
||||
data = geoip_get_client_history(GEOIP_CLIENT_CONNECT);
|
||||
format_iso_time(written, now);
|
||||
out = start_writing_to_stdio_file(filename, OPEN_FLAGS_APPEND,
|
||||
0600, &open_file);
|
||||
@ -1329,6 +1299,7 @@ geoip_entry_stats_write(time_t now)
|
||||
tor_free(filename);
|
||||
tor_free(statsdir);
|
||||
tor_free(data);
|
||||
return start_of_entry_stats_interval + WRITE_STATS_INTERVAL;
|
||||
}
|
||||
|
||||
/** Helper used to implement GETINFO ip-to-country/... controller command. */
|
||||
|
@ -29,12 +29,8 @@ void geoip_remove_old_clients(time_t cutoff);
|
||||
|
||||
void geoip_note_ns_response(geoip_client_action_t action,
|
||||
geoip_ns_response_t response);
|
||||
time_t geoip_get_history_start(void);
|
||||
char *geoip_get_client_history_dirreq(time_t now,
|
||||
geoip_client_action_t action);
|
||||
char *geoip_get_client_history_bridge(time_t now,
|
||||
geoip_client_action_t action);
|
||||
char *geoip_get_request_history(time_t now, geoip_client_action_t action);
|
||||
char *geoip_get_client_history(geoip_client_action_t action);
|
||||
char *geoip_get_request_history(geoip_client_action_t action);
|
||||
int getinfo_helper_geoip(control_connection_t *control_conn,
|
||||
const char *question, char **answer,
|
||||
const char **errmsg);
|
||||
@ -46,11 +42,14 @@ void geoip_change_dirreq_state(uint64_t dirreq_id, dirreq_type_t type,
|
||||
dirreq_state_t new_state);
|
||||
|
||||
void geoip_dirreq_stats_init(time_t now);
|
||||
void geoip_dirreq_stats_write(time_t now);
|
||||
time_t geoip_dirreq_stats_write(time_t now);
|
||||
void geoip_dirreq_stats_term(void);
|
||||
void geoip_entry_stats_init(time_t now);
|
||||
void geoip_entry_stats_write(time_t now);
|
||||
time_t geoip_entry_stats_write(time_t now);
|
||||
void geoip_entry_stats_term(void);
|
||||
void geoip_bridge_stats_init(time_t now);
|
||||
time_t geoip_bridge_stats_write(time_t now);
|
||||
void geoip_bridge_stats_term(void);
|
||||
const char *geoip_get_bridge_stats_extrainfo(time_t);
|
||||
const char *geoip_get_bridge_stats_controller(time_t);
|
||||
|
||||
|
@ -997,42 +997,32 @@ run_scheduled_events(time_t now)
|
||||
|
||||
/* 1g. Check whether we should write statistics to disk.
|
||||
*/
|
||||
if (time_to_write_stats_files >= 0 && time_to_write_stats_files < now) {
|
||||
#define WRITE_STATS_INTERVAL (24*60*60)
|
||||
if (options->CellStatistics || options->DirReqStatistics ||
|
||||
options->EntryStatistics || options->ExitPortStatistics) {
|
||||
if (!time_to_write_stats_files) {
|
||||
/* Initialize stats. We're doing this here and not in options_act,
|
||||
* so that we know exactly when the 24 hours interval ends. */
|
||||
if (options->CellStatistics)
|
||||
rep_hist_buffer_stats_init(now);
|
||||
if (options->DirReqStatistics)
|
||||
geoip_dirreq_stats_init(now);
|
||||
if (options->EntryStatistics)
|
||||
geoip_entry_stats_init(now);
|
||||
if (options->ExitPortStatistics)
|
||||
rep_hist_exit_stats_init(now);
|
||||
log_notice(LD_CONFIG, "Configured to measure statistics. Look for "
|
||||
"the *-stats files that will first be written to the "
|
||||
"data directory in %d hours from now.",
|
||||
WRITE_STATS_INTERVAL / (60 * 60));
|
||||
time_to_write_stats_files = now + WRITE_STATS_INTERVAL;
|
||||
} else {
|
||||
/* Write stats to disk. */
|
||||
if (options->CellStatistics)
|
||||
if (time_to_write_stats_files < now) {
|
||||
#define CHECK_WRITE_STATS_INTERVAL (60*60)
|
||||
time_t next_time_to_write_stats_files = (time_to_write_stats_files > 0 ?
|
||||
time_to_write_stats_files : now) + CHECK_WRITE_STATS_INTERVAL;
|
||||
if (options->CellStatistics) {
|
||||
time_t next_write =
|
||||
rep_hist_buffer_stats_write(time_to_write_stats_files);
|
||||
if (options->DirReqStatistics)
|
||||
geoip_dirreq_stats_write(time_to_write_stats_files);
|
||||
if (options->EntryStatistics)
|
||||
geoip_entry_stats_write(time_to_write_stats_files);
|
||||
if (options->ExitPortStatistics)
|
||||
rep_hist_exit_stats_write(time_to_write_stats_files);
|
||||
time_to_write_stats_files += WRITE_STATS_INTERVAL;
|
||||
}
|
||||
} else {
|
||||
/* Never write stats to disk */
|
||||
time_to_write_stats_files = -1;
|
||||
if (next_write && next_write < next_time_to_write_stats_files)
|
||||
next_time_to_write_stats_files = next_write;
|
||||
}
|
||||
if (options->DirReqStatistics) {
|
||||
time_t next_write = geoip_dirreq_stats_write(time_to_write_stats_files);
|
||||
if (next_write && next_write < next_time_to_write_stats_files)
|
||||
next_time_to_write_stats_files = next_write;
|
||||
}
|
||||
if (options->EntryStatistics) {
|
||||
time_t next_write = geoip_entry_stats_write(time_to_write_stats_files);
|
||||
if (next_write && next_write < next_time_to_write_stats_files)
|
||||
next_time_to_write_stats_files = next_write;
|
||||
}
|
||||
if (options->ExitPortStatistics) {
|
||||
time_t next_write = rep_hist_exit_stats_write(time_to_write_stats_files);
|
||||
if (next_write && next_write < next_time_to_write_stats_files)
|
||||
next_time_to_write_stats_files = next_write;
|
||||
}
|
||||
time_to_write_stats_files = next_time_to_write_stats_files;
|
||||
}
|
||||
|
||||
/* 1h. Check whether we should write bridge statistics to disk.
|
||||
|
@ -3265,6 +3265,8 @@ typedef enum {
|
||||
DIRREQ_OR_CONN_BUFFER_FLUSHED = 4
|
||||
} dirreq_state_t;
|
||||
|
||||
#define WRITE_STATS_INTERVAL (24*60*60)
|
||||
|
||||
/********************************* microdesc.c *************************/
|
||||
|
||||
typedef struct microdesc_cache_t microdesc_cache_t;
|
||||
|
@ -6,7 +6,8 @@
|
||||
* \file rephist.c
|
||||
* \brief Basic history and "reputation" functionality to remember
|
||||
* which servers have worked in the past, how much bandwidth we've
|
||||
* been using, which ports we tend to want, and so on.
|
||||
* been using, which ports we tend to want, and so on; further,
|
||||
* exit port statistics and cell statistics.
|
||||
**/
|
||||
|
||||
#include "or.h"
|
||||
@ -1345,7 +1346,7 @@ static uint64_t *exit_bytes_written = NULL;
|
||||
/** Number of streams opened in current period by exit port */
|
||||
static uint32_t *exit_streams = NULL;
|
||||
|
||||
/** When does the current exit stats period end? */
|
||||
/** Start time of exit stats or 0 if we're not collecting exit stats. */
|
||||
static time_t start_of_exit_stats_interval;
|
||||
|
||||
/** Initialize exit port stats. */
|
||||
@ -1361,8 +1362,20 @@ rep_hist_exit_stats_init(time_t now)
|
||||
sizeof(uint32_t));
|
||||
}
|
||||
|
||||
/** Write exit stats to $DATADIR/stats/exit-stats and reset counters. */
|
||||
/** Stop collecting exit port stats in a way that we can re-start doing
|
||||
* so in rep_hist_exit_stats_init(). */
|
||||
void
|
||||
rep_hist_exit_stats_term(void)
|
||||
{
|
||||
start_of_exit_stats_interval = 0;
|
||||
tor_free(exit_bytes_read);
|
||||
tor_free(exit_bytes_written);
|
||||
tor_free(exit_streams);
|
||||
}
|
||||
|
||||
/** Write exit stats to $DATADIR/stats/exit-stats, reset counters, and
|
||||
* return when we would next want to write exit stats. */
|
||||
time_t
|
||||
rep_hist_exit_stats_write(time_t now)
|
||||
{
|
||||
char t[ISO_TIME_LEN+1];
|
||||
@ -1374,8 +1387,10 @@ rep_hist_exit_stats_write(time_t now)
|
||||
open_file_t *open_file = NULL;
|
||||
FILE *out = NULL;
|
||||
|
||||
if (!exit_streams)
|
||||
return; /* Not initialized */
|
||||
if (!start_of_exit_stats_interval)
|
||||
return 0; /* Not initialized. */
|
||||
if (start_of_exit_stats_interval + WRITE_STATS_INTERVAL > now)
|
||||
goto done; /* Not ready to write. */
|
||||
|
||||
statsdir = get_datadir_fname("stats");
|
||||
if (check_private_dir(statsdir, CPD_CREATE) < 0)
|
||||
@ -1477,6 +1492,7 @@ rep_hist_exit_stats_write(time_t now)
|
||||
abort_writing_to_file(open_file);
|
||||
tor_free(filename);
|
||||
tor_free(statsdir);
|
||||
return start_of_exit_stats_interval + WRITE_STATS_INTERVAL;
|
||||
}
|
||||
|
||||
/** Note that we wrote <b>num_bytes</b> to an exit connection to
|
||||
@ -2062,7 +2078,8 @@ rep_hist_free_all(void)
|
||||
|
||||
/*** cell statistics ***/
|
||||
|
||||
/** Start of the current buffer stats interval. */
|
||||
/** Start of the current buffer stats interval or 0 if we're not
|
||||
* collecting buffer statistics. */
|
||||
static time_t start_of_buffer_stats_interval;
|
||||
|
||||
/** Initialize buffer stats. */
|
||||
@ -2132,8 +2149,22 @@ _buffer_stats_compare_entries(const void **_a, const void **_b)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/** Write buffer statistics to $DATADIR/stats/buffer-stats. */
|
||||
/** Stop collecting cell stats in a way that we can re-start doing so in
|
||||
* rep_hist_buffer_stats_init(). */
|
||||
void
|
||||
rep_hist_buffer_stats_term(void)
|
||||
{
|
||||
start_of_buffer_stats_interval = 0;
|
||||
if (!circuits_for_buffer_stats)
|
||||
circuits_for_buffer_stats = smartlist_create();
|
||||
SMARTLIST_FOREACH(circuits_for_buffer_stats, circ_buffer_stats_t *,
|
||||
stat, tor_free(stat));
|
||||
smartlist_clear(circuits_for_buffer_stats);
|
||||
}
|
||||
|
||||
/** Write buffer statistics to $DATADIR/stats/buffer-stats and return when
|
||||
* we would next want to write exit stats. */
|
||||
time_t
|
||||
rep_hist_buffer_stats_write(time_t now)
|
||||
{
|
||||
char *statsdir = NULL, *filename = NULL;
|
||||
@ -2147,6 +2178,12 @@ rep_hist_buffer_stats_write(time_t now)
|
||||
smartlist_t *str_build = smartlist_create();
|
||||
char *str = NULL, *buf=NULL;
|
||||
circuit_t *circ;
|
||||
|
||||
if (!start_of_buffer_stats_interval)
|
||||
return 0; /* Not initialized. */
|
||||
if (start_of_buffer_stats_interval + WRITE_STATS_INTERVAL > now)
|
||||
goto done; /* Not ready to write */
|
||||
|
||||
/* add current circuits to stats */
|
||||
for (circ = _circuit_get_global_list(); circ; circ = circ->next)
|
||||
rep_hist_buffer_stats_add_circ(circ, now);
|
||||
@ -2244,5 +2281,6 @@ rep_hist_buffer_stats_write(time_t now)
|
||||
}
|
||||
tor_free(str);
|
||||
#undef SHARES
|
||||
return start_of_buffer_stats_interval + WRITE_STATS_INTERVAL;
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,8 @@ void rep_hist_note_exit_bytes_read(uint16_t port, size_t num_bytes);
|
||||
void rep_hist_note_exit_bytes_written(uint16_t port, size_t num_bytes);
|
||||
void rep_hist_note_exit_stream_opened(uint16_t port);
|
||||
void rep_hist_exit_stats_init(time_t now);
|
||||
void rep_hist_exit_stats_write(time_t now);
|
||||
time_t rep_hist_exit_stats_write(time_t now);
|
||||
void rep_hist_exit_stats_term(void);
|
||||
int rep_hist_bandwidth_assess(void);
|
||||
char *rep_hist_get_bandwidth_lines(int for_extrainfo);
|
||||
void rep_hist_update_state(or_state_t *state);
|
||||
@ -73,7 +74,8 @@ void hs_usage_free_all(void);
|
||||
void rep_hist_buffer_stats_init(time_t now);
|
||||
void rep_hist_buffer_stats_add_circ(circuit_t *circ,
|
||||
time_t end_of_interval);
|
||||
void rep_hist_buffer_stats_write(time_t now);
|
||||
time_t rep_hist_buffer_stats_write(time_t now);
|
||||
void rep_hist_buffer_stats_term(void);
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -1135,16 +1135,14 @@ test_geoip(void)
|
||||
/* and 17 observations in ZZ... */
|
||||
for (i=110; i < 127; ++i)
|
||||
geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now);
|
||||
s = geoip_get_client_history_bridge(now+5*24*60*60,
|
||||
GEOIP_CLIENT_CONNECT);
|
||||
s = geoip_get_client_history(GEOIP_CLIENT_CONNECT);
|
||||
test_assert(s);
|
||||
test_streq("zz=24,ab=16,xy=8", s);
|
||||
tor_free(s);
|
||||
|
||||
/* Now clear out all the AB observations. */
|
||||
geoip_remove_old_clients(now-6000);
|
||||
s = geoip_get_client_history_bridge(now+5*24*60*60,
|
||||
GEOIP_CLIENT_CONNECT);
|
||||
s = geoip_get_client_history(GEOIP_CLIENT_CONNECT);
|
||||
test_assert(s);
|
||||
test_streq("zz=24,xy=8", s);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user