i2pd/Streaming.h

233 lines
7.9 KiB
C
Raw Normal View History

2013-12-13 02:36:24 +00:00
#ifndef STREAMING_H__
#define STREAMING_H__
#include <inttypes.h>
2014-03-19 20:38:55 +00:00
#include <string>
#include <map>
#include <set>
2014-04-12 01:13:52 +00:00
#include <queue>
2014-08-04 20:30:37 +00:00
#include <functional>
2014-03-23 20:00:05 +00:00
#include <boost/asio.hpp>
2014-03-25 18:26:39 +00:00
#include <boost/bind.hpp>
#include "I2PEndian.h"
2013-12-31 01:46:33 +00:00
#include "Identity.h"
2014-01-01 23:19:03 +00:00
#include "LeaseSet.h"
#include "I2NPProtocol.h"
2014-08-30 02:10:00 +00:00
#include "Garlic.h"
2014-10-07 00:18:18 +00:00
#include "Tunnel.h"
2013-12-13 02:36:24 +00:00
namespace i2p
{
namespace client
{
class ClientDestination;
}
2013-12-13 02:36:24 +00: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 20:57:10 +00:00
const size_t STREAMING_MTU = 1730;
2014-08-06 23:19:59 +00:00
const size_t MAX_PACKET_SIZE = 4096;
2014-08-09 18:47:00 +00:00
const size_t COMPRESSION_THRESHOLD_SIZE = 66;
2014-08-10 22:27:23 +00:00
const int RESEND_TIMEOUT = 10; // in seconds
2014-10-10 15:53:27 +00:00
const int ACK_SEND_TIMEOUT = 200; // in milliseconds
2014-08-11 23:32:07 +00:00
const int MAX_NUM_RESEND_ATTEMPTS = 5;
2014-08-09 18:47:00 +00:00
2014-01-11 01:21:38 +00:00
struct Packet
{
2014-03-24 23:27:20 +00:00
uint8_t buf[MAX_PACKET_SIZE];
2014-01-11 01:21:38 +00:00
size_t len, offset;
2014-08-11 23:32:07 +00:00
int numResendAttempts;
Packet (): len (0), offset (0), numResendAttempts (0) {};
2014-01-11 01:21:38 +00:00
uint8_t * GetBuffer () { return buf + offset; };
size_t GetLength () const { return len - offset; };
2014-01-30 04:13:59 +00:00
uint32_t GetSendStreamID () const { return be32toh (*(uint32_t *)buf); };
uint32_t GetReceiveStreamID () const { return be32toh (*(uint32_t *)(buf + 4)); };
uint32_t GetSeqn () const { return be32toh (*(uint32_t *)(buf + 8)); };
uint32_t GetAckThrough () const { return be32toh (*(uint32_t *)(buf + 12)); };
uint8_t GetNACKCount () const { return buf[16]; };
2014-08-12 19:57:23 +00:00
uint32_t GetNACK (int i) const { return be32toh (((uint32_t *)(buf + 17))[i]); };
2014-01-30 04:13:59 +00:00
const uint8_t * GetOption () const { return buf + 17 + GetNACKCount ()*4 + 3; }; // 3 = resendDelay + flags
uint16_t GetFlags () const { return be16toh (*(uint16_t *)(GetOption () - 2)); };
uint16_t GetOptionSize () const { return be16toh (*(uint16_t *)GetOption ()); };
const uint8_t * GetOptionData () const { return GetOption () + 2; };
const uint8_t * GetPayload () const { return GetOptionData () + GetOptionSize (); };
2014-08-06 19:44:00 +00:00
bool IsSYN () const { return GetFlags () & PACKET_FLAG_SYNCHRONIZE; };
2014-08-10 22:27:23 +00:00
bool IsNoAck () const { return GetFlags () & PACKET_FLAG_NO_ACK; };
};
struct PacketCmp
{
bool operator() (const Packet * p1, const Packet * p2) const
{
2014-01-30 04:13:59 +00:00
return p1->GetSeqn () < p2->GetSeqn ();
};
2014-01-11 01:21:38 +00:00
};
2013-12-31 01:46:33 +00:00
class StreamingDestination;
class Stream
{
public:
2014-10-23 01:36:11 +00:00
Stream (boost::asio::io_service& service, StreamingDestination& local,
const i2p::data::LeaseSet& remote, int port = 0); // outgoing
2014-10-07 14:44:42 +00:00
Stream (boost::asio::io_service& service, StreamingDestination& local); // incoming
2014-08-01 18:54:14 +00:00
2014-01-11 01:21:38 +00:00
~Stream ();
uint32_t GetSendStreamID () const { return m_SendStreamID; };
uint32_t GetRecvStreamID () const { return m_RecvStreamID; };
2014-08-01 18:54:14 +00:00
const i2p::data::LeaseSet * GetRemoteLeaseSet () const { return m_RemoteLeaseSet; };
2014-09-29 18:18:06 +00:00
const i2p::data::IdentityEx& GetRemoteIdentity () const { return m_RemoteIdentity; };
2014-01-12 20:57:10 +00:00
bool IsOpen () const { return m_IsOpen; };
2014-01-10 03:26:30 +00:00
bool IsEstablished () const { return m_SendStreamID; };
2014-10-07 14:44:42 +00:00
StreamingDestination& GetLocalDestination () { return m_LocalDestination; };
2014-01-01 23:19:03 +00:00
2014-01-11 01:21:38 +00:00
void HandleNextPacket (Packet * packet);
2014-10-02 01:18:41 +00:00
size_t Send (const uint8_t * buf, size_t len);
2014-04-10 19:34:51 +00:00
2014-03-25 18:26:39 +00:00
template<typename Buffer, typename ReceiveHandler>
void AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout = 0);
2014-01-12 20:57:10 +00:00
void Close ();
2014-10-13 21:03:27 +00:00
size_t GetNumSentBytes () const { return m_NumSentBytes; };
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
2014-10-18 19:50:34 +00:00
size_t GetSendQueueSize () const { return m_SentPackets.size (); };
size_t GetReceiveQueueSize () const { return m_ReceiveQueue.size (); };
2014-10-13 21:03:27 +00:00
2014-01-11 03:23:17 +00:00
private:
2014-08-08 02:03:25 +00:00
void SendQuickAck ();
2014-03-24 23:27:20 +00:00
bool SendPacket (Packet * packet);
2014-08-12 20:35:35 +00:00
void SendPackets (const std::vector<Packet *>& packets);
void SavePacket (Packet * packet);
2014-02-02 03:20:41 +00:00
void ProcessPacket (Packet * packet);
2014-08-10 22:27:23 +00:00
void ProcessAck (Packet * packet);
2014-03-26 19:06:27 +00:00
size_t ConcatenatePackets (uint8_t * buf, size_t len);
2014-03-23 13:25:16 +00:00
void UpdateCurrentRemoteLease ();
2014-03-25 18:26:39 +00:00
template<typename Buffer, typename ReceiveHandler>
void HandleReceiveTimer (const boost::system::error_code& ecode, const Buffer& buffer, ReceiveHandler handler);
2014-08-10 22:27:23 +00:00
void ScheduleResend ();
void HandleResendTimer (const boost::system::error_code& ecode);
2014-10-10 15:53:27 +00:00
void HandleAckSendTimer (const boost::system::error_code& ecode);
2014-10-23 01:36:11 +00:00
I2NPMessage * CreateDataMessage (const uint8_t * payload, size_t len);
2014-08-10 22:27:23 +00:00
private:
2014-03-23 20:00:05 +00:00
boost::asio::io_service& m_Service;
2014-08-06 23:19:59 +00:00
uint32_t m_SendStreamID, m_RecvStreamID, m_SequenceNumber;
int32_t m_LastReceivedSequenceNumber;
2014-10-10 15:53:27 +00:00
bool m_IsOpen, m_IsReset, m_IsAckSendScheduled;
2014-10-07 14:44:42 +00:00
StreamingDestination& m_LocalDestination;
2014-08-22 23:47:29 +00:00
i2p::data::IdentityEx m_RemoteIdentity;
2014-08-01 18:54:14 +00:00
const i2p::data::LeaseSet * m_RemoteLeaseSet;
2014-08-30 02:10:00 +00:00
i2p::garlic::GarlicRoutingSession * m_RoutingSession;
2014-03-23 13:25:16 +00:00
i2p::data::Lease m_CurrentRemoteLease;
2014-04-12 01:13:52 +00:00
std::queue<Packet *> m_ReceiveQueue;
std::set<Packet *, PacketCmp> m_SavedPackets;
2014-08-10 22:27:23 +00:00
std::set<Packet *, PacketCmp> m_SentPackets;
2014-10-10 15:53:27 +00:00
boost::asio::deadline_timer m_ReceiveTimer, m_ResendTimer, m_AckSendTimer;
2014-10-13 21:03:27 +00:00
size_t m_NumSentBytes, m_NumReceivedBytes;
2014-10-23 01:36:11 +00:00
uint16_t m_Port;
};
2014-03-25 18:26:39 +00:00
class StreamingDestination
{
public:
StreamingDestination (i2p::client::ClientDestination& owner): m_Owner (owner) {};
~StreamingDestination () {};
void Start ();
void Stop ();
2014-10-23 01:36:11 +00:00
Stream * CreateNewOutgoingStream (const i2p::data::LeaseSet& remote, int port = 0);
void DeleteStream (Stream * stream);
void SetAcceptor (const std::function<void (Stream *)>& acceptor) { m_Acceptor = acceptor; };
void ResetAcceptor () { m_Acceptor = nullptr; };
bool IsAcceptorSet () const { return m_Acceptor != nullptr; };
i2p::client::ClientDestination& GetOwner () { return m_Owner; };
void HandleDataMessagePayload (const uint8_t * buf, size_t len);
private:
void HandleNextPacket (Packet * packet);
Stream * CreateNewIncomingStream ();
private:
i2p::client::ClientDestination& m_Owner;
std::mutex m_StreamsMutex;
std::map<uint32_t, Stream *> m_Streams;
std::function<void (Stream *)> m_Acceptor;
public:
// for HTTP only
const decltype(m_Streams)& GetStreams () const { return m_Streams; };
};
void DeleteStream (Stream * stream);
2014-03-25 18:26:39 +00:00
//-------------------------------------------------
template<typename Buffer, typename ReceiveHandler>
void Stream::AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout)
{
2014-04-12 01:13:52 +00:00
if (!m_ReceiveQueue.empty ())
2014-03-27 19:56:13 +00:00
{
m_Service.post ([=](void) { this->HandleReceiveTimer (
boost::asio::error::make_error_code (boost::asio::error::operation_aborted),
buffer, handler); });
2014-03-27 19:56:13 +00:00
}
else
{
m_ReceiveTimer.expires_from_now (boost::posix_time::seconds(timeout));
m_ReceiveTimer.async_wait ([=](const boost::system::error_code& ecode)
{ this->HandleReceiveTimer (ecode, buffer, handler); });
}
2014-03-25 18:26:39 +00:00
}
template<typename Buffer, typename ReceiveHandler>
void Stream::HandleReceiveTimer (const boost::system::error_code& ecode, const Buffer& buffer, ReceiveHandler handler)
{
2014-03-26 19:06:27 +00:00
size_t received = ConcatenatePackets (boost::asio::buffer_cast<uint8_t *>(buffer), boost::asio::buffer_size(buffer));
2014-03-25 18:26:39 +00:00
if (ecode == boost::asio::error::operation_aborted)
{
2014-03-25 18:26:39 +00:00
// timeout not expired
if (m_IsOpen)
// no error
handler (boost::system::error_code (), received);
else
// socket closed
2014-10-09 17:03:59 +00:00
handler (m_IsReset ? boost::asio::error::make_error_code (boost::asio::error::connection_reset) :
boost::asio::error::make_error_code (boost::asio::error::operation_aborted), 0);
}
2014-03-25 18:26:39 +00:00
else
// timeout expired
2014-03-26 19:06:27 +00:00
handler (boost::asio::error::make_error_code (boost::asio::error::timed_out), received);
2014-03-25 18:26:39 +00:00
}
2013-12-13 02:36:24 +00:00
}
}
#endif