2015-01-02 20:27:39 +01:00
|
|
|
/* Copyright (c) 2010-2015, The Tor Project, Inc. */
|
2010-12-01 02:24:03 +01:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file status.c
|
|
|
|
* \brief Keep status information and log the heartbeat messages.
|
|
|
|
**/
|
|
|
|
|
2014-04-15 14:20:34 +02:00
|
|
|
#define STATUS_PRIVATE
|
|
|
|
|
2010-12-01 02:24:03 +01:00
|
|
|
#include "or.h"
|
2014-04-29 20:02:12 +02:00
|
|
|
#include "circuituse.h"
|
2010-12-01 02:32:42 +01:00
|
|
|
#include "config.h"
|
|
|
|
#include "status.h"
|
|
|
|
#include "nodelist.h"
|
2012-12-18 21:16:35 +01:00
|
|
|
#include "relay.h"
|
2010-12-01 02:32:42 +01:00
|
|
|
#include "router.h"
|
|
|
|
#include "circuitlist.h"
|
|
|
|
#include "main.h"
|
2013-12-24 17:41:48 +01:00
|
|
|
#include "rephist.h"
|
2013-03-12 01:50:02 +01:00
|
|
|
#include "hibernate.h"
|
2014-02-06 19:25:36 +01:00
|
|
|
#include "rephist.h"
|
2013-06-12 10:51:39 +02:00
|
|
|
#include "statefile.h"
|
2010-12-01 02:24:03 +01:00
|
|
|
|
2013-08-21 19:41:15 +02:00
|
|
|
static void log_accounting(const time_t now, const or_options_t *options);
|
2013-02-26 11:43:53 +01:00
|
|
|
#include "geoip.h"
|
2013-08-21 19:41:15 +02:00
|
|
|
|
2011-02-22 18:36:46 +01:00
|
|
|
/** Return the total number of circuits. */
|
2014-04-15 14:20:34 +02:00
|
|
|
STATIC int
|
2010-12-01 02:32:42 +01:00
|
|
|
count_circuits(void)
|
|
|
|
{
|
2014-08-15 22:32:32 +02:00
|
|
|
return smartlist_len(circuit_get_global_list());
|
2010-12-01 02:32:42 +01:00
|
|
|
}
|
|
|
|
|
2011-02-22 18:36:46 +01:00
|
|
|
/** Take seconds <b>secs</b> and return a newly allocated human-readable
|
|
|
|
* uptime string */
|
2014-04-15 14:20:34 +02:00
|
|
|
STATIC char *
|
2010-12-01 02:32:42 +01:00
|
|
|
secs_to_uptime(long secs)
|
|
|
|
{
|
|
|
|
long int days = secs / 86400;
|
2011-02-24 07:19:09 +01:00
|
|
|
int hours = (int)((secs - (days * 86400)) / 3600);
|
|
|
|
int minutes = (int)((secs - (days * 86400) - (hours * 3600)) / 60);
|
2010-12-01 02:32:42 +01:00
|
|
|
char *uptime_string = NULL;
|
|
|
|
|
|
|
|
switch (days) {
|
|
|
|
case 0:
|
2011-05-16 21:58:01 +02:00
|
|
|
tor_asprintf(&uptime_string, "%d:%02d hours", hours, minutes);
|
2010-12-01 02:32:42 +01:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-05-16 21:58:01 +02:00
|
|
|
tor_asprintf(&uptime_string, "%ld day %d:%02d hours",
|
|
|
|
days, hours, minutes);
|
2010-12-01 02:32:42 +01:00
|
|
|
break;
|
|
|
|
default:
|
2011-05-16 21:58:01 +02:00
|
|
|
tor_asprintf(&uptime_string, "%ld days %d:%02d hours",
|
|
|
|
days, hours, minutes);
|
2010-12-01 02:32:42 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return uptime_string;
|
|
|
|
}
|
|
|
|
|
2011-02-22 18:36:46 +01:00
|
|
|
/** Take <b>bytes</b> and returns a newly allocated human-readable usage
|
|
|
|
* string. */
|
2014-04-15 14:20:34 +02:00
|
|
|
STATIC char *
|
2011-02-22 18:36:46 +01:00
|
|
|
bytes_to_usage(uint64_t bytes)
|
2010-12-01 02:32:42 +01:00
|
|
|
{
|
|
|
|
char *bw_string = NULL;
|
2010-12-01 02:24:03 +01:00
|
|
|
|
2011-02-22 18:36:46 +01:00
|
|
|
if (bytes < (1<<20)) { /* Less than a megabyte. */
|
2010-12-01 02:32:42 +01:00
|
|
|
tor_asprintf(&bw_string, U64_FORMAT" kB", U64_PRINTF_ARG(bytes>>10));
|
2011-02-22 18:36:46 +01:00
|
|
|
} else if (bytes < (1<<30)) { /* Megabytes. Let's add some precision. */
|
2010-12-01 02:32:42 +01:00
|
|
|
double bw = U64_TO_DBL(bytes);
|
|
|
|
tor_asprintf(&bw_string, "%.2f MB", bw/(1<<20));
|
2011-02-22 18:36:46 +01:00
|
|
|
} else { /* Gigabytes. */
|
2010-12-01 02:32:42 +01:00
|
|
|
double bw = U64_TO_DBL(bytes);
|
|
|
|
tor_asprintf(&bw_string, "%.2f GB", bw/(1<<30));
|
|
|
|
}
|
2010-12-01 02:24:03 +01:00
|
|
|
|
2010-12-01 02:32:42 +01:00
|
|
|
return bw_string;
|
|
|
|
}
|
|
|
|
|
2011-02-22 18:36:46 +01:00
|
|
|
/** Log a "heartbeat" message describing Tor's status and history so that the
|
|
|
|
* user can know that there is indeed a running Tor. Return 0 on success and
|
|
|
|
* -1 on failure. */
|
2010-12-01 02:32:42 +01:00
|
|
|
int
|
|
|
|
log_heartbeat(time_t now)
|
|
|
|
{
|
|
|
|
char *bw_sent = NULL;
|
|
|
|
char *bw_rcvd = NULL;
|
|
|
|
char *uptime = NULL;
|
|
|
|
const routerinfo_t *me;
|
2013-03-12 03:06:07 +01:00
|
|
|
double r = tls_get_write_overhead_ratio();
|
2013-03-12 01:50:02 +01:00
|
|
|
const int hibernating = we_are_hibernating();
|
2010-12-01 02:32:42 +01:00
|
|
|
|
2011-06-14 19:01:38 +02:00
|
|
|
const or_options_t *options = get_options();
|
2010-12-01 02:24:03 +01:00
|
|
|
|
2013-03-12 01:50:02 +01:00
|
|
|
if (public_server_mode(options) && !hibernating) {
|
2010-12-01 02:32:42 +01:00
|
|
|
/* Let's check if we are in the current cached consensus. */
|
|
|
|
if (!(me = router_get_my_routerinfo()))
|
|
|
|
return -1; /* Something stinks, we won't even attempt this. */
|
|
|
|
else
|
2011-06-08 21:10:43 +02:00
|
|
|
if (!node_get_by_id(me->cache_info.identity_digest))
|
2010-12-01 02:32:42 +01:00
|
|
|
log_fn(LOG_NOTICE, LD_HEARTBEAT, "Heartbeat: It seems like we are not "
|
|
|
|
"in the cached consensus.");
|
|
|
|
}
|
2010-12-01 02:24:03 +01:00
|
|
|
|
2010-12-01 02:32:42 +01:00
|
|
|
uptime = secs_to_uptime(get_uptime());
|
2011-04-16 14:48:46 +02:00
|
|
|
bw_rcvd = bytes_to_usage(get_bytes_read());
|
|
|
|
bw_sent = bytes_to_usage(get_bytes_written());
|
2010-12-01 02:24:03 +01:00
|
|
|
|
2010-12-01 02:32:42 +01:00
|
|
|
log_fn(LOG_NOTICE, LD_HEARTBEAT, "Heartbeat: Tor's uptime is %s, with %d "
|
2013-03-12 01:50:02 +01:00
|
|
|
"circuits open. I've sent %s and received %s.%s",
|
|
|
|
uptime, count_circuits(),bw_sent,bw_rcvd,
|
|
|
|
hibernating?" We are currently hibernating.":"");
|
2010-12-01 02:32:42 +01:00
|
|
|
|
2013-06-12 10:51:39 +02:00
|
|
|
if (server_mode(options) && accounting_is_enabled(options) && !hibernating) {
|
|
|
|
log_accounting(now, options);
|
|
|
|
}
|
|
|
|
|
2013-03-12 01:50:02 +01:00
|
|
|
if (stats_n_data_cells_packaged && !hibernating)
|
2013-02-01 21:43:37 +01:00
|
|
|
log_notice(LD_HEARTBEAT, "Average packaged cell fullness: %2.3f%%",
|
2012-12-18 21:16:35 +01:00
|
|
|
100*(U64_TO_DBL(stats_n_data_bytes_packaged) /
|
|
|
|
U64_TO_DBL(stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) );
|
|
|
|
|
2013-03-12 03:06:07 +01:00
|
|
|
if (r > 1.0) {
|
|
|
|
double overhead = ( r - 1.0 ) * 100.0;
|
|
|
|
log_notice(LD_HEARTBEAT, "TLS write overhead: %.f%%", overhead);
|
|
|
|
}
|
|
|
|
|
2013-12-24 17:41:48 +01:00
|
|
|
if (public_server_mode(options))
|
|
|
|
rep_hist_log_circuit_handshake_stats(now);
|
|
|
|
|
2014-04-29 20:02:12 +02:00
|
|
|
circuit_log_ancient_one_hop_circuits(1800);
|
|
|
|
|
2015-02-16 21:40:15 +01:00
|
|
|
if (options->BridgeRelay) {
|
2013-02-26 11:43:53 +01:00
|
|
|
char *msg = NULL;
|
|
|
|
msg = format_client_stats_heartbeat(now);
|
|
|
|
if (msg)
|
|
|
|
log_notice(LD_HEARTBEAT, "%s", msg);
|
|
|
|
tor_free(msg);
|
|
|
|
}
|
|
|
|
|
2010-12-01 02:32:42 +01:00
|
|
|
tor_free(uptime);
|
|
|
|
tor_free(bw_sent);
|
|
|
|
tor_free(bw_rcvd);
|
|
|
|
|
|
|
|
return 0;
|
2010-12-01 02:24:03 +01:00
|
|
|
}
|
2010-12-01 02:32:42 +01:00
|
|
|
|
2013-08-21 19:41:15 +02:00
|
|
|
static void
|
2013-06-12 10:51:39 +02:00
|
|
|
log_accounting(const time_t now, const or_options_t *options)
|
|
|
|
{
|
|
|
|
or_state_t *state = get_or_state();
|
|
|
|
char *acc_rcvd = bytes_to_usage(state->AccountingBytesReadInInterval);
|
|
|
|
char *acc_sent = bytes_to_usage(state->AccountingBytesWrittenInInterval);
|
2014-09-23 14:34:22 +02:00
|
|
|
uint64_t acc_bytes = options->AccountingMax;
|
|
|
|
char *acc_max;
|
2013-06-12 10:51:39 +02:00
|
|
|
time_t interval_end = accounting_get_end_time();
|
|
|
|
char end_buf[ISO_TIME_LEN + 1];
|
|
|
|
char *remaining = NULL;
|
2014-09-23 14:46:35 +02:00
|
|
|
if (options->AccountingRule == ACCT_SUM)
|
2014-09-23 14:34:22 +02:00
|
|
|
acc_bytes *= 2;
|
|
|
|
acc_max = bytes_to_usage(acc_bytes);
|
2013-06-12 10:51:39 +02:00
|
|
|
format_local_iso_time(end_buf, interval_end);
|
|
|
|
remaining = secs_to_uptime(interval_end - now);
|
|
|
|
|
2013-08-21 19:41:15 +02:00
|
|
|
log_notice(LD_HEARTBEAT, "Heartbeat: Accounting enabled. "
|
2013-06-12 10:51:39 +02:00
|
|
|
"Sent: %s / %s, Received: %s / %s. The "
|
2013-08-21 19:41:15 +02:00
|
|
|
"current accounting interval ends on %s, in %s.",
|
2013-06-12 10:51:39 +02:00
|
|
|
acc_sent, acc_max, acc_rcvd, acc_max, end_buf, remaining);
|
|
|
|
|
|
|
|
tor_free(acc_rcvd);
|
|
|
|
tor_free(acc_sent);
|
|
|
|
tor_free(acc_max);
|
|
|
|
tor_free(remaining);
|
|
|
|
}
|
2013-08-21 19:41:15 +02:00
|
|
|
|