2004-03-20 02:48:05 +01:00
|
|
|
/* Copyright 2004 Roger Dingledine */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/**
|
|
|
|
* \file rephist.c
|
|
|
|
* \brief Basic history functionality for reputation module.
|
|
|
|
**/
|
2004-05-05 23:32:43 +02:00
|
|
|
|
2004-03-20 02:48:05 +01:00
|
|
|
#include "or.h"
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** History of an OR-\>OR link. */
|
2004-03-20 02:48:05 +01:00
|
|
|
typedef struct link_history_t {
|
2004-05-10 06:34:48 +02:00
|
|
|
/** When did we start tracking this list? */
|
2004-03-20 02:48:05 +01:00
|
|
|
time_t since;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** How many times did extending from OR1 to OR2 succeeed? */
|
2004-03-20 02:48:05 +01:00
|
|
|
unsigned long n_extend_ok;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** How many times did extending from OR1 to OR2 fail? */
|
2004-03-20 02:48:05 +01:00
|
|
|
unsigned long n_extend_fail;
|
|
|
|
} link_history_t;
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** History of an OR. */
|
2004-03-20 02:48:05 +01:00
|
|
|
typedef struct or_history_t {
|
2004-05-10 06:34:48 +02:00
|
|
|
/** When did we start tracking this OR? */
|
2004-03-20 02:48:05 +01:00
|
|
|
time_t since;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** How many times did we successfully connect? */
|
2004-03-20 02:48:05 +01:00
|
|
|
unsigned long n_conn_ok;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** How many times did we try to connect and fail?*/
|
2004-03-20 02:48:05 +01:00
|
|
|
unsigned long n_conn_fail;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** How many seconds have we been connected to this OR before
|
2004-05-05 23:32:43 +02:00
|
|
|
* 'up_since'? */
|
2004-03-20 02:48:05 +01:00
|
|
|
unsigned long uptime;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** How many seconds have we been unable to connect to this OR before
|
2004-05-05 23:32:43 +02:00
|
|
|
* 'down_since'? */
|
2004-03-20 02:48:05 +01:00
|
|
|
unsigned long downtime;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** If nonzero, we have been connected since this time. */
|
2004-03-20 02:48:05 +01:00
|
|
|
time_t up_since;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** If nonzero, we have been unable to connect since this time. */
|
2004-03-20 02:48:05 +01:00
|
|
|
time_t down_since;
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Map from lowercased OR2 name to a link_history_t for the link
|
2004-05-05 23:32:43 +02:00
|
|
|
* from this OR to OR2. */
|
2004-03-20 02:48:05 +01:00
|
|
|
strmap_t *link_history_map;
|
|
|
|
} or_history_t;
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Map from lowercased OR nickname to or_history_t. */
|
2004-05-05 23:32:43 +02:00
|
|
|
static strmap_t *history_map = NULL;
|
2004-03-20 02:48:05 +01:00
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Return the or_history_t for the named OR, creating it if necessary.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
static or_history_t *get_or_history(const char* nickname)
|
|
|
|
{
|
|
|
|
or_history_t *hist;
|
|
|
|
hist = (or_history_t*) strmap_get(history_map, nickname);
|
|
|
|
if (!hist) {
|
|
|
|
hist = tor_malloc_zero(sizeof(or_history_t));
|
|
|
|
hist->link_history_map = strmap_new();
|
|
|
|
hist->since = time(NULL);
|
|
|
|
strmap_set(history_map, nickname, hist);
|
|
|
|
}
|
|
|
|
return hist;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Return the link_history_t for the link from the first named OR to
|
2004-03-20 05:59:29 +01:00
|
|
|
* the second, creating it if necessary.
|
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
static link_history_t *get_link_history(const char *from_name,
|
2004-04-03 04:14:20 +02:00
|
|
|
const char *to_name)
|
2004-03-20 02:48:05 +01:00
|
|
|
{
|
|
|
|
or_history_t *orhist;
|
|
|
|
link_history_t *lhist;
|
|
|
|
orhist = get_or_history(from_name);
|
|
|
|
lhist = (link_history_t*) strmap_get(orhist->link_history_map, to_name);
|
|
|
|
if (!lhist) {
|
|
|
|
lhist = tor_malloc_zero(sizeof(link_history_t));
|
|
|
|
lhist->since = time(NULL);
|
|
|
|
strmap_set(orhist->link_history_map, to_name, lhist);
|
|
|
|
}
|
|
|
|
return lhist;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Update an or_history_t object <b>hist</b> so that its uptime/downtime
|
|
|
|
* count is up-to-date as of <b>when</b>.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
static void update_or_history(or_history_t *hist, time_t when)
|
|
|
|
{
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(hist);
|
2004-03-20 02:48:05 +01:00
|
|
|
if (hist->up_since) {
|
2004-04-25 22:37:37 +02:00
|
|
|
tor_assert(!hist->down_since);
|
2004-03-20 02:48:05 +01:00
|
|
|
hist->uptime += (when - hist->up_since);
|
|
|
|
hist->up_since = when;
|
|
|
|
} else if (hist->down_since) {
|
|
|
|
hist->downtime += (when - hist->down_since);
|
|
|
|
hist->down_since = when;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Initialize the static data structures for tracking history.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
void rep_hist_init(void)
|
|
|
|
{
|
|
|
|
history_map = strmap_new();
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Remember that an attempt to connect to the OR <b>nickname</b> failed at
|
|
|
|
* <b>when</b>.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
void rep_hist_note_connect_failed(const char* nickname, time_t when)
|
|
|
|
{
|
|
|
|
or_history_t *hist;
|
|
|
|
hist = get_or_history(nickname);
|
|
|
|
++hist->n_conn_fail;
|
|
|
|
if (hist->up_since) {
|
|
|
|
hist->uptime += (when - hist->up_since);
|
|
|
|
hist->up_since = 0;
|
|
|
|
}
|
|
|
|
if (!hist->down_since)
|
|
|
|
hist->down_since = when;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Remember that an attempt to connect to the OR <b>nickname</b> succeeded
|
|
|
|
* at <b>when</b>.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
void rep_hist_note_connect_succeeded(const char* nickname, time_t when)
|
|
|
|
{
|
|
|
|
or_history_t *hist;
|
|
|
|
hist = get_or_history(nickname);
|
|
|
|
++hist->n_conn_ok;
|
|
|
|
if (hist->down_since) {
|
|
|
|
hist->downtime += (when - hist->down_since);
|
|
|
|
hist->down_since = 0;
|
|
|
|
}
|
|
|
|
if (!hist->up_since)
|
|
|
|
hist->up_since = when;
|
|
|
|
}
|
2004-03-20 05:59:29 +01:00
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Remember that we intentionally closed our connection to the OR
|
|
|
|
* <b>nickname</b> at <b>when</b>.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
|
|
|
void rep_hist_note_disconnect(const char* nickname, time_t when)
|
|
|
|
{
|
|
|
|
or_history_t *hist;
|
|
|
|
hist = get_or_history(nickname);
|
|
|
|
++hist->n_conn_ok;
|
|
|
|
if (hist->up_since) {
|
|
|
|
hist->uptime += (when - hist->up_since);
|
|
|
|
hist->up_since = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Remember that our connection to the OR <b>nickname</b> had an error and
|
|
|
|
* stopped working at <b>when</b>.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
void rep_hist_note_connection_died(const char* nickname, time_t when)
|
|
|
|
{
|
|
|
|
or_history_t *hist;
|
2004-03-20 21:37:49 +01:00
|
|
|
if(!nickname) {
|
2004-05-18 17:35:21 +02:00
|
|
|
/* If conn has no nickname, it's either an OP, or it is an OR
|
2004-03-20 21:37:49 +01:00
|
|
|
* which didn't complete its handshake (or did and was unapproved).
|
2004-05-18 17:35:21 +02:00
|
|
|
* Ignore it.
|
2004-03-20 21:37:49 +01:00
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
2004-03-20 02:48:05 +01:00
|
|
|
hist = get_or_history(nickname);
|
|
|
|
if (hist->up_since) {
|
|
|
|
hist->uptime += (when - hist->up_since);
|
|
|
|
hist->up_since = 0;
|
|
|
|
}
|
|
|
|
if (!hist->down_since)
|
|
|
|
hist->down_since = when;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Remember that we successfully extended from the OR <b>from_name</b> to
|
|
|
|
* the OR <b>to_name</b>.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
void rep_hist_note_extend_succeeded(const char *from_name,
|
2004-04-03 04:14:20 +02:00
|
|
|
const char *to_name)
|
2004-03-20 02:48:05 +01:00
|
|
|
{
|
|
|
|
link_history_t *hist;
|
2004-03-20 05:59:29 +01:00
|
|
|
/* log_fn(LOG_WARN, "EXTEND SUCCEEDED: %s->%s",from_name,to_name); */
|
2004-03-20 02:48:05 +01:00
|
|
|
hist = get_link_history(from_name, to_name);
|
|
|
|
++hist->n_extend_ok;
|
|
|
|
}
|
2004-03-20 05:59:29 +01:00
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Remember that we tried to extend from the OR <b>from_name</b> to the OR
|
|
|
|
* <b>to_name</b>, but failed.
|
2004-03-20 05:59:29 +01:00
|
|
|
*/
|
2004-03-20 02:48:05 +01:00
|
|
|
void rep_hist_note_extend_failed(const char *from_name, const char *to_name)
|
|
|
|
{
|
|
|
|
link_history_t *hist;
|
2004-03-20 05:59:29 +01:00
|
|
|
/* log_fn(LOG_WARN, "EXTEND FAILED: %s->%s",from_name,to_name); */
|
2004-03-20 02:48:05 +01:00
|
|
|
hist = get_link_history(from_name, to_name);
|
|
|
|
++hist->n_extend_fail;
|
|
|
|
}
|
|
|
|
|
2004-05-10 06:34:48 +02:00
|
|
|
/** Log all the reliability data we have rememberred, with the chosen
|
2004-03-20 05:59:29 +01:00
|
|
|
* severity.
|
|
|
|
*/
|
|
|
|
void rep_hist_dump_stats(time_t now, int severity)
|
2004-03-20 02:48:05 +01:00
|
|
|
{
|
|
|
|
strmap_iter_t *lhist_it;
|
|
|
|
strmap_iter_t *orhist_it;
|
|
|
|
const char *name1, *name2;
|
|
|
|
or_history_t *or_history;
|
|
|
|
link_history_t *link_history;
|
2004-03-29 08:18:04 +02:00
|
|
|
void *or_history_p, *link_history_p;
|
2004-03-20 02:48:05 +01:00
|
|
|
double uptime;
|
|
|
|
char buffer[2048];
|
|
|
|
int len;
|
2004-03-20 05:59:29 +01:00
|
|
|
unsigned long upt, downt;
|
2004-03-20 02:48:05 +01:00
|
|
|
|
2004-03-20 05:59:29 +01:00
|
|
|
log(severity, "--------------- Dumping history information:");
|
2004-03-20 02:48:05 +01:00
|
|
|
|
|
|
|
for (orhist_it = strmap_iter_init(history_map); !strmap_iter_done(orhist_it);
|
|
|
|
orhist_it = strmap_iter_next(history_map,orhist_it)) {
|
2004-03-29 08:18:04 +02:00
|
|
|
strmap_iter_get(orhist_it, &name1, &or_history_p);
|
|
|
|
or_history = (or_history_t*) or_history_p;
|
2004-03-20 02:48:05 +01:00
|
|
|
|
|
|
|
update_or_history(or_history, now);
|
2004-03-20 05:59:29 +01:00
|
|
|
upt = or_history->uptime;
|
|
|
|
downt = or_history->downtime;
|
|
|
|
if (upt+downt) {
|
|
|
|
uptime = ((double)upt) / (upt+downt);
|
|
|
|
} else {
|
|
|
|
uptime=1.0;
|
|
|
|
}
|
|
|
|
log(severity,
|
|
|
|
"OR %s: %ld/%ld good connections; uptime %ld/%ld sec (%.2f%%)",
|
2004-04-03 04:14:20 +02:00
|
|
|
name1,
|
|
|
|
or_history->n_conn_ok, or_history->n_conn_fail+or_history->n_conn_ok,
|
2004-03-20 05:59:29 +01:00
|
|
|
upt, upt+downt, uptime*100.0);
|
2004-03-20 02:48:05 +01:00
|
|
|
|
|
|
|
strcpy(buffer, " Good extend attempts: ");
|
|
|
|
len = strlen(buffer);
|
|
|
|
for (lhist_it = strmap_iter_init(or_history->link_history_map);
|
2004-04-03 04:14:20 +02:00
|
|
|
!strmap_iter_done(lhist_it);
|
|
|
|
lhist_it = strmap_iter_next(or_history->link_history_map, lhist_it)) {
|
2004-03-29 08:18:04 +02:00
|
|
|
strmap_iter_get(lhist_it, &name2, &link_history_p);
|
|
|
|
link_history = (link_history_t*) link_history_p;
|
2004-03-20 02:48:05 +01:00
|
|
|
len += snprintf(buffer+len, 2048-len, "%s(%ld/%ld); ", name2,
|
2004-04-03 04:14:20 +02:00
|
|
|
link_history->n_extend_ok,
|
|
|
|
link_history->n_extend_ok+link_history->n_extend_fail);
|
2004-03-20 02:48:05 +01:00
|
|
|
if (len >= 2048) {
|
2004-04-03 04:14:20 +02:00
|
|
|
buffer[2047]='\0';
|
|
|
|
break;
|
2004-03-20 02:48:05 +01:00
|
|
|
}
|
|
|
|
}
|
2004-03-20 05:59:29 +01:00
|
|
|
log(severity, buffer);
|
2004-03-20 02:48:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-25 02:29:31 +02:00
|
|
|
#if 0
|
|
|
|
void write_rep_history(const char *filename)
|
|
|
|
{
|
|
|
|
FILE *f = NULL;
|
|
|
|
char *tmpfile;
|
|
|
|
int completed = 0;
|
|
|
|
or_history_t *or_history;
|
|
|
|
link_history_t *link_history;
|
|
|
|
strmap_iter_t *lhist_it;
|
|
|
|
strmap_iter_t *orhist_it;
|
|
|
|
void *or_history_p, *link_history_p;
|
|
|
|
const char *name1;
|
|
|
|
|
|
|
|
tmpfile = tor_malloc(strlen(filename)+5);
|
|
|
|
strcpy(tmpfile, filename);
|
|
|
|
strcat(tmpfile, "_tmp");
|
|
|
|
|
|
|
|
f = fopen(tmpfile, "w");
|
|
|
|
if (!f) goto done;
|
|
|
|
for (orhist_it = strmap_iter_init(history_map); !strmap_iter_done(orhist_it);
|
|
|
|
orhist_it = strmap_iter_next(history_map,orhist_it)) {
|
|
|
|
strmap_iter_get(orhist_it, &name1, &or_history_p);
|
|
|
|
or_history = (or_history_t*) or_history_p;
|
|
|
|
fprintf(f, "link %s connected:u%ld failed:%uld uptime:%uld",
|
|
|
|
name1, or_history->since1,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (f)
|
|
|
|
fclose(f);
|
|
|
|
if (completed)
|
|
|
|
replace_file(filename, tmpfile);
|
|
|
|
else
|
|
|
|
unlink(tmpfile);
|
|
|
|
tor_free(tmpfile);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-03-20 02:48:05 +01:00
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
mode:c
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
c-basic-offset:2
|
|
|
|
End:
|
|
|
|
*/
|