2007-12-18 07:04:54 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2007, 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 "libtorrent/pch.hpp"
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <boost/enable_shared_from_this.hpp>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <utility>
|
|
|
|
#include <numeric>
|
|
|
|
#include <cstdio>
|
|
|
|
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/torrent.hpp"
|
|
|
|
#include "libtorrent/extensions.hpp"
|
|
|
|
#include "libtorrent/extensions/smart_ban.hpp"
|
|
|
|
#include "libtorrent/disk_io_thread.hpp"
|
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
|
|
|
|
2009-11-23 09:38:50 +01:00
|
|
|
namespace libtorrent {
|
|
|
|
|
|
|
|
struct torrent;
|
|
|
|
|
|
|
|
namespace
|
2007-12-18 07:04:54 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
struct smart_ban_plugin : torrent_plugin, boost::enable_shared_from_this<smart_ban_plugin>
|
|
|
|
{
|
|
|
|
smart_ban_plugin(torrent& t)
|
|
|
|
: m_torrent(t)
|
|
|
|
, m_salt(rand())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_piece_pass(int p)
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_LOGGING
|
|
|
|
(*m_torrent.session().m_logger) << time_now_string() << " PIECE PASS [ p: " << p
|
|
|
|
<< " | block_crc_size: " << m_block_crc.size() << " ]\n";
|
|
|
|
#endif
|
|
|
|
// has this piece failed earlier? If it has, go through the
|
|
|
|
// CRCs from the time it failed and ban the peers that
|
|
|
|
// sent bad blocks
|
|
|
|
std::map<piece_block, block_entry>::iterator i = m_block_crc.lower_bound(piece_block(p, 0));
|
|
|
|
if (i == m_block_crc.end() || i->first.piece_index != p) return;
|
|
|
|
|
|
|
|
int size = m_torrent.torrent_file().piece_size(p);
|
2008-01-02 18:12:33 +01:00
|
|
|
peer_request r = {p, 0, (std::min)(16*1024, size)};
|
2007-12-18 07:04:54 +01:00
|
|
|
piece_block pb(p, 0);
|
|
|
|
while (size > 0)
|
|
|
|
{
|
|
|
|
if (i->first.block_index == pb.block_index)
|
|
|
|
{
|
2009-11-23 00:55:54 +01:00
|
|
|
m_torrent.filesystem().async_read(r, boost::bind(&smart_ban_plugin::on_read_ok_block
|
2007-12-18 07:04:54 +01:00
|
|
|
, shared_from_this(), *i, _1, _2));
|
|
|
|
m_block_crc.erase(i++);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(i->first.block_index > pb.block_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == m_block_crc.end() || i->first.piece_index != p)
|
|
|
|
break;
|
|
|
|
|
|
|
|
r.start += 16*1024;
|
|
|
|
size -= 16*1024;
|
2008-01-02 18:12:33 +01:00
|
|
|
r.length = (std::min)(16*1024, size);
|
2007-12-18 07:04:54 +01:00
|
|
|
++pb.block_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// make sure we actually removed all the entries for piece 'p'
|
|
|
|
i = m_block_crc.lower_bound(piece_block(p, 0));
|
|
|
|
TORRENT_ASSERT(i == m_block_crc.end() || i->first.piece_index != p);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (m_torrent.is_seed())
|
|
|
|
{
|
|
|
|
std::map<piece_block, block_entry>().swap(m_block_crc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_piece_failed(int p)
|
|
|
|
{
|
|
|
|
// The piece failed the hash check. Record
|
|
|
|
// the CRC and origin peer of every block
|
|
|
|
|
2008-06-22 22:30:43 +02:00
|
|
|
// if the torrent is aborted, no point in starting
|
|
|
|
// a bunch of read operations on it
|
|
|
|
if (m_torrent.is_aborted()) return;
|
|
|
|
|
2007-12-18 07:04:54 +01:00
|
|
|
std::vector<void*> downloaders;
|
|
|
|
m_torrent.picker().get_downloaders(downloaders, p);
|
|
|
|
|
|
|
|
int size = m_torrent.torrent_file().piece_size(p);
|
2008-01-02 18:12:33 +01:00
|
|
|
peer_request r = {p, 0, (std::min)(16*1024, size)};
|
2007-12-18 07:04:54 +01:00
|
|
|
piece_block pb(p, 0);
|
|
|
|
for (std::vector<void*>::iterator i = downloaders.begin()
|
|
|
|
, end(downloaders.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (*i != 0)
|
|
|
|
{
|
|
|
|
m_torrent.filesystem().async_read(r, bind(&smart_ban_plugin::on_read_failed_block
|
2009-04-30 07:49:46 +02:00
|
|
|
, shared_from_this(), pb, ((policy::peer*)*i)->address(), _1, _2));
|
2007-12-18 07:04:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
r.start += 16*1024;
|
|
|
|
size -= 16*1024;
|
2008-01-02 18:12:33 +01:00
|
|
|
r.length = (std::min)(16*1024, size);
|
2007-12-18 07:04:54 +01:00
|
|
|
++pb.block_index;
|
|
|
|
}
|
|
|
|
TORRENT_ASSERT(size <= 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// this entry ties a specific block CRC to
|
|
|
|
// a peer.
|
|
|
|
struct block_entry
|
|
|
|
{
|
|
|
|
policy::peer* peer;
|
|
|
|
unsigned long crc;
|
|
|
|
};
|
|
|
|
|
2009-02-25 06:53:24 +01:00
|
|
|
void on_read_failed_block(piece_block b, address a, int ret, disk_io_job const& j)
|
2007-12-18 07:04:54 +01:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_torrent.session().m_mutex);
|
2009-09-14 19:07:39 +02:00
|
|
|
|
|
|
|
disk_buffer_holder buffer(m_torrent.session(), j.buffer);
|
|
|
|
|
2007-12-18 07:04:54 +01:00
|
|
|
// ignore read errors
|
|
|
|
if (ret != j.buffer_size) return;
|
|
|
|
|
|
|
|
adler32_crc crc;
|
|
|
|
crc.update(j.buffer, j.buffer_size);
|
|
|
|
crc.update((char const*)&m_salt, sizeof(m_salt));
|
|
|
|
|
2009-02-25 06:53:24 +01:00
|
|
|
std::pair<policy::iterator, policy::iterator> range
|
|
|
|
= m_torrent.get_policy().find_peers(a);
|
|
|
|
|
|
|
|
// there is no peer with this address anymore
|
|
|
|
if (range.first == range.second) return;
|
|
|
|
|
2009-05-10 19:25:29 +02:00
|
|
|
policy::peer* p = (*range.first);
|
2009-02-25 06:53:24 +01:00
|
|
|
block_entry e = {p, crc.final()};
|
|
|
|
|
2007-12-18 07:04:54 +01:00
|
|
|
std::map<piece_block, block_entry>::iterator i = m_block_crc.lower_bound(b);
|
2009-02-25 06:53:24 +01:00
|
|
|
|
2008-01-06 19:35:39 +01:00
|
|
|
if (i != m_block_crc.end() && i->first == b && i->second.peer == p)
|
2007-12-18 07:04:54 +01:00
|
|
|
{
|
|
|
|
// this peer has sent us this block before
|
|
|
|
if (i->second.crc != e.crc)
|
|
|
|
{
|
|
|
|
// this time the crc of the block is different
|
|
|
|
// from the first time it sent it
|
|
|
|
// at least one of them must be bad
|
|
|
|
|
2009-07-28 01:34:50 +02:00
|
|
|
// verify that this is not a dangling pointer
|
|
|
|
// if the pointer is in the policy's list, it
|
|
|
|
// still live, if it's not, it has been removed
|
|
|
|
// and we can't use this pointer
|
2007-12-27 21:57:58 +01:00
|
|
|
if (!m_torrent.get_policy().has_peer(p)) return;
|
2007-12-18 07:04:54 +01:00
|
|
|
|
|
|
|
#ifdef TORRENT_LOGGING
|
|
|
|
char const* client = "-";
|
|
|
|
peer_info info;
|
|
|
|
if (p->connection)
|
|
|
|
{
|
|
|
|
p->connection->get_peer_info(info);
|
|
|
|
client = info.client.c_str();
|
|
|
|
}
|
|
|
|
(*m_torrent.session().m_logger) << time_now_string() << " BANNING PEER [ p: " << b.piece_index
|
|
|
|
<< " | b: " << b.block_index
|
|
|
|
<< " | c: " << client
|
|
|
|
<< " | crc1: " << i->second.crc
|
|
|
|
<< " | crc2: " << e.crc
|
2008-07-14 13:15:35 +02:00
|
|
|
<< " | ip: " << p->ip() << " ]\n";
|
2007-12-18 07:04:54 +01:00
|
|
|
#endif
|
2009-06-18 18:16:41 +02:00
|
|
|
m_torrent.get_policy().ban_peer(p);
|
2009-06-12 18:40:38 +02:00
|
|
|
if (p->connection) p->connection->disconnect(
|
|
|
|
error_code(errors::peer_banned, libtorrent_category));
|
2007-12-18 07:04:54 +01:00
|
|
|
}
|
|
|
|
// we already have this exact entry in the map
|
|
|
|
// we don't have to insert it
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-08-30 09:38:52 +02:00
|
|
|
m_block_crc.insert(i, std::pair<const piece_block, block_entry>(b, e));
|
2007-12-18 07:04:54 +01:00
|
|
|
|
|
|
|
#ifdef TORRENT_LOGGING
|
|
|
|
char const* client = "-";
|
|
|
|
peer_info info;
|
|
|
|
if (p->connection)
|
|
|
|
{
|
|
|
|
p->connection->get_peer_info(info);
|
|
|
|
client = info.client.c_str();
|
|
|
|
}
|
|
|
|
(*m_torrent.session().m_logger) << time_now_string() << " STORE BLOCK CRC [ p: " << b.piece_index
|
|
|
|
<< " | b: " << b.block_index
|
|
|
|
<< " | c: " << client
|
|
|
|
<< " | crc: " << e.crc
|
2008-07-14 13:15:35 +02:00
|
|
|
<< " | ip: " << p->ip() << " ]\n";
|
2007-12-18 07:04:54 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_read_ok_block(std::pair<piece_block, block_entry> b, int ret, disk_io_job const& j)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_torrent.session().m_mutex);
|
2007-12-18 07:04:54 +01:00
|
|
|
|
2009-09-14 19:07:39 +02:00
|
|
|
disk_buffer_holder buffer(m_torrent.session(), j.buffer);
|
|
|
|
|
2007-12-18 07:04:54 +01:00
|
|
|
// ignore read errors
|
|
|
|
if (ret != j.buffer_size) return;
|
|
|
|
|
|
|
|
adler32_crc crc;
|
|
|
|
crc.update(j.buffer, j.buffer_size);
|
|
|
|
crc.update((char const*)&m_salt, sizeof(m_salt));
|
|
|
|
unsigned long ok_crc = crc.final();
|
|
|
|
|
|
|
|
if (b.second.crc == ok_crc) return;
|
|
|
|
|
|
|
|
policy::peer* p = b.second.peer;
|
|
|
|
|
|
|
|
if (p == 0) return;
|
2007-12-27 21:57:58 +01:00
|
|
|
if (!m_torrent.get_policy().has_peer(p)) return;
|
2007-12-18 07:04:54 +01:00
|
|
|
|
|
|
|
#ifdef TORRENT_LOGGING
|
|
|
|
char const* client = "-";
|
|
|
|
peer_info info;
|
|
|
|
if (p->connection)
|
|
|
|
{
|
|
|
|
p->connection->get_peer_info(info);
|
|
|
|
client = info.client.c_str();
|
|
|
|
}
|
|
|
|
(*m_torrent.session().m_logger) << time_now_string() << " BANNING PEER [ p: " << b.first.piece_index
|
|
|
|
<< " | b: " << b.first.block_index
|
|
|
|
<< " | c: " << client
|
|
|
|
<< " | ok_crc: " << ok_crc
|
|
|
|
<< " | bad_crc: " << b.second.crc
|
2008-07-14 13:15:35 +02:00
|
|
|
<< " | ip: " << p->ip() << " ]\n";
|
2007-12-18 07:04:54 +01:00
|
|
|
#endif
|
2009-06-18 18:16:41 +02:00
|
|
|
m_torrent.get_policy().ban_peer(p);
|
2009-06-12 18:40:38 +02:00
|
|
|
if (p->connection) p->connection->disconnect(
|
|
|
|
error_code(errors::peer_banned, libtorrent_category));
|
2007-12-18 07:04:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
torrent& m_torrent;
|
|
|
|
|
|
|
|
// This table maps a piece_block (piece and block index
|
|
|
|
// pair) to a peer and the block CRC. The CRC is calculated
|
|
|
|
// from the data in the block + the salt
|
|
|
|
std::map<piece_block, block_entry> m_block_crc;
|
|
|
|
|
|
|
|
// This salt is a random value used to calculate the block CRCs
|
|
|
|
// Since the CRC function that is used is not a one way function
|
|
|
|
// the salt is required to avoid attacks where bad data is sent
|
|
|
|
// that is forged to match the CRC of the good data.
|
|
|
|
int m_salt;
|
|
|
|
};
|
|
|
|
|
|
|
|
} }
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
|
|
|
boost::shared_ptr<torrent_plugin> create_smart_ban_plugin(torrent* t, void*)
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<torrent_plugin>(new smart_ban_plugin(*t));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|