mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
LocalLeaseSet added
This commit is contained in:
parent
7035ead9e7
commit
f2292fd618
44
LeaseSet.cpp
44
LeaseSet.cpp
|
@ -4,6 +4,7 @@
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
#include "Timestamp.h"
|
#include "Timestamp.h"
|
||||||
#include "NetDb.h"
|
#include "NetDb.h"
|
||||||
|
#include "Tunnel.h"
|
||||||
#include "TunnelPool.h"
|
#include "TunnelPool.h"
|
||||||
#include "LeaseSet.h"
|
#include "LeaseSet.h"
|
||||||
|
|
||||||
|
@ -195,7 +196,7 @@ namespace data
|
||||||
if (size > len) return 0;
|
if (size > len) return 0;
|
||||||
uint8_t num = buf[size];
|
uint8_t num = buf[size];
|
||||||
size++; // num
|
size++; // num
|
||||||
if (size + num*44 > len) return 0;
|
if (size + num*LEASE_SIZE > len) return 0;
|
||||||
uint64_t timestamp= 0 ;
|
uint64_t timestamp= 0 ;
|
||||||
for (int i = 0; i < num; i++)
|
for (int i = 0; i < num; i++)
|
||||||
{
|
{
|
||||||
|
@ -243,6 +244,47 @@ namespace data
|
||||||
if (IsEmpty ()) return true;
|
if (IsEmpty ()) return true;
|
||||||
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
|
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
|
||||||
return ts > m_ExpirationTime;
|
return ts > m_ExpirationTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
LocalLeaseSet::LocalLeaseSet (std::shared_ptr<const IdentityEx> identity, const uint8_t * encryptionPublicKey, std::vector<std::shared_ptr<i2p::tunnel::InboundTunnel> > tunnels):
|
||||||
|
m_Identity (identity)
|
||||||
|
{
|
||||||
|
int num = tunnels.size ();
|
||||||
|
if (num > MAX_NUM_LEASES) num = MAX_NUM_LEASES;
|
||||||
|
// identity
|
||||||
|
m_BufferLen = m_Identity->GetFullLen () + 256 + num*LEASE_SIZE + m_Identity->GetSignatureLen ();
|
||||||
|
m_Buffer = new uint8_t[m_BufferLen];
|
||||||
|
auto offset = m_Identity->ToBuffer (m_Buffer, m_BufferLen);
|
||||||
|
memcpy (m_Buffer + offset, encryptionPublicKey, 256);
|
||||||
|
offset += 256;
|
||||||
|
auto signingKeyLen = m_Identity->GetSigningPublicKeyLen ();
|
||||||
|
memset (m_Buffer + offset, 0, signingKeyLen);
|
||||||
|
offset += signingKeyLen;
|
||||||
|
// num leases
|
||||||
|
m_Buffer[offset] = num;
|
||||||
|
offset++;
|
||||||
|
// leases
|
||||||
|
auto currentTime = i2p::util::GetMillisecondsSinceEpoch ();
|
||||||
|
for (int i = 0; i < num; i++)
|
||||||
|
{
|
||||||
|
memcpy (m_Buffer + offset, tunnels[i]->GetNextIdentHash (), 32);
|
||||||
|
offset += 32; // gateway id
|
||||||
|
htobe32buf (m_Buffer + offset, tunnels[i]->GetNextTunnelID ());
|
||||||
|
offset += 4; // tunnel id
|
||||||
|
uint64_t ts = tunnels[i]->GetCreationTime () + i2p::tunnel::TUNNEL_EXPIRATION_TIMEOUT - i2p::tunnel::TUNNEL_EXPIRATION_THRESHOLD; // 1 minute before expiration
|
||||||
|
ts *= 1000; // in milliseconds
|
||||||
|
// make sure leaseset is newer than previous, but adding some time to expiration date
|
||||||
|
ts += (currentTime - tunnels[i]->GetCreationTime ()*1000LL)*2/i2p::tunnel::TUNNEL_EXPIRATION_TIMEOUT; // up to 2 secs
|
||||||
|
htobe64buf (m_Buffer + offset, ts);
|
||||||
|
offset += 8; // end date
|
||||||
|
}
|
||||||
|
// we don't sign it yet. must be signed later on
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void LocalLeaseSet::SetSignature (const uint8_t * signature)
|
||||||
|
{
|
||||||
|
auto signatureLen = GetSignatureLen ();
|
||||||
|
memcpy (m_Buffer + m_BufferLen - signatureLen, signature, signatureLen);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
27
LeaseSet.h
27
LeaseSet.h
|
@ -12,6 +12,7 @@ namespace i2p
|
||||||
|
|
||||||
namespace tunnel
|
namespace tunnel
|
||||||
{
|
{
|
||||||
|
class InboundTunnel;
|
||||||
class TunnelPool;
|
class TunnelPool;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,14 +38,15 @@ namespace data
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
const int MAX_LS_BUFFER_SIZE = 3072;
|
const size_t MAX_LS_BUFFER_SIZE = 3072;
|
||||||
|
const size_t LEASE_SIZE = 44; // 32 + 4 + 8
|
||||||
const uint8_t MAX_NUM_LEASES = 16;
|
const uint8_t MAX_NUM_LEASES = 16;
|
||||||
class LeaseSet: public RoutingDestination
|
class LeaseSet: public RoutingDestination
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
LeaseSet (const uint8_t * buf, size_t len, bool storeLeases = true);
|
LeaseSet (const uint8_t * buf, size_t len, bool storeLeases = true);
|
||||||
LeaseSet (std::shared_ptr<const i2p::tunnel::TunnelPool> pool);
|
LeaseSet (std::shared_ptr<const i2p::tunnel::TunnelPool> pool); // deprecated
|
||||||
~LeaseSet () { delete[] m_Buffer; };
|
~LeaseSet () { delete[] m_Buffer; };
|
||||||
void Update (const uint8_t * buf, size_t len);
|
void Update (const uint8_t * buf, size_t len);
|
||||||
bool IsNewer (const uint8_t * buf, size_t len) const;
|
bool IsNewer (const uint8_t * buf, size_t len) const;
|
||||||
|
@ -82,6 +84,27 @@ namespace data
|
||||||
uint8_t * m_Buffer;
|
uint8_t * m_Buffer;
|
||||||
size_t m_BufferLen;
|
size_t m_BufferLen;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class LocalLeaseSet
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
LocalLeaseSet (std::shared_ptr<const IdentityEx> identity, const uint8_t * encryptionPublicKey, std::vector<std::shared_ptr<i2p::tunnel::InboundTunnel> > tunnels);
|
||||||
|
~LocalLeaseSet () { delete[] m_Buffer; };
|
||||||
|
|
||||||
|
void SetSignature (const uint8_t * signature);
|
||||||
|
|
||||||
|
const uint8_t * GetBuffer () const { return m_Buffer; };
|
||||||
|
size_t GetBufferLen () const { return m_BufferLen; };
|
||||||
|
size_t GetSignatureLen () const { return m_Identity->GetSignatureLen (); };
|
||||||
|
const IdentHash& GetIdentHash () const { return m_Identity->GetIdentHash (); };
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
std::shared_ptr<const IdentityEx> m_Identity;
|
||||||
|
uint8_t * m_Buffer;
|
||||||
|
size_t m_BufferLen;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue