2016-10-19 07:18:05 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2016, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include "test.hpp"
|
|
|
|
#include "create_torrent.hpp"
|
|
|
|
#include "settings.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/session_stats.hpp"
|
|
|
|
#include "libtorrent/settings_pack.hpp"
|
|
|
|
#include "libtorrent/ip_filter.hpp"
|
|
|
|
#include "libtorrent/alert_types.hpp"
|
|
|
|
#include "libtorrent/aux_/proxy_settings.hpp"
|
|
|
|
#include "libtorrent/settings_pack.hpp"
|
|
|
|
#include "simulator/simulator.hpp"
|
|
|
|
#include "simulator/socks_server.hpp"
|
|
|
|
#include "simulator/utils.hpp"
|
|
|
|
#include "setup_swarm.hpp"
|
|
|
|
#include "utils.hpp"
|
|
|
|
#include "setup_transfer.hpp" // for addr()
|
|
|
|
|
|
|
|
using namespace sim;
|
|
|
|
|
|
|
|
|
|
|
|
std::string make_ep_string(char const* address, bool const is_v6
|
|
|
|
, char const* port)
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
if (is_v6) ret += '[';
|
|
|
|
ret += address;
|
|
|
|
if (is_v6) ret += ']';
|
|
|
|
ret += ':';
|
|
|
|
ret += port;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename HandleAlerts, typename Test>
|
|
|
|
void run_test(HandleAlerts const& on_alert, Test const& test)
|
|
|
|
{
|
2017-04-12 20:05:53 +02:00
|
|
|
using namespace lt;
|
2016-10-19 07:18:05 +02:00
|
|
|
|
|
|
|
using asio::ip::address;
|
|
|
|
address const peer0 = addr("50.0.0.1");
|
|
|
|
address const peer1 = addr("50.0.0.2");
|
|
|
|
|
|
|
|
// setup the simulation
|
|
|
|
sim::default_config network_cfg;
|
|
|
|
sim::simulation sim{network_cfg};
|
|
|
|
sim::asio::io_service ios0 { sim, peer0 };
|
|
|
|
sim::asio::io_service ios1 { sim, peer1 };
|
|
|
|
|
|
|
|
lt::session_proxy zombie[2];
|
|
|
|
|
|
|
|
// setup settings pack to use for the session (customization point)
|
|
|
|
lt::settings_pack pack = settings();
|
|
|
|
|
|
|
|
// disable utp by default
|
|
|
|
pack.set_bool(settings_pack::enable_outgoing_utp, false);
|
|
|
|
pack.set_bool(settings_pack::enable_incoming_utp, false);
|
|
|
|
|
|
|
|
// disable encryption by default
|
|
|
|
pack.set_bool(settings_pack::prefer_rc4, false);
|
|
|
|
pack.set_int(settings_pack::in_enc_policy, settings_pack::pe_disabled);
|
|
|
|
pack.set_int(settings_pack::out_enc_policy, settings_pack::pe_disabled);
|
|
|
|
pack.set_int(settings_pack::allowed_enc_level, settings_pack::pe_plaintext);
|
|
|
|
|
|
|
|
pack.set_str(settings_pack::listen_interfaces, peer0.to_string() + ":6881");
|
|
|
|
|
|
|
|
// create session
|
|
|
|
std::shared_ptr<lt::session> ses[2];
|
|
|
|
ses[0] = std::make_shared<lt::session>(pack, ios0);
|
|
|
|
|
|
|
|
pack.set_str(settings_pack::listen_interfaces, peer1.to_string() + ":6881");
|
|
|
|
ses[1] = std::make_shared<lt::session>(pack, ios1);
|
|
|
|
|
|
|
|
// only monitor alerts for session 0 (the downloader)
|
|
|
|
print_alerts(*ses[0], [=](lt::session& ses, lt::alert const* a) {
|
|
|
|
if (auto ta = alert_cast<lt::torrent_added_alert>(a))
|
|
|
|
{
|
|
|
|
ta->handle.connect_peer(lt::tcp::endpoint(peer1, 6881));
|
|
|
|
}
|
|
|
|
on_alert(ses, a);
|
|
|
|
});
|
|
|
|
|
|
|
|
print_alerts(*ses[1]);
|
|
|
|
|
|
|
|
// the first peer is a downloader, the second peer is a seed
|
|
|
|
lt::add_torrent_params params = create_torrent(1);
|
2017-07-26 23:56:17 +02:00
|
|
|
params.flags &= ~lt::torrent_flags::auto_managed;
|
|
|
|
params.flags &= ~lt::torrent_flags::paused;
|
2016-10-19 07:18:05 +02:00
|
|
|
|
|
|
|
params.save_path = save_path(0);
|
|
|
|
ses[0]->async_add_torrent(params);
|
|
|
|
|
|
|
|
params.save_path = save_path(1);
|
|
|
|
ses[1]->async_add_torrent(params);
|
|
|
|
|
|
|
|
sim::timer t(sim, lt::seconds(60), [&](boost::system::error_code const& ec)
|
|
|
|
{
|
|
|
|
test(ses);
|
|
|
|
|
|
|
|
// shut down
|
|
|
|
int idx = 0;
|
|
|
|
for (auto& s : ses)
|
|
|
|
{
|
|
|
|
zombie[idx++] = s->abort();
|
|
|
|
s.reset();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
sim.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
int g_alloc_counter = 1000000;
|
|
|
|
|
|
|
|
void* operator new(std::size_t sz)
|
|
|
|
{
|
|
|
|
if (--g_alloc_counter == 0)
|
|
|
|
{
|
|
|
|
throw std::bad_alloc();
|
|
|
|
}
|
|
|
|
return std::malloc(sz);
|
|
|
|
}
|
|
|
|
|
|
|
|
void operator delete(void* ptr) noexcept
|
|
|
|
{
|
|
|
|
std::free(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
TORRENT_TEST(no_proxy_tcp)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < 3000; ++i)
|
|
|
|
{
|
|
|
|
std::printf("\n\n === ROUND %d ===\n\n", i);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
g_alloc_counter = 100 + i;
|
2017-04-12 20:05:53 +02:00
|
|
|
using namespace lt;
|
2016-10-19 07:18:05 +02:00
|
|
|
run_test(
|
|
|
|
[](lt::session&, lt::alert const*) {},
|
|
|
|
[](std::shared_ptr<lt::session> ses[2]) {}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
catch (std::bad_alloc const&)
|
|
|
|
{
|
|
|
|
// this is kind of expected
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
TEST_ERROR("session constructor terminated with unexpected exception. round: "
|
|
|
|
+ std::to_string(i));
|
|
|
|
}
|
|
|
|
// if we didn't fail any allocations this run, there's no need to
|
|
|
|
// continue, we won't exercise any new code paths
|
|
|
|
if (g_alloc_counter > 0) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|