i2pd/Streaming.h

329 lines
12 KiB
C
Raw Normal View History

2013-12-13 03:36:24 +01:00
#ifndef STREAMING_H__
#define STREAMING_H__
#include <inttypes.h>
2014-03-19 21:38:55 +01:00
#include <string>
2015-01-25 22:18:26 +01:00
#include <sstream>
#include <map>
#include <set>
2014-04-12 03:13:52 +02:00
#include <queue>
2014-08-04 22:30:37 +02:00
#include <functional>
2014-11-23 17:33:58 +01:00
#include <memory>
2015-01-25 22:18:26 +01:00
#include <mutex>
2014-03-23 21:00:05 +01:00
#include <boost/asio.hpp>
2015-11-03 15:15:49 +01:00
#include "Base.h"
#include "I2PEndian.h"
2013-12-31 02:46:33 +01:00
#include "Identity.h"
2014-01-02 00:19:03 +01:00
#include "LeaseSet.h"
#include "I2NPProtocol.h"
2014-08-30 04:10:00 +02:00
#include "Garlic.h"
2014-10-07 02:18:18 +02:00
#include "Tunnel.h"
2013-12-13 03:36:24 +01:00
namespace i2p
{
namespace client
{
2016-05-25 22:18:02 +02:00
class ClientDestination;
}
2013-12-13 03:36:24 +01:00
namespace stream
{
const uint16_t PACKET_FLAG_SYNCHRONIZE = 0x0001;
const uint16_t PACKET_FLAG_CLOSE = 0x0002;
const uint16_t PACKET_FLAG_RESET = 0x0004;
const uint16_t PACKET_FLAG_SIGNATURE_INCLUDED = 0x0008;
const uint16_t PACKET_FLAG_SIGNATURE_REQUESTED = 0x0010;
const uint16_t PACKET_FLAG_FROM_INCLUDED = 0x0020;
const uint16_t PACKET_FLAG_DELAY_REQUESTED = 0x0040;
const uint16_t PACKET_FLAG_MAX_PACKET_SIZE_INCLUDED = 0x0080;
const uint16_t PACKET_FLAG_PROFILE_INTERACTIVE = 0x0100;
const uint16_t PACKET_FLAG_ECHO = 0x0200;
const uint16_t PACKET_FLAG_NO_ACK = 0x0400;
2014-01-12 21:57:10 +01:00
const size_t STREAMING_MTU = 1730;
2014-08-07 01:19:59 +02:00
const size_t MAX_PACKET_SIZE = 4096;
2014-08-09 20:47:00 +02:00
const size_t COMPRESSION_THRESHOLD_SIZE = 66;
2014-10-10 17:53:27 +02:00
const int ACK_SEND_TIMEOUT = 200; // in milliseconds
const int MAX_NUM_RESEND_ATTEMPTS = 6;
2015-01-25 23:43:34 +01:00
const int WINDOW_SIZE = 6; // in messages
2015-01-29 21:34:43 +01:00
const int MIN_WINDOW_SIZE = 1;
const int MAX_WINDOW_SIZE = 128;
const int INITIAL_RTT = 8000; // in milliseconds
2015-03-10 16:11:42 +01:00
const int INITIAL_RTO = 9000; // in milliseconds
const size_t MAX_PENDING_INCOMING_BACKLOG = 128;
const int PENDING_INCOMING_TIMEOUT = 10; // in seconds
const int MAX_RECEIVE_TIMEOUT = 60; // in seconds
2016-07-28 17:16:29 +02:00
/** i2cp option for limiting inbound stremaing connections */
2016-07-28 18:34:33 +02:00
const char I2CP_PARAM_STREAMING_MAX_CONNS_PER_MIN[] = "maxconns";
2016-07-28 17:16:29 +02:00
/** default maximum connections attempts per minute per destination */
const uint32_t DEFAULT_MAX_CONNS_PER_MIN = 600;
/**
* max banned destinations per local destination
* TODO: make configurable
*/
const uint16_t MAX_BANNED_CONNS = 9999;
/**
* length of a ban in ms
* TODO: make configurable
*/
const uint64_t DEFAULT_BAN_INTERVAL = 60 * 60 * 1000;
2014-08-09 20:47:00 +02:00
2014-01-11 02:21:38 +01:00
struct Packet
{
size_t len, offset;
2014-11-27 03:42:14 +01:00
uint8_t buf[MAX_PACKET_SIZE];
2015-02-03 19:46:44 +01:00
uint64_t sendTime;
2014-08-12 01:32:07 +02:00
Packet (): len (0), offset (0), sendTime (0) {};
2014-01-11 02:21:38 +01:00
uint8_t * GetBuffer () { return buf + offset; };
size_t GetLength () const { return len - offset; };
uint32_t GetSendStreamID () const { return bufbe32toh (buf); };
uint32_t GetReceiveStreamID () const { return bufbe32toh (buf + 4); };
uint32_t GetSeqn () const { return bufbe32toh (buf + 8); };
uint32_t GetAckThrough () const { return bufbe32toh (buf + 12); };
2014-01-30 05:13:59 +01:00
uint8_t GetNACKCount () const { return buf[16]; };
uint32_t GetNACK (int i) const { return bufbe32toh (buf + 17 + 4 * i); };
2014-01-30 05:13:59 +01:00
const uint8_t * GetOption () const { return buf + 17 + GetNACKCount ()*4 + 3; }; // 3 = resendDelay + flags
uint16_t GetFlags () const { return bufbe16toh (GetOption () - 2); };
uint16_t GetOptionSize () const { return bufbe16toh (GetOption ()); };
2014-01-30 05:13:59 +01:00
const uint8_t * GetOptionData () const { return GetOption () + 2; };
const uint8_t * GetPayload () const { return GetOptionData () + GetOptionSize (); };
2014-08-06 21:44:00 +02:00
bool IsSYN () const { return GetFlags () & PACKET_FLAG_SYNCHRONIZE; };
2014-08-11 00:27:23 +02:00
bool IsNoAck () const { return GetFlags () & PACKET_FLAG_NO_ACK; };
};
struct PacketCmp
{
bool operator() (const Packet * p1, const Packet * p2) const
{
2014-01-30 05:13:59 +01:00
return p1->GetSeqn () < p2->GetSeqn ();
};
2014-01-11 02:21:38 +01:00
};
2015-03-09 00:36:33 +01:00
enum StreamStatus
{
eStreamStatusNew = 0,
2015-03-09 00:36:33 +01:00
eStreamStatusOpen,
eStreamStatusReset,
eStreamStatusClosing,
eStreamStatusClosed
};
2014-01-11 02:21:38 +01:00
2013-12-31 02:46:33 +01:00
class StreamingDestination;
2014-11-23 17:33:58 +01:00
class Stream: public std::enable_shared_from_this<Stream>
{
public:
2015-04-09 21:07:25 +02:00
typedef std::function<void (const boost::system::error_code& ecode)> SendHandler;
2014-10-23 03:36:11 +02:00
Stream (boost::asio::io_service& service, StreamingDestination& local,
2015-01-27 17:27:58 +01:00
std::shared_ptr<const i2p::data::LeaseSet> remote, int port = 0); // outgoing
2014-10-07 16:44:42 +02:00
Stream (boost::asio::io_service& service, StreamingDestination& local); // incoming
2014-08-01 20:54:14 +02:00
2014-01-11 02:21:38 +01:00
~Stream ();
uint32_t GetSendStreamID () const { return m_SendStreamID; };
uint32_t GetRecvStreamID () const { return m_RecvStreamID; };
2015-01-27 17:27:58 +01:00
std::shared_ptr<const i2p::data::LeaseSet> GetRemoteLeaseSet () const { return m_RemoteLeaseSet; };
2015-11-03 15:15:49 +01:00
std::shared_ptr<const i2p::data::IdentityEx> GetRemoteIdentity () const { return m_RemoteIdentity; };
bool IsOpen () const { return m_Status == eStreamStatusOpen; };
2014-01-10 04:26:30 +01:00
bool IsEstablished () const { return m_SendStreamID; };
StreamStatus GetStatus () const { return m_Status; };
2014-10-07 16:44:42 +02:00
StreamingDestination& GetLocalDestination () { return m_LocalDestination; };
2014-01-02 00:19:03 +01:00
2014-01-11 02:21:38 +01:00
void HandleNextPacket (Packet * packet);
2014-10-02 03:18:41 +02:00
size_t Send (const uint8_t * buf, size_t len);
2015-04-09 21:07:25 +02:00
void AsyncSend (const uint8_t * buf, size_t len, SendHandler handler);
2014-04-10 21:34:51 +02:00
2014-03-25 19:26:39 +01:00
template<typename Buffer, typename ReceiveHandler>
void AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout = 0);
size_t ReadSome (uint8_t * buf, size_t len) { return ConcatenatePackets (buf, len); };
2014-01-12 21:57:10 +01:00
void Close ();
2014-12-17 21:31:13 +01:00
void Cancel () { m_ReceiveTimer.cancel (); };
2014-10-13 23:03:27 +02:00
size_t GetNumSentBytes () const { return m_NumSentBytes; };
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
2014-10-18 21:50:34 +02:00
size_t GetSendQueueSize () const { return m_SentPackets.size (); };
size_t GetReceiveQueueSize () const { return m_ReceiveQueue.size (); };
2015-01-31 03:41:32 +01:00
size_t GetSendBufferSize () const { return m_SendBuffer.rdbuf ()->in_avail (); };
2015-02-03 19:46:44 +01:00
int GetWindowSize () const { return m_WindowSize; };
int GetRTT () const { return m_RTT; };
2014-01-11 04:23:17 +01:00
2016-07-28 21:34:32 +02:00
/** don't call me */
2015-03-09 17:06:35 +01:00
void Terminate ();
2016-07-28 21:34:32 +02:00
private:
2015-03-09 17:06:35 +01:00
2015-01-25 22:18:26 +01:00
void SendBuffer ();
2014-08-08 04:03:25 +02:00
void SendQuickAck ();
void SendClose ();
2014-03-25 00:27:20 +01:00
bool SendPacket (Packet * packet);
2014-08-12 22:35:35 +02:00
void SendPackets (const std::vector<Packet *>& packets);
void SendUpdatedLeaseSet ();
void SavePacket (Packet * packet);
2014-02-02 04:20:41 +01:00
void ProcessPacket (Packet * packet);
2014-08-11 00:27:23 +02:00
void ProcessAck (Packet * packet);
2014-03-26 20:06:27 +01:00
size_t ConcatenatePackets (uint8_t * buf, size_t len);
2014-03-23 14:25:16 +01:00
void UpdateCurrentRemoteLease (bool expired = false);
2014-03-25 19:26:39 +01:00
template<typename Buffer, typename ReceiveHandler>
void HandleReceiveTimer (const boost::system::error_code& ecode, const Buffer& buffer, ReceiveHandler handler, int remainingTimeout);
2015-03-23 18:08:04 +01:00
2014-08-11 00:27:23 +02:00
void ScheduleResend ();
void HandleResendTimer (const boost::system::error_code& ecode);
2014-10-10 17:53:27 +02:00
void HandleAckSendTimer (const boost::system::error_code& ecode);
2014-08-11 00:27:23 +02:00
private:
2014-03-23 21:00:05 +01:00
boost::asio::io_service& m_Service;
2014-08-07 01:19:59 +02:00
uint32_t m_SendStreamID, m_RecvStreamID, m_SequenceNumber;
int32_t m_LastReceivedSequenceNumber;
2015-03-09 00:36:33 +01:00
StreamStatus m_Status;
bool m_IsAckSendScheduled;
2014-10-07 16:44:42 +02:00
StreamingDestination& m_LocalDestination;
2015-11-03 15:15:49 +01:00
std::shared_ptr<const i2p::data::IdentityEx> m_RemoteIdentity;
2015-01-27 17:27:58 +01:00
std::shared_ptr<const i2p::data::LeaseSet> m_RemoteLeaseSet;
2015-01-22 21:31:34 +01:00
std::shared_ptr<i2p::garlic::GarlicRoutingSession> m_RoutingSession;
2016-02-11 04:51:08 +01:00
std::shared_ptr<const i2p::data::Lease> m_CurrentRemoteLease;
2015-01-27 20:55:46 +01:00
std::shared_ptr<i2p::tunnel::OutboundTunnel> m_CurrentOutboundTunnel;
2014-04-12 03:13:52 +02:00
std::queue<Packet *> m_ReceiveQueue;
std::set<Packet *, PacketCmp> m_SavedPackets;
2014-08-11 00:27:23 +02:00
std::set<Packet *, PacketCmp> m_SentPackets;
2014-10-10 17:53:27 +02:00
boost::asio::deadline_timer m_ReceiveTimer, m_ResendTimer, m_AckSendTimer;
2014-10-13 23:03:27 +02:00
size_t m_NumSentBytes, m_NumReceivedBytes;
2014-10-23 03:36:11 +02:00
uint16_t m_Port;
2015-01-25 22:18:26 +01:00
std::mutex m_SendBufferMutex;
std::stringstream m_SendBuffer;
2015-03-10 16:11:42 +01:00
int m_WindowSize, m_RTT, m_RTO;
2015-01-29 21:34:43 +01:00
uint64_t m_LastWindowSizeIncreaseTime;
int m_NumResendAttempts;
2015-04-09 21:07:25 +02:00
SendHandler m_SendHandler;
};
2014-03-25 19:26:39 +01:00
2016-02-08 20:42:20 +01:00
class StreamingDestination: public std::enable_shared_from_this<StreamingDestination>
{
public:
2014-11-23 17:33:58 +01:00
typedef std::function<void (std::shared_ptr<Stream>)> Acceptor;
2014-11-18 15:33:58 +01:00
2016-05-25 22:18:02 +02:00
StreamingDestination (std::shared_ptr<i2p::client::ClientDestination> owner, uint16_t localPort = 0, bool gzip = true);
2015-11-03 15:15:49 +01:00
~StreamingDestination ();
void Start ();
void Stop ();
2015-01-27 17:27:58 +01:00
std::shared_ptr<Stream> CreateNewOutgoingStream (std::shared_ptr<const i2p::data::LeaseSet> remote, int port = 0);
2014-11-23 17:33:58 +01:00
void DeleteStream (std::shared_ptr<Stream> stream);
void SetAcceptor (const Acceptor& acceptor);
void ResetAcceptor ();
bool IsAcceptorSet () const { return m_Acceptor != nullptr; };
2016-05-25 22:18:02 +02:00
std::shared_ptr<i2p::client::ClientDestination> GetOwner () const { return m_Owner; };
2015-03-02 03:08:34 +01:00
uint16_t GetLocalPort () const { return m_LocalPort; };
void HandleDataMessagePayload (const uint8_t * buf, size_t len);
std::shared_ptr<I2NPMessage> CreateDataMessage (const uint8_t * payload, size_t len, uint16_t toPort);
2016-07-28 17:16:29 +02:00
/** set max connections per minute per destination */
void SetMaxConnsPerMinute(const uint32_t conns);
private:
void HandleNextPacket (Packet * packet);
2014-11-23 17:33:58 +01:00
std::shared_ptr<Stream> CreateNewIncomingStream ();
void HandlePendingIncomingTimer (const boost::system::error_code& ecode);
2016-07-28 17:16:29 +02:00
/** handle cleaning up connection tracking for ratelimits */
void HandleConnTrack(const boost::system::error_code& ecode);
bool DropNewStream(const i2p::data::IdentHash & ident);
void ScheduleConnTrack();
private:
2016-05-25 22:18:02 +02:00
std::shared_ptr<i2p::client::ClientDestination> m_Owner;
2015-03-02 03:08:34 +01:00
uint16_t m_LocalPort;
bool m_Gzip; // gzip compression of data messages
std::mutex m_StreamsMutex;
2016-02-08 20:42:20 +01:00
std::map<uint32_t, std::shared_ptr<Stream> > m_Streams; // sendStreamID->stream
2014-11-18 15:33:58 +01:00
Acceptor m_Acceptor;
std::list<std::shared_ptr<Stream> > m_PendingIncomingStreams;
boost::asio::deadline_timer m_PendingIncomingTimer;
2016-02-08 20:42:20 +01:00
std::map<uint32_t, std::list<Packet *> > m_SavedPackets; // receiveStreamID->packets, arrived before SYN
2016-07-28 17:16:29 +02:00
std::mutex m_ConnsMutex;
/** how many connections per minute did each identity have */
std::map<i2p::data::IdentHash, uint32_t> m_Conns;
boost::asio::deadline_timer m_ConnTrackTimer;
uint32_t m_ConnsPerMinute;
/** banned identities */
std::vector<i2p::data::IdentHash> m_Banned;
uint64_t m_LastBanClear;
public:
2015-11-03 15:15:49 +01:00
i2p::data::GzipInflator m_Inflator;
i2p::data::GzipDeflator m_Deflator;
// for HTTP only
const decltype(m_Streams)& GetStreams () const { return m_Streams; };
};
2014-03-25 19:26:39 +01:00
//-------------------------------------------------
template<typename Buffer, typename ReceiveHandler>
void Stream::AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout)
{
2015-04-02 21:10:02 +02:00
auto s = shared_from_this();
m_Service.post ([=](void)
2014-03-27 20:56:13 +01:00
{
2015-04-02 21:10:02 +02:00
if (!m_ReceiveQueue.empty () || m_Status == eStreamStatusReset)
s->HandleReceiveTimer (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), buffer, handler, 0);
2015-04-02 21:10:02 +02:00
else
{
int t = (timeout > MAX_RECEIVE_TIMEOUT) ? MAX_RECEIVE_TIMEOUT : timeout;
s->m_ReceiveTimer.expires_from_now (boost::posix_time::seconds(t));
2015-04-05 19:56:41 +02:00
s->m_ReceiveTimer.async_wait ([=](const boost::system::error_code& ecode)
{ s->HandleReceiveTimer (ecode, buffer, handler, timeout - t); });
2015-04-02 21:10:02 +02:00
}
});
2014-03-25 19:26:39 +01:00
}
template<typename Buffer, typename ReceiveHandler>
void Stream::HandleReceiveTimer (const boost::system::error_code& ecode, const Buffer& buffer, ReceiveHandler handler, int remainingTimeout)
2014-03-25 19:26:39 +01:00
{
2014-03-26 20:06:27 +01:00
size_t received = ConcatenatePackets (boost::asio::buffer_cast<uint8_t *>(buffer), boost::asio::buffer_size(buffer));
if (received > 0)
handler (boost::system::error_code (), received);
else if (ecode == boost::asio::error::operation_aborted)
{
2014-03-25 19:26:39 +01:00
// timeout not expired
if (m_Status == eStreamStatusReset)
handler (boost::asio::error::make_error_code (boost::asio::error::connection_reset), 0);
else
handler (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), 0);
}
2014-03-25 19:26:39 +01:00
else
{
2014-03-25 19:26:39 +01:00
// timeout expired
if (remainingTimeout <= 0)
handler (boost::asio::error::make_error_code (boost::asio::error::timed_out), received);
else
{
// itermediate iterrupt
SendUpdatedLeaseSet (); // send our leaseset if applicable
AsyncReceive (buffer, handler, remainingTimeout);
}
}
2014-03-25 19:26:39 +01:00
}
2013-12-13 03:36:24 +01:00
}
}
#endif