2006-02-09 06:46:49 +01:00
|
|
|
/* Copyright 2004-2006 Roger Dingledine, Nick Mathewson. */
|
2004-10-31 21:29:25 +01:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
2005-12-14 21:40:40 +01:00
|
|
|
const char hibernate_c_id[] =
|
|
|
|
"$Id$";
|
2004-10-31 21:29:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \file hibernate.c
|
|
|
|
* \brief Functions to close listeners, stop allowing new circuits,
|
2004-11-05 00:39:57 +01:00
|
|
|
* etc in preparation for closing down or going dormant; and to track
|
|
|
|
* bandwidth and time intervals to know when to hibernate and when to
|
|
|
|
* stop hibernating.
|
2004-10-31 21:29:25 +01:00
|
|
|
**/
|
|
|
|
|
|
|
|
/*
|
|
|
|
hibernating, phase 1:
|
|
|
|
- send destroy in response to create cells
|
|
|
|
- send end (policy failed) in response to begin cells
|
|
|
|
- close an OR conn when it has no circuits
|
|
|
|
|
|
|
|
hibernating, phase 2:
|
|
|
|
(entered when bandwidth hard limit reached)
|
|
|
|
- close all OR/AP/exit conns)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "or.h"
|
|
|
|
|
2007-02-02 21:06:43 +01:00
|
|
|
/** DOCDOC */
|
2004-10-31 21:29:25 +01:00
|
|
|
#define HIBERNATE_STATE_LIVE 1
|
2007-02-02 21:06:43 +01:00
|
|
|
/** DOCDOC */
|
2004-10-31 21:29:25 +01:00
|
|
|
#define HIBERNATE_STATE_EXITING 2
|
2007-02-02 21:06:43 +01:00
|
|
|
/** DOCDOC */
|
2004-10-31 21:29:25 +01:00
|
|
|
#define HIBERNATE_STATE_LOWBANDWIDTH 3
|
2007-02-02 21:06:43 +01:00
|
|
|
/** DOCDOC */
|
2004-10-31 21:29:25 +01:00
|
|
|
#define HIBERNATE_STATE_DORMANT 4
|
|
|
|
|
2005-01-14 18:49:25 +01:00
|
|
|
extern long stats_n_seconds_working; /* published uptime */
|
|
|
|
|
2007-02-02 21:06:43 +01:00
|
|
|
/** DOCDOC */
|
2004-11-04 23:33:06 +01:00
|
|
|
static int hibernate_state = HIBERNATE_STATE_LIVE;
|
2004-11-08 00:14:47 +01:00
|
|
|
/** If are hibernating, when do we plan to wake up? Set to 0 if we
|
|
|
|
* aren't hibernating. */
|
|
|
|
static time_t hibernate_end_time = 0;
|
|
|
|
|
2007-02-02 21:06:43 +01:00
|
|
|
/** DOCDOC */
|
2004-11-12 17:39:03 +01:00
|
|
|
typedef enum {
|
2004-11-22 22:56:51 +01:00
|
|
|
UNIT_MONTH=1, UNIT_WEEK=2, UNIT_DAY=3,
|
2004-11-12 17:39:03 +01:00
|
|
|
} time_unit_t;
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/* Fields for accounting logic. Accounting overview:
|
|
|
|
*
|
2004-11-09 03:12:41 +01:00
|
|
|
* Accounting is designed to ensure that no more than N bytes are sent
|
|
|
|
* in either direction over a given interval (currently, one month,
|
|
|
|
* starting at 0:00 GMT an arbitrary day within the month). We could
|
2004-11-08 00:14:47 +01:00
|
|
|
* try to do this by choking our bandwidth to a trickle, but that
|
|
|
|
* would make our streams useless. Instead, we estimate what our
|
|
|
|
* bandwidth usage will be, and guess how long we'll be able to
|
|
|
|
* provide that much bandwidth before hitting our limit. We then
|
|
|
|
* choose a random time within the accounting interval to come up (so
|
|
|
|
* that we don't get 50 Tors running on the 1st of the month and none
|
|
|
|
* on the 30th).
|
|
|
|
*
|
|
|
|
* Each interval runs as follows:
|
|
|
|
*
|
|
|
|
* 1. We guess our bandwidth usage, based on how much we used
|
|
|
|
* last time. We choose a "wakeup time" within the interval to come up.
|
|
|
|
* 2. Until the chosen wakeup time, we hibernate.
|
|
|
|
* 3. We come up at the wakeup time, and provide bandwidth until we are
|
|
|
|
* "very close" to running out.
|
|
|
|
* 4. Then we go into low-bandwidth mode, and stop accepting new
|
|
|
|
* connections, but provide bandwidth until we run out.
|
|
|
|
* 5. Then we hibernate until the end of the interval.
|
|
|
|
*
|
2004-12-01 04:48:14 +01:00
|
|
|
* If the interval ends before we run out of bandwidth, we go back to
|
2004-11-08 00:14:47 +01:00
|
|
|
* step one.
|
|
|
|
*/
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2007-02-02 21:06:43 +01:00
|
|
|
/** How many bytes have we read in this accounting interval? */
|
2004-11-04 23:33:06 +01:00
|
|
|
static uint64_t n_bytes_read_in_interval = 0;
|
2007-02-02 21:06:43 +01:00
|
|
|
/** How many bytes have we written in this accounting interval? */
|
2004-11-04 23:33:06 +01:00
|
|
|
static uint64_t n_bytes_written_in_interval = 0;
|
2004-11-05 18:55:34 +01:00
|
|
|
/** How many seconds have we been running this interval? */
|
2004-11-04 23:33:06 +01:00
|
|
|
static uint32_t n_seconds_active_in_interval = 0;
|
|
|
|
/** When did this accounting interval start? */
|
|
|
|
static time_t interval_start_time = 0;
|
|
|
|
/** When will this accounting interval end? */
|
|
|
|
static time_t interval_end_time = 0;
|
|
|
|
/** How far into the accounting interval should we hibernate? */
|
|
|
|
static time_t interval_wakeup_time = 0;
|
2004-11-23 23:34:23 +01:00
|
|
|
/** How much bandwidth do we 'expect' to use per minute? (0 if we have no
|
|
|
|
* info from the last period.) */
|
2006-12-17 17:37:46 +01:00
|
|
|
static uint64_t expected_bandwidth_usage = 0;
|
2004-11-22 22:56:51 +01:00
|
|
|
/** What unit are we using for our accounting? */
|
|
|
|
static time_unit_t cfg_unit = UNIT_MONTH;
|
|
|
|
/** How many days,hours,minutes into each unit does our accounting interval
|
|
|
|
* start? */
|
|
|
|
static int cfg_start_day = 0;
|
|
|
|
static int cfg_start_hour = 0;
|
|
|
|
static int cfg_start_min = 0;
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2004-11-05 18:55:34 +01:00
|
|
|
static void reset_accounting(time_t now);
|
2004-11-04 23:33:06 +01:00
|
|
|
static int read_bandwidth_usage(void);
|
|
|
|
static time_t start_of_accounting_period_after(time_t now);
|
|
|
|
static time_t start_of_accounting_period_containing(time_t now);
|
|
|
|
static void accounting_set_wakeup_time(void);
|
|
|
|
|
|
|
|
/* ************
|
|
|
|
* Functions for bandwidth accounting.
|
|
|
|
* ************/
|
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
/** Configure accounting start/end time settings based on
|
|
|
|
* options->AccountingStart. Return 0 on success, -1 on failure. If
|
|
|
|
* <b>validate_only</b> is true, do not change the current settings. */
|
|
|
|
int
|
|
|
|
accounting_parse_options(or_options_t *options, int validate_only)
|
|
|
|
{
|
|
|
|
time_unit_t unit;
|
|
|
|
int ok, idx;
|
|
|
|
long d,h,m;
|
|
|
|
smartlist_t *items;
|
|
|
|
const char *v = options->AccountingStart;
|
|
|
|
const char *s;
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
if (!v) {
|
|
|
|
if (!validate_only) {
|
|
|
|
cfg_unit = UNIT_MONTH;
|
|
|
|
cfg_start_day = 1;
|
|
|
|
cfg_start_hour = 0;
|
|
|
|
cfg_start_min = 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
items = smartlist_create();
|
2004-12-16 22:10:51 +01:00
|
|
|
smartlist_split_string(items, v, NULL,
|
|
|
|
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK,0);
|
2004-11-22 22:56:51 +01:00
|
|
|
if (smartlist_len(items)<2) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG, "Too few arguments to AccountingStart");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
s = smartlist_get(items,0);
|
|
|
|
if (0==strcasecmp(s, "month")) {
|
|
|
|
unit = UNIT_MONTH;
|
|
|
|
} else if (0==strcasecmp(s, "week")) {
|
|
|
|
unit = UNIT_WEEK;
|
|
|
|
} else if (0==strcasecmp(s, "day")) {
|
|
|
|
unit = UNIT_DAY;
|
|
|
|
} else {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG,
|
|
|
|
"Unrecognized accounting unit '%s': only 'month', 'week',"
|
|
|
|
" and 'day' are supported.", s);
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (unit) {
|
|
|
|
case UNIT_WEEK:
|
|
|
|
d = tor_parse_long(smartlist_get(items,1), 10, 1, 7, &ok, NULL);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG, "Weekly accounting must begin on a day between "
|
|
|
|
"1 (Monday) and 7 (Sunday)");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case UNIT_MONTH:
|
|
|
|
d = tor_parse_long(smartlist_get(items,1), 10, 1, 28, &ok, NULL);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG, "Monthly accounting must begin on a day between "
|
|
|
|
"1 and 28");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case UNIT_DAY:
|
|
|
|
d = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tor_assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
idx = unit==UNIT_DAY?1:2;
|
|
|
|
if (smartlist_len(items) != (idx+1)) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG,"Accounting unit '%s' requires %d argument%s.",
|
|
|
|
s, idx, (idx>1)?"s":"");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
s = smartlist_get(items, idx);
|
|
|
|
h = tor_parse_long(s, 10, 0, 23, &ok, &cp);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG,"Accounting start time not parseable: bad hour.");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!cp || *cp!=':') {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG,
|
|
|
|
"Accounting start time not parseable: not in HH:MM format");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
m = tor_parse_long(cp+1, 10, 0, 59, &ok, &cp);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG, "Accounting start time not parseable: bad minute");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!cp || *cp!='\0') {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_CONFIG,
|
|
|
|
"Accounting start time not parseable: not in HH:MM format");
|
2004-11-22 22:56:51 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!validate_only) {
|
|
|
|
cfg_unit = unit;
|
|
|
|
cfg_start_day = (int)d;
|
|
|
|
cfg_start_hour = (int)h;
|
|
|
|
cfg_start_min = (int)m;
|
|
|
|
}
|
|
|
|
SMARTLIST_FOREACH(items, char *, s, tor_free(s));
|
|
|
|
smartlist_free(items);
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
SMARTLIST_FOREACH(items, char *, s, tor_free(s));
|
|
|
|
smartlist_free(items);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-11-15 05:01:31 +01:00
|
|
|
/** If we want to manage the accounting system and potentially
|
|
|
|
* hibernate, return 1, else return 0.
|
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
int
|
|
|
|
accounting_is_enabled(or_options_t *options)
|
|
|
|
{
|
2004-11-20 01:37:00 +01:00
|
|
|
if (options->AccountingMax)
|
2004-11-15 05:01:31 +01:00
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Called from main.c to tell us that <b>seconds</b> seconds have
|
|
|
|
* passed, <b>n_read</b> bytes have been read, and <b>n_written</b>
|
|
|
|
* bytes have been written. */
|
2004-11-05 18:55:34 +01:00
|
|
|
void
|
|
|
|
accounting_add_bytes(size_t n_read, size_t n_written, int seconds)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
|
|
|
n_bytes_read_in_interval += n_read;
|
|
|
|
n_bytes_written_in_interval += n_written;
|
|
|
|
/* If we haven't been called in 10 seconds, we're probably jumping
|
|
|
|
* around in time. */
|
|
|
|
n_seconds_active_in_interval += (seconds < 10) ? seconds : 0;
|
|
|
|
}
|
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
/** If get_end, return the end of the accounting period that contains
|
|
|
|
* the time <b>now</b>. Else, return the start of the accounting
|
|
|
|
* period that contains the time <b>now</b> */
|
|
|
|
static time_t
|
|
|
|
edge_of_accounting_period_containing(time_t now, int get_end)
|
2004-11-05 18:55:34 +01:00
|
|
|
{
|
2004-11-22 22:56:51 +01:00
|
|
|
int before;
|
2005-02-22 08:03:03 +01:00
|
|
|
struct tm tm;
|
|
|
|
tor_localtime_r(&now, &tm);
|
2004-11-22 22:56:51 +01:00
|
|
|
|
|
|
|
/* Set 'before' to true iff the current time is before the hh:mm
|
|
|
|
* changeover time for today. */
|
2005-02-22 08:03:03 +01:00
|
|
|
before = tm.tm_hour < cfg_start_hour ||
|
|
|
|
(tm.tm_hour == cfg_start_hour && tm.tm_min < cfg_start_min);
|
2004-11-22 22:56:51 +01:00
|
|
|
|
|
|
|
/* Dispatch by unit. First, find the start day of the given period;
|
|
|
|
* then, if get_end is true, increment to the end day. */
|
|
|
|
switch (cfg_unit)
|
|
|
|
{
|
|
|
|
case UNIT_MONTH: {
|
|
|
|
/* If this is before the Nth, we want the Nth of last month. */
|
2005-02-22 08:03:03 +01:00
|
|
|
if (tm.tm_mday < cfg_start_day ||
|
|
|
|
(tm.tm_mday < cfg_start_day && before)) {
|
|
|
|
--tm.tm_mon;
|
2004-11-22 22:56:51 +01:00
|
|
|
}
|
|
|
|
/* Otherwise, the month is correct. */
|
2005-02-22 08:03:03 +01:00
|
|
|
tm.tm_mday = cfg_start_day;
|
2004-11-22 22:56:51 +01:00
|
|
|
if (get_end)
|
2005-02-22 08:03:03 +01:00
|
|
|
++tm.tm_mon;
|
2004-11-22 22:56:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case UNIT_WEEK: {
|
|
|
|
/* What is the 'target' day of the week in struct tm format? (We
|
|
|
|
say Sunday==7; struct tm says Sunday==0.) */
|
|
|
|
int wday = cfg_start_day % 7;
|
|
|
|
/* How many days do we subtract from today to get to the right day? */
|
2005-02-22 08:03:03 +01:00
|
|
|
int delta = (7+tm.tm_wday-wday)%7;
|
2004-11-22 22:56:51 +01:00
|
|
|
/* If we are on the right day, but the changeover hasn't happened yet,
|
|
|
|
* then subtract a whole week. */
|
|
|
|
if (delta == 0 && before)
|
|
|
|
delta = 7;
|
2005-02-22 08:03:03 +01:00
|
|
|
tm.tm_mday -= delta;
|
2004-11-22 22:56:51 +01:00
|
|
|
if (get_end)
|
2005-02-22 08:03:03 +01:00
|
|
|
tm.tm_mday += 7;
|
2004-11-22 22:56:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case UNIT_DAY:
|
|
|
|
if (before)
|
2005-02-22 08:03:03 +01:00
|
|
|
--tm.tm_mday;
|
2004-11-22 22:56:51 +01:00
|
|
|
if (get_end)
|
2005-02-22 08:03:03 +01:00
|
|
|
++tm.tm_mday;
|
2004-11-22 22:56:51 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tor_assert(0);
|
2004-11-05 18:55:34 +01:00
|
|
|
}
|
|
|
|
|
2005-02-22 08:03:03 +01:00
|
|
|
tm.tm_hour = cfg_start_hour;
|
|
|
|
tm.tm_min = cfg_start_min;
|
|
|
|
tm.tm_sec = 0;
|
|
|
|
tm.tm_isdst = -1; /* Autodetect DST */
|
|
|
|
return mktime(&tm);
|
2004-11-05 18:55:34 +01:00
|
|
|
}
|
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
/** Return the start of the accounting period containing the time
|
|
|
|
* <b>now</b>. */
|
2004-11-05 18:55:34 +01:00
|
|
|
static time_t
|
|
|
|
start_of_accounting_period_containing(time_t now)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
2004-11-22 22:56:51 +01:00
|
|
|
return edge_of_accounting_period_containing(now, 0);
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
2004-11-08 00:14:47 +01:00
|
|
|
|
|
|
|
/** Return the start of the accounting period that comes after the one
|
|
|
|
* containing the time <b>now</b>. */
|
2004-11-05 18:55:34 +01:00
|
|
|
static time_t
|
|
|
|
start_of_accounting_period_after(time_t now)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
2004-11-22 22:56:51 +01:00
|
|
|
return edge_of_accounting_period_containing(now, 1);
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Initialize the accounting subsystem. */
|
2004-11-05 18:55:34 +01:00
|
|
|
void
|
|
|
|
configure_accounting(time_t now)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
2004-11-08 00:14:47 +01:00
|
|
|
/* Try to remember our recorded usage. */
|
2004-11-04 23:33:06 +01:00
|
|
|
if (!interval_start_time)
|
2004-11-05 18:55:34 +01:00
|
|
|
read_bandwidth_usage(); /* If we fail, we'll leave values at zero, and
|
|
|
|
* reset below.*/
|
2004-11-04 23:33:06 +01:00
|
|
|
if (!interval_start_time ||
|
|
|
|
start_of_accounting_period_after(interval_start_time) <= now) {
|
2004-11-08 00:14:47 +01:00
|
|
|
/* We didn't have recorded usage, or we don't have recorded usage
|
|
|
|
* for this interval. Start a new interval. */
|
2006-02-13 10:37:53 +01:00
|
|
|
log_info(LD_ACCT, "Starting new accounting interval.");
|
2004-11-05 18:55:34 +01:00
|
|
|
reset_accounting(now);
|
2004-11-22 22:56:51 +01:00
|
|
|
} else if (interval_start_time ==
|
2004-11-04 23:33:06 +01:00
|
|
|
start_of_accounting_period_containing(interval_start_time)) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_info(LD_ACCT, "Continuing accounting interval.");
|
2004-11-04 23:33:06 +01:00
|
|
|
/* We are in the interval we thought we were in. Do nothing.*/
|
2004-11-10 05:19:53 +01:00
|
|
|
interval_end_time = start_of_accounting_period_after(interval_start_time);
|
2004-11-04 23:33:06 +01:00
|
|
|
} else {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_ACCT,
|
|
|
|
"Mismatched accounting interval; starting a fresh one.");
|
2004-11-05 18:55:34 +01:00
|
|
|
reset_accounting(now);
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
|
|
|
accounting_set_wakeup_time();
|
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Set expected_bandwidth_usage based on how much we sent/received
|
|
|
|
* per minute last interval (if we were up for at least 30 minutes),
|
|
|
|
* or based on our declared bandwidth otherwise. */
|
2004-11-05 18:55:34 +01:00
|
|
|
static void
|
|
|
|
update_expected_bandwidth(void)
|
|
|
|
{
|
2004-11-22 23:24:10 +01:00
|
|
|
uint64_t used, expected;
|
|
|
|
uint64_t max_configured = (get_options()->BandwidthRate * 60);
|
2004-11-05 18:55:34 +01:00
|
|
|
|
|
|
|
if (n_seconds_active_in_interval < 1800) {
|
2004-11-23 23:34:23 +01:00
|
|
|
/* If we haven't gotten enough data last interval, set 'expected'
|
|
|
|
* to 0. This will set our wakeup to the start of the interval.
|
|
|
|
* Next interval, we'll choose our starting time based on how much
|
|
|
|
* we sent this interval.
|
2004-11-16 04:32:01 +01:00
|
|
|
*/
|
2004-11-23 23:34:23 +01:00
|
|
|
expected = 0;
|
2004-11-05 18:55:34 +01:00
|
|
|
} else {
|
|
|
|
used = n_bytes_written_in_interval < n_bytes_read_in_interval ?
|
|
|
|
n_bytes_read_in_interval : n_bytes_written_in_interval;
|
2004-11-23 23:34:23 +01:00
|
|
|
expected = used / (n_seconds_active_in_interval / 60);
|
2004-11-22 23:24:10 +01:00
|
|
|
if (expected > max_configured)
|
|
|
|
expected = max_configured;
|
2004-11-05 18:55:34 +01:00
|
|
|
}
|
2006-12-17 17:37:46 +01:00
|
|
|
expected_bandwidth_usage = expected;
|
2004-11-05 18:55:34 +01:00
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Called at the start of a new accounting interval: reset our
|
|
|
|
* expected bandwidth usage based on what happened last time, set up
|
|
|
|
* the start and end of the interval, and clear byte/time totals.
|
|
|
|
*/
|
2004-11-05 18:55:34 +01:00
|
|
|
static void
|
2005-06-11 20:52:12 +02:00
|
|
|
reset_accounting(time_t now)
|
|
|
|
{
|
2006-02-13 10:37:53 +01:00
|
|
|
log_info(LD_ACCT, "Starting new accounting interval.");
|
2004-11-05 18:55:34 +01:00
|
|
|
update_expected_bandwidth();
|
|
|
|
interval_start_time = start_of_accounting_period_containing(now);
|
|
|
|
interval_end_time = start_of_accounting_period_after(interval_start_time);
|
|
|
|
n_bytes_read_in_interval = 0;
|
|
|
|
n_bytes_written_in_interval = 0;
|
|
|
|
n_seconds_active_in_interval = 0;
|
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Return true iff we should save our bandwidth usage to disk. */
|
|
|
|
static INLINE int
|
|
|
|
time_to_record_bandwidth_usage(time_t now)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
2006-12-07 21:11:30 +01:00
|
|
|
/* Note every 600 sec */
|
|
|
|
#define NOTE_INTERVAL (600)
|
2004-11-04 23:33:06 +01:00
|
|
|
/* Or every 20 megabytes */
|
|
|
|
#define NOTE_BYTES 20*(1024*1024)
|
|
|
|
static uint64_t last_read_bytes_noted = 0;
|
|
|
|
static uint64_t last_written_bytes_noted = 0;
|
|
|
|
static time_t last_time_noted = 0;
|
|
|
|
|
2004-11-05 18:55:34 +01:00
|
|
|
if (last_time_noted + NOTE_INTERVAL <= now ||
|
|
|
|
last_read_bytes_noted + NOTE_BYTES <= n_bytes_read_in_interval ||
|
|
|
|
last_written_bytes_noted + NOTE_BYTES <= n_bytes_written_in_interval ||
|
|
|
|
(interval_end_time && interval_end_time <= now)) {
|
2004-11-04 23:33:06 +01:00
|
|
|
last_time_noted = now;
|
|
|
|
last_read_bytes_noted = n_bytes_read_in_interval;
|
|
|
|
last_written_bytes_noted = n_bytes_written_in_interval;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-06-11 20:52:12 +02:00
|
|
|
/** Invoked once per second. Checks whether it is time to hibernate,
|
|
|
|
* record bandwidth used, etc. */
|
2004-11-05 18:55:34 +01:00
|
|
|
void
|
|
|
|
accounting_run_housekeeping(time_t now)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
|
|
|
if (now >= interval_end_time) {
|
|
|
|
configure_accounting(now);
|
|
|
|
}
|
|
|
|
if (time_to_record_bandwidth_usage(now)) {
|
2006-12-07 19:57:37 +01:00
|
|
|
if (accounting_record_bandwidth_usage(now, get_or_state())) {
|
|
|
|
log_warn(LD_FS, "Couldn't record bandwidth usage to disk.");
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-12 23:48:18 +01:00
|
|
|
/** When we have no idea how fast we are, how long do we assume it will take
|
|
|
|
* us to exhaust our bandwidth? */
|
|
|
|
#define GUESS_TIME_TO_USE_BANDWIDTH (24*60*60)
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Based on our interval and our estimated bandwidth, choose a
|
|
|
|
* deterministic (but random-ish) time to wake up. */
|
2004-11-05 18:55:34 +01:00
|
|
|
static void
|
|
|
|
accounting_set_wakeup_time(void)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
|
|
|
char buf[ISO_TIME_LEN+1];
|
|
|
|
char digest[DIGEST_LEN];
|
2004-11-22 22:56:51 +01:00
|
|
|
crypto_digest_env_t *d_env;
|
|
|
|
int time_in_interval;
|
2006-03-13 02:06:55 +01:00
|
|
|
uint64_t time_to_exhaust_bw;
|
2004-11-22 22:56:51 +01:00
|
|
|
int time_to_consider;
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2004-11-21 05:19:04 +01:00
|
|
|
if (! identity_key_is_set()) {
|
|
|
|
if (init_keys() < 0) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_err(LD_BUG, "Error initializing keys");
|
2004-11-21 05:19:04 +01:00
|
|
|
tor_assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-04 23:33:06 +01:00
|
|
|
format_iso_time(buf, interval_start_time);
|
|
|
|
crypto_pk_get_digest(get_identity_key(), digest);
|
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
d_env = crypto_new_digest_env();
|
|
|
|
crypto_digest_add_bytes(d_env, buf, ISO_TIME_LEN);
|
|
|
|
crypto_digest_add_bytes(d_env, digest, DIGEST_LEN);
|
|
|
|
crypto_digest_get_digest(d_env, digest, DIGEST_LEN);
|
|
|
|
crypto_free_digest_env(d_env);
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2004-11-23 23:34:23 +01:00
|
|
|
if (!expected_bandwidth_usage) {
|
|
|
|
char buf1[ISO_TIME_LEN+1];
|
|
|
|
char buf2[ISO_TIME_LEN+1];
|
|
|
|
format_local_iso_time(buf1, interval_start_time);
|
|
|
|
format_local_iso_time(buf2, interval_end_time);
|
2006-03-12 23:48:18 +01:00
|
|
|
time_to_exhaust_bw = GUESS_TIME_TO_USE_BANDWIDTH;
|
2004-11-23 23:34:23 +01:00
|
|
|
interval_wakeup_time = interval_start_time;
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,
|
|
|
|
"Configured hibernation. This interval begins at %s "
|
2005-12-10 10:36:26 +01:00
|
|
|
"and ends at %s. We have no prior estimate for bandwidth, so "
|
|
|
|
"we will start out awake and hibernate when we exhaust our quota.",
|
|
|
|
buf1, buf2);
|
2004-11-23 23:34:23 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
time_in_interval = interval_end_time - interval_start_time;
|
2006-03-13 02:06:55 +01:00
|
|
|
|
|
|
|
time_to_exhaust_bw =
|
|
|
|
(get_options()->AccountingMax/expected_bandwidth_usage)*60;
|
|
|
|
if (time_to_exhaust_bw > TIME_MAX) {
|
|
|
|
time_to_exhaust_bw = TIME_MAX;
|
|
|
|
time_to_consider = 0;
|
|
|
|
} else {
|
|
|
|
time_to_consider = time_in_interval - (int)time_to_exhaust_bw;
|
|
|
|
}
|
2004-11-23 23:34:23 +01:00
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
if (time_to_consider<=0) {
|
|
|
|
interval_wakeup_time = interval_start_time;
|
|
|
|
} else {
|
|
|
|
/* XXX can we simplify this just by picking a random (non-deterministic)
|
|
|
|
* time to be up? If we go down and come up, then we pick a new one. Is
|
|
|
|
* that good enough? -RD */
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
/* This is not a perfectly unbiased conversion, but it is good enough:
|
|
|
|
* in the worst case, the first half of the day is 0.06 percent likelier
|
|
|
|
* to be chosen than the last half. */
|
|
|
|
interval_wakeup_time = interval_start_time +
|
|
|
|
(get_uint32(digest) % time_to_consider);
|
2004-11-14 22:11:06 +01:00
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
format_iso_time(buf, interval_wakeup_time);
|
|
|
|
}
|
2004-11-23 23:34:23 +01:00
|
|
|
|
2004-11-22 22:56:51 +01:00
|
|
|
{
|
|
|
|
char buf1[ISO_TIME_LEN+1];
|
|
|
|
char buf2[ISO_TIME_LEN+1];
|
|
|
|
char buf3[ISO_TIME_LEN+1];
|
|
|
|
char buf4[ISO_TIME_LEN+1];
|
2006-03-13 02:06:55 +01:00
|
|
|
time_t down_time;
|
|
|
|
if (interval_wakeup_time+time_to_exhaust_bw > TIME_MAX)
|
|
|
|
down_time = TIME_MAX;
|
|
|
|
else
|
|
|
|
down_time = (time_t)(interval_wakeup_time+time_to_exhaust_bw);
|
2004-11-22 22:56:51 +01:00
|
|
|
if (down_time>interval_end_time)
|
|
|
|
down_time = interval_end_time;
|
|
|
|
format_local_iso_time(buf1, interval_start_time);
|
|
|
|
format_local_iso_time(buf2, interval_wakeup_time);
|
2006-03-13 02:06:55 +01:00
|
|
|
format_local_iso_time(buf3, down_time);
|
2004-11-22 22:56:51 +01:00
|
|
|
format_local_iso_time(buf4, interval_end_time);
|
|
|
|
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,
|
|
|
|
"Configured hibernation. This interval began at %s; "
|
2004-11-23 23:34:23 +01:00
|
|
|
"the scheduled wake-up time %s %s; "
|
2004-12-05 13:26:02 +01:00
|
|
|
"we expect%s to exhaust our quota for this interval around %s; "
|
2004-11-23 23:34:23 +01:00
|
|
|
"the next interval begins at %s (all times local)",
|
|
|
|
buf1,
|
|
|
|
time(NULL)<interval_wakeup_time?"is":"was", buf2,
|
|
|
|
time(NULL)<down_time?"":"ed", buf3,
|
|
|
|
buf4);
|
2004-11-22 22:56:51 +01:00
|
|
|
}
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
2006-12-10 09:04:50 +01:00
|
|
|
/* This rounds 0 up to 1000, but that's actually a feature. */
|
2006-12-07 21:11:36 +01:00
|
|
|
#define ROUND_UP(x) (((x) + 0x3ff) & ~0x3ff)
|
2004-11-05 18:55:34 +01:00
|
|
|
#define BW_ACCOUNTING_VERSION 1
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Save all our bandwidth tracking information to disk. Return 0 on
|
2006-06-24 06:57:59 +02:00
|
|
|
* success, -1 on failure. */
|
2004-11-14 23:21:23 +01:00
|
|
|
int
|
2006-12-07 19:57:37 +01:00
|
|
|
accounting_record_bandwidth_usage(time_t now, or_state_t *state)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
|
|
|
char buf[128];
|
|
|
|
char fname[512];
|
2004-11-05 18:55:34 +01:00
|
|
|
char time1[ISO_TIME_LEN+1];
|
|
|
|
char time2[ISO_TIME_LEN+1];
|
2004-11-04 23:33:06 +01:00
|
|
|
char *cp = buf;
|
2006-06-24 06:57:59 +02:00
|
|
|
time_t tmp;
|
2006-12-24 04:08:44 +01:00
|
|
|
int r = 0;
|
2006-12-17 17:37:46 +01:00
|
|
|
uint64_t expected;
|
2007-01-04 06:41:24 +01:00
|
|
|
static time_t last_recorded = 0;
|
2006-12-07 19:57:37 +01:00
|
|
|
|
2007-01-03 04:45:53 +01:00
|
|
|
/* First, update bw_accounting. Until 0.1.2.5-alpha, this was the only place
|
2006-12-07 19:57:37 +01:00
|
|
|
* we stored this information. The format is:
|
|
|
|
* Version\nTime\nTime\nRead\nWrite\nSeconds\nExpected-Rate\n */
|
2004-11-05 18:55:34 +01:00
|
|
|
|
|
|
|
format_iso_time(time1, interval_start_time);
|
|
|
|
format_iso_time(time2, now);
|
2006-06-24 06:57:59 +02:00
|
|
|
/* now check to see if they're valid times -- if they're not,
|
|
|
|
* and we write them, then tor will refuse to start next time. */
|
|
|
|
if (parse_iso_time(time1, &tmp) || parse_iso_time(time2, &tmp)) {
|
|
|
|
log_warn(LD_ACCT, "Created a time that we refused to parse.");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-12-17 17:37:46 +01:00
|
|
|
expected = expected_bandwidth_usage;
|
|
|
|
/* Cap this value, since older versions won't parse a uint64_t here. */
|
|
|
|
if (expected > UINT32_MAX)
|
|
|
|
expected = UINT32_MAX;
|
2004-11-05 18:55:34 +01:00
|
|
|
tor_snprintf(cp, sizeof(buf),
|
|
|
|
"%d\n%s\n%s\n"U64_FORMAT"\n"U64_FORMAT"\n%lu\n%lu\n",
|
|
|
|
BW_ACCOUNTING_VERSION,
|
|
|
|
time1,
|
|
|
|
time2,
|
2006-12-07 21:11:36 +01:00
|
|
|
U64_PRINTF_ARG(ROUND_UP(n_bytes_read_in_interval)),
|
|
|
|
U64_PRINTF_ARG(ROUND_UP(n_bytes_written_in_interval)),
|
2004-11-05 18:55:34 +01:00
|
|
|
(unsigned long)n_seconds_active_in_interval,
|
2006-12-17 17:37:46 +01:00
|
|
|
(unsigned long)expected);
|
2004-11-04 23:33:06 +01:00
|
|
|
tor_snprintf(fname, sizeof(fname), "%s/bw_accounting",
|
2004-11-09 08:05:53 +01:00
|
|
|
get_options()->DataDirectory);
|
2006-12-24 04:06:03 +01:00
|
|
|
if (!get_options()->AvoidDiskWrites || (last_recorded + 3600 < now)) {
|
|
|
|
r = write_str_to_file(fname, buf, 0);
|
|
|
|
last_recorded = now;
|
|
|
|
}
|
2006-12-07 19:57:37 +01:00
|
|
|
|
|
|
|
/* Now update the state */
|
|
|
|
state->AccountingIntervalStart = interval_start_time;
|
2006-12-07 21:11:36 +01:00
|
|
|
state->AccountingBytesReadInInterval = ROUND_UP(n_bytes_read_in_interval);
|
|
|
|
state->AccountingBytesWrittenInInterval =
|
|
|
|
ROUND_UP(n_bytes_written_in_interval);
|
2006-12-07 19:57:37 +01:00
|
|
|
state->AccountingSecondsActive = n_seconds_active_in_interval;
|
|
|
|
state->AccountingExpectedUsage = expected_bandwidth_usage;
|
2006-12-24 03:45:46 +01:00
|
|
|
|
|
|
|
or_state_mark_dirty(state,
|
|
|
|
now+(get_options()->AvoidDiskWrites ? 7200 : 60));
|
2004-11-04 23:33:06 +01:00
|
|
|
|
2006-12-07 19:57:37 +01:00
|
|
|
return r;
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
2006-12-07 21:11:36 +01:00
|
|
|
#undef ROUND_UP
|
2004-10-31 21:29:25 +01:00
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Read stored accounting information from disk. Return 0 on success;
|
|
|
|
* return -1 and change nothing on failure. */
|
|
|
|
static int
|
|
|
|
read_bandwidth_usage(void)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
|
|
|
char *s = NULL;
|
|
|
|
char fname[512];
|
2004-11-05 18:55:34 +01:00
|
|
|
time_t t1, t2;
|
|
|
|
uint64_t n_read, n_written;
|
|
|
|
uint32_t expected_bw, n_seconds;
|
2006-12-07 19:57:37 +01:00
|
|
|
smartlist_t *elts = NULL;
|
|
|
|
int ok, use_state=0, r=-1;
|
|
|
|
or_state_t *state = get_or_state();
|
2004-11-04 23:33:06 +01:00
|
|
|
|
|
|
|
tor_snprintf(fname, sizeof(fname), "%s/bw_accounting",
|
2004-11-09 08:05:53 +01:00
|
|
|
get_options()->DataDirectory);
|
2004-11-05 18:55:34 +01:00
|
|
|
elts = smartlist_create();
|
2006-12-07 19:57:37 +01:00
|
|
|
if ((s = read_file_to_str(fname, 0, NULL)) == NULL) {
|
|
|
|
/* We have an old-format bw_accounting file. */
|
|
|
|
use_state = 1;
|
|
|
|
}
|
|
|
|
if (!use_state) {
|
|
|
|
smartlist_split_string(elts, s, "\n",
|
|
|
|
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK,0);
|
|
|
|
tor_free(s);
|
|
|
|
|
|
|
|
if (smartlist_len(elts)<1 ||
|
|
|
|
atoi(smartlist_get(elts,0)) != BW_ACCOUNTING_VERSION) {
|
|
|
|
log_warn(LD_ACCT, "Unrecognized bw_accounting file version: %s",
|
|
|
|
(const char*)smartlist_get(elts,0));
|
|
|
|
use_state = 1;
|
|
|
|
}
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
2006-12-07 19:57:37 +01:00
|
|
|
if (!use_state && smartlist_len(elts) < 7) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_ACCT, "Corrupted bw_accounting file: %d lines",
|
|
|
|
smartlist_len(elts));
|
2006-12-07 19:57:37 +01:00
|
|
|
use_state = 1;
|
|
|
|
}
|
|
|
|
if (!use_state && parse_iso_time(smartlist_get(elts,2), &t2)) {
|
|
|
|
log_warn(LD_ACCT, "Error parsing bandwidth usage last-written time");
|
|
|
|
use_state = 1;
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
2006-12-07 19:57:37 +01:00
|
|
|
if (use_state || t2 <= state->LastWritten) {
|
|
|
|
/* Okay; it looks like the state file is more up-to-date than the
|
|
|
|
* bw_accounting file, or the bw_accounting file is nonexistant,
|
|
|
|
* or the bw_accounting file is corrupt.
|
|
|
|
*/
|
|
|
|
log_info(LD_ACCT, "Reading bandwdith accounting data from state file");
|
|
|
|
n_bytes_read_in_interval = state->AccountingBytesReadInInterval;
|
|
|
|
n_bytes_written_in_interval = state->AccountingBytesWrittenInInterval;
|
|
|
|
n_seconds_active_in_interval = state->AccountingSecondsActive;
|
|
|
|
interval_start_time = state->AccountingIntervalStart;
|
|
|
|
expected_bandwidth_usage = state->AccountingExpectedUsage;
|
|
|
|
r = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2004-11-05 18:55:34 +01:00
|
|
|
if (parse_iso_time(smartlist_get(elts,1), &t1)) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_ACCT, "Error parsing bandwidth usage start time.");
|
2006-12-07 19:57:37 +01:00
|
|
|
goto done;
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
2004-11-05 18:55:34 +01:00
|
|
|
n_read = tor_parse_uint64(smartlist_get(elts,3), 10, 0, UINT64_MAX,
|
|
|
|
&ok, NULL);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_ACCT, "Error parsing number of bytes read");
|
2006-12-07 19:57:37 +01:00
|
|
|
goto done;
|
2004-11-05 18:55:34 +01:00
|
|
|
}
|
|
|
|
n_written = tor_parse_uint64(smartlist_get(elts,4), 10, 0, UINT64_MAX,
|
|
|
|
&ok, NULL);
|
|
|
|
if (!ok) {
|
2006-09-30 00:33:40 +02:00
|
|
|
log_warn(LD_ACCT, "Error parsing number of bytes written");
|
2006-12-07 19:57:37 +01:00
|
|
|
goto done;
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
2004-11-05 18:55:34 +01:00
|
|
|
n_seconds = (uint32_t)tor_parse_ulong(smartlist_get(elts,5), 10,0,ULONG_MAX,
|
|
|
|
&ok, NULL);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_ACCT, "Error parsing number of seconds live");
|
2006-12-07 19:57:37 +01:00
|
|
|
goto done;
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
2004-11-05 18:55:34 +01:00
|
|
|
expected_bw =(uint32_t)tor_parse_ulong(smartlist_get(elts,6), 10,0,ULONG_MAX,
|
|
|
|
&ok, NULL);
|
|
|
|
if (!ok) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_warn(LD_ACCT, "Error parsing expected bandwidth");
|
2006-12-07 19:57:37 +01:00
|
|
|
goto done;
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
|
|
|
|
2004-11-05 18:55:34 +01:00
|
|
|
n_bytes_read_in_interval = n_read;
|
|
|
|
n_bytes_written_in_interval = n_written;
|
|
|
|
n_seconds_active_in_interval = n_seconds;
|
|
|
|
interval_start_time = t1;
|
|
|
|
expected_bandwidth_usage = expected_bw;
|
|
|
|
|
2006-02-13 10:37:53 +01:00
|
|
|
log_info(LD_ACCT,
|
|
|
|
"Successfully read bandwidth accounting file written at %s "
|
2005-12-09 06:37:26 +01:00
|
|
|
"for interval starting at %s. We have been active for %lu seconds in "
|
|
|
|
"this interval. At the start of the interval, we expected to use "
|
|
|
|
"about %lu KB per second. ("U64_FORMAT" bytes read so far, "
|
|
|
|
U64_FORMAT" bytes written so far)",
|
2005-12-10 10:36:26 +01:00
|
|
|
(char*)smartlist_get(elts,2),
|
|
|
|
(char*)smartlist_get(elts,1),
|
|
|
|
(unsigned long)n_seconds_active_in_interval,
|
2006-12-17 17:37:46 +01:00
|
|
|
(unsigned long)(expected_bandwidth_usage*1024/60),
|
2005-12-10 10:36:26 +01:00
|
|
|
U64_PRINTF_ARG(n_bytes_read_in_interval),
|
|
|
|
U64_PRINTF_ARG(n_bytes_written_in_interval));
|
2004-12-08 00:20:10 +01:00
|
|
|
|
2006-12-07 19:57:37 +01:00
|
|
|
r = 0;
|
|
|
|
done:
|
|
|
|
if (elts) {
|
|
|
|
SMARTLIST_FOREACH(elts, char *, cp, tor_free(cp));
|
|
|
|
smartlist_free(elts);
|
|
|
|
}
|
|
|
|
return r;
|
2004-11-04 23:33:06 +01:00
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Return true iff we have sent/received all the bytes we are willing
|
|
|
|
* to send/receive this interval. */
|
|
|
|
static int
|
|
|
|
hibernate_hard_limit_reached(void)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
2004-11-20 01:37:00 +01:00
|
|
|
uint64_t hard_limit = get_options()->AccountingMax;
|
2004-11-04 23:33:06 +01:00
|
|
|
if (!hard_limit)
|
|
|
|
return 0;
|
|
|
|
return n_bytes_read_in_interval >= hard_limit
|
|
|
|
|| n_bytes_written_in_interval >= hard_limit;
|
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Return true iff we have sent/received almost all the bytes we are willing
|
|
|
|
* to send/receive this interval. */
|
2005-06-11 20:52:12 +02:00
|
|
|
static int
|
|
|
|
hibernate_soft_limit_reached(void)
|
2004-11-04 23:33:06 +01:00
|
|
|
{
|
2006-07-18 04:24:01 +02:00
|
|
|
uint64_t soft_limit = DBL_TO_U64(U64_TO_DBL(get_options()->AccountingMax)
|
2007-01-03 11:30:26 +01:00
|
|
|
* .95);
|
2004-11-04 23:33:06 +01:00
|
|
|
if (!soft_limit)
|
|
|
|
return 0;
|
|
|
|
return n_bytes_read_in_interval >= soft_limit
|
|
|
|
|| n_bytes_written_in_interval >= soft_limit;
|
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Called when we get a SIGINT, or when bandwidth soft limit is
|
|
|
|
* reached. Puts us into "loose hibernation": we don't accept new
|
|
|
|
* connections, but we continue handling old ones. */
|
2005-06-11 20:52:12 +02:00
|
|
|
static void
|
|
|
|
hibernate_begin(int new_state, time_t now)
|
|
|
|
{
|
2004-10-31 21:29:25 +01:00
|
|
|
connection_t *conn;
|
2005-03-12 21:13:38 +01:00
|
|
|
or_options_t *options = get_options();
|
2004-10-31 21:29:25 +01:00
|
|
|
|
2005-02-10 08:34:19 +01:00
|
|
|
if (new_state == HIBERNATE_STATE_EXITING &&
|
|
|
|
hibernate_state != HIBERNATE_STATE_LIVE) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_GENERAL,"Sigint received %s; exiting now.",
|
|
|
|
hibernate_state == HIBERNATE_STATE_EXITING ?
|
|
|
|
"a second time" : "while hibernating");
|
2004-10-31 21:29:25 +01:00
|
|
|
tor_cleanup();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2004-11-09 03:12:41 +01:00
|
|
|
/* close listeners. leave control listener(s). */
|
2004-11-28 10:05:49 +01:00
|
|
|
while ((conn = connection_get_by_type(CONN_TYPE_OR_LISTENER)) ||
|
|
|
|
(conn = connection_get_by_type(CONN_TYPE_AP_LISTENER)) ||
|
2006-08-10 11:01:37 +02:00
|
|
|
(conn = connection_get_by_type(CONN_TYPE_AP_TRANS_LISTENER)) ||
|
2006-11-14 01:06:31 +01:00
|
|
|
(conn = connection_get_by_type(CONN_TYPE_AP_NATD_LISTENER)) ||
|
2004-11-28 10:05:49 +01:00
|
|
|
(conn = connection_get_by_type(CONN_TYPE_DIR_LISTENER))) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_info(LD_NET,"Closing listener type %d", conn->type);
|
2004-10-31 21:29:25 +01:00
|
|
|
connection_mark_for_close(conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX kill intro point circs */
|
|
|
|
/* XXX upload rendezvous service descriptors with no intro points */
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (new_state == HIBERNATE_STATE_EXITING) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_GENERAL,"Interrupt: will shut down in %d seconds. Interrupt "
|
|
|
|
"again to exit now.", options->ShutdownWaitLength);
|
2005-03-12 21:13:38 +01:00
|
|
|
hibernate_end_time = time(NULL) + options->ShutdownWaitLength;
|
2004-10-31 21:29:25 +01:00
|
|
|
} else { /* soft limit reached */
|
2004-11-08 00:14:47 +01:00
|
|
|
hibernate_end_time = interval_end_time;
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hibernate_state = new_state;
|
2006-12-07 19:57:37 +01:00
|
|
|
accounting_record_bandwidth_usage(now, get_or_state());
|
2006-12-24 03:45:46 +01:00
|
|
|
|
|
|
|
or_state_mark_dirty(get_or_state(),
|
|
|
|
get_options()->AvoidDiskWrites ? now+600 : 0);
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Called when we've been hibernating and our timeout is reached. */
|
2004-11-08 00:14:47 +01:00
|
|
|
static void
|
2005-06-11 20:52:12 +02:00
|
|
|
hibernate_end(int new_state)
|
|
|
|
{
|
2004-10-31 21:29:25 +01:00
|
|
|
tor_assert(hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH ||
|
|
|
|
hibernate_state == HIBERNATE_STATE_DORMANT);
|
|
|
|
|
|
|
|
/* listeners will be relaunched in run_scheduled_events() in main.c */
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,"Hibernation period ended. Resuming normal activity.");
|
2004-10-31 21:29:25 +01:00
|
|
|
|
|
|
|
hibernate_state = new_state;
|
2004-11-08 00:14:47 +01:00
|
|
|
hibernate_end_time = 0; /* no longer hibernating */
|
2005-01-14 18:49:25 +01:00
|
|
|
stats_n_seconds_working = 0; /* reset published uptime */
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** A wrapper around hibernate_begin, for when we get SIGINT. */
|
2004-11-08 00:14:47 +01:00
|
|
|
void
|
2005-06-11 20:52:12 +02:00
|
|
|
hibernate_begin_shutdown(void)
|
|
|
|
{
|
2004-11-05 18:55:34 +01:00
|
|
|
hibernate_begin(HIBERNATE_STATE_EXITING, time(NULL));
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** Return true iff we are currently hibernating. */
|
|
|
|
int
|
2005-06-11 20:52:12 +02:00
|
|
|
we_are_hibernating(void)
|
|
|
|
{
|
2004-10-31 21:29:25 +01:00
|
|
|
return hibernate_state != HIBERNATE_STATE_LIVE;
|
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/** If we aren't currently dormant, close all connections and become
|
|
|
|
* dormant. */
|
|
|
|
static void
|
2005-06-11 20:52:12 +02:00
|
|
|
hibernate_go_dormant(time_t now)
|
|
|
|
{
|
2004-11-08 00:14:47 +01:00
|
|
|
connection_t *conn;
|
|
|
|
|
|
|
|
if (hibernate_state == HIBERNATE_STATE_DORMANT)
|
|
|
|
return;
|
2004-11-14 22:11:06 +01:00
|
|
|
else if (hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH)
|
|
|
|
hibernate_state = HIBERNATE_STATE_DORMANT;
|
|
|
|
else
|
|
|
|
hibernate_begin(HIBERNATE_STATE_DORMANT, now);
|
2004-11-08 00:14:47 +01:00
|
|
|
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,"Going dormant. Blowing away remaining connections.");
|
2004-11-08 00:14:47 +01:00
|
|
|
|
2004-11-09 03:12:41 +01:00
|
|
|
/* Close all OR/AP/exit conns. Leave dir conns because we still want
|
|
|
|
* to be able to upload server descriptors so people know we're still
|
|
|
|
* running, and download directories so we can detect if we're obsolete.
|
|
|
|
* Leave control conns because we still want to be controllable.
|
|
|
|
*/
|
2004-11-28 10:05:49 +01:00
|
|
|
while ((conn = connection_get_by_type(CONN_TYPE_OR)) ||
|
|
|
|
(conn = connection_get_by_type(CONN_TYPE_AP)) ||
|
|
|
|
(conn = connection_get_by_type(CONN_TYPE_EXIT))) {
|
2004-12-05 14:02:18 +01:00
|
|
|
if (CONN_IS_EDGE(conn))
|
2006-07-26 21:07:26 +02:00
|
|
|
connection_edge_end(TO_EDGE_CONN(conn), END_STREAM_REASON_HIBERNATING,
|
|
|
|
TO_EDGE_CONN(conn)->cpath_layer);
|
2006-02-13 10:37:53 +01:00
|
|
|
log_info(LD_NET,"Closing conn type %d", conn->type);
|
2005-03-27 06:55:13 +02:00
|
|
|
if (conn->type == CONN_TYPE_AP) /* send socks failure if needed */
|
2006-07-26 21:07:26 +02:00
|
|
|
connection_mark_unattached_ap(TO_EDGE_CONN(conn),
|
|
|
|
END_STREAM_REASON_HIBERNATING);
|
2005-03-27 06:55:13 +02:00
|
|
|
else
|
|
|
|
connection_mark_for_close(conn);
|
2004-11-08 00:14:47 +01:00
|
|
|
}
|
2004-11-10 05:19:53 +01:00
|
|
|
|
2006-12-07 19:57:37 +01:00
|
|
|
accounting_record_bandwidth_usage(now, get_or_state());
|
2006-12-24 03:45:46 +01:00
|
|
|
|
|
|
|
or_state_mark_dirty(get_or_state(),
|
|
|
|
get_options()->AvoidDiskWrites ? now+600 : 0);
|
2004-11-08 00:14:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Called when hibernate_end_time has arrived. */
|
|
|
|
static void
|
|
|
|
hibernate_end_time_elapsed(time_t now)
|
|
|
|
{
|
2004-11-14 22:11:06 +01:00
|
|
|
char buf[ISO_TIME_LEN+1];
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/* The interval has ended, or it is wakeup time. Find out which. */
|
|
|
|
accounting_run_housekeeping(now);
|
|
|
|
if (interval_wakeup_time <= now) {
|
|
|
|
/* The interval hasn't changed, but interval_wakeup_time has passed.
|
|
|
|
* It's time to wake up and start being a server. */
|
|
|
|
hibernate_end(HIBERNATE_STATE_LIVE);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
/* The interval has changed, and it isn't time to wake up yet. */
|
|
|
|
hibernate_end_time = interval_wakeup_time;
|
2004-11-14 22:11:06 +01:00
|
|
|
format_iso_time(buf,interval_wakeup_time);
|
|
|
|
if (hibernate_state != HIBERNATE_STATE_DORMANT) {
|
2004-11-08 00:14:47 +01:00
|
|
|
/* We weren't sleeping before; we should sleep now. */
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,
|
|
|
|
"Accounting period ended. Commencing hibernation until "
|
|
|
|
"%s GMT", buf);
|
2004-11-14 22:11:06 +01:00
|
|
|
hibernate_go_dormant(now);
|
|
|
|
} else {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,
|
|
|
|
"Accounting period ended. This period, we will hibernate"
|
2005-12-14 21:40:40 +01:00
|
|
|
" until %s GMT",buf);
|
2004-11-14 22:11:06 +01:00
|
|
|
}
|
2004-11-08 00:14:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-13 01:44:39 +01:00
|
|
|
/** Consider our environment and decide if it's time
|
2004-11-08 00:14:47 +01:00
|
|
|
* to start/stop hibernating.
|
2004-10-31 21:29:25 +01:00
|
|
|
*/
|
2005-06-11 20:52:12 +02:00
|
|
|
void
|
|
|
|
consider_hibernation(time_t now)
|
|
|
|
{
|
2004-11-20 01:37:00 +01:00
|
|
|
int accounting_enabled = get_options()->AccountingMax != 0;
|
2004-11-14 22:11:06 +01:00
|
|
|
char buf[ISO_TIME_LEN+1];
|
2004-10-31 21:29:25 +01:00
|
|
|
|
2004-11-09 03:12:41 +01:00
|
|
|
/* If we're in 'exiting' mode, then we just shut down after the interval
|
2004-11-08 00:14:47 +01:00
|
|
|
* elapses. */
|
2004-10-31 21:29:25 +01:00
|
|
|
if (hibernate_state == HIBERNATE_STATE_EXITING) {
|
2004-11-08 00:14:47 +01:00
|
|
|
tor_assert(hibernate_end_time);
|
2004-11-28 10:05:49 +01:00
|
|
|
if (hibernate_end_time <= now) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_GENERAL, "Clean shutdown finished. Exiting.");
|
2004-10-31 21:29:25 +01:00
|
|
|
tor_cleanup();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
return; /* if exiting soon, don't worry about bandwidth limits */
|
|
|
|
}
|
|
|
|
|
2004-11-28 10:05:49 +01:00
|
|
|
if (hibernate_state == HIBERNATE_STATE_DORMANT) {
|
2004-11-05 18:55:34 +01:00
|
|
|
/* We've been hibernating because of bandwidth accounting. */
|
2004-11-08 00:14:47 +01:00
|
|
|
tor_assert(hibernate_end_time);
|
2004-11-14 22:11:06 +01:00
|
|
|
if (hibernate_end_time > now && accounting_enabled) {
|
2004-11-05 18:55:34 +01:00
|
|
|
/* If we're hibernating, don't wake up until it's time, regardless of
|
2004-11-08 00:14:47 +01:00
|
|
|
* whether we're in a new interval. */
|
2004-11-05 18:55:34 +01:00
|
|
|
return ;
|
|
|
|
} else {
|
2004-11-08 00:14:47 +01:00
|
|
|
hibernate_end_time_elapsed(now);
|
2004-11-05 18:55:34 +01:00
|
|
|
}
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
/* Else, we aren't hibernating. See if it's time to start hibernating, or to
|
|
|
|
* go dormant. */
|
2004-11-14 22:11:06 +01:00
|
|
|
if (hibernate_state == HIBERNATE_STATE_LIVE) {
|
|
|
|
if (hibernate_soft_limit_reached()) {
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,
|
|
|
|
"Bandwidth soft limit reached; commencing hibernation.");
|
2004-11-14 22:11:06 +01:00
|
|
|
hibernate_begin(HIBERNATE_STATE_LOWBANDWIDTH, now);
|
|
|
|
} else if (accounting_enabled && now < interval_wakeup_time) {
|
2006-04-24 01:05:34 +02:00
|
|
|
format_local_iso_time(buf,interval_wakeup_time);
|
2006-02-13 10:37:53 +01:00
|
|
|
log_notice(LD_ACCT,
|
2006-04-24 01:05:34 +02:00
|
|
|
"Commencing hibernation. We will wake up at %s local time.",
|
|
|
|
buf);
|
2004-11-14 22:11:06 +01:00
|
|
|
hibernate_go_dormant(now);
|
|
|
|
}
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
|
2004-11-08 00:14:47 +01:00
|
|
|
if (hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH) {
|
2004-11-14 22:11:06 +01:00
|
|
|
if (!accounting_enabled) {
|
|
|
|
hibernate_end_time_elapsed(now);
|
|
|
|
} else if (hibernate_hard_limit_reached()) {
|
|
|
|
hibernate_go_dormant(now);
|
2004-11-08 00:14:47 +01:00
|
|
|
} else if (hibernate_end_time <= now) {
|
|
|
|
/* The hibernation period ended while we were still in lowbandwidth.*/
|
|
|
|
hibernate_end_time_elapsed(now);
|
2004-10-31 21:29:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-09 21:03:31 +02:00
|
|
|
|
2007-01-22 08:51:06 +01:00
|
|
|
/** Helper function: called when we get a GETINFO request for an
|
|
|
|
* accounting-related key on the control connection <b>conn</b>. If we can
|
|
|
|
* answer the request for <b>question</b>, then set *<b>answer</b> to a newly
|
|
|
|
* allocated string holding the result. Otherwise, set *<b>answer</b> to
|
|
|
|
* NULL. */
|
2005-07-22 16:55:09 +02:00
|
|
|
int
|
2006-12-08 05:39:13 +01:00
|
|
|
getinfo_helper_accounting(control_connection_t *conn,
|
|
|
|
const char *question, char **answer)
|
2005-07-22 16:55:09 +02:00
|
|
|
{
|
2006-12-08 05:39:13 +01:00
|
|
|
(void) conn;
|
2005-07-22 16:55:09 +02:00
|
|
|
if (!strcmp(question, "accounting/enabled")) {
|
2006-12-16 12:34:12 +01:00
|
|
|
*answer = tor_strdup(accounting_is_enabled(get_options()) ? "1" : "0");
|
2005-07-22 16:55:09 +02:00
|
|
|
} else if (!strcmp(question, "accounting/hibernating")) {
|
|
|
|
if (hibernate_state == HIBERNATE_STATE_DORMANT)
|
|
|
|
*answer = tor_strdup("hard");
|
|
|
|
else if (hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH)
|
|
|
|
*answer = tor_strdup("soft");
|
|
|
|
else
|
|
|
|
*answer = tor_strdup("awake");
|
|
|
|
} else if (!strcmp(question, "accounting/bytes")) {
|
|
|
|
*answer = tor_malloc(32);
|
|
|
|
tor_snprintf(*answer, 32, U64_FORMAT" "U64_FORMAT,
|
|
|
|
U64_PRINTF_ARG(n_bytes_read_in_interval),
|
|
|
|
U64_PRINTF_ARG(n_bytes_written_in_interval));
|
|
|
|
} else if (!strcmp(question, "accounting/bytes-left")) {
|
|
|
|
uint64_t limit = get_options()->AccountingMax;
|
2006-12-15 06:12:42 +01:00
|
|
|
uint64_t read_left = 0, write_left = 0;
|
|
|
|
if (n_bytes_read_in_interval < limit)
|
|
|
|
read_left = limit - n_bytes_read_in_interval;
|
|
|
|
if (n_bytes_written_in_interval < limit)
|
|
|
|
write_left = limit - n_bytes_written_in_interval;
|
|
|
|
*answer = tor_malloc(64);
|
|
|
|
tor_snprintf(*answer, 64, U64_FORMAT" "U64_FORMAT,
|
|
|
|
U64_PRINTF_ARG(read_left), U64_PRINTF_ARG(write_left));
|
2005-07-22 16:55:09 +02:00
|
|
|
} else if (!strcmp(question, "accounting/interval-start")) {
|
|
|
|
*answer = tor_malloc(ISO_TIME_LEN+1);
|
|
|
|
format_iso_time(*answer, interval_start_time);
|
|
|
|
} else if (!strcmp(question, "accounting/interval-wake")) {
|
|
|
|
*answer = tor_malloc(ISO_TIME_LEN+1);
|
|
|
|
format_iso_time(*answer, interval_wakeup_time);
|
|
|
|
} else if (!strcmp(question, "accounting/interval-end")) {
|
|
|
|
*answer = tor_malloc(ISO_TIME_LEN+1);
|
|
|
|
format_iso_time(*answer, interval_end_time);
|
|
|
|
} else {
|
|
|
|
*answer = NULL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2005-07-22 23:12:10 +02:00
|
|
|
|