2010-05-21 00:07:21 +01:00
|
|
|
# This test runs a Bittorrent tracker on one machine, and verifies
|
|
|
|
# that two client machines can download the torrent using
|
|
|
|
# `transmission'. The first client (behind a NAT router) downloads
|
|
|
|
# from the initial seeder running on the tracker. Then we kill the
|
|
|
|
# initial seeder. The second client downloads from the first client,
|
|
|
|
# which only works if the first client successfully uses the UPnP-IGD
|
|
|
|
# protocol to poke a hole in the NAT.
|
|
|
|
|
2019-09-10 14:59:50 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }:
|
2010-05-20 15:56:04 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
# Some random file to serve.
|
2017-01-26 01:44:05 +00:00
|
|
|
file = pkgs.hello.src;
|
2010-05-21 00:07:21 +01:00
|
|
|
|
2018-09-15 14:15:32 +01:00
|
|
|
internalRouterAddress = "192.168.3.1";
|
|
|
|
internalClient1Address = "192.168.3.2";
|
|
|
|
externalRouterAddress = "80.100.100.1";
|
|
|
|
externalClient2Address = "80.100.100.2";
|
|
|
|
externalTrackerAddress = "80.100.100.3";
|
2020-01-14 09:18:58 +00:00
|
|
|
|
|
|
|
transmissionConfig = { ... }: {
|
|
|
|
environment.systemPackages = [ pkgs.transmission ];
|
|
|
|
services.transmission = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
dht-enabled = false;
|
|
|
|
message-level = 3;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2010-05-20 15:56:04 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2014-06-28 15:04:49 +01:00
|
|
|
name = "bittorrent";
|
2015-07-12 11:09:40 +01:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = [ domenkozar eelco rob bobvanderlinden ];
|
2015-07-12 11:09:40 +01:00
|
|
|
};
|
2010-05-20 15:56:04 +01:00
|
|
|
|
2020-01-14 09:18:58 +00:00
|
|
|
nodes = {
|
|
|
|
tracker = { pkgs, ... }: {
|
|
|
|
imports = [ transmissionConfig ];
|
|
|
|
|
|
|
|
virtualisation.vlans = [ 1 ];
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
networking.interfaces.eth1.ipv4.addresses = [
|
|
|
|
{ address = externalTrackerAddress; prefixLength = 24; }
|
|
|
|
];
|
|
|
|
|
|
|
|
# We need Apache on the tracker to serve the torrents.
|
|
|
|
services.httpd = {
|
|
|
|
enable = true;
|
|
|
|
virtualHosts = {
|
|
|
|
"torrentserver.org" = {
|
|
|
|
adminAddr = "foo@example.org";
|
|
|
|
documentRoot = "/tmp";
|
2020-01-14 09:11:57 +00:00
|
|
|
};
|
2010-05-20 15:56:04 +01:00
|
|
|
};
|
2020-01-14 09:18:58 +00:00
|
|
|
};
|
|
|
|
services.opentracker.enable = true;
|
|
|
|
};
|
2010-05-20 15:56:04 +01:00
|
|
|
|
2020-01-14 09:18:58 +00:00
|
|
|
router = { pkgs, nodes, ... }: {
|
|
|
|
virtualisation.vlans = [ 1 2 ];
|
|
|
|
networking.nat.enable = true;
|
|
|
|
networking.nat.internalInterfaces = [ "eth2" ];
|
|
|
|
networking.nat.externalInterface = "eth1";
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
networking.firewall.trustedInterfaces = [ "eth2" ];
|
|
|
|
networking.interfaces.eth0.ipv4.addresses = [];
|
|
|
|
networking.interfaces.eth1.ipv4.addresses = [
|
|
|
|
{ address = externalRouterAddress; prefixLength = 24; }
|
|
|
|
];
|
|
|
|
networking.interfaces.eth2.ipv4.addresses = [
|
|
|
|
{ address = internalRouterAddress; prefixLength = 24; }
|
|
|
|
];
|
|
|
|
services.miniupnpd = {
|
|
|
|
enable = true;
|
|
|
|
externalInterface = "eth1";
|
|
|
|
internalIPs = [ "eth2" ];
|
|
|
|
appendConfig = ''
|
|
|
|
ext_ip=${externalRouterAddress}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2010-05-21 00:07:21 +01:00
|
|
|
|
2020-01-14 09:18:58 +00:00
|
|
|
client1 = { pkgs, nodes, ... }: {
|
|
|
|
imports = [ transmissionConfig ];
|
|
|
|
environment.systemPackages = [ pkgs.miniupnpc ];
|
|
|
|
|
|
|
|
virtualisation.vlans = [ 2 ];
|
|
|
|
networking.interfaces.eth0.ipv4.addresses = [];
|
|
|
|
networking.interfaces.eth1.ipv4.addresses = [
|
|
|
|
{ address = internalClient1Address; prefixLength = 24; }
|
|
|
|
];
|
|
|
|
networking.defaultGateway = internalRouterAddress;
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
};
|
2010-05-21 00:07:21 +01:00
|
|
|
|
2020-01-14 09:18:58 +00:00
|
|
|
client2 = { pkgs, ... }: {
|
|
|
|
imports = [ transmissionConfig ];
|
|
|
|
|
|
|
|
virtualisation.vlans = [ 1 ];
|
|
|
|
networking.interfaces.eth0.ipv4.addresses = [];
|
|
|
|
networking.interfaces.eth1.ipv4.addresses = [
|
|
|
|
{ address = externalClient2Address; prefixLength = 24; }
|
|
|
|
];
|
|
|
|
networking.firewall.enable = false;
|
2010-05-20 15:56:04 +01:00
|
|
|
};
|
2020-01-14 09:18:58 +00:00
|
|
|
};
|
2010-05-20 15:56:04 +01:00
|
|
|
|
2020-01-14 09:18:58 +00:00
|
|
|
testScript = { nodes, ... }: ''
|
2019-09-10 14:59:50 +01:00
|
|
|
start_all()
|
2010-05-20 15:56:04 +01:00
|
|
|
|
2018-09-15 14:15:32 +01:00
|
|
|
# Wait for network and miniupnpd.
|
2019-09-10 14:59:50 +01:00
|
|
|
router.wait_for_unit("network-online.target")
|
|
|
|
router.wait_for_unit("miniupnpd")
|
2010-05-21 00:07:21 +01:00
|
|
|
|
2010-05-20 15:56:04 +01:00
|
|
|
# Create the torrent.
|
2019-09-10 14:59:50 +01:00
|
|
|
tracker.succeed("mkdir /tmp/data")
|
|
|
|
tracker.succeed(
|
|
|
|
"cp ${file} /tmp/data/test.tar.bz2"
|
|
|
|
)
|
|
|
|
tracker.succeed(
|
|
|
|
"transmission-create /tmp/data/test.tar.bz2 --private --tracker http://${externalTrackerAddress}:6969/announce --outfile /tmp/test.torrent"
|
|
|
|
)
|
|
|
|
tracker.succeed("chmod 644 /tmp/test.torrent")
|
2010-05-20 15:56:04 +01:00
|
|
|
|
|
|
|
# Start the tracker. !!! use a less crappy tracker
|
2019-09-10 14:59:50 +01:00
|
|
|
tracker.wait_for_unit("network-online.target")
|
|
|
|
tracker.wait_for_unit("opentracker.service")
|
|
|
|
tracker.wait_for_open_port(6969)
|
2010-05-20 15:56:04 +01:00
|
|
|
|
|
|
|
# Start the initial seeder.
|
2019-09-10 14:59:50 +01:00
|
|
|
tracker.succeed(
|
|
|
|
"transmission-remote --add /tmp/test.torrent --no-portmap --no-dht --download-dir /tmp/data"
|
|
|
|
)
|
2010-05-20 15:56:04 +01:00
|
|
|
|
2010-05-21 00:07:21 +01:00
|
|
|
# Now we should be able to download from the client behind the NAT.
|
2019-09-10 14:59:50 +01:00
|
|
|
tracker.wait_for_unit("httpd")
|
|
|
|
client1.wait_for_unit("network-online.target")
|
|
|
|
client1.succeed(
|
|
|
|
"transmission-remote --add http://${externalTrackerAddress}/test.torrent --download-dir /tmp >&2 &"
|
|
|
|
)
|
|
|
|
client1.wait_for_file("/tmp/test.tar.bz2")
|
|
|
|
client1.succeed(
|
|
|
|
"cmp /tmp/test.tar.bz2 ${file}"
|
|
|
|
)
|
2010-05-21 00:07:21 +01:00
|
|
|
|
|
|
|
# Bring down the initial seeder.
|
2019-09-10 14:59:50 +01:00
|
|
|
# tracker.stop_job("transmission")
|
2010-05-21 00:07:21 +01:00
|
|
|
|
|
|
|
# Now download from the second client. This can only succeed if
|
|
|
|
# the first client created a NAT hole in the router.
|
2019-09-10 14:59:50 +01:00
|
|
|
client2.wait_for_unit("network-online.target")
|
|
|
|
client2.succeed(
|
|
|
|
"transmission-remote --add http://${externalTrackerAddress}/test.torrent --no-portmap --no-dht --download-dir /tmp >&2 &"
|
|
|
|
)
|
|
|
|
client2.wait_for_file("/tmp/test.tar.bz2")
|
|
|
|
client2.succeed(
|
|
|
|
"cmp /tmp/test.tar.bz2 ${file}"
|
|
|
|
)
|
2010-05-20 15:56:04 +01:00
|
|
|
'';
|
2014-04-14 13:02:44 +01:00
|
|
|
})
|