i2pd/libi2pd/TransportSession.h

146 lines
4.1 KiB
C
Raw Normal View History

/*
* Copyright (c) 2013-2023, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
2014-10-21 00:09:59 +04:00
#ifndef TRANSPORT_SESSION_H__
#define TRANSPORT_SESSION_H__
#include <inttypes.h>
#include <iostream>
#include <memory>
2015-01-21 05:05:57 +03:00
#include <vector>
2020-04-01 16:54:10 +03:00
#include <mutex>
#include "Identity.h"
2015-11-03 17:15:49 +03:00
#include "Crypto.h"
#include "RouterInfo.h"
#include "I2NPProtocol.h"
#include "Timestamp.h"
2014-10-21 00:09:59 +04:00
namespace i2p
{
namespace transport
{
const size_t IPV4_HEADER_SIZE = 20;
const size_t IPV6_HEADER_SIZE = 40;
const size_t UDP_HEADER_SIZE = 8;
class SignedData
{
public:
2015-11-03 17:15:49 +03:00
SignedData () {}
2018-01-06 06:48:51 +03:00
SignedData (const SignedData& other)
2015-11-03 17:15:49 +03:00
{
m_Stream << other.m_Stream.rdbuf ();
2018-01-06 06:48:51 +03:00
}
2022-06-21 15:12:41 +03:00
void Reset ()
{
m_Stream.str("");
}
2018-01-06 06:48:51 +03:00
void Insert (const uint8_t * buf, size_t len)
{
m_Stream.write ((char *)buf, len);
}
template<typename T>
void Insert (T t)
{
2018-01-06 06:48:51 +03:00
m_Stream.write ((char *)&t, sizeof (T));
}
2015-11-03 17:15:49 +03:00
bool Verify (std::shared_ptr<const i2p::data::IdentityEx> ident, const uint8_t * signature) const
{
2018-01-06 06:48:51 +03:00
return ident->Verify ((const uint8_t *)m_Stream.str ().c_str (), m_Stream.str ().size (), signature);
}
void Sign (const i2p::data::PrivateKeys& keys, uint8_t * signature) const
{
2018-01-06 06:48:51 +03:00
keys.Sign ((const uint8_t *)m_Stream.str ().c_str (), m_Stream.str ().size (), signature);
}
private:
2018-01-06 06:48:51 +03:00
std::stringstream m_Stream;
2018-01-06 06:48:51 +03:00
};
2014-10-21 00:09:59 +04:00
class TransportSession
{
public:
2018-01-06 06:48:51 +03:00
TransportSession (std::shared_ptr<const i2p::data::RouterInfo> router, int terminationTimeout):
m_NumSentBytes (0), m_NumReceivedBytes (0), m_SendQueueSize (0),
m_IsOutgoing (router), m_TerminationTimeout (terminationTimeout),
m_LastActivityTimestamp (i2p::util::GetSecondsSinceEpoch ())
{
2015-11-03 17:15:49 +03:00
if (router)
m_RemoteIdentity = router->GetRouterIdentity ();
m_CreationTime = m_LastActivityTimestamp;
}
2015-11-03 17:15:49 +03:00
virtual ~TransportSession () {};
2015-02-07 04:53:48 +03:00
virtual void Done () = 0;
2016-10-20 16:12:15 +03:00
2016-11-01 20:57:25 +03:00
std::string GetIdentHashBase64() const { return m_RemoteIdentity ? m_RemoteIdentity->GetIdentHash().ToBase64() : ""; }
2018-01-06 06:48:51 +03:00
std::shared_ptr<const i2p::data::IdentityEx> GetRemoteIdentity ()
2020-04-01 16:54:10 +03:00
{
std::lock_guard<std::mutex> l(m_RemoteIdentityMutex);
return m_RemoteIdentity;
2020-04-01 16:54:10 +03:00
}
void SetRemoteIdentity (std::shared_ptr<const i2p::data::IdentityEx> ident)
2020-04-01 16:54:10 +03:00
{
std::lock_guard<std::mutex> l(m_RemoteIdentityMutex);
m_RemoteIdentity = ident;
2020-04-01 16:54:10 +03:00
}
2018-01-06 06:48:51 +03:00
size_t GetNumSentBytes () const { return m_NumSentBytes; };
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
size_t GetSendQueueSize () const { return m_SendQueueSize; };
2015-11-03 17:15:49 +03:00
bool IsOutgoing () const { return m_IsOutgoing; };
2018-01-06 06:48:51 +03:00
2016-08-04 17:26:50 +03:00
int GetTerminationTimeout () const { return m_TerminationTimeout; };
2018-01-06 06:48:51 +03:00
void SetTerminationTimeout (int terminationTimeout) { m_TerminationTimeout = terminationTimeout; };
bool IsTerminationTimeoutExpired (uint64_t ts) const
{
return ts >= m_LastActivityTimestamp + GetTerminationTimeout () ||
ts + GetTerminationTimeout () < m_LastActivityTimestamp;
};
2016-08-04 17:26:50 +03:00
uint32_t GetCreationTime () const { return m_CreationTime; };
void SetCreationTime (uint32_t ts) { m_CreationTime = ts; }; // for introducers
2022-06-18 01:45:37 +03:00
virtual uint32_t GetRelayTag () const { return 0; };
2022-06-13 21:02:36 +03:00
virtual void SendLocalRouterInfo (bool update = false) { SendI2NPMessages ({ CreateDatabaseStoreMsg () }); };
virtual void SendI2NPMessages (const std::vector<std::shared_ptr<I2NPMessage> >& msgs) = 0;
2022-12-11 03:09:37 +03:00
virtual bool IsEstablished () const = 0;
2014-10-21 00:09:59 +04:00
protected:
2018-01-06 06:48:51 +03:00
std::shared_ptr<const i2p::data::IdentityEx> m_RemoteIdentity;
2020-04-01 16:54:10 +03:00
mutable std::mutex m_RemoteIdentityMutex;
size_t m_NumSentBytes, m_NumReceivedBytes, m_SendQueueSize;
2015-11-03 17:15:49 +03:00
bool m_IsOutgoing;
2016-08-04 17:26:50 +03:00
int m_TerminationTimeout;
uint64_t m_LastActivityTimestamp;
uint32_t m_CreationTime; // seconds since epoch
2018-01-06 06:48:51 +03:00
};
2022-10-16 04:37:00 +03:00
// SOCKS5 proxy
const uint8_t SOCKS5_VER = 0x05;
const uint8_t SOCKS5_CMD_CONNECT = 0x01;
const uint8_t SOCKS5_CMD_UDP_ASSOCIATE = 0x03;
const uint8_t SOCKS5_ATYP_IPV4 = 0x01;
const uint8_t SOCKS5_ATYP_IPV6 = 0x04;
2022-10-17 04:23:28 +03:00
const size_t SOCKS5_UDP_IPV4_REQUEST_HEADER_SIZE = 10;
const size_t SOCKS5_UDP_IPV6_REQUEST_HEADER_SIZE = 22;
2014-10-21 00:09:59 +04:00
}
}
#endif