2011-01-19 10:29:51 +01:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
#
|
2012-02-02 13:18:02 +01:00
|
|
|
# tor-bandwidth-usage - munin plugin to monitor Tor traffic
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
|
|
|
# To use this plugin you need the following:
|
|
|
|
# o Enable accounting on torrc configuration file (even if you dont want to limit bandwidth usage,
|
|
|
|
# just put a huge value for on AccountingMax)
|
|
|
|
# example:
|
|
|
|
# AccountingStart day 12:00
|
|
|
|
# AccountingMax 100 GB
|
|
|
|
# o Enable CookieAuthentication (CookieAuthentication 1 in torrc) or define a HashedControlPassword
|
2012-02-02 13:18:02 +01:00
|
|
|
# o Add something like the following to /etc/munin/plugin-conf.d/munin-node:
|
|
|
|
# [tor-bandwidth-usage]
|
|
|
|
# user debian-tor
|
|
|
|
# env.cookiefile /var/run/tor/control.authcookie
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
|
|
|
#
|
2012-02-02 13:18:02 +01:00
|
|
|
# tested with Tor releases: 0.2.1.28, 0.2.1.29, 0.2.2.35
|
|
|
|
#
|
|
|
|
# Author: tazoi <dev AT tazoi DOT it>, based on a plugin by Ævar Arnfjörð Bjarmason <avarab@gmail.com>
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
|
|
|
# Parameters understood (defined in file /etc/munin/plugin-conf.d/munin-node or in environment)
|
2012-02-02 13:18:02 +01:00
|
|
|
# host - Change which host to graph (default localhost)
|
|
|
|
# port - Change which port to connect to (default 9051)
|
2011-01-19 10:29:51 +01:00
|
|
|
# password - Plain-text control channel password (see torrc
|
2012-02-02 13:18:02 +01:00
|
|
|
# HashedControlPassword parameter)
|
2011-01-19 10:29:51 +01:00
|
|
|
# cookiefile - Name of the file containing the control channel cookie
|
2012-02-02 13:18:02 +01:00
|
|
|
# (see torrc CookieAuthentication parameter)
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
2012-02-02 13:18:02 +01:00
|
|
|
# Using HashedControlPassword authentication has the problem that you
|
|
|
|
# must include the plain-text password in the munin config file. To
|
|
|
|
# have any effect, that file shouldn't be world-readable.
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
2012-02-02 13:18:02 +01:00
|
|
|
# If you're using CookieAuthentication, you should run this plugin as
|
|
|
|
# a user which has read access to the tor datafiles. Also note that
|
2014-12-05 00:37:42 +01:00
|
|
|
# bugs in versions up to and including 0.1.1.20 prevent
|
2012-02-02 13:18:02 +01:00
|
|
|
# CookieAuthentication from working.
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
2012-02-02 13:18:02 +01:00
|
|
|
# Usage: place in /etc/munin/plugins (or link it there using ln -s)
|
2011-01-19 10:29:51 +01:00
|
|
|
#
|
|
|
|
#%# family=contrib
|
|
|
|
#%# capabilities=autoconf
|
|
|
|
|
|
|
|
use strict;
|
2012-02-02 13:18:02 +01:00
|
|
|
use feature ':5.10';
|
2011-01-19 10:29:51 +01:00
|
|
|
use IO::Socket::INET;
|
2012-02-02 13:18:02 +01:00
|
|
|
use Munin::Plugin;
|
2011-01-19 10:29:51 +01:00
|
|
|
|
|
|
|
# Config
|
2012-02-02 13:18:02 +01:00
|
|
|
my $address = $ENV{host} || "localhost";
|
|
|
|
my $port = $ENV{port} || 9051;
|
2011-01-19 10:29:51 +01:00
|
|
|
|
|
|
|
# Don't edit below this line
|
|
|
|
|
|
|
|
sub Authenticate
|
|
|
|
{
|
2012-02-02 13:18:02 +01:00
|
|
|
my ($socket) = @_;
|
|
|
|
my $authline = "AUTHENTICATE";
|
|
|
|
if (defined($ENV{cookiefile})) {
|
|
|
|
if (open(COOKIE, "<$ENV{cookiefile}")) {
|
|
|
|
my $cookie;
|
|
|
|
binmode COOKIE;
|
2012-03-11 12:08:48 +01:00
|
|
|
$authline .= " ";
|
|
|
|
while (read(COOKIE, $cookie, 32)) {
|
|
|
|
foreach my $byte (unpack "C*", $cookie) {
|
|
|
|
$authline .= sprintf "%02x", $byte;
|
|
|
|
}
|
|
|
|
}
|
2012-02-02 13:18:02 +01:00
|
|
|
close COOKIE;
|
|
|
|
}
|
|
|
|
} elsif (defined($ENV{password})) {
|
|
|
|
$authline .= ' "' . $ENV{password} . '"';
|
|
|
|
}
|
|
|
|
say $socket "$authline";
|
|
|
|
my $replyline = <$socket>;
|
|
|
|
if (substr($replyline, 0, 1) != '2') {
|
|
|
|
$replyline =~ s/\s*$//;
|
|
|
|
return "Failed to authenticate: $replyline";
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
2011-01-19 10:29:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($ARGV[0] and $ARGV[0] eq "autoconf") {
|
2012-02-02 13:18:02 +01:00
|
|
|
# Try to connect to the daemon
|
|
|
|
my $socket = IO::Socket::INET->new("$address:$port") or my $failed = 1;
|
|
|
|
|
|
|
|
if ($failed) {
|
|
|
|
say "no (failed to connect to $address port $port)";
|
2018-09-16 04:01:57 +02:00
|
|
|
exit 0;
|
2012-02-02 13:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
my $msg = Authenticate($socket);
|
|
|
|
if (defined($msg)) {
|
|
|
|
say $socket "QUIT";
|
|
|
|
close($socket);
|
|
|
|
say "no ($msg)";
|
2018-09-16 04:01:57 +02:00
|
|
|
exit 0;
|
2012-02-02 13:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
say $socket "QUIT";
|
|
|
|
close($socket);
|
|
|
|
say "yes";
|
|
|
|
exit 0;
|
2011-01-19 10:29:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($ARGV[0] and $ARGV[0] eq "config") {
|
2012-02-02 13:18:02 +01:00
|
|
|
say "graph_order down up";
|
|
|
|
say "graph_title Tor traffic";
|
|
|
|
say "graph_args --base 1000";
|
|
|
|
say "graph_vlabel bits in (-) / out (+) per \${graph_period}";
|
|
|
|
say "graph_category network";
|
|
|
|
say "graph_info This graph shows the traffic through this Tor node.";
|
|
|
|
say "down.label received";
|
|
|
|
say "down.type DERIVE";
|
|
|
|
say 'down.graph no';
|
|
|
|
say "down.cdef down,8,*";
|
|
|
|
say "down.min 0";
|
|
|
|
say "up.label b/s";
|
|
|
|
say "up.type DERIVE";
|
|
|
|
say "up.negative down";
|
|
|
|
say "up.cdef up,8,*";
|
|
|
|
say "up.min 0";
|
|
|
|
|
|
|
|
exit 0;
|
2011-01-19 10:29:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
my $socket = IO::Socket::INET->new("$address:$port")
|
2012-02-02 13:18:02 +01:00
|
|
|
or die("Couldn't connect to $address port $port: $!");
|
2011-01-19 10:29:51 +01:00
|
|
|
|
|
|
|
my $msg = Authenticate($socket);
|
|
|
|
if (defined($msg)) {
|
2012-02-02 13:18:02 +01:00
|
|
|
say $socket "QUIT";
|
|
|
|
close($socket);
|
|
|
|
die "$msg\n";
|
2011-01-19 10:29:51 +01:00
|
|
|
}
|
|
|
|
|
2012-02-02 13:18:02 +01:00
|
|
|
say $socket "GETINFO accounting/bytes";
|
2011-01-19 10:29:51 +01:00
|
|
|
my $down = 0;
|
|
|
|
my $up = 0;
|
|
|
|
my $replyline = <$socket>;
|
|
|
|
chomp($replyline);
|
2012-02-02 13:18:02 +01:00
|
|
|
if ($replyline =~ /^250-accounting\/bytes=(\d+)\s(\d+)/) {
|
|
|
|
$down = $1;
|
|
|
|
$up = $2;
|
2011-01-19 10:29:51 +01:00
|
|
|
} else {
|
2012-02-02 13:18:02 +01:00
|
|
|
die "Failed to get accounting info: $replyline\n";
|
2011-01-19 10:29:51 +01:00
|
|
|
}
|
|
|
|
|
2012-02-02 13:18:02 +01:00
|
|
|
say $socket "QUIT";
|
2011-01-19 10:29:51 +01:00
|
|
|
close($socket);
|
|
|
|
|
2012-02-02 13:18:02 +01:00
|
|
|
say "down.value $down";
|
|
|
|
say "up.value $up";
|
2011-01-19 10:29:51 +01:00
|
|
|
|
|
|
|
exit 0;
|