2014-10-20 20:09:59 +00:00
|
|
|
#ifndef TRANSPORT_SESSION_H__
|
|
|
|
#define TRANSPORT_SESSION_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-10-28 15:34:50 +00:00
|
|
|
#include <iostream>
|
2014-11-21 17:34:17 +00:00
|
|
|
#include <memory>
|
2015-01-21 02:05:57 +00:00
|
|
|
#include <vector>
|
2014-10-24 19:50:48 +00:00
|
|
|
#include "Identity.h"
|
|
|
|
#include "RouterInfo.h"
|
2015-01-11 04:00:27 +00:00
|
|
|
#include "I2NPProtocol.h"
|
2014-10-20 20:09:59 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace transport
|
|
|
|
{
|
|
|
|
struct DHKeysPair // transient keys for transport sessions
|
|
|
|
{
|
|
|
|
uint8_t publicKey[256];
|
|
|
|
uint8_t privateKey[256];
|
|
|
|
};
|
|
|
|
|
2014-10-28 15:34:50 +00:00
|
|
|
class SignedData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
SignedData () {};
|
|
|
|
void Insert (const uint8_t * buf, size_t len)
|
|
|
|
{
|
|
|
|
m_Stream.write ((char *)buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void Insert (T t)
|
|
|
|
{
|
|
|
|
m_Stream.write ((char *)&t, sizeof (T));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Verify (const i2p::data::IdentityEx& ident, const uint8_t * signature) const
|
|
|
|
{
|
|
|
|
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
|
|
|
|
{
|
|
|
|
keys.Sign ((const uint8_t *)m_Stream.str ().c_str (), m_Stream.str ().size (), signature);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::stringstream m_Stream;
|
|
|
|
};
|
|
|
|
|
2014-10-20 20:09:59 +00:00
|
|
|
class TransportSession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-11-21 17:34:17 +00:00
|
|
|
TransportSession (std::shared_ptr<const i2p::data::RouterInfo> in_RemoteRouter):
|
2014-10-24 19:50:48 +00:00
|
|
|
m_RemoteRouter (in_RemoteRouter), m_DHKeysPair (nullptr)
|
|
|
|
{
|
|
|
|
if (m_RemoteRouter)
|
|
|
|
m_RemoteIdentity = m_RemoteRouter->GetRouterIdentity ();
|
|
|
|
}
|
|
|
|
|
2014-10-20 20:09:59 +00:00
|
|
|
virtual ~TransportSession () { delete m_DHKeysPair; };
|
|
|
|
|
2014-11-21 17:34:17 +00:00
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> GetRemoteRouter () { return m_RemoteRouter; };
|
2014-10-24 19:50:48 +00:00
|
|
|
const i2p::data::IdentityEx& GetRemoteIdentity () { return m_RemoteIdentity; };
|
|
|
|
|
2015-01-11 04:00:27 +00:00
|
|
|
virtual void SendI2NPMessage (I2NPMessage * msg) = 0;
|
2015-01-21 02:05:57 +00:00
|
|
|
virtual void SendI2NPMessages (const std::vector<I2NPMessage *>& msgs) = 0;
|
2015-01-11 04:00:27 +00:00
|
|
|
|
2014-10-20 20:09:59 +00:00
|
|
|
protected:
|
|
|
|
|
2014-11-21 17:34:17 +00:00
|
|
|
std::shared_ptr<const i2p::data::RouterInfo> m_RemoteRouter;
|
2014-10-24 19:50:48 +00:00
|
|
|
i2p::data::IdentityEx m_RemoteIdentity;
|
2014-10-20 20:09:59 +00:00
|
|
|
DHKeysPair * m_DHKeysPair; // X - for client and Y - for server
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|