2006-10-11 22:57:54 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2006, Arvid Norberg, Magnus Jonsson
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <cctype>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/filesystem/convenience.hpp>
|
|
|
|
#include <boost/filesystem/exception.hpp>
|
|
|
|
#include <boost/limits.hpp>
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include "libtorrent/fingerprint.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/alert_types.hpp"
|
|
|
|
#include "libtorrent/invariant_check.hpp"
|
|
|
|
#include "libtorrent/file.hpp"
|
|
|
|
#include "libtorrent/bt_peer_connection.hpp"
|
|
|
|
#include "libtorrent/ip_filter.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
|
|
|
#include "libtorrent/kademlia/dht_tracker.hpp"
|
2007-09-22 18:27:29 +02:00
|
|
|
#include "libtorrent/enum_net.hpp"
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-07-07 01:06:58 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
|
|
|
|
#include <openssl/crypto.h>
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
// openssl requires this to clean up internal
|
|
|
|
// structures it allocates
|
|
|
|
struct openssl_cleanup
|
|
|
|
{
|
|
|
|
~openssl_cleanup() { CRYPTO_cleanup_all_ex_data(); }
|
|
|
|
} openssl_global_destructor;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
using boost::shared_ptr;
|
|
|
|
using boost::weak_ptr;
|
|
|
|
using boost::bind;
|
|
|
|
using boost::mutex;
|
|
|
|
using libtorrent::aux::session_impl;
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
namespace detail
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
std::string generate_auth_string(std::string const& user
|
|
|
|
, std::string const& passwd)
|
|
|
|
{
|
|
|
|
if (user.empty()) return std::string();
|
|
|
|
return user + ":" + passwd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} namespace aux {
|
|
|
|
// This is the checker thread
|
|
|
|
// it is looping in an infinite loop
|
|
|
|
// until the session is aborted. It will
|
|
|
|
// normally just block in a wait() call,
|
|
|
|
// waiting for a signal from session that
|
|
|
|
// there's a new torrent to check.
|
|
|
|
|
|
|
|
void checker_impl::operator()()
|
|
|
|
{
|
|
|
|
eh_initializer();
|
|
|
|
// if we're currently performing a full file check,
|
|
|
|
// this is the torrent being processed
|
|
|
|
boost::shared_ptr<piece_checker_data> processing;
|
|
|
|
boost::shared_ptr<piece_checker_data> t;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
// temporary torrent used while checking fastresume data
|
|
|
|
try
|
|
|
|
{
|
|
|
|
t.reset();
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_mutex);
|
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
// if the job queue is empty and
|
|
|
|
// we shouldn't abort
|
|
|
|
// wait for a signal
|
2007-03-06 18:27:17 +01:00
|
|
|
while (m_torrents.empty() && !m_abort && !processing)
|
2006-10-11 22:57:54 +02:00
|
|
|
m_cond.wait(l);
|
|
|
|
|
|
|
|
if (m_abort)
|
|
|
|
{
|
|
|
|
// no lock is needed here, because the main thread
|
|
|
|
// has already been shut down by now
|
|
|
|
processing.reset();
|
|
|
|
t.reset();
|
|
|
|
std::for_each(m_torrents.begin(), m_torrents.end()
|
|
|
|
, boost::bind(&torrent::abort
|
|
|
|
, boost::bind(&shared_ptr<torrent>::get
|
|
|
|
, boost::bind(&piece_checker_data::torrent_ptr, _1))));
|
|
|
|
m_torrents.clear();
|
|
|
|
std::for_each(m_processing.begin(), m_processing.end()
|
|
|
|
, boost::bind(&torrent::abort
|
|
|
|
, boost::bind(&shared_ptr<torrent>::get
|
|
|
|
, boost::bind(&piece_checker_data::torrent_ptr, _1))));
|
|
|
|
m_processing.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_torrents.empty())
|
|
|
|
{
|
|
|
|
t = m_torrents.front();
|
|
|
|
if (t->abort)
|
|
|
|
{
|
|
|
|
// make sure the locking order is
|
|
|
|
// consistent to avoid dead locks
|
|
|
|
// we need to lock the session because closing
|
|
|
|
// torrents assume to have access to it
|
|
|
|
l.unlock();
|
|
|
|
session_impl::mutex_t::scoped_lock l2(m_ses.m_mutex);
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
t->torrent_ptr->abort();
|
|
|
|
m_torrents.pop_front();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t)
|
|
|
|
{
|
|
|
|
std::string error_msg;
|
|
|
|
t->parse_resume_data(t->resume_data, t->torrent_ptr->torrent_file()
|
|
|
|
, error_msg);
|
|
|
|
|
|
|
|
if (!error_msg.empty() && m_ses.m_alerts.should_post(alert::warning))
|
|
|
|
{
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses.m_mutex);
|
|
|
|
m_ses.m_alerts.post_alert(fastresume_rejected_alert(
|
|
|
|
t->torrent_ptr->get_handle()
|
|
|
|
, error_msg));
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_ses.m_logger) << "fastresume data for "
|
|
|
|
<< t->torrent_ptr->torrent_file().name() << " rejected: "
|
|
|
|
<< error_msg << "\n";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-02-04 03:08:46 +01:00
|
|
|
// lock the session to add the new torrent
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses.m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_mutex);
|
2007-10-03 03:21:28 +02:00
|
|
|
|
|
|
|
if (m_torrents.empty() || m_torrents.front() != t)
|
|
|
|
{
|
|
|
|
// this means the torrent was removed right after it was
|
|
|
|
// added. Abort the checking.
|
|
|
|
t.reset();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
// clear the resume data now that it has been used
|
|
|
|
// (the fast resume data is now parsed and stored in t)
|
|
|
|
t->resume_data = entry();
|
|
|
|
bool up_to_date = t->torrent_ptr->check_fastresume(*t);
|
|
|
|
|
|
|
|
if (up_to_date)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-10-03 03:21:28 +02:00
|
|
|
assert(!m_torrents.empty());
|
2006-10-11 22:57:54 +02:00
|
|
|
assert(m_torrents.front() == t);
|
|
|
|
|
|
|
|
t->torrent_ptr->files_checked(t->unfinished_pieces);
|
|
|
|
m_torrents.pop_front();
|
|
|
|
|
|
|
|
// we cannot add the torrent if the session is aborted.
|
|
|
|
if (!m_ses.is_aborted())
|
|
|
|
{
|
|
|
|
m_ses.m_torrents.insert(std::make_pair(t->info_hash, t->torrent_ptr));
|
2007-08-16 21:41:28 +02:00
|
|
|
if (m_ses.m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_ses.m_alerts.post_alert(torrent_checked_alert(
|
|
|
|
processing->torrent_ptr->get_handle()
|
|
|
|
, "torrent finished checking"));
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
if (t->torrent_ptr->is_seed() && m_ses.m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_ses.m_alerts.post_alert(torrent_finished_alert(
|
|
|
|
t->torrent_ptr->get_handle()
|
|
|
|
, "torrent is complete"));
|
|
|
|
}
|
|
|
|
|
|
|
|
peer_id id;
|
|
|
|
std::fill(id.begin(), id.end(), 0);
|
|
|
|
for (std::vector<tcp::endpoint>::const_iterator i = t->peers.begin();
|
|
|
|
i != t->peers.end(); ++i)
|
|
|
|
{
|
2007-04-10 23:23:13 +02:00
|
|
|
t->torrent_ptr->get_policy().peer_from_tracker(*i, id
|
|
|
|
, peer_info::resume_data, 0);
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
2007-10-03 19:37:15 +02:00
|
|
|
|
|
|
|
for (std::vector<tcp::endpoint>::const_iterator i = t->banned_peers.begin();
|
|
|
|
i != t->banned_peers.end(); ++i)
|
|
|
|
{
|
|
|
|
policy::peer* p = t->torrent_ptr->get_policy().peer_from_tracker(*i, id
|
|
|
|
, peer_info::resume_data, 0);
|
|
|
|
if (p) p->banned = true;
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
t->torrent_ptr->abort();
|
|
|
|
}
|
|
|
|
t.reset();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-02-04 03:08:46 +01:00
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
// move the torrent from
|
2006-10-11 22:57:54 +02:00
|
|
|
// m_torrents to m_processing
|
2007-02-04 03:08:46 +01:00
|
|
|
assert(m_torrents.front() == t);
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-02-04 03:08:46 +01:00
|
|
|
m_torrents.pop_front();
|
|
|
|
m_processing.push_back(t);
|
|
|
|
if (!processing)
|
|
|
|
{
|
|
|
|
processing = t;
|
|
|
|
processing->processing = true;
|
|
|
|
t.reset();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const std::exception& e)
|
|
|
|
{
|
|
|
|
// This will happen if the storage fails to initialize
|
2006-12-30 00:40:56 +01:00
|
|
|
// for example if one of the files has an invalid filename.
|
2006-10-11 22:57:54 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses.m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_mutex);
|
|
|
|
|
|
|
|
if (m_ses.m_alerts.should_post(alert::fatal))
|
|
|
|
{
|
|
|
|
m_ses.m_alerts.post_alert(
|
|
|
|
file_error_alert(
|
|
|
|
t->torrent_ptr->get_handle()
|
|
|
|
, e.what()));
|
|
|
|
}
|
|
|
|
t->torrent_ptr->abort();
|
|
|
|
|
|
|
|
assert(!m_torrents.empty());
|
|
|
|
m_torrents.pop_front();
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
std::cerr << "error while checking resume data\n";
|
|
|
|
#endif
|
|
|
|
mutex::scoped_lock l(m_mutex);
|
|
|
|
assert(!m_torrents.empty());
|
|
|
|
m_torrents.pop_front();
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!processing) continue;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
assert(processing);
|
|
|
|
|
|
|
|
float finished = false;
|
|
|
|
float progress = 0.f;
|
|
|
|
boost::tie(finished, progress) = processing->torrent_ptr->check_files();
|
|
|
|
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_mutex);
|
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
processing->progress = progress;
|
|
|
|
if (processing->abort)
|
|
|
|
{
|
|
|
|
assert(!m_processing.empty());
|
|
|
|
assert(m_processing.front() == processing);
|
|
|
|
|
|
|
|
processing->torrent_ptr->abort();
|
|
|
|
|
|
|
|
processing.reset();
|
|
|
|
m_processing.pop_front();
|
|
|
|
if (!m_processing.empty())
|
|
|
|
{
|
|
|
|
processing = m_processing.front();
|
|
|
|
processing->processing = true;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (finished)
|
|
|
|
{
|
|
|
|
// lock the session to add the new torrent
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses.m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_mutex);
|
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
assert(!m_processing.empty());
|
|
|
|
assert(m_processing.front() == processing);
|
|
|
|
|
|
|
|
// TODO: factor out the adding of torrents to the session
|
|
|
|
// and to the checker thread to avoid duplicating the
|
|
|
|
// check for abortion.
|
|
|
|
if (!m_ses.is_aborted())
|
|
|
|
{
|
|
|
|
processing->torrent_ptr->files_checked(processing->unfinished_pieces);
|
|
|
|
m_ses.m_torrents.insert(std::make_pair(
|
|
|
|
processing->info_hash, processing->torrent_ptr));
|
2007-08-16 21:41:28 +02:00
|
|
|
if (m_ses.m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_ses.m_alerts.post_alert(torrent_checked_alert(
|
|
|
|
processing->torrent_ptr->get_handle()
|
|
|
|
, "torrent finished checking"));
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
if (processing->torrent_ptr->is_seed()
|
|
|
|
&& m_ses.m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_ses.m_alerts.post_alert(torrent_finished_alert(
|
|
|
|
processing->torrent_ptr->get_handle()
|
|
|
|
, "torrent is complete"));
|
|
|
|
}
|
|
|
|
|
|
|
|
peer_id id;
|
|
|
|
std::fill(id.begin(), id.end(), 0);
|
|
|
|
for (std::vector<tcp::endpoint>::const_iterator i = processing->peers.begin();
|
|
|
|
i != processing->peers.end(); ++i)
|
|
|
|
{
|
2007-04-10 23:23:13 +02:00
|
|
|
processing->torrent_ptr->get_policy().peer_from_tracker(*i, id
|
|
|
|
, peer_info::resume_data, 0);
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
processing->torrent_ptr->abort();
|
|
|
|
}
|
|
|
|
processing.reset();
|
|
|
|
m_processing.pop_front();
|
|
|
|
if (!m_processing.empty())
|
|
|
|
{
|
|
|
|
processing = m_processing.front();
|
|
|
|
processing->processing = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(std::exception const& e)
|
|
|
|
{
|
|
|
|
// This will happen if the storage fails to initialize
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses.m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_mutex);
|
|
|
|
|
|
|
|
if (m_ses.m_alerts.should_post(alert::fatal))
|
|
|
|
{
|
|
|
|
m_ses.m_alerts.post_alert(
|
|
|
|
file_error_alert(
|
|
|
|
processing->torrent_ptr->get_handle()
|
|
|
|
, e.what()));
|
|
|
|
}
|
|
|
|
assert(!m_processing.empty());
|
|
|
|
|
|
|
|
processing->torrent_ptr->abort();
|
|
|
|
|
|
|
|
processing.reset();
|
|
|
|
m_processing.pop_front();
|
|
|
|
if (!m_processing.empty())
|
|
|
|
{
|
|
|
|
processing = m_processing.front();
|
|
|
|
processing->processing = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
std::cerr << "error while checking files\n";
|
|
|
|
#endif
|
|
|
|
mutex::scoped_lock l(m_mutex);
|
|
|
|
assert(!m_processing.empty());
|
|
|
|
|
|
|
|
processing.reset();
|
|
|
|
m_processing.pop_front();
|
|
|
|
if (!m_processing.empty())
|
|
|
|
{
|
|
|
|
processing = m_processing.front();
|
|
|
|
processing->processing = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aux::piece_checker_data* checker_impl::find_torrent(sha1_hash const& info_hash)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
for (std::deque<boost::shared_ptr<piece_checker_data> >::iterator i
|
|
|
|
= m_torrents.begin(); i != m_torrents.end(); ++i)
|
|
|
|
{
|
|
|
|
if ((*i)->info_hash == info_hash) return i->get();
|
|
|
|
}
|
|
|
|
for (std::deque<boost::shared_ptr<piece_checker_data> >::iterator i
|
|
|
|
= m_processing.begin(); i != m_processing.end(); ++i)
|
|
|
|
{
|
|
|
|
if ((*i)->info_hash == info_hash) return i->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void checker_impl::remove_torrent(sha1_hash const& info_hash)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
for (std::deque<boost::shared_ptr<piece_checker_data> >::iterator i
|
|
|
|
= m_torrents.begin(); i != m_torrents.end(); ++i)
|
|
|
|
{
|
|
|
|
if ((*i)->info_hash == info_hash)
|
|
|
|
{
|
|
|
|
assert((*i)->processing == false);
|
|
|
|
m_torrents.erase(i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (std::deque<boost::shared_ptr<piece_checker_data> >::iterator i
|
|
|
|
= m_processing.begin(); i != m_processing.end(); ++i)
|
|
|
|
{
|
|
|
|
if ((*i)->info_hash == info_hash)
|
|
|
|
{
|
|
|
|
assert((*i)->processing == false);
|
|
|
|
m_processing.erase(i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
void checker_impl::check_invariant() const
|
|
|
|
{
|
|
|
|
for (std::deque<boost::shared_ptr<piece_checker_data> >::const_iterator i
|
|
|
|
= m_torrents.begin(); i != m_torrents.end(); ++i)
|
|
|
|
{
|
|
|
|
assert(*i);
|
|
|
|
assert((*i)->torrent_ptr);
|
|
|
|
}
|
|
|
|
for (std::deque<boost::shared_ptr<piece_checker_data> >::const_iterator i
|
|
|
|
= m_processing.begin(); i != m_processing.end(); ++i)
|
|
|
|
{
|
|
|
|
assert(*i);
|
|
|
|
assert((*i)->torrent_ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-11-15 22:39:58 +01:00
|
|
|
struct seed_random_generator
|
|
|
|
{
|
|
|
|
seed_random_generator()
|
2006-11-30 12:56:19 +01:00
|
|
|
{
|
2007-04-10 09:52:58 +02:00
|
|
|
std::srand(total_microseconds(time_now() - min_time()));
|
2006-11-30 12:56:19 +01:00
|
|
|
}
|
2006-11-15 22:39:58 +01:00
|
|
|
};
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
session_impl::session_impl(
|
|
|
|
std::pair<int, int> listen_port_range
|
|
|
|
, fingerprint const& cl_fprint
|
|
|
|
, char const* listen_interface)
|
2007-09-29 18:14:03 +02:00
|
|
|
: m_send_buffers(send_buffer_size)
|
|
|
|
, m_strand(m_io_service)
|
2007-05-12 01:41:31 +02:00
|
|
|
, m_files(40)
|
2007-05-24 20:53:55 +02:00
|
|
|
, m_half_open(m_io_service)
|
2007-07-03 01:48:06 +02:00
|
|
|
, m_download_channel(m_io_service, peer_connection::download_channel)
|
|
|
|
, m_upload_channel(m_io_service, peer_connection::upload_channel)
|
2007-04-25 20:26:35 +02:00
|
|
|
, m_tracker_manager(m_settings, m_tracker_proxy)
|
2007-09-22 18:27:29 +02:00
|
|
|
, m_listen_port_retries(listen_port_range.second - listen_port_range.first)
|
2006-10-11 22:57:54 +02:00
|
|
|
, m_listen_interface(address::from_string(listen_interface), listen_port_range.first)
|
|
|
|
, m_abort(false)
|
2007-08-16 14:41:46 +02:00
|
|
|
, m_max_uploads(8)
|
|
|
|
, m_max_connections(200)
|
|
|
|
, m_num_unchoked(0)
|
|
|
|
, m_unchoke_time_scaler(0)
|
|
|
|
, m_optimistic_unchoke_time_scaler(0)
|
|
|
|
, m_disconnect_time_scaler(0)
|
2006-10-11 22:57:54 +02:00
|
|
|
, m_incoming_connection(false)
|
2007-04-05 00:27:36 +02:00
|
|
|
, m_last_tick(time_now())
|
2007-03-15 23:03:56 +01:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
, m_dht_same_port(true)
|
|
|
|
, m_external_udp_port(0)
|
|
|
|
#endif
|
2006-12-15 18:47:21 +01:00
|
|
|
, m_timer(m_io_service)
|
2007-05-05 02:29:33 +02:00
|
|
|
, m_next_connect_torrent(0)
|
2006-10-11 22:57:54 +02:00
|
|
|
, m_checker_impl(*this)
|
|
|
|
{
|
2007-09-10 03:57:40 +02:00
|
|
|
#ifdef WIN32
|
|
|
|
// windows XP has a limit of 10 simultaneous connections
|
|
|
|
m_half_open.limit(8);
|
|
|
|
#endif
|
|
|
|
|
2007-07-03 01:48:06 +02:00
|
|
|
m_bandwidth_manager[peer_connection::download_channel] = &m_download_channel;
|
|
|
|
m_bandwidth_manager[peer_connection::upload_channel] = &m_upload_channel;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2006-11-15 22:39:58 +01:00
|
|
|
m_logger = create_log("main_session", listen_port(), false);
|
2007-04-10 09:52:58 +02:00
|
|
|
(*m_logger) << time_now_string() << "\n";
|
2007-05-14 00:01:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TORRENT_STATS
|
2007-09-29 18:14:03 +02:00
|
|
|
m_stats_logger.open("session_stats.log", std::ios::trunc);
|
2007-05-14 00:01:21 +02:00
|
|
|
m_stats_logger <<
|
2006-11-21 16:51:28 +01:00
|
|
|
"1. second\n"
|
2007-05-14 00:01:21 +02:00
|
|
|
"2. upload rate\n"
|
|
|
|
"3. download rate\n"
|
|
|
|
"4. downloading torrents\n"
|
|
|
|
"5. seeding torrents\n"
|
|
|
|
"6. peers\n"
|
2007-05-14 06:01:30 +02:00
|
|
|
"7. connecting peers\n"
|
2007-09-29 18:14:03 +02:00
|
|
|
"8. disk block buffers\n"
|
2006-11-21 16:51:28 +01:00
|
|
|
"\n";
|
2007-09-29 18:14:03 +02:00
|
|
|
m_buffer_usage_logger.open("buffer_stats.log", std::ios::trunc);
|
2006-11-21 16:51:28 +01:00
|
|
|
m_second_counter = 0;
|
2006-10-11 22:57:54 +02:00
|
|
|
#endif
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
// ---- generate a peer id ----
|
2006-11-15 22:39:58 +01:00
|
|
|
static seed_random_generator seeder;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
m_key = rand() + (rand() << 15) + (rand() << 30);
|
|
|
|
std::string print = cl_fprint.to_string();
|
|
|
|
assert(print.length() <= 20);
|
|
|
|
|
|
|
|
// the client's fingerprint
|
|
|
|
std::copy(
|
|
|
|
print.begin()
|
|
|
|
, print.begin() + print.length()
|
|
|
|
, m_peer_id.begin());
|
|
|
|
|
|
|
|
// http-accepted characters:
|
|
|
|
static char const printable[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
"abcdefghijklmnopqrstuvwxyz-_.!~*'()";
|
|
|
|
|
|
|
|
// the random number
|
|
|
|
for (unsigned char* i = m_peer_id.begin() + print.length();
|
|
|
|
i != m_peer_id.end(); ++i)
|
|
|
|
{
|
|
|
|
*i = printable[rand() % (sizeof(printable)-1)];
|
|
|
|
}
|
|
|
|
|
|
|
|
m_timer.expires_from_now(seconds(1));
|
2006-12-15 18:47:21 +01:00
|
|
|
m_timer.async_wait(m_strand.wrap(
|
|
|
|
bind(&session_impl::second_tick, this, _1)));
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
m_thread.reset(new boost::thread(boost::ref(*this)));
|
|
|
|
m_checker_thread.reset(new boost::thread(boost::ref(m_checker_impl)));
|
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
void session_impl::add_extension(
|
2007-09-14 02:11:33 +02:00
|
|
|
boost::function<boost::shared_ptr<torrent_plugin>(torrent*, void*)> ext)
|
2006-11-14 01:08:16 +01:00
|
|
|
{
|
|
|
|
m_extensions.push_back(ext);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-04-18 01:06:00 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2006-10-11 22:57:54 +02:00
|
|
|
void session_impl::add_dht_node(udp::endpoint n)
|
|
|
|
{
|
|
|
|
if (m_dht) m_dht->add_node(n);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void session_impl::abort()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
assert(!m_abort);
|
|
|
|
// abort the main thread
|
|
|
|
m_abort = true;
|
2007-01-10 16:02:25 +01:00
|
|
|
m_io_service.stop();
|
2006-10-11 22:57:54 +02:00
|
|
|
l.unlock();
|
|
|
|
|
|
|
|
mutex::scoped_lock l2(m_checker_impl.m_mutex);
|
|
|
|
// abort the checker thread
|
|
|
|
m_checker_impl.m_abort = true;
|
|
|
|
}
|
|
|
|
|
2007-06-01 03:05:57 +02:00
|
|
|
void session_impl::set_port_filter(port_filter const& f)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
m_port_filter = f;
|
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
void session_impl::set_ip_filter(ip_filter const& f)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
m_ip_filter = f;
|
|
|
|
|
|
|
|
// Close connections whose endpoint is filtered
|
|
|
|
// by the new ip-filter
|
2007-07-26 09:04:35 +02:00
|
|
|
for (torrent_map::iterator i = m_torrents.begin()
|
|
|
|
, end(m_torrents.end()); i != end; ++i)
|
|
|
|
i->second->ip_filter_updated();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_settings(session_settings const& s)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-05-25 23:00:35 +02:00
|
|
|
assert(s.connection_speed > 0);
|
|
|
|
assert(s.file_pool_size > 0);
|
2007-06-08 00:37:58 +02:00
|
|
|
|
|
|
|
// less than 5 seconds unchoke interval is insane
|
|
|
|
assert(s.unchoke_interval >= 5);
|
2006-10-11 22:57:54 +02:00
|
|
|
m_settings = s;
|
2006-11-14 16:53:38 +01:00
|
|
|
m_files.resize(m_settings.file_pool_size);
|
2006-10-11 22:57:54 +02:00
|
|
|
// replace all occurances of '\n' with ' '.
|
|
|
|
std::string::iterator i = m_settings.user_agent.begin();
|
|
|
|
while ((i = std::find(i, m_settings.user_agent.end(), '\n'))
|
|
|
|
!= m_settings.user_agent.end())
|
|
|
|
*i = ' ';
|
|
|
|
}
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
tcp::endpoint session_impl::get_ipv6_interface() const
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
return m_ipv6_interface;
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
session_impl::listen_socket_t session_impl::setup_listener(tcp::endpoint ep, int retries)
|
|
|
|
{
|
|
|
|
asio::error_code ec;
|
|
|
|
listen_socket_t s;
|
|
|
|
s.sock.reset(new socket_acceptor(m_io_service));
|
|
|
|
s.sock->open(ep.protocol(), ec);
|
|
|
|
s.sock->set_option(socket_acceptor::reuse_address(true), ec);
|
|
|
|
s.sock->bind(ep, ec);
|
|
|
|
while (ec && retries > 0)
|
|
|
|
{
|
|
|
|
ec = asio::error_code();
|
|
|
|
assert(!ec);
|
|
|
|
--retries;
|
|
|
|
ep.port(ep.port() + 1);
|
|
|
|
s.sock->bind(ep, ec);
|
|
|
|
}
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
// instead of giving up, try
|
|
|
|
// let the OS pick a port
|
|
|
|
ep.port(0);
|
|
|
|
ec = asio::error_code();
|
|
|
|
s.sock->bind(ep, ec);
|
|
|
|
}
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
// not even that worked, give up
|
|
|
|
if (m_alerts.should_post(alert::fatal))
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-09-24 00:50:25 +02:00
|
|
|
std::stringstream msg;
|
|
|
|
msg << "cannot bind to interface '";
|
|
|
|
print_endpoint(msg, ep) << "' " << ec.message();
|
|
|
|
m_alerts.post_alert(listen_failed_alert(ep, msg.str()));
|
2007-09-22 18:27:29 +02:00
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2007-09-24 00:50:25 +02:00
|
|
|
std::stringstream msg;
|
|
|
|
msg << "cannot bind to interface '";
|
|
|
|
print_endpoint(msg, ep) << "' " << ec.message();
|
|
|
|
(*m_logger) << msg.str() << "\n";
|
2006-10-11 22:57:54 +02:00
|
|
|
#endif
|
2007-09-22 18:27:29 +02:00
|
|
|
return listen_socket_t();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
2007-09-22 18:27:29 +02:00
|
|
|
s.external_port = s.sock->local_endpoint(ec).port();
|
|
|
|
s.sock->listen(0, ec);
|
|
|
|
if (ec)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
if (m_alerts.should_post(alert::fatal))
|
|
|
|
{
|
2007-09-24 00:50:25 +02:00
|
|
|
std::stringstream msg;
|
|
|
|
msg << "cannot listen on interface '";
|
|
|
|
print_endpoint(msg, ep) << "' " << ec.message();
|
|
|
|
m_alerts.post_alert(listen_failed_alert(ep, msg.str()));
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
2007-09-22 18:27:29 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2007-09-24 00:50:25 +02:00
|
|
|
std::stringstream msg;
|
|
|
|
msg << "cannot listen on interface '";
|
|
|
|
print_endpoint(msg, ep) << "' " << ec.message();
|
|
|
|
(*m_logger) << msg.str() << "\n";
|
2007-09-22 18:27:29 +02:00
|
|
|
#endif
|
|
|
|
return listen_socket_t();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
if (m_alerts.should_post(alert::fatal))
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
std::string msg = "listening on interface "
|
|
|
|
+ boost::lexical_cast<std::string>(ep);
|
|
|
|
m_alerts.post_alert(listen_succeeded_alert(ep, msg));
|
|
|
|
}
|
|
|
|
|
2007-09-10 21:10:38 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2007-09-24 00:50:25 +02:00
|
|
|
(*m_logger) << "listening on: " << ep
|
2007-09-22 18:27:29 +02:00
|
|
|
<< " external port: " << s.external_port << "\n";
|
2006-10-11 22:57:54 +02:00
|
|
|
#endif
|
2007-09-22 18:27:29 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::open_listen_port() throw()
|
|
|
|
{
|
|
|
|
// close the open listen sockets
|
|
|
|
m_listen_sockets.clear();
|
|
|
|
m_incoming_connection = false;
|
|
|
|
|
|
|
|
if (is_any(m_listen_interface.address()))
|
|
|
|
{
|
|
|
|
// this means we should open two listen sockets
|
|
|
|
// one for IPv4 and one for IPv6
|
|
|
|
|
|
|
|
listen_socket_t s = setup_listener(
|
|
|
|
tcp::endpoint(address_v4::any(), m_listen_interface.port())
|
|
|
|
, m_listen_port_retries);
|
|
|
|
|
|
|
|
if (s.sock)
|
|
|
|
{
|
|
|
|
m_listen_sockets.push_back(s);
|
|
|
|
async_accept(s.sock);
|
|
|
|
}
|
|
|
|
|
|
|
|
s = setup_listener(
|
|
|
|
tcp::endpoint(address_v6::any(), m_listen_interface.port())
|
|
|
|
, m_listen_port_retries);
|
|
|
|
|
|
|
|
if (s.sock)
|
|
|
|
{
|
|
|
|
m_listen_sockets.push_back(s);
|
|
|
|
async_accept(s.sock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// we should only open a single listen socket, that
|
|
|
|
// binds to the given interface
|
|
|
|
|
|
|
|
listen_socket_t s = setup_listener(
|
|
|
|
m_listen_interface, m_listen_port_retries);
|
|
|
|
|
|
|
|
if (s.sock)
|
|
|
|
{
|
|
|
|
m_listen_sockets.push_back(s);
|
|
|
|
async_accept(s.sock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ipv6_interface = tcp::endpoint();
|
|
|
|
|
|
|
|
for (std::list<listen_socket_t>::const_iterator i = m_listen_sockets.begin()
|
|
|
|
, end(m_listen_sockets.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
asio::error_code ec;
|
|
|
|
tcp::endpoint ep = i->sock->local_endpoint(ec);
|
|
|
|
if (ec || ep.address().is_v4()) continue;
|
|
|
|
|
2007-09-22 19:07:55 +02:00
|
|
|
if (ep.address().to_v6() != address_v6::any())
|
2007-09-22 18:27:29 +02:00
|
|
|
{
|
2007-09-22 19:07:55 +02:00
|
|
|
// if we're listening on a specific address
|
|
|
|
// pick it
|
|
|
|
m_ipv6_interface = ep;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if we're listening on any IPv6 address, enumerate them and
|
|
|
|
// pick the first non-local address
|
|
|
|
std::vector<address> const& ifs = enum_net_interfaces(m_io_service, ec);
|
|
|
|
for (std::vector<address>::const_iterator i = ifs.begin()
|
|
|
|
, end(ifs.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (i->is_v4() || i->to_v6().is_link_local() || i->to_v6().is_loopback()) continue;
|
|
|
|
m_ipv6_interface = tcp::endpoint(*i, ep.port());
|
|
|
|
break;
|
|
|
|
}
|
2007-09-22 18:27:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_listen_sockets.empty())
|
|
|
|
{
|
|
|
|
asio::error_code ec;
|
|
|
|
tcp::endpoint local = m_listen_sockets.front().sock->local_endpoint(ec);
|
|
|
|
if (!ec)
|
|
|
|
{
|
|
|
|
if (m_natpmp.get()) m_natpmp->set_mappings(local.port(), 0);
|
|
|
|
if (m_upnp.get()) m_upnp->set_mappings(local.port(), 0);
|
|
|
|
}
|
2007-09-10 21:10:38 +02:00
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
void session_impl::async_accept(boost::shared_ptr<socket_acceptor> const& listener)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-04-25 20:26:35 +02:00
|
|
|
shared_ptr<socket_type> c(new socket_type(m_io_service));
|
2007-04-23 23:36:21 +02:00
|
|
|
c->instantiate<stream_socket>();
|
2007-09-22 18:27:29 +02:00
|
|
|
listener->async_accept(c->get<stream_socket>()
|
2006-10-11 22:57:54 +02:00
|
|
|
, bind(&session_impl::on_incoming_connection, this, c
|
2007-09-22 18:27:29 +02:00
|
|
|
, boost::weak_ptr<socket_acceptor>(listener), _1));
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
2007-04-25 20:26:35 +02:00
|
|
|
void session_impl::on_incoming_connection(shared_ptr<socket_type> const& s
|
2007-09-22 18:27:29 +02:00
|
|
|
, weak_ptr<socket_acceptor> listen_socket, asio::error_code const& e) try
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
boost::shared_ptr<socket_acceptor> listener = listen_socket.lock();
|
|
|
|
if (!listener) return;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
if (e == asio::error::operation_aborted) return;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
if (m_abort) return;
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
asio::error_code ec;
|
2006-10-11 22:57:54 +02:00
|
|
|
if (e)
|
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
tcp::endpoint ep = listener->local_endpoint(ec);
|
2006-10-11 22:57:54 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
std::string msg = "error accepting connection on '"
|
2007-09-22 18:27:29 +02:00
|
|
|
+ boost::lexical_cast<std::string>(ep) + "' " + e.message();
|
2006-10-11 22:57:54 +02:00
|
|
|
(*m_logger) << msg << "\n";
|
|
|
|
#endif
|
2007-09-22 18:27:29 +02:00
|
|
|
if (m_alerts.should_post(alert::fatal))
|
|
|
|
{
|
|
|
|
std::string msg = "error accepting connection on '"
|
|
|
|
+ boost::lexical_cast<std::string>(ep) + "' " + ec.message();
|
|
|
|
m_alerts.post_alert(listen_failed_alert(ep, msg));
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
return;
|
|
|
|
}
|
2007-09-22 18:27:29 +02:00
|
|
|
async_accept(listener);
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
// we got a connection request!
|
|
|
|
m_incoming_connection = true;
|
2007-09-22 18:27:29 +02:00
|
|
|
tcp::endpoint endp = s->remote_endpoint(ec);
|
|
|
|
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << endp << " <== INCOMING CONNECTION FAILED, could "
|
|
|
|
"not retrieve remote endpoint " << ec.message() << "\n";
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << endp << " <== INCOMING CONNECTION\n";
|
|
|
|
#endif
|
2006-11-19 16:29:58 +01:00
|
|
|
if (m_ip_filter.access(endp.address()) & ip_filter::blocked)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << "filtered blocked ip\n";
|
|
|
|
#endif
|
2007-04-17 07:56:43 +02:00
|
|
|
if (m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_alerts.post_alert(peer_blocked_alert(endp.address()
|
|
|
|
, "incoming connection blocked by IP filter"));
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-04 00:27:52 +02:00
|
|
|
// check if we have any active torrents
|
|
|
|
// if we don't reject the connection
|
2007-09-22 18:27:29 +02:00
|
|
|
if (m_torrents.empty()) return;
|
|
|
|
|
|
|
|
bool has_active_torrent = false;
|
|
|
|
for (torrent_map::iterator i = m_torrents.begin()
|
|
|
|
, end(m_torrents.end()); i != end; ++i)
|
2007-09-04 00:27:52 +02:00
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
if (!i->second->is_paused())
|
2007-09-04 00:27:52 +02:00
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
has_active_torrent = true;
|
|
|
|
break;
|
2007-09-04 00:27:52 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-22 18:27:29 +02:00
|
|
|
if (!has_active_torrent) return;
|
2007-09-04 00:27:52 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
boost::intrusive_ptr<peer_connection> c(
|
2007-09-22 18:27:29 +02:00
|
|
|
new bt_peer_connection(*this, s, 0));
|
2006-10-11 22:57:54 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
c->m_in_constructor = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
m_connections.insert(std::make_pair(s, c));
|
|
|
|
}
|
|
|
|
catch (std::exception& exc)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
std::string err = exc.what();
|
|
|
|
#endif
|
2007-05-16 03:17:14 +02:00
|
|
|
};
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-04-25 20:26:35 +02:00
|
|
|
void session_impl::connection_failed(boost::shared_ptr<socket_type> const& s
|
2006-10-11 22:57:54 +02:00
|
|
|
, tcp::endpoint const& a, char const* message)
|
|
|
|
#ifndef NDEBUG
|
|
|
|
try
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2007-08-21 21:18:06 +02:00
|
|
|
// too expensive
|
|
|
|
// INVARIANT_CHECK;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
connection_map::iterator p = m_connections.find(s);
|
|
|
|
|
|
|
|
// the connection may have been disconnected in the receive or send phase
|
2007-05-05 02:29:33 +02:00
|
|
|
if (p == m_connections.end()) return;
|
|
|
|
if (m_alerts.should_post(alert::debug))
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-05-05 02:29:33 +02:00
|
|
|
m_alerts.post_alert(
|
|
|
|
peer_error_alert(
|
|
|
|
a
|
|
|
|
, p->second->pid()
|
|
|
|
, message));
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING)
|
2007-05-05 02:29:33 +02:00
|
|
|
(*p->second->m_logger) << "*** CONNECTION FAILED " << message << "\n";
|
2006-10-11 22:57:54 +02:00
|
|
|
#endif
|
2007-05-05 02:29:33 +02:00
|
|
|
p->second->set_failed();
|
|
|
|
p->second->disconnect();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void session_impl::close_connection(boost::intrusive_ptr<peer_connection> const& p)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
|
2007-08-21 21:18:06 +02:00
|
|
|
// too expensive
|
|
|
|
// INVARIANT_CHECK;
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
assert(p->is_disconnecting());
|
2007-05-05 02:29:33 +02:00
|
|
|
connection_map::iterator i = m_connections.find(p->get_socket());
|
|
|
|
if (i != m_connections.end())
|
2007-08-16 14:41:46 +02:00
|
|
|
{
|
|
|
|
if (!i->second->is_choked()) --m_num_unchoked;
|
2007-05-05 02:29:33 +02:00
|
|
|
m_connections.erase(i);
|
2007-08-16 14:41:46 +02:00
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_peer_id(peer_id const& id)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
m_peer_id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_key(int key)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
m_key = key;
|
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
void session_impl::second_tick(asio::error_code const& e) try
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_mutex);
|
|
|
|
|
2007-09-29 18:14:03 +02:00
|
|
|
// too expensive
|
|
|
|
// INVARIANT_CHECK;
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
if (e)
|
|
|
|
{
|
|
|
|
#if defined(TORRENT_LOGGING)
|
2006-11-14 01:08:16 +01:00
|
|
|
(*m_logger) << "*** SECOND TIMER FAILED " << e.message() << "\n";
|
2006-10-11 22:57:54 +02:00
|
|
|
#endif
|
|
|
|
m_abort = true;
|
2007-01-10 16:02:25 +01:00
|
|
|
m_io_service.stop();
|
2006-10-11 22:57:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_abort) return;
|
2007-04-05 00:27:36 +02:00
|
|
|
float tick_interval = total_microseconds(time_now() - m_last_tick) / 1000000.f;
|
|
|
|
m_last_tick = time_now();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
m_timer.expires_from_now(seconds(1));
|
2006-12-15 18:47:21 +01:00
|
|
|
m_timer.async_wait(m_strand.wrap(
|
|
|
|
bind(&session_impl::second_tick, this, _1)));
|
2007-05-14 00:01:21 +02:00
|
|
|
|
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
++m_second_counter;
|
|
|
|
int downloading_torrents = 0;
|
|
|
|
int seeding_torrents = 0;
|
|
|
|
for (torrent_map::iterator i = m_torrents.begin()
|
|
|
|
, end(m_torrents.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (i->second->is_seed())
|
|
|
|
++seeding_torrents;
|
|
|
|
else
|
|
|
|
++downloading_torrents;
|
|
|
|
}
|
2007-09-29 18:14:03 +02:00
|
|
|
int num_complete_connections = 0;
|
2007-05-14 06:01:30 +02:00
|
|
|
int num_half_open = 0;
|
|
|
|
for (connection_map::iterator i = m_connections.begin()
|
|
|
|
, end(m_connections.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (i->second->is_connecting())
|
|
|
|
++num_half_open;
|
|
|
|
else
|
2007-09-29 18:14:03 +02:00
|
|
|
++num_complete_connections;
|
2007-05-14 06:01:30 +02:00
|
|
|
}
|
|
|
|
|
2007-05-14 00:01:21 +02:00
|
|
|
m_stats_logger
|
|
|
|
<< m_second_counter << "\t"
|
|
|
|
<< m_stat.upload_rate() << "\t"
|
|
|
|
<< m_stat.download_rate() << "\t"
|
|
|
|
<< downloading_torrents << "\t"
|
|
|
|
<< seeding_torrents << "\t"
|
2007-09-29 18:14:03 +02:00
|
|
|
<< num_complete_connections << "\t"
|
2007-05-14 06:01:30 +02:00
|
|
|
<< num_half_open << "\t"
|
2007-09-29 18:14:03 +02:00
|
|
|
<< m_disk_thread.disk_allocations() << "\t"
|
2007-05-14 06:01:30 +02:00
|
|
|
<< std::endl;
|
2007-05-14 00:01:21 +02:00
|
|
|
#endif
|
|
|
|
|
2007-05-05 02:29:33 +02:00
|
|
|
|
|
|
|
// let torrents connect to peers if they want to
|
|
|
|
// if there are any torrents and any free slots
|
2007-05-25 23:00:35 +02:00
|
|
|
|
|
|
|
// this loop will "hand out" max(connection_speed
|
|
|
|
// , half_open.free_slots()) to the torrents, in a
|
|
|
|
// round robin fashion, so that every torrent is
|
|
|
|
// equallt likely to connect to a peer
|
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
if (!m_torrents.empty()
|
|
|
|
&& m_half_open.free_slots()
|
|
|
|
&& num_connections() < m_max_connections)
|
2007-05-05 02:29:33 +02:00
|
|
|
{
|
2007-05-25 23:00:35 +02:00
|
|
|
// this is the maximum number of connections we will
|
|
|
|
// attempt this tick
|
|
|
|
int max_connections = m_settings.connection_speed;
|
|
|
|
|
|
|
|
torrent_map::iterator i = m_torrents.begin();
|
2007-05-05 02:29:33 +02:00
|
|
|
if (m_next_connect_torrent < int(m_torrents.size()))
|
2007-05-25 23:00:35 +02:00
|
|
|
std::advance(i, m_next_connect_torrent);
|
2007-05-05 02:29:33 +02:00
|
|
|
else
|
|
|
|
m_next_connect_torrent = 0;
|
2007-05-25 23:00:35 +02:00
|
|
|
int steps_since_last_connect = 0;
|
|
|
|
int num_torrents = int(m_torrents.size());
|
|
|
|
for (;;)
|
2007-05-05 02:29:33 +02:00
|
|
|
{
|
|
|
|
torrent& t = *i->second;
|
|
|
|
if (t.want_more_peers())
|
2007-08-16 14:41:46 +02:00
|
|
|
{
|
2007-05-25 23:00:35 +02:00
|
|
|
if (t.try_connect_peer())
|
|
|
|
{
|
|
|
|
--max_connections;
|
|
|
|
steps_since_last_connect = 0;
|
|
|
|
}
|
2007-08-16 14:41:46 +02:00
|
|
|
}
|
2007-05-05 02:29:33 +02:00
|
|
|
++m_next_connect_torrent;
|
2007-05-25 23:00:35 +02:00
|
|
|
++steps_since_last_connect;
|
2007-05-05 02:29:33 +02:00
|
|
|
++i;
|
|
|
|
if (i == m_torrents.end())
|
|
|
|
{
|
2007-05-25 23:00:35 +02:00
|
|
|
assert(m_next_connect_torrent == num_torrents);
|
2007-05-05 02:29:33 +02:00
|
|
|
i = m_torrents.begin();
|
|
|
|
m_next_connect_torrent = 0;
|
|
|
|
}
|
2007-05-25 23:00:35 +02:00
|
|
|
// if we have gone one whole loop without
|
|
|
|
// handing out a single connection, break
|
|
|
|
if (steps_since_last_connect > num_torrents) break;
|
|
|
|
// if there are no more free connection slots, abort
|
|
|
|
if (m_half_open.free_slots() == 0) break;
|
|
|
|
// if we should not make any more connections
|
|
|
|
// attempts this tick, abort
|
|
|
|
if (max_connections == 0) break;
|
2007-08-27 18:45:45 +02:00
|
|
|
// maintain the global limit on number of connections
|
|
|
|
if (num_connections() >= m_max_connections) break;
|
2007-05-25 23:00:35 +02:00
|
|
|
}
|
2007-05-05 02:29:33 +02:00
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
// do the second_tick() on each connection
|
|
|
|
// this will update their statistics (download and upload speeds)
|
|
|
|
// also purge sockets that have timed out
|
|
|
|
// and keep sockets open by keeping them alive.
|
|
|
|
for (connection_map::iterator i = m_connections.begin();
|
|
|
|
i != m_connections.end();)
|
|
|
|
{
|
|
|
|
// we need to do like this because j->second->disconnect() will
|
|
|
|
// erase the connection from the map we're iterating
|
|
|
|
connection_map::iterator j = i;
|
|
|
|
++i;
|
|
|
|
// if this socket has timed out
|
|
|
|
// close it.
|
|
|
|
peer_connection& c = *j->second;
|
|
|
|
if (c.has_timed_out())
|
|
|
|
{
|
|
|
|
if (m_alerts.should_post(alert::debug))
|
|
|
|
{
|
|
|
|
m_alerts.post_alert(
|
|
|
|
peer_error_alert(
|
|
|
|
c.remote()
|
|
|
|
, c.pid()
|
|
|
|
, "connection timed out"));
|
|
|
|
}
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING)
|
|
|
|
(*c.m_logger) << "*** CONNECTION TIMED OUT\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
c.set_failed();
|
|
|
|
c.disconnect();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
c.keep_alive();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// check each torrent for tracker updates
|
|
|
|
// TODO: do this in a timer-event in each torrent instead
|
2007-05-05 02:29:33 +02:00
|
|
|
for (torrent_map::iterator i = m_torrents.begin();
|
|
|
|
i != m_torrents.end();)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
torrent& t = *i->second;
|
|
|
|
assert(!t.is_aborted());
|
2007-03-30 05:24:37 +02:00
|
|
|
if (t.should_request())
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
tracker_request req = t.generate_tracker_request();
|
2007-09-22 18:27:29 +02:00
|
|
|
req.listen_port = 0;
|
|
|
|
if (!m_listen_sockets.empty())
|
|
|
|
req.listen_port = m_listen_sockets.front().external_port;
|
2006-10-11 22:57:54 +02:00
|
|
|
req.key = m_key;
|
2007-05-05 02:29:33 +02:00
|
|
|
m_tracker_manager.queue_request(m_strand, m_half_open, req
|
|
|
|
, t.tracker_login(), m_listen_interface.address(), i->second);
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
if (m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_alerts.post_alert(
|
|
|
|
tracker_announce_alert(
|
|
|
|
t.get_handle(), "tracker announce"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// second_tick() will set the used upload quota
|
|
|
|
t.second_tick(m_stat, tick_interval);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_stat.second_tick(tick_interval);
|
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
// unchoke set and optimistic unchoke calculations
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
m_unchoke_time_scaler--;
|
|
|
|
if (m_unchoke_time_scaler <= 0 && !m_connections.empty())
|
|
|
|
{
|
|
|
|
m_unchoke_time_scaler = settings().unchoke_interval;
|
|
|
|
|
|
|
|
std::vector<peer_connection*> peers;
|
|
|
|
for (connection_map::iterator i = m_connections.begin()
|
|
|
|
, end(m_connections.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
peer_connection* p = i->second.get();
|
|
|
|
torrent* t = p->associated_torrent().lock().get();
|
|
|
|
if (!p->peer_info_struct()
|
2007-08-17 09:37:08 +02:00
|
|
|
|| t == 0
|
2007-08-16 14:41:46 +02:00
|
|
|
|| !p->is_peer_interested()
|
|
|
|
|| p->is_disconnecting()
|
|
|
|
|| p->is_connecting()
|
|
|
|
|| (p->share_diff() < -free_upload_amount
|
2007-08-17 09:37:08 +02:00
|
|
|
&& !t->is_seed()))
|
2007-08-16 14:41:46 +02:00
|
|
|
{
|
2007-08-17 09:37:08 +02:00
|
|
|
if (!i->second->is_choked() && t)
|
2007-08-22 20:50:53 +02:00
|
|
|
{
|
|
|
|
policy::peer* pi = p->peer_info_struct();
|
|
|
|
if (pi && pi->optimistically_unchoked)
|
|
|
|
{
|
|
|
|
pi->optimistically_unchoked = false;
|
|
|
|
// force a new optimistic unchoke
|
|
|
|
m_optimistic_unchoke_time_scaler = 0;
|
|
|
|
}
|
2007-08-17 09:37:08 +02:00
|
|
|
t->choke_peer(*i->second);
|
2007-08-22 20:50:53 +02:00
|
|
|
}
|
2007-08-16 14:41:46 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
peers.push_back(i->second.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort the peers that are eligible for unchoke by download rate and secondary
|
|
|
|
// by total upload. The reason for this is, if all torrents are being seeded,
|
|
|
|
// the download rate will be 0, and the peers we have sent the least to should
|
|
|
|
// be unchoked
|
|
|
|
std::sort(peers.begin(), peers.end()
|
|
|
|
, bind(&stat::total_payload_upload, bind(&peer_connection::statistics, _1))
|
|
|
|
< bind(&stat::total_payload_upload, bind(&peer_connection::statistics, _2)));
|
|
|
|
|
|
|
|
std::stable_sort(peers.begin(), peers.end()
|
|
|
|
, bind(&stat::download_payload_rate, bind(&peer_connection::statistics, _1))
|
|
|
|
> bind(&stat::download_payload_rate, bind(&peer_connection::statistics, _2)));
|
|
|
|
|
|
|
|
// reserve one upload slot for optimistic unchokes
|
|
|
|
int unchoke_set_size = m_max_uploads - 1;
|
|
|
|
|
|
|
|
m_num_unchoked = 0;
|
|
|
|
// go through all the peers and unchoke the first ones and choke
|
|
|
|
// all the other ones.
|
|
|
|
for (std::vector<peer_connection*>::iterator i = peers.begin()
|
|
|
|
, end(peers.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
peer_connection* p = *i;
|
|
|
|
assert(p);
|
2007-08-17 09:37:08 +02:00
|
|
|
torrent* t = p->associated_torrent().lock().get();
|
|
|
|
assert(t);
|
2007-08-16 14:41:46 +02:00
|
|
|
if (unchoke_set_size > 0)
|
|
|
|
{
|
2007-08-17 09:37:08 +02:00
|
|
|
if (p->is_choked())
|
|
|
|
{
|
2007-08-19 10:32:39 +02:00
|
|
|
if (!t->unchoke_peer(*p))
|
|
|
|
continue;
|
2007-08-17 09:37:08 +02:00
|
|
|
}
|
2007-08-19 10:32:39 +02:00
|
|
|
|
|
|
|
--unchoke_set_size;
|
|
|
|
++m_num_unchoked;
|
2007-08-17 09:37:08 +02:00
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
assert(p->peer_info_struct());
|
|
|
|
if (p->peer_info_struct()->optimistically_unchoked)
|
|
|
|
{
|
|
|
|
// force a new optimistic unchoke
|
|
|
|
m_optimistic_unchoke_time_scaler = 0;
|
|
|
|
p->peer_info_struct()->optimistically_unchoked = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-21 19:45:28 +02:00
|
|
|
assert(p->peer_info_struct());
|
2007-08-16 14:41:46 +02:00
|
|
|
if (!p->is_choked() && !p->peer_info_struct()->optimistically_unchoked)
|
2007-08-17 09:37:08 +02:00
|
|
|
t->choke_peer(*p);
|
2007-08-21 23:51:29 +02:00
|
|
|
if (!p->is_choked())
|
|
|
|
++m_num_unchoked;
|
2007-08-16 14:41:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_optimistic_unchoke_time_scaler--;
|
|
|
|
if (m_optimistic_unchoke_time_scaler <= 0)
|
|
|
|
{
|
|
|
|
m_optimistic_unchoke_time_scaler
|
|
|
|
= settings().optimistic_unchoke_multiplier;
|
|
|
|
|
|
|
|
// find the peer that has been waiting the longest to be optimistically
|
|
|
|
// unchoked
|
|
|
|
connection_map::iterator current_optimistic_unchoke = m_connections.end();
|
|
|
|
connection_map::iterator optimistic_unchoke_candidate = m_connections.end();
|
|
|
|
ptime last_unchoke = max_time();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
for (connection_map::iterator i = m_connections.begin()
|
|
|
|
, end(m_connections.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
peer_connection* p = i->second.get();
|
|
|
|
assert(p);
|
|
|
|
policy::peer* pi = p->peer_info_struct();
|
|
|
|
if (!pi) continue;
|
2007-08-17 09:37:08 +02:00
|
|
|
torrent* t = p->associated_torrent().lock().get();
|
|
|
|
if (!t) continue;
|
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
if (pi->optimistically_unchoked)
|
|
|
|
{
|
2007-08-19 10:23:44 +02:00
|
|
|
assert(!p->is_choked());
|
2007-08-16 14:41:46 +02:00
|
|
|
assert(current_optimistic_unchoke == m_connections.end());
|
|
|
|
current_optimistic_unchoke = i;
|
|
|
|
}
|
2007-08-17 09:37:08 +02:00
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
if (pi->last_optimistically_unchoked < last_unchoke
|
|
|
|
&& !p->is_connecting()
|
|
|
|
&& !p->is_disconnecting()
|
2007-08-17 09:37:08 +02:00
|
|
|
&& p->is_peer_interested()
|
|
|
|
&& t->free_upload_slots()
|
|
|
|
&& p->is_choked())
|
2007-08-16 14:41:46 +02:00
|
|
|
{
|
|
|
|
last_unchoke = pi->last_optimistically_unchoked;
|
|
|
|
optimistic_unchoke_candidate = i;
|
|
|
|
}
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
if (optimistic_unchoke_candidate != m_connections.end()
|
|
|
|
&& optimistic_unchoke_candidate != current_optimistic_unchoke)
|
|
|
|
{
|
|
|
|
if (current_optimistic_unchoke != m_connections.end())
|
|
|
|
{
|
2007-08-17 09:37:08 +02:00
|
|
|
torrent* t = current_optimistic_unchoke->second->associated_torrent().lock().get();
|
|
|
|
assert(t);
|
2007-08-16 14:41:46 +02:00
|
|
|
current_optimistic_unchoke->second->peer_info_struct()->optimistically_unchoked = false;
|
2007-08-21 19:45:28 +02:00
|
|
|
t->choke_peer(*current_optimistic_unchoke->second);
|
2007-08-16 14:41:46 +02:00
|
|
|
}
|
2007-08-21 23:51:29 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
++m_num_unchoked;
|
|
|
|
}
|
2007-08-16 14:41:46 +02:00
|
|
|
|
2007-08-17 09:37:08 +02:00
|
|
|
torrent* t = optimistic_unchoke_candidate->second->associated_torrent().lock().get();
|
|
|
|
assert(t);
|
|
|
|
bool ret = t->unchoke_peer(*optimistic_unchoke_candidate->second);
|
|
|
|
assert(ret);
|
2007-08-16 14:41:46 +02:00
|
|
|
optimistic_unchoke_candidate->second->peer_info_struct()->optimistically_unchoked = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
// disconnect peers when we have too many
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
--m_disconnect_time_scaler;
|
|
|
|
if (m_disconnect_time_scaler <= 0)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-08-16 14:41:46 +02:00
|
|
|
m_disconnect_time_scaler = 60;
|
|
|
|
|
|
|
|
// every 60 seconds, disconnect the worst peer
|
|
|
|
// if we have reached the connection limit
|
|
|
|
if (num_connections() >= max_connections() && !m_torrents.empty())
|
|
|
|
{
|
|
|
|
torrent_map::iterator i = std::max_element(m_torrents.begin(), m_torrents.end()
|
2007-09-08 20:18:09 +02:00
|
|
|
, bind(&torrent::num_peers, bind(&torrent_map::value_type::second, _1))
|
|
|
|
< bind(&torrent::num_peers, bind(&torrent_map::value_type::second, _2)));
|
2007-08-16 14:41:46 +02:00
|
|
|
|
|
|
|
assert(i != m_torrents.end());
|
|
|
|
i->second->get_policy().disconnect_one_peer();
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (std::exception& exc)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
2007-04-17 07:56:43 +02:00
|
|
|
std::cerr << exc.what() << std::endl;
|
|
|
|
assert(false);
|
2006-10-11 22:57:54 +02:00
|
|
|
#endif
|
|
|
|
}; // msvc 7.1 seems to require this
|
2006-12-21 23:20:28 +01:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
void session_impl::operator()()
|
|
|
|
{
|
|
|
|
eh_initializer();
|
|
|
|
|
|
|
|
{
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_mutex);
|
2007-09-22 18:27:29 +02:00
|
|
|
if (m_listen_interface.port() != 0) open_listen_port();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
ptime timer = time_now();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2006-12-15 18:47:21 +01:00
|
|
|
m_io_service.run();
|
2006-10-11 22:57:54 +02:00
|
|
|
assert(m_abort == true);
|
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
2007-02-12 19:21:14 +01:00
|
|
|
#ifndef NDEBUG
|
2006-10-11 22:57:54 +02:00
|
|
|
std::cerr << e.what() << "\n";
|
|
|
|
std::string err = e.what();
|
2007-02-12 19:21:14 +01:00
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (!m_abort);
|
|
|
|
|
2006-12-15 18:47:21 +01:00
|
|
|
deadline_timer tracker_timer(m_io_service);
|
2007-03-15 23:03:56 +01:00
|
|
|
// this will remove the port mappings
|
2007-05-31 02:21:54 +02:00
|
|
|
if (m_natpmp.get())
|
|
|
|
m_natpmp->close();
|
|
|
|
if (m_upnp.get())
|
|
|
|
m_upnp->close();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " locking mutex\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_mutex);
|
|
|
|
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " aborting all tracker requests\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
m_tracker_manager.abort_all_requests();
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " sending stopped to all torrent's trackers\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
for (std::map<sha1_hash, boost::shared_ptr<torrent> >::iterator i =
|
|
|
|
m_torrents.begin(); i != m_torrents.end(); ++i)
|
|
|
|
{
|
|
|
|
i->second->abort();
|
2007-02-20 02:42:12 +01:00
|
|
|
// generate a tracker request in case the torrent is not paused
|
|
|
|
// (in which case it's not currently announced with the tracker)
|
|
|
|
// or if the torrent itself thinks we should request. Do not build
|
|
|
|
// a request in case the torrent doesn't have any trackers
|
|
|
|
if ((!i->second->is_paused() || i->second->should_request())
|
2007-02-21 18:15:47 +01:00
|
|
|
&& !i->second->trackers().empty())
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
tracker_request req = i->second->generate_tracker_request();
|
2007-09-22 18:27:29 +02:00
|
|
|
assert(!m_listen_sockets.empty());
|
|
|
|
req.listen_port = 0;
|
|
|
|
if (!m_listen_sockets.empty())
|
|
|
|
req.listen_port = m_listen_sockets.front().external_port;
|
2006-10-11 22:57:54 +02:00
|
|
|
req.key = m_key;
|
|
|
|
std::string login = i->second->tracker_login();
|
2006-11-15 22:39:58 +01:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
boost::shared_ptr<tracker_logger> tl(new tracker_logger(*this));
|
|
|
|
m_tracker_loggers.push_back(tl);
|
2007-05-05 02:29:33 +02:00
|
|
|
m_tracker_manager.queue_request(m_strand, m_half_open, req, login
|
|
|
|
, m_listen_interface.address(), tl);
|
2006-11-15 22:39:58 +01:00
|
|
|
#else
|
2007-05-05 02:29:33 +02:00
|
|
|
m_tracker_manager.queue_request(m_strand, m_half_open, req, login
|
|
|
|
, m_listen_interface.address());
|
2006-11-15 22:39:58 +01:00
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
// close the listen sockets
|
|
|
|
m_listen_sockets.clear();
|
2007-09-10 11:23:04 +02:00
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
ptime start(time_now());
|
2006-10-11 22:57:54 +02:00
|
|
|
l.unlock();
|
|
|
|
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2007-05-24 21:51:14 +02:00
|
|
|
(*m_logger) << time_now_string() << " waiting for trackers to respond ("
|
|
|
|
<< m_settings.stop_tracker_timeout << " seconds timeout)\n";
|
2007-05-23 03:02:46 +02:00
|
|
|
#endif
|
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
while (time_now() - start < seconds(
|
2006-10-11 22:57:54 +02:00
|
|
|
m_settings.stop_tracker_timeout)
|
|
|
|
&& !m_tracker_manager.empty())
|
|
|
|
{
|
2007-04-05 00:27:36 +02:00
|
|
|
tracker_timer.expires_from_now(milliseconds(100));
|
2006-12-15 18:47:21 +01:00
|
|
|
tracker_timer.async_wait(m_strand.wrap(
|
2007-01-10 16:02:25 +01:00
|
|
|
bind(&io_service::stop, &m_io_service)));
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2006-12-15 18:47:21 +01:00
|
|
|
m_io_service.reset();
|
|
|
|
m_io_service.run();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " tracker shutdown complete, locking mutex\n";
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
l.lock();
|
|
|
|
assert(m_abort);
|
|
|
|
m_abort = true;
|
|
|
|
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " cleaning up connections\n";
|
|
|
|
#endif
|
2006-12-21 23:20:28 +01:00
|
|
|
while (!m_connections.empty())
|
|
|
|
m_connections.begin()->second->disconnect();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
for (torrent_map::iterator i = m_torrents.begin();
|
|
|
|
i != m_torrents.end(); ++i)
|
|
|
|
{
|
|
|
|
assert(i->second->num_peers() == 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-05-23 03:02:46 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " cleaning up torrents\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
m_torrents.clear();
|
|
|
|
|
|
|
|
assert(m_torrents.empty());
|
|
|
|
assert(m_connections.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// the return value from this function is valid only as long as the
|
|
|
|
// session is locked!
|
|
|
|
boost::weak_ptr<torrent> session_impl::find_torrent(sha1_hash const& info_hash)
|
|
|
|
{
|
|
|
|
std::map<sha1_hash, boost::shared_ptr<torrent> >::iterator i
|
|
|
|
= m_torrents.find(info_hash);
|
|
|
|
#ifndef NDEBUG
|
|
|
|
for (std::map<sha1_hash, boost::shared_ptr<torrent> >::iterator j
|
|
|
|
= m_torrents.begin(); j != m_torrents.end(); ++j)
|
|
|
|
{
|
|
|
|
torrent* p = boost::get_pointer(j->second);
|
|
|
|
assert(p);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (i != m_torrents.end()) return i->second;
|
|
|
|
return boost::weak_ptr<torrent>();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2006-11-15 22:39:58 +01:00
|
|
|
boost::shared_ptr<logger> session_impl::create_log(std::string const& name
|
|
|
|
, int instance, bool append)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
// current options are file_logger, cout_logger and null_logger
|
2006-11-15 22:39:58 +01:00
|
|
|
return boost::shared_ptr<logger>(new logger(name + ".log", instance, append));
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
std::vector<torrent_handle> session_impl::get_torrents()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_checker_impl.m_mutex);
|
|
|
|
std::vector<torrent_handle> ret;
|
|
|
|
for (std::deque<boost::shared_ptr<aux::piece_checker_data> >::iterator i
|
|
|
|
= m_checker_impl.m_torrents.begin()
|
|
|
|
, end(m_checker_impl.m_torrents.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if ((*i)->abort) continue;
|
|
|
|
ret.push_back(torrent_handle(this, &m_checker_impl
|
|
|
|
, (*i)->info_hash));
|
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
for (std::deque<boost::shared_ptr<aux::piece_checker_data> >::iterator i
|
|
|
|
= m_checker_impl.m_processing.begin()
|
|
|
|
, end(m_checker_impl.m_processing.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if ((*i)->abort) continue;
|
|
|
|
ret.push_back(torrent_handle(this, &m_checker_impl
|
|
|
|
, (*i)->info_hash));
|
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
for (session_impl::torrent_map::iterator i
|
|
|
|
= m_torrents.begin(), end(m_torrents.end());
|
|
|
|
i != end; ++i)
|
|
|
|
{
|
|
|
|
if (i->second->is_aborted()) continue;
|
|
|
|
ret.push_back(torrent_handle(this, &m_checker_impl
|
|
|
|
, i->first));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
torrent_handle session_impl::find_torrent_handle(sha1_hash const& info_hash)
|
|
|
|
{
|
|
|
|
return torrent_handle(this, &m_checker_impl, info_hash);
|
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
torrent_handle session_impl::add_torrent(
|
2007-09-01 05:00:31 +02:00
|
|
|
boost::intrusive_ptr<torrent_info> ti
|
2007-06-10 22:46:09 +02:00
|
|
|
, fs::path const& save_path
|
2006-10-11 22:57:54 +02:00
|
|
|
, entry const& resume_data
|
|
|
|
, bool compact_mode
|
2007-08-22 07:31:42 +02:00
|
|
|
, storage_constructor_type sc
|
2007-09-14 02:11:33 +02:00
|
|
|
, bool paused
|
|
|
|
, void* userdata)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
assert(!save_path.empty());
|
|
|
|
|
2007-09-01 05:00:31 +02:00
|
|
|
if (ti->begin_files() == ti->end_files())
|
2006-10-11 22:57:54 +02:00
|
|
|
throw std::runtime_error("no files in torrent");
|
|
|
|
|
|
|
|
// lock the session and the checker thread (the order is important!)
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_checker_impl.m_mutex);
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
// INVARIANT_CHECK;
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
if (is_aborted())
|
|
|
|
throw std::runtime_error("session is closing");
|
|
|
|
|
|
|
|
// is the torrent already active?
|
2007-09-01 05:00:31 +02:00
|
|
|
if (!find_torrent(ti->info_hash()).expired())
|
2006-10-11 22:57:54 +02:00
|
|
|
throw duplicate_torrent();
|
|
|
|
|
|
|
|
// is the torrent currently being checked?
|
2007-09-01 05:00:31 +02:00
|
|
|
if (m_checker_impl.find_torrent(ti->info_hash()))
|
2006-10-11 22:57:54 +02:00
|
|
|
throw duplicate_torrent();
|
|
|
|
|
|
|
|
// create the torrent and the data associated with
|
|
|
|
// the checker thread and store it before starting
|
|
|
|
// the thread
|
|
|
|
boost::shared_ptr<torrent> torrent_ptr(
|
|
|
|
new torrent(*this, m_checker_impl, ti, save_path
|
2007-08-22 07:31:42 +02:00
|
|
|
, m_listen_interface, compact_mode, 16 * 1024
|
|
|
|
, sc, paused));
|
2007-04-11 19:44:15 +02:00
|
|
|
torrent_ptr->start();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
for (extension_list_t::iterator i = m_extensions.begin()
|
|
|
|
, end(m_extensions.end()); i != end; ++i)
|
|
|
|
{
|
2007-09-14 02:11:33 +02:00
|
|
|
boost::shared_ptr<torrent_plugin> tp((*i)(torrent_ptr.get(), userdata));
|
2006-11-23 17:21:45 +01:00
|
|
|
if (tp) torrent_ptr->add_extension(tp);
|
2006-11-14 01:08:16 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
boost::shared_ptr<aux::piece_checker_data> d(
|
|
|
|
new aux::piece_checker_data);
|
|
|
|
d->torrent_ptr = torrent_ptr;
|
|
|
|
d->save_path = save_path;
|
2007-09-01 05:00:31 +02:00
|
|
|
d->info_hash = ti->info_hash();
|
2006-10-11 22:57:54 +02:00
|
|
|
d->resume_data = resume_data;
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
if (m_dht)
|
|
|
|
{
|
2007-09-01 05:00:31 +02:00
|
|
|
torrent_info::nodes_t const& nodes = ti->nodes();
|
2006-10-11 22:57:54 +02:00
|
|
|
std::for_each(nodes.begin(), nodes.end(), bind(
|
|
|
|
(void(dht::dht_tracker::*)(std::pair<std::string, int> const&))
|
|
|
|
&dht::dht_tracker::add_node
|
|
|
|
, boost::ref(m_dht), _1));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// add the torrent to the queue to be checked
|
|
|
|
m_checker_impl.m_torrents.push_back(d);
|
|
|
|
// and notify the thread that it got another
|
|
|
|
// job in its queue
|
|
|
|
m_checker_impl.m_cond.notify_one();
|
|
|
|
|
2007-09-01 05:00:31 +02:00
|
|
|
return torrent_handle(this, &m_checker_impl, ti->info_hash());
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle session_impl::add_torrent(
|
|
|
|
char const* tracker_url
|
|
|
|
, sha1_hash const& info_hash
|
2006-11-14 01:08:16 +01:00
|
|
|
, char const* name
|
2007-06-10 22:46:09 +02:00
|
|
|
, fs::path const& save_path
|
2006-10-11 22:57:54 +02:00
|
|
|
, entry const&
|
|
|
|
, bool compact_mode
|
2007-08-22 07:31:42 +02:00
|
|
|
, storage_constructor_type sc
|
2007-09-14 02:11:33 +02:00
|
|
|
, bool paused
|
|
|
|
, void* userdata)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
// TODO: support resume data in this case
|
|
|
|
assert(!save_path.empty());
|
|
|
|
{
|
|
|
|
// lock the checker_thread
|
|
|
|
mutex::scoped_lock l(m_checker_impl.m_mutex);
|
|
|
|
|
|
|
|
// is the torrent currently being checked?
|
|
|
|
if (m_checker_impl.find_torrent(info_hash))
|
|
|
|
throw duplicate_torrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
// lock the session
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_mutex);
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
// INVARIANT_CHECK;
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
// is the torrent already active?
|
|
|
|
if (!find_torrent(info_hash).expired())
|
|
|
|
throw duplicate_torrent();
|
|
|
|
|
|
|
|
// you cannot add new torrents to a session that is closing down
|
|
|
|
assert(!is_aborted());
|
|
|
|
|
|
|
|
// create the torrent and the data associated with
|
|
|
|
// the checker thread and store it before starting
|
|
|
|
// the thread
|
|
|
|
boost::shared_ptr<torrent> torrent_ptr(
|
2006-11-14 01:08:16 +01:00
|
|
|
new torrent(*this, m_checker_impl, tracker_url, info_hash, name
|
2007-08-22 07:31:42 +02:00
|
|
|
, save_path, m_listen_interface, compact_mode, 16 * 1024
|
|
|
|
, sc, paused));
|
2007-04-11 19:44:15 +02:00
|
|
|
torrent_ptr->start();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
for (extension_list_t::iterator i = m_extensions.begin()
|
|
|
|
, end(m_extensions.end()); i != end; ++i)
|
|
|
|
{
|
2007-09-14 02:11:33 +02:00
|
|
|
boost::shared_ptr<torrent_plugin> tp((*i)(torrent_ptr.get(), userdata));
|
2006-11-23 17:21:45 +01:00
|
|
|
if (tp) torrent_ptr->add_extension(tp);
|
2006-11-14 01:08:16 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
m_torrents.insert(
|
|
|
|
std::make_pair(info_hash, torrent_ptr)).first;
|
|
|
|
|
|
|
|
return torrent_handle(this, &m_checker_impl, info_hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::remove_torrent(const torrent_handle& h)
|
|
|
|
{
|
|
|
|
if (h.m_ses != this) return;
|
|
|
|
assert(h.m_chk == &m_checker_impl || h.m_chk == 0);
|
|
|
|
assert(h.m_ses != 0);
|
|
|
|
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
session_impl::torrent_map::iterator i =
|
|
|
|
m_torrents.find(h.m_info_hash);
|
|
|
|
if (i != m_torrents.end())
|
|
|
|
{
|
|
|
|
torrent& t = *i->second;
|
|
|
|
t.abort();
|
|
|
|
|
2007-02-20 23:58:31 +01:00
|
|
|
if ((!t.is_paused() || t.should_request())
|
2007-02-21 04:05:25 +01:00
|
|
|
&& !t.torrent_file().trackers().empty())
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
tracker_request req = t.generate_tracker_request();
|
|
|
|
assert(req.event == tracker_request::stopped);
|
2007-09-22 18:27:29 +02:00
|
|
|
assert(!m_listen_sockets.empty());
|
|
|
|
req.listen_port = 0;
|
|
|
|
if (!m_listen_sockets.empty())
|
|
|
|
req.listen_port = m_listen_sockets.front().external_port;
|
2006-10-11 22:57:54 +02:00
|
|
|
req.key = m_key;
|
2006-11-15 22:39:58 +01:00
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
boost::shared_ptr<tracker_logger> tl(new tracker_logger(*this));
|
|
|
|
m_tracker_loggers.push_back(tl);
|
2007-05-05 02:29:33 +02:00
|
|
|
m_tracker_manager.queue_request(m_strand, m_half_open, req
|
2007-03-02 19:40:02 +01:00
|
|
|
, t.tracker_login(), m_listen_interface.address(), tl);
|
2006-11-15 22:39:58 +01:00
|
|
|
#else
|
2007-05-05 02:29:33 +02:00
|
|
|
m_tracker_manager.queue_request(m_strand, m_half_open, req
|
2007-03-02 19:40:02 +01:00
|
|
|
, t.tracker_login(), m_listen_interface.address());
|
2006-11-15 22:39:58 +01:00
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
if (m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
m_alerts.post_alert(
|
|
|
|
tracker_announce_alert(
|
|
|
|
t.get_handle(), "tracker announce, event=stopped"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
|
|
sha1_hash i_hash = t.torrent_file().info_hash();
|
|
|
|
#endif
|
|
|
|
m_torrents.erase(i);
|
|
|
|
assert(m_torrents.find(i_hash) == m_torrents.end());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (h.m_chk)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_checker_impl.m_mutex);
|
|
|
|
|
|
|
|
aux::piece_checker_data* d = m_checker_impl.find_torrent(h.m_info_hash);
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
if (d->processing) d->abort = true;
|
|
|
|
else m_checker_impl.remove_torrent(h.m_info_hash);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool session_impl::listen_on(
|
|
|
|
std::pair<int, int> const& port_range
|
|
|
|
, const char* net_interface)
|
|
|
|
{
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_mutex);
|
|
|
|
|
2007-08-21 20:33:28 +02:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
tcp::endpoint new_interface;
|
|
|
|
if (net_interface && std::strlen(net_interface) > 0)
|
|
|
|
new_interface = tcp::endpoint(address::from_string(net_interface), port_range.first);
|
|
|
|
else
|
2007-09-22 18:27:29 +02:00
|
|
|
new_interface = tcp::endpoint(address_v4::any(), port_range.first);
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
m_listen_port_retries = port_range.second - port_range.first;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
// if the interface is the same and the socket is open
|
|
|
|
// don't do anything
|
|
|
|
if (new_interface == m_listen_interface
|
2007-09-22 18:27:29 +02:00
|
|
|
&& !m_listen_sockets.empty()) return true;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
2007-03-16 22:45:29 +01:00
|
|
|
m_listen_interface = new_interface;
|
|
|
|
|
|
|
|
open_listen_port();
|
|
|
|
|
2007-04-04 04:06:07 +02:00
|
|
|
bool new_listen_address = m_listen_interface.address() != new_interface.address();
|
2007-04-14 19:30:57 +02:00
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2007-03-16 22:45:29 +01:00
|
|
|
if ((new_listen_address || m_dht_same_port) && m_dht)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-03-15 23:03:56 +01:00
|
|
|
if (m_dht_same_port)
|
|
|
|
m_dht_settings.service_port = new_interface.port();
|
2006-10-11 22:57:54 +02:00
|
|
|
// the listen interface changed, rebind the dht listen socket as well
|
|
|
|
m_dht->rebind(new_interface.address()
|
|
|
|
, m_dht_settings.service_port);
|
2007-05-31 02:21:54 +02:00
|
|
|
if (m_natpmp.get())
|
|
|
|
m_natpmp->set_mappings(0, m_dht_settings.service_port);
|
|
|
|
if (m_upnp.get())
|
|
|
|
m_upnp->set_mappings(0, m_dht_settings.service_port);
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-11-15 22:39:58 +01:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
m_logger = create_log("main_session", listen_port(), false);
|
2007-04-10 09:52:58 +02:00
|
|
|
(*m_logger) << time_now_string() << "\n";
|
2006-11-15 22:39:58 +01:00
|
|
|
#endif
|
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
return !m_listen_sockets.empty();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short session_impl::listen_port() const
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-09-22 18:27:29 +02:00
|
|
|
if (m_listen_sockets.empty()) return 0;
|
|
|
|
return m_listen_sockets.front().external_port;;
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
2007-04-04 04:06:07 +02:00
|
|
|
void session_impl::announce_lsd(sha1_hash const& ih)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-04-14 17:51:36 +02:00
|
|
|
// use internal listen port for local peers
|
2007-05-31 02:21:54 +02:00
|
|
|
if (m_lsd.get())
|
|
|
|
m_lsd->announce(ih, m_listen_interface.port());
|
2007-04-04 04:06:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::on_lsd_peer(tcp::endpoint peer, sha1_hash const& ih)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
|
2007-08-21 20:33:28 +02:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-04-04 04:06:07 +02:00
|
|
|
boost::shared_ptr<torrent> t = find_torrent(ih).lock();
|
|
|
|
if (!t) return;
|
2007-07-23 02:38:31 +02:00
|
|
|
// don't add peers from lsd to private torrents
|
|
|
|
if (t->torrent_file().priv()) return;
|
2007-04-04 04:06:07 +02:00
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
2007-04-10 09:52:58 +02:00
|
|
|
(*m_logger) << time_now_string()
|
2007-04-04 04:06:07 +02:00
|
|
|
<< ": added peer from local discovery: " << peer << "\n";
|
|
|
|
#endif
|
2007-04-10 23:23:13 +02:00
|
|
|
t->get_policy().peer_from_tracker(peer, peer_id(0), peer_info::lsd, 0);
|
2007-04-04 04:06:07 +02:00
|
|
|
}
|
|
|
|
|
2007-03-15 23:03:56 +01:00
|
|
|
void session_impl::on_port_mapping(int tcp_port, int udp_port
|
|
|
|
, std::string const& errmsg)
|
|
|
|
{
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
if (udp_port != 0)
|
|
|
|
{
|
|
|
|
m_external_udp_port = udp_port;
|
|
|
|
m_dht_settings.service_port = udp_port;
|
2007-03-16 09:25:08 +01:00
|
|
|
if (m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << "successfully mapped UDP port " << udp_port;
|
|
|
|
m_alerts.post_alert(portmap_alert(msg.str()));
|
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (tcp_port != 0)
|
|
|
|
{
|
2007-09-22 18:27:29 +02:00
|
|
|
if (!m_listen_sockets.empty())
|
|
|
|
m_listen_sockets.front().external_port = tcp_port;
|
2007-03-16 09:25:08 +01:00
|
|
|
if (m_alerts.should_post(alert::info))
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << "successfully mapped TCP port " << tcp_port;
|
|
|
|
m_alerts.post_alert(portmap_alert(msg.str()));
|
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
2007-03-16 09:25:08 +01:00
|
|
|
if (m_alerts.should_post(alert::warning))
|
|
|
|
{
|
|
|
|
std::stringstream msg;
|
|
|
|
msg << "Error while mapping ports on NAT router: " << errmsg;
|
|
|
|
m_alerts.post_alert(portmap_error_alert(msg.str()));
|
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
session_status session_impl::status() const
|
|
|
|
{
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2007-09-22 18:27:29 +02:00
|
|
|
// INVARIANT_CHECK;
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
session_status s;
|
|
|
|
s.has_incoming_connections = m_incoming_connection;
|
|
|
|
s.num_peers = (int)m_connections.size();
|
|
|
|
|
|
|
|
s.download_rate = m_stat.download_rate();
|
|
|
|
s.upload_rate = m_stat.upload_rate();
|
|
|
|
|
|
|
|
s.payload_download_rate = m_stat.download_payload_rate();
|
|
|
|
s.payload_upload_rate = m_stat.upload_payload_rate();
|
|
|
|
|
|
|
|
s.total_download = m_stat.total_protocol_download()
|
|
|
|
+ m_stat.total_payload_download();
|
|
|
|
|
|
|
|
s.total_upload = m_stat.total_protocol_upload()
|
|
|
|
+ m_stat.total_payload_upload();
|
|
|
|
|
|
|
|
s.total_payload_download = m_stat.total_payload_download();
|
|
|
|
s.total_payload_upload = m_stat.total_payload_upload();
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
if (m_dht)
|
|
|
|
{
|
|
|
|
m_dht->dht_status(s);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-28 19:18:37 +01:00
|
|
|
s.dht_nodes = 0;
|
|
|
|
s.dht_node_cache = 0;
|
|
|
|
s.dht_torrents = 0;
|
2007-05-12 03:52:25 +02:00
|
|
|
s.dht_global_nodes = 0;
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
|
|
|
|
void session_impl::start_dht(entry const& startup_state)
|
|
|
|
{
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-02-25 10:42:43 +01:00
|
|
|
if (m_dht)
|
|
|
|
{
|
|
|
|
m_dht->stop();
|
2007-03-02 02:16:59 +01:00
|
|
|
m_dht = 0;
|
2007-02-25 10:42:43 +01:00
|
|
|
}
|
2007-03-16 22:04:58 +01:00
|
|
|
if (m_dht_settings.service_port == 0
|
|
|
|
|| m_dht_same_port)
|
|
|
|
{
|
2007-03-15 23:03:56 +01:00
|
|
|
m_dht_same_port = true;
|
2007-03-16 22:45:29 +01:00
|
|
|
// if you hit this assert you are trying to start the
|
|
|
|
// DHT with the same port as the tcp listen port
|
|
|
|
// (which is default) _before_ you have opened the
|
|
|
|
// tcp listen port (so there is no configured port to use)
|
|
|
|
// basically, make sure you call listen_on() before
|
|
|
|
// start_dht(). See documentation for listen_on() for
|
|
|
|
// more information.
|
|
|
|
assert(m_listen_interface.port() > 0);
|
2007-03-16 22:04:58 +01:00
|
|
|
m_dht_settings.service_port = m_listen_interface.port();
|
|
|
|
}
|
2007-03-15 23:03:56 +01:00
|
|
|
m_external_udp_port = m_dht_settings.service_port;
|
2007-05-31 02:21:54 +02:00
|
|
|
if (m_natpmp.get())
|
|
|
|
m_natpmp->set_mappings(0, m_dht_settings.service_port);
|
|
|
|
if (m_upnp.get())
|
|
|
|
m_upnp->set_mappings(0, m_dht_settings.service_port);
|
2007-03-02 02:16:59 +01:00
|
|
|
m_dht = new dht::dht_tracker(m_io_service
|
2006-10-11 22:57:54 +02:00
|
|
|
, m_dht_settings, m_listen_interface.address()
|
2007-03-02 02:16:59 +01:00
|
|
|
, startup_state);
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::stop_dht()
|
|
|
|
{
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-03-02 06:02:12 +01:00
|
|
|
if (!m_dht) return;
|
2007-02-25 10:42:43 +01:00
|
|
|
m_dht->stop();
|
2007-03-02 02:16:59 +01:00
|
|
|
m_dht = 0;
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_dht_settings(dht_settings const& settings)
|
|
|
|
{
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-03-15 23:03:56 +01:00
|
|
|
// only change the dht listen port in case the settings
|
|
|
|
// contains a vaiid port, and if it is different from
|
|
|
|
// the current setting
|
|
|
|
if (settings.service_port != 0)
|
|
|
|
m_dht_same_port = false;
|
2007-03-16 22:04:58 +01:00
|
|
|
else
|
|
|
|
m_dht_same_port = true;
|
2007-03-15 23:03:56 +01:00
|
|
|
if (!m_dht_same_port
|
|
|
|
&& settings.service_port != m_dht_settings.service_port
|
2006-10-11 22:57:54 +02:00
|
|
|
&& m_dht)
|
|
|
|
{
|
|
|
|
m_dht->rebind(m_listen_interface.address()
|
|
|
|
, settings.service_port);
|
2007-05-31 02:21:54 +02:00
|
|
|
if (m_natpmp.get())
|
|
|
|
m_natpmp->set_mappings(0, m_dht_settings.service_port);
|
|
|
|
if (m_upnp.get())
|
|
|
|
m_upnp->set_mappings(0, m_dht_settings.service_port);
|
2007-03-15 23:03:56 +01:00
|
|
|
m_external_udp_port = settings.service_port;
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
m_dht_settings = settings;
|
2007-03-15 23:03:56 +01:00
|
|
|
if (m_dht_same_port)
|
|
|
|
m_dht_settings.service_port = m_listen_interface.port();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
entry session_impl::dht_state() const
|
|
|
|
{
|
|
|
|
assert(m_dht);
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2006-10-11 22:57:54 +02:00
|
|
|
return m_dht->state();
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::add_dht_node(std::pair<std::string, int> const& node)
|
|
|
|
{
|
|
|
|
assert(m_dht);
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2006-10-11 22:57:54 +02:00
|
|
|
m_dht->add_node(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::add_dht_router(std::pair<std::string, int> const& node)
|
|
|
|
{
|
|
|
|
assert(m_dht);
|
2006-10-13 02:01:18 +02:00
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2006-10-11 22:57:54 +02:00
|
|
|
m_dht->add_router_node(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-06-06 02:41:20 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
void session_impl::set_pe_settings(pe_settings const& settings)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
m_pe_settings = settings;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
bool session_impl::is_listening() const
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-09-22 18:27:29 +02:00
|
|
|
return !m_listen_sockets.empty();
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
session_impl::~session_impl()
|
|
|
|
{
|
2007-03-02 06:02:12 +01:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
stop_dht();
|
|
|
|
#endif
|
2007-05-24 21:51:14 +02:00
|
|
|
|
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << "\n\n *** shutting down session *** \n\n";
|
|
|
|
#endif
|
2007-03-02 06:02:12 +01:00
|
|
|
// lock the main thread and abort it
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
m_abort = true;
|
|
|
|
m_io_service.stop();
|
|
|
|
l.unlock();
|
|
|
|
|
2007-05-24 21:51:14 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " waiting for main thread\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
m_thread->join();
|
|
|
|
|
2007-04-02 22:00:24 +02:00
|
|
|
assert(m_torrents.empty());
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
// it's important that the main thread is closed completely before
|
|
|
|
// the checker thread is terminated. Because all the connections
|
|
|
|
// have to be closed and removed from the torrents before they
|
|
|
|
// can be destructed. (because the weak pointers in the
|
|
|
|
// peer_connections will be invalidated when the torrents are
|
|
|
|
// destructed and then the invariant will be broken).
|
|
|
|
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_checker_impl.m_mutex);
|
|
|
|
// abort the checker thread
|
|
|
|
m_checker_impl.m_abort = true;
|
|
|
|
|
|
|
|
// abort the currently checking torrent
|
|
|
|
if (!m_checker_impl.m_torrents.empty())
|
|
|
|
{
|
|
|
|
m_checker_impl.m_torrents.front()->abort = true;
|
|
|
|
}
|
|
|
|
m_checker_impl.m_cond.notify_one();
|
|
|
|
}
|
|
|
|
|
2007-05-24 21:51:14 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " waiting for checker thread\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
m_checker_thread->join();
|
|
|
|
|
|
|
|
assert(m_torrents.empty());
|
|
|
|
assert(m_connections.empty());
|
2007-05-24 21:51:14 +02:00
|
|
|
#if defined(TORRENT_VERBOSE_LOGGING) || defined(TORRENT_LOGGING)
|
|
|
|
(*m_logger) << time_now_string() << " shutdown complete!\n";
|
|
|
|
#endif
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_max_uploads(int limit)
|
|
|
|
{
|
|
|
|
assert(limit > 0 || limit == -1);
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-08-21 06:46:17 +02:00
|
|
|
if (limit <= 0) limit = (std::numeric_limits<int>::max)();
|
2006-10-11 22:57:54 +02:00
|
|
|
m_max_uploads = limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_max_connections(int limit)
|
|
|
|
{
|
|
|
|
assert(limit > 0 || limit == -1);
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-08-21 06:46:17 +02:00
|
|
|
if (limit <= 0) limit = (std::numeric_limits<int>::max)();
|
2006-10-11 22:57:54 +02:00
|
|
|
m_max_connections = limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_max_half_open_connections(int limit)
|
|
|
|
{
|
|
|
|
assert(limit > 0 || limit == -1);
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-08-21 06:46:17 +02:00
|
|
|
if (limit <= 0) limit = (std::numeric_limits<int>::max)();
|
2007-05-05 02:29:33 +02:00
|
|
|
m_half_open.limit(limit);
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
2007-07-03 01:48:06 +02:00
|
|
|
void session_impl::set_download_rate_limit(int bytes_per_second)
|
|
|
|
{
|
|
|
|
assert(bytes_per_second > 0 || bytes_per_second == -1);
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-08-17 05:43:26 +02:00
|
|
|
if (bytes_per_second <= 0) bytes_per_second = bandwidth_limit::inf;
|
2007-07-03 01:48:06 +02:00
|
|
|
m_bandwidth_manager[peer_connection::download_channel]->throttle(bytes_per_second);
|
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
void session_impl::set_upload_rate_limit(int bytes_per_second)
|
|
|
|
{
|
|
|
|
assert(bytes_per_second > 0 || bytes_per_second == -1);
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-08-17 05:43:26 +02:00
|
|
|
if (bytes_per_second <= 0) bytes_per_second = bandwidth_limit::inf;
|
2007-07-03 01:48:06 +02:00
|
|
|
m_bandwidth_manager[peer_connection::upload_channel]->throttle(bytes_per_second);
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::auto_ptr<alert> session_impl::pop_alert()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2007-08-21 21:18:06 +02:00
|
|
|
// too expensive
|
|
|
|
// INVARIANT_CHECK;
|
2007-08-21 20:33:28 +02:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
if (m_alerts.pending())
|
|
|
|
return m_alerts.get();
|
|
|
|
return std::auto_ptr<alert>(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::set_severity_level(alert::severity_t s)
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
m_alerts.set_severity(s);
|
|
|
|
}
|
|
|
|
|
2007-01-02 00:51:24 +01:00
|
|
|
int session_impl::upload_rate_limit() const
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-08-07 09:35:21 +02:00
|
|
|
int ret = m_bandwidth_manager[peer_connection::upload_channel]->throttle();
|
2007-08-21 06:46:17 +02:00
|
|
|
return ret == (std::numeric_limits<int>::max)() ? -1 : ret;
|
2007-01-02 00:51:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int session_impl::download_rate_limit() const
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-07 09:35:21 +02:00
|
|
|
int ret = m_bandwidth_manager[peer_connection::download_channel]->throttle();
|
2007-08-21 06:46:17 +02:00
|
|
|
return ret == (std::numeric_limits<int>::max)() ? -1 : ret;
|
2007-01-02 00:51:24 +01:00
|
|
|
}
|
2007-05-31 02:21:54 +02:00
|
|
|
|
|
|
|
void session_impl::start_lsd()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-29 23:31:51 +02:00
|
|
|
m_lsd = new lsd(m_io_service
|
2007-05-31 02:21:54 +02:00
|
|
|
, m_listen_interface.address()
|
2007-09-29 23:31:51 +02:00
|
|
|
, bind(&session_impl::on_lsd_peer, this, _1, _2));
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::start_natpmp()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-29 23:31:51 +02:00
|
|
|
m_natpmp = new natpmp(m_io_service
|
2007-05-31 02:21:54 +02:00
|
|
|
, m_listen_interface.address()
|
|
|
|
, bind(&session_impl::on_port_mapping
|
2007-09-29 23:31:51 +02:00
|
|
|
, this, _1, _2, _3));
|
2007-05-31 02:21:54 +02:00
|
|
|
|
|
|
|
m_natpmp->set_mappings(m_listen_interface.port(),
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
m_dht ? m_dht_settings.service_port :
|
|
|
|
#endif
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::start_upnp()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-08-21 20:33:28 +02:00
|
|
|
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-29 23:31:51 +02:00
|
|
|
m_upnp = new upnp(m_io_service, m_half_open
|
2007-05-31 02:21:54 +02:00
|
|
|
, m_listen_interface.address()
|
|
|
|
, m_settings.user_agent
|
|
|
|
, bind(&session_impl::on_port_mapping
|
2007-09-29 23:31:51 +02:00
|
|
|
, this, _1, _2, _3));
|
2007-05-31 02:21:54 +02:00
|
|
|
|
|
|
|
m_upnp->set_mappings(m_listen_interface.port(),
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
m_dht ? m_dht_settings.service_port :
|
|
|
|
#endif
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::stop_lsd()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
2007-09-29 23:31:51 +02:00
|
|
|
m_lsd = 0;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::stop_natpmp()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
if (m_natpmp.get())
|
|
|
|
m_natpmp->close();
|
2007-09-29 23:31:51 +02:00
|
|
|
m_natpmp = 0;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::stop_upnp()
|
|
|
|
{
|
|
|
|
mutex_t::scoped_lock l(m_mutex);
|
|
|
|
if (m_upnp.get())
|
|
|
|
m_upnp->close();
|
2007-09-29 23:31:51 +02:00
|
|
|
m_upnp = 0;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
2007-09-29 18:14:03 +02:00
|
|
|
void session_impl::free_disk_buffer(char* buf)
|
|
|
|
{
|
|
|
|
m_disk_thread.free_buffer(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<char*, int> session_impl::allocate_buffer(int size)
|
|
|
|
{
|
|
|
|
int num_buffers = (size + send_buffer_size - 1) / send_buffer_size;
|
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
m_buffer_allocations += num_buffers;
|
|
|
|
m_buffer_usage_logger << log_time() << " protocol_buffer: "
|
|
|
|
<< (m_buffer_allocations * send_buffer_size) << std::endl;
|
|
|
|
#endif
|
|
|
|
return std::make_pair((char*)m_send_buffers.ordered_malloc(num_buffers)
|
|
|
|
, num_buffers * send_buffer_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session_impl::free_buffer(char* buf, int size)
|
|
|
|
{
|
|
|
|
assert(size % send_buffer_size == 0);
|
|
|
|
int num_buffers = size / send_buffer_size;
|
|
|
|
#ifdef TORRENT_STATS
|
|
|
|
m_buffer_allocations -= num_buffers;
|
|
|
|
assert(m_buffer_allocations >= 0);
|
|
|
|
m_buffer_usage_logger << log_time() << " protocol_buffer: "
|
|
|
|
<< (m_buffer_allocations * send_buffer_size) << std::endl;
|
|
|
|
#endif
|
|
|
|
m_send_buffers.ordered_free(buf, num_buffers);
|
|
|
|
}
|
2007-01-02 00:51:24 +01:00
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
#ifndef NDEBUG
|
2007-08-21 20:33:28 +02:00
|
|
|
void session_impl::check_invariant() const
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-08-17 09:37:08 +02:00
|
|
|
assert(m_max_connections > 0);
|
|
|
|
assert(m_max_uploads > 0);
|
2007-08-16 14:41:46 +02:00
|
|
|
int unchokes = 0;
|
|
|
|
int num_optimistic = 0;
|
2007-08-21 20:33:28 +02:00
|
|
|
for (connection_map::const_iterator i = m_connections.begin();
|
2006-10-11 22:57:54 +02:00
|
|
|
i != m_connections.end(); ++i)
|
|
|
|
{
|
|
|
|
assert(i->second);
|
|
|
|
boost::shared_ptr<torrent> t = i->second->associated_torrent().lock();
|
|
|
|
|
2007-08-16 14:41:46 +02:00
|
|
|
if (!i->second->is_choked()) ++unchokes;
|
|
|
|
if (i->second->peer_info_struct()
|
|
|
|
&& i->second->peer_info_struct()->optimistically_unchoked)
|
2007-08-19 10:23:44 +02:00
|
|
|
{
|
2007-08-16 14:41:46 +02:00
|
|
|
++num_optimistic;
|
2007-08-19 10:23:44 +02:00
|
|
|
assert(!i->second->is_choked());
|
|
|
|
}
|
2007-08-21 20:33:28 +02:00
|
|
|
if (t && i->second->peer_info_struct())
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
assert(t->get_policy().has_connection(boost::get_pointer(i->second)));
|
|
|
|
}
|
|
|
|
}
|
2007-08-16 14:41:46 +02:00
|
|
|
assert(num_optimistic == 0 || num_optimistic == 1);
|
2007-08-21 23:51:29 +02:00
|
|
|
if (m_num_unchoked != unchokes)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void piece_checker_data::parse_resume_data(
|
|
|
|
const entry& resume_data
|
|
|
|
, const torrent_info& info
|
|
|
|
, std::string& error)
|
|
|
|
{
|
|
|
|
// if we don't have any resume data, return
|
|
|
|
if (resume_data.type() == entry::undefined_t) return;
|
|
|
|
|
|
|
|
entry rd = resume_data;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (rd["file-format"].string() != "libtorrent resume file")
|
|
|
|
{
|
|
|
|
error = "missing file format tag";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rd["file-version"].integer() > 1)
|
|
|
|
{
|
|
|
|
error = "incompatible file version "
|
|
|
|
+ boost::lexical_cast<std::string>(rd["file-version"].integer());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// verify info_hash
|
2007-03-16 02:24:40 +01:00
|
|
|
sha1_hash hash = rd["info-hash"].string();
|
|
|
|
if (hash != info.info_hash())
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-03-16 02:24:40 +01:00
|
|
|
error = "mismatching info-hash: " + boost::lexical_cast<std::string>(hash);
|
2006-10-11 22:57:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the peers
|
|
|
|
|
2007-10-03 19:37:15 +02:00
|
|
|
if (entry* peers_entry = rd.find_key("peers"))
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-10-03 19:37:15 +02:00
|
|
|
entry::list_type& peer_list = peers_entry->list();
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
std::vector<tcp::endpoint> tmp_peers;
|
|
|
|
tmp_peers.reserve(peer_list.size());
|
|
|
|
for (entry::list_type::iterator i = peer_list.begin();
|
|
|
|
i != peer_list.end(); ++i)
|
|
|
|
{
|
|
|
|
tcp::endpoint a(
|
|
|
|
address::from_string((*i)["ip"].string())
|
|
|
|
, (unsigned short)(*i)["port"].integer());
|
|
|
|
tmp_peers.push_back(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
peers.swap(tmp_peers);
|
|
|
|
}
|
|
|
|
|
2007-10-03 19:37:15 +02:00
|
|
|
if (entry* banned_peers_entry = rd.find_key("banned_peers"))
|
|
|
|
{
|
|
|
|
entry::list_type& peer_list = banned_peers_entry->list();
|
|
|
|
|
|
|
|
std::vector<tcp::endpoint> tmp_peers;
|
|
|
|
tmp_peers.reserve(peer_list.size());
|
|
|
|
for (entry::list_type::iterator i = peer_list.begin();
|
|
|
|
i != peer_list.end(); ++i)
|
|
|
|
{
|
|
|
|
tcp::endpoint a(
|
|
|
|
address::from_string((*i)["ip"].string())
|
|
|
|
, (unsigned short)(*i)["port"].integer());
|
|
|
|
tmp_peers.push_back(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
banned_peers.swap(tmp_peers);
|
|
|
|
}
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
// read piece map
|
|
|
|
const entry::list_type& slots = rd["slots"].list();
|
|
|
|
if ((int)slots.size() > info.num_pieces())
|
|
|
|
{
|
|
|
|
error = "file has more slots than torrent (slots: "
|
|
|
|
+ boost::lexical_cast<std::string>(slots.size()) + " size: "
|
|
|
|
+ boost::lexical_cast<std::string>(info.num_pieces()) + " )";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<int> tmp_pieces;
|
|
|
|
tmp_pieces.reserve(slots.size());
|
|
|
|
for (entry::list_type::const_iterator i = slots.begin();
|
|
|
|
i != slots.end(); ++i)
|
|
|
|
{
|
|
|
|
int index = (int)i->integer();
|
|
|
|
if (index >= info.num_pieces() || index < -2)
|
|
|
|
{
|
|
|
|
error = "too high index number in slot map (index: "
|
|
|
|
+ boost::lexical_cast<std::string>(index) + " size: "
|
|
|
|
+ boost::lexical_cast<std::string>(info.num_pieces()) + ")";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tmp_pieces.push_back(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// only bother to check the partial pieces if we have the same block size
|
|
|
|
// as in the fast resume data. If the blocksize has changed, then throw
|
|
|
|
// away all partial pieces.
|
|
|
|
std::vector<piece_picker::downloading_piece> tmp_unfinished;
|
|
|
|
int num_blocks_per_piece = (int)rd["blocks per piece"].integer();
|
|
|
|
if (num_blocks_per_piece == info.piece_length() / torrent_ptr->block_size())
|
|
|
|
{
|
|
|
|
// the unfinished pieces
|
|
|
|
|
|
|
|
entry::list_type& unfinished = rd["unfinished"].list();
|
2007-05-09 05:18:53 +02:00
|
|
|
int unfinished_size = int(unfinished.size());
|
|
|
|
block_info.resize(num_blocks_per_piece * unfinished_size);
|
|
|
|
tmp_unfinished.reserve(unfinished_size);
|
|
|
|
int index = 0;
|
2006-10-11 22:57:54 +02:00
|
|
|
for (entry::list_type::iterator i = unfinished.begin();
|
2007-05-09 05:18:53 +02:00
|
|
|
i != unfinished.end(); ++i, ++index)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
piece_picker::downloading_piece p;
|
2007-05-09 05:18:53 +02:00
|
|
|
p.info = &block_info[index * num_blocks_per_piece];
|
2006-10-11 22:57:54 +02:00
|
|
|
p.index = (int)(*i)["piece"].integer();
|
|
|
|
if (p.index < 0 || p.index >= info.num_pieces())
|
|
|
|
{
|
|
|
|
error = "invalid piece index in unfinished piece list (index: "
|
|
|
|
+ boost::lexical_cast<std::string>(p.index) + " size: "
|
|
|
|
+ boost::lexical_cast<std::string>(info.num_pieces()) + ")";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& bitmask = (*i)["bitmask"].string();
|
|
|
|
|
2007-08-17 00:14:17 +02:00
|
|
|
const int num_bitmask_bytes = (std::max)(num_blocks_per_piece / 8, 1);
|
2006-10-11 22:57:54 +02:00
|
|
|
if ((int)bitmask.size() != num_bitmask_bytes)
|
|
|
|
{
|
|
|
|
error = "invalid size of bitmask (" + boost::lexical_cast<std::string>(bitmask.size()) + ")";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (int j = 0; j < num_bitmask_bytes; ++j)
|
|
|
|
{
|
|
|
|
unsigned char bits = bitmask[j];
|
2007-08-17 00:14:17 +02:00
|
|
|
int num_bits = (std::min)(num_blocks_per_piece - j*8, 8);
|
2007-06-10 22:46:09 +02:00
|
|
|
for (int k = 0; k < num_bits; ++k)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
const int bit = j * 8 + k;
|
|
|
|
if (bits & (1 << k))
|
2007-05-08 13:13:13 +02:00
|
|
|
{
|
2007-06-10 22:46:09 +02:00
|
|
|
p.info[bit].state = piece_picker::block_info::state_finished;
|
2007-05-08 13:13:13 +02:00
|
|
|
++p.finished;
|
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-08 13:13:13 +02:00
|
|
|
if (p.finished == 0) continue;
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
std::vector<int>::iterator slot_iter
|
|
|
|
= std::find(tmp_pieces.begin(), tmp_pieces.end(), p.index);
|
|
|
|
if (slot_iter == tmp_pieces.end())
|
|
|
|
{
|
|
|
|
// this piece is marked as unfinished
|
|
|
|
// but doesn't have any storage
|
|
|
|
error = "piece " + boost::lexical_cast<std::string>(p.index) + " is "
|
|
|
|
"marked as unfinished, but doesn't have any storage";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(*slot_iter == p.index);
|
|
|
|
int slot_index = static_cast<int>(slot_iter - tmp_pieces.begin());
|
|
|
|
unsigned long adler
|
|
|
|
= torrent_ptr->filesystem().piece_crc(
|
|
|
|
slot_index
|
|
|
|
, torrent_ptr->block_size()
|
2007-05-08 13:13:13 +02:00
|
|
|
, p.info);
|
2006-10-11 22:57:54 +02:00
|
|
|
|
|
|
|
const entry& ad = (*i)["adler32"];
|
|
|
|
|
|
|
|
// crc's didn't match, don't use the resume data
|
2006-11-28 19:18:37 +01:00
|
|
|
if (ad.integer() != entry::integer_type(adler))
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
2007-03-28 01:49:05 +02:00
|
|
|
error = "checksum mismatch on piece "
|
|
|
|
+ boost::lexical_cast<std::string>(p.index);
|
2006-10-11 22:57:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_unfinished.push_back(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-28 01:49:05 +02:00
|
|
|
if (!torrent_ptr->verify_resume_data(rd, error))
|
2006-10-11 22:57:54 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
piece_map.swap(tmp_pieces);
|
|
|
|
unfinished_pieces.swap(tmp_unfinished);
|
|
|
|
}
|
2007-03-28 01:49:05 +02:00
|
|
|
catch (invalid_encoding&)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2007-03-28 01:49:05 +02:00
|
|
|
catch (type_error&)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2007-03-28 01:49:05 +02:00
|
|
|
catch (file_error&)
|
2006-10-11 22:57:54 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
|