i2pd/libi2pd/TransportSession.h

108 lines
3.0 KiB
C
Raw Normal View History

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
{
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
}
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_DHKeysPair (nullptr), m_NumSentBytes (0), m_NumReceivedBytes (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 ();
}
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
2020-04-01 16:54:10 +03:00
std::shared_ptr<const i2p::data::IdentityEx> GetRemoteIdentity ()
{
std::lock_guard<std::mutex> l(m_RemoteIdentityMutex);
return m_RemoteIdentity;
}
void SetRemoteIdentity (std::shared_ptr<const i2p::data::IdentityEx> ident)
{
std::lock_guard<std::mutex> l(m_RemoteIdentityMutex);
m_RemoteIdentity = ident;
}
2018-01-06 06:48:51 +03:00
size_t GetNumSentBytes () const { return m_NumSentBytes; };
size_t GetNumReceivedBytes () const { return m_NumReceivedBytes; };
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 (); };
2016-08-04 17:26:50 +03:00
2018-08-14 18:27:27 +03:00
virtual void SendLocalRouterInfo () { SendI2NPMessages ({ CreateDatabaseStoreMsg () }); };
virtual void SendI2NPMessages (const std::vector<std::shared_ptr<I2NPMessage> >& msgs) = 0;
2018-01-06 06:48:51 +03:00
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;
2015-11-03 17:15:49 +03:00
std::shared_ptr<i2p::crypto::DHKeys> m_DHKeysPair; // X - for client and Y - for server
size_t m_NumSentBytes, m_NumReceivedBytes;
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;
2018-01-06 06:48:51 +03:00
};
2014-10-21 00:09:59 +04:00
}
}
#endif