change peer_states to be a bitmask (bw_limit, bw_network, bw_disk)

This commit is contained in:
Arvid Norberg 2011-10-25 17:34:42 +00:00
parent da4998bd46
commit e58e27e83a
4 changed files with 56 additions and 47 deletions

View File

@ -1,3 +1,4 @@
* change peer_states to be a bitmask (bw_limit, bw_network, bw_disk)
* changed semantics of send_buffer_watermark_factor to be specified as a percentage * changed semantics of send_buffer_watermark_factor to be specified as a percentage
* add incoming_connection_alert for logging all successful incoming connections * add incoming_connection_alert for logging all successful incoming connections
* feature to encrypt peer connections with a secret AES-256 key stored in .torrent file * feature to encrypt peer connections with a secret AES-256 key stored in .torrent file

View File

@ -3784,7 +3784,8 @@ It contains the following fields::
int source; int source;
enum bw_state { bw_idle, bw_limit, bw_network, bw_disk }; // bitmask representing socket state
enum bw_state { bw_idle = 0, bw_limit = 1, bw_network = 2, bw_disk = 4 };
char read_state; char read_state;
char write_state; char write_state;
@ -3946,9 +3947,9 @@ was received. The flags are:
| ``resume_data`` | The peer was added from the fast resume data. | | ``resume_data`` | The peer was added from the fast resume data. |
+------------------------+--------------------------------------------------------+ +------------------------+--------------------------------------------------------+
``read_state`` and ``write_state`` indicates what state this peer is in with regards ``read_state`` and ``write_state`` are bitmasks indicating what state this peer
to sending and receiving data. The states are declared in the ``bw_state`` enum and is in with regards to sending and receiving data. The states are declared in the
defines as follows: ``bw_state`` enum and defines as follows:
+------------------------+--------------------------------------------------------+ +------------------------+--------------------------------------------------------+
| ``bw_idle`` | The peer is not waiting for any external events to | | ``bw_idle`` | The peer is not waiting for any external events to |
@ -3969,6 +3970,10 @@ defines as follows:
| | | | | |
+------------------------+--------------------------------------------------------+ +------------------------+--------------------------------------------------------+
Note that ``read_state`` and ``write_state`` are bitmasks. A peer may be waiting
on disk and on the network at the same time. ``bw_idle`` does not represent a bit,
but is simply a name for no bit being set in the bitmask.
The ``ip`` field is the IP-address to this peer. The type is an asio endpoint. For The ``ip`` field is the IP-address to this peer. The type is an asio endpoint. For
more info, see the asio_ documentation. more info, see the asio_ documentation.

View File

@ -87,8 +87,9 @@ namespace libtorrent
// bw_network: the channel is waiting for an async write // bw_network: the channel is waiting for an async write
// for read operation to complete // for read operation to complete
// bw_disk: the peer is waiting for the disk io thread // bw_disk: the peer is waiting for the disk io thread
// to catch up // this is a bitmask, a peer can wait for network and
enum bw_state { bw_idle, bw_limit, bw_network, bw_disk }; // disk at the same time!
enum bw_state { bw_idle = 0, bw_limit = 1, bw_network = 2, bw_disk = 4 };
#ifndef TORRENT_NO_DEPRECATE #ifndef TORRENT_NO_DEPRECATE
enum bw_state_deprecated { bw_torrent = bw_limit, bw_global = bw_limit }; enum bw_state_deprecated { bw_torrent = bw_limit, bw_global = bw_limit };
#endif #endif

View File

@ -2466,7 +2466,7 @@ namespace libtorrent
int write_queue_size = fs.async_write(p, data, boost::bind(&peer_connection::on_disk_write_complete int write_queue_size = fs.async_write(p, data, boost::bind(&peer_connection::on_disk_write_complete
, self(), _1, _2, p, t)); , self(), _1, _2, p, t));
m_outstanding_writing_bytes += p.length; m_outstanding_writing_bytes += p.length;
TORRENT_ASSERT(m_channel_state[download_channel] == peer_info::bw_idle); TORRENT_ASSERT((m_channel_state[download_channel] & peer_info::bw_network) == 0);
m_download_queue.erase(b); m_download_queue.erase(b);
if (write_queue_size / 16 / 1024 > m_ses.m_settings.cache_size / 2 if (write_queue_size / 16 / 1024 > m_ses.m_settings.cache_size / 2
@ -3457,15 +3457,15 @@ namespace libtorrent
INVARIANT_CHECK; INVARIANT_CHECK;
if (m_channel_state[upload_channel] == peer_info::bw_disk) if (m_channel_state[upload_channel] & peer_info::bw_disk)
{ {
m_ses.dec_disk_queue(upload_channel); m_ses.dec_disk_queue(upload_channel);
m_channel_state[upload_channel] = peer_info::bw_idle; m_channel_state[upload_channel] &= ~peer_info::bw_disk;
} }
if (m_channel_state[download_channel] == peer_info::bw_disk) if (m_channel_state[download_channel] & peer_info::bw_disk)
{ {
m_ses.dec_disk_queue(download_channel); m_ses.dec_disk_queue(download_channel);
m_channel_state[download_channel] = peer_info::bw_idle; m_channel_state[download_channel] &= ~peer_info::bw_disk;
} }
if (m_connecting && m_connection_ticket >= 0) if (m_connecting && m_connection_ticket >= 0)
@ -4020,7 +4020,7 @@ namespace libtorrent
// if we can't read, it means we're blocked on the rate-limiter // if we can't read, it means we're blocked on the rate-limiter
// or the disk, not the peer itself. In this case, don't blame // or the disk, not the peer itself. In this case, don't blame
// the peer and disconnect it // the peer and disconnect it
bool may_timeout = (m_channel_state[download_channel] == peer_info::bw_network); bool may_timeout = (m_channel_state[download_channel] & peer_info::bw_network);
if (may_timeout && d > seconds(m_timeout) && !m_connecting) if (may_timeout && d > seconds(m_timeout) && !m_connecting)
{ {
@ -4481,8 +4481,8 @@ namespace libtorrent
TORRENT_ASSERT(amount > 0); TORRENT_ASSERT(amount > 0);
m_quota[channel] += amount; m_quota[channel] += amount;
TORRENT_ASSERT(m_channel_state[channel] == peer_info::bw_limit); TORRENT_ASSERT(m_channel_state[channel] & peer_info::bw_limit);
m_channel_state[channel] = peer_info::bw_idle; m_channel_state[channel] &= ~peer_info::bw_limit;
if (channel == upload_channel) if (channel == upload_channel)
{ {
setup_send(); setup_send();
@ -4527,8 +4527,8 @@ namespace libtorrent
TORRENT_ASSERT(priority < 0xffff); TORRENT_ASSERT(priority < 0xffff);
// peers that we are not interested in are non-prioritized // peers that we are not interested in are non-prioritized
TORRENT_ASSERT(m_channel_state[upload_channel] != peer_info::bw_disk); TORRENT_ASSERT((m_channel_state[upload_channel] & peer_info::bw_limit) == 0);
m_channel_state[upload_channel] = peer_info::bw_limit; m_channel_state[upload_channel] |= peer_info::bw_limit;
#ifdef TORRENT_VERBOSE_LOGGING #ifdef TORRENT_VERBOSE_LOGGING
peer_log(">>> REQUEST_BANDWIDTH [ upload: %d prio: %d " peer_log(">>> REQUEST_BANDWIDTH [ upload: %d prio: %d "
"channels: %p %p %p %p limits: %d %d %d %d ignore: %d ]" "channels: %p %p %p %p limits: %d %d %d %d ignore: %d ]"
@ -4570,11 +4570,9 @@ namespace libtorrent
TORRENT_ASSERT(m_priority <= 255); TORRENT_ASSERT(m_priority <= 255);
int priority = m_priority + (t->priority() << 8); int priority = m_priority + (t->priority() << 8);
TORRENT_ASSERT(m_channel_state[download_channel] == peer_info::bw_idle
|| m_channel_state[download_channel] == peer_info::bw_disk);
TORRENT_ASSERT(m_outstanding_bytes >= 0); TORRENT_ASSERT(m_outstanding_bytes >= 0);
TORRENT_ASSERT(m_channel_state[download_channel] != peer_info::bw_disk); TORRENT_ASSERT((m_channel_state[download_channel] & peer_info::bw_limit) == 0);
m_channel_state[download_channel] = peer_info::bw_limit; m_channel_state[download_channel] |= peer_info::bw_limit;
return m_ses.m_download_rate.request_bandwidth(self() return m_ses.m_download_rate.request_bandwidth(self()
, (std::max)((std::max)(m_outstanding_bytes, m_packet_size - m_recv_pos) + 30 , (std::max)((std::max)(m_outstanding_bytes, m_packet_size - m_recv_pos) + 30
, m_statistics.download_rate() * 2 , m_statistics.download_rate() * 2
@ -4591,8 +4589,7 @@ namespace libtorrent
void peer_connection::setup_send() void peer_connection::setup_send()
{ {
if (m_channel_state[upload_channel] != peer_info::bw_idle if (m_channel_state[upload_channel] & (peer_info::bw_network || peer_info::bw_limit)) return;
&& m_channel_state[upload_channel] != peer_info::bw_disk) return;
shared_ptr<torrent> t = m_torrent.lock(); shared_ptr<torrent> t = m_torrent.lock();
@ -4625,12 +4622,15 @@ namespace libtorrent
ret = request_upload_bandwidth(&m_ses.m_local_upload_channel ret = request_upload_bandwidth(&m_ses.m_local_upload_channel
, &m_bandwidth_channel[upload_channel]); , &m_bandwidth_channel[upload_channel]);
} }
if (ret == 0) return; if (ret == 0)
{
m_channel_state[upload_channel] |= peer_info::bw_limit;
return;
}
// we were just assigned 'ret' quota // we were just assigned 'ret' quota
TORRENT_ASSERT(ret > 0); TORRENT_ASSERT(ret > 0);
m_quota[upload_channel] += ret; m_quota[upload_channel] += ret;
m_channel_state[upload_channel] = peer_info::bw_idle;
} }
int quota_left = m_quota[upload_channel]; int quota_left = m_quota[upload_channel];
@ -4639,9 +4639,9 @@ namespace libtorrent
&& m_reading_bytes > 0 && m_reading_bytes > 0
&& quota_left > 0) && quota_left > 0)
{ {
if (m_channel_state[upload_channel] != peer_info::bw_disk) if ((m_channel_state[upload_channel] & peer_info::bw_disk) == 0)
m_ses.inc_disk_queue(upload_channel); m_ses.inc_disk_queue(upload_channel);
m_channel_state[upload_channel] = peer_info::bw_disk; m_channel_state[upload_channel] |= peer_info::bw_disk;
if (!m_connecting if (!m_connecting
&& !m_requests.empty() && !m_requests.empty()
@ -4703,6 +4703,7 @@ namespace libtorrent
return; return;
} }
TORRENT_ASSERT((m_channel_state[upload_channel] & peer_info::bw_network) == 0);
#ifdef TORRENT_VERBOSE_LOGGING #ifdef TORRENT_VERBOSE_LOGGING
peer_log(">>> ASYNC_WRITE [ bytes: %d ]", amount_to_send); peer_log(">>> ASYNC_WRITE [ bytes: %d ]", amount_to_send);
#endif #endif
@ -4714,18 +4715,16 @@ namespace libtorrent
vec, make_write_handler(boost::bind( vec, make_write_handler(boost::bind(
&peer_connection::on_send_data, self(), _1, _2))); &peer_connection::on_send_data, self(), _1, _2)));
if (m_channel_state[upload_channel] == peer_info::bw_disk) m_channel_state[upload_channel] |= peer_info::bw_network;
m_ses.dec_disk_queue(upload_channel);
m_channel_state[upload_channel] = peer_info::bw_network;
} }
void peer_connection::on_disk() void peer_connection::on_disk()
{ {
if (m_channel_state[download_channel] != peer_info::bw_disk) return; if ((m_channel_state[download_channel] & peer_info::bw_disk) == 0) return;
boost::intrusive_ptr<peer_connection> me(this); boost::intrusive_ptr<peer_connection> me(this);
m_ses.dec_disk_queue(download_channel); m_ses.dec_disk_queue(download_channel);
m_channel_state[download_channel] = peer_info::bw_idle; m_channel_state[download_channel] &= ~peer_info::bw_disk;
setup_receive(read_async); setup_receive(read_async);
} }
@ -4733,7 +4732,7 @@ namespace libtorrent
{ {
INVARIANT_CHECK; INVARIANT_CHECK;
if (m_channel_state[download_channel] != peer_info::bw_idle) return; if (m_channel_state[download_channel] & (peer_info::bw_network | peer_info::bw_limit)) return;
shared_ptr<torrent> t = m_torrent.lock(); shared_ptr<torrent> t = m_torrent.lock();
@ -4765,12 +4764,15 @@ namespace libtorrent
ret = request_download_bandwidth(&m_ses.m_local_download_channel ret = request_download_bandwidth(&m_ses.m_local_download_channel
, &m_bandwidth_channel[download_channel]); , &m_bandwidth_channel[download_channel]);
} }
if (ret == 0) return; if (ret == 0)
{
m_channel_state[download_channel] |= peer_info::bw_limit;
return;
}
// we were just assigned 'ret' quota // we were just assigned 'ret' quota
TORRENT_ASSERT(ret > 0); TORRENT_ASSERT(ret > 0);
m_quota[download_channel] += ret; m_quota[download_channel] += ret;
m_channel_state[download_channel] = peer_info::bw_idle;
} }
if (!can_read(&m_channel_state[download_channel])) if (!can_read(&m_channel_state[download_channel]))
@ -4801,8 +4803,8 @@ namespace libtorrent
add_outstanding_async("peer_connection::on_receive_data"); add_outstanding_async("peer_connection::on_receive_data");
#endif #endif
++m_read_recurse; ++m_read_recurse;
TORRENT_ASSERT(m_channel_state[download_channel] != peer_info::bw_disk); TORRENT_ASSERT((m_channel_state[download_channel] & peer_info::bw_network) == 0);
m_channel_state[download_channel] = peer_info::bw_network; m_channel_state[download_channel] |= peer_info::bw_network;
on_receive_data(ec, bytes_transferred); on_receive_data(ec, bytes_transferred);
--m_read_recurse; --m_read_recurse;
return; return;
@ -4885,8 +4887,8 @@ namespace libtorrent
if (s == read_async) if (s == read_async)
{ {
TORRENT_ASSERT(m_channel_state[download_channel] != peer_info::bw_disk); TORRENT_ASSERT((m_channel_state[download_channel] & peer_info::bw_network) == 0);
m_channel_state[download_channel] = peer_info::bw_network; m_channel_state[download_channel] |= peer_info::bw_network;
#ifdef TORRENT_VERBOSE_LOGGING #ifdef TORRENT_VERBOSE_LOGGING
peer_log("<<< ASYNC_READ [ max: %d bytes ]", max_receive); peer_log("<<< ASYNC_READ [ max: %d bytes ]", max_receive);
#endif #endif
@ -5081,8 +5083,8 @@ namespace libtorrent
#if defined TORRENT_ASIO_DEBUGGING #if defined TORRENT_ASIO_DEBUGGING
complete_async("peer_connection::on_receive_data"); complete_async("peer_connection::on_receive_data");
#endif #endif
TORRENT_ASSERT(m_channel_state[download_channel] == peer_info::bw_network); TORRENT_ASSERT(m_channel_state[download_channel] & peer_info::bw_network);
m_channel_state[download_channel] = peer_info::bw_idle; m_channel_state[download_channel] &= ~peer_info::bw_network;
int bytes_in_loop = bytes_transferred; int bytes_in_loop = bytes_transferred;
@ -5209,8 +5211,9 @@ namespace libtorrent
{ {
if (state) if (state)
{ {
if (*state != peer_info::bw_disk) m_ses.inc_disk_queue(download_channel); if ((*state & peer_info::bw_disk) == 0)
*state = peer_info::bw_disk; m_ses.inc_disk_queue(download_channel);
*state |= peer_info::bw_disk;
} }
return false; return false;
} }
@ -5428,7 +5431,7 @@ namespace libtorrent
// case we disconnect // case we disconnect
boost::intrusive_ptr<peer_connection> me(self()); boost::intrusive_ptr<peer_connection> me(self());
TORRENT_ASSERT(m_channel_state[upload_channel] == peer_info::bw_network); TORRENT_ASSERT(m_channel_state[upload_channel] & peer_info::bw_network);
m_send_buffer.pop_front(bytes_transferred); m_send_buffer.pop_front(bytes_transferred);
@ -5440,8 +5443,7 @@ namespace libtorrent
&& m_requests_in_buffer.front() <= 0) && m_requests_in_buffer.front() <= 0)
m_requests_in_buffer.erase(m_requests_in_buffer.begin()); m_requests_in_buffer.erase(m_requests_in_buffer.begin());
TORRENT_ASSERT(m_channel_state[upload_channel] != peer_info::bw_disk); m_channel_state[upload_channel] &= ~peer_info::bw_network;
m_channel_state[upload_channel] = peer_info::bw_idle;
TORRENT_ASSERT(int(bytes_transferred) <= m_quota[upload_channel]); TORRENT_ASSERT(int(bytes_transferred) <= m_quota[upload_channel]);
m_quota[upload_channel] -= bytes_transferred; m_quota[upload_channel] -= bytes_transferred;
@ -5552,12 +5554,12 @@ namespace libtorrent
TORRENT_ASSERT(m_outstanding_bytes == outstanding_bytes); TORRENT_ASSERT(m_outstanding_bytes == outstanding_bytes);
} }
/*
if (m_channel_state[download_channel] == peer_info::bw_limit) if (m_channel_state[download_channel] == peer_info::bw_limit)
TORRENT_ASSERT(m_quota[download_channel] == 0); TORRENT_ASSERT(m_quota[download_channel] == 0);
if (m_channel_state[upload_channel] == peer_info::bw_limit) if (m_channel_state[upload_channel] == peer_info::bw_limit)
TORRENT_ASSERT(m_quota[upload_channel] == 0); TORRENT_ASSERT(m_quota[upload_channel] == 0);
*/
std::set<piece_block> unique; std::set<piece_block> unique;
std::transform(m_download_queue.begin(), m_download_queue.end() std::transform(m_download_queue.begin(), m_download_queue.end()
, std::inserter(unique, unique.begin()), boost::bind(&pending_block::block, _1)); , std::inserter(unique, unique.begin()), boost::bind(&pending_block::block, _1));