i2pd/LeaseSet.cpp

158 lines
4.3 KiB
C++
Raw Normal View History

2014-12-31 17:14:53 +03:00
#include <string.h>
2014-01-15 05:57:33 +04:00
#include "I2PEndian.h"
2014-01-09 07:47:22 +04:00
#include <cryptopp/dsa.h>
2015-03-23 22:53:20 +03:00
#include <cryptopp/osrng.h>
2014-01-09 07:47:22 +04:00
#include "CryptoConst.h"
2013-11-25 03:10:27 +04:00
#include "Log.h"
2014-01-15 05:57:33 +04:00
#include "Timestamp.h"
#include "NetDb.h"
2014-07-29 21:44:54 +04:00
#include "TunnelPool.h"
2013-11-25 03:10:27 +04:00
#include "LeaseSet.h"
namespace i2p
{
namespace data
{
2013-12-20 07:05:45 +04:00
2015-04-08 17:34:16 +03:00
LeaseSet::LeaseSet (const uint8_t * buf, size_t len):
m_IsValid (true)
2013-11-25 03:10:27 +04:00
{
2015-04-08 16:39:02 +03:00
m_Buffer = new uint8_t[len];
2014-07-29 21:44:54 +04:00
memcpy (m_Buffer, buf, len);
m_BufferLen = len;
ReadFromBuffer ();
}
2015-04-08 17:34:16 +03:00
LeaseSet::LeaseSet (const i2p::tunnel::TunnelPool& pool):
m_IsValid (true)
{
2014-07-29 21:44:54 +04:00
// header
2014-12-16 05:24:01 +03:00
const i2p::data::LocalDestination * localDestination = pool.GetLocalDestination ();
if (!localDestination)
{
2015-04-08 16:39:02 +03:00
m_Buffer = nullptr;
2014-12-16 05:24:01 +03:00
m_BufferLen = 0;
2015-04-08 17:34:16 +03:00
m_IsValid = false;
2014-12-16 05:24:01 +03:00
LogPrint (eLogError, "Destination for local LeaseSet doesn't exist");
return;
}
2015-04-09 02:06:47 +03:00
m_Buffer = new uint8_t[MAX_LS_BUFFER_SIZE];
2014-12-16 05:24:01 +03:00
m_BufferLen = localDestination->GetIdentity ().ToBuffer (m_Buffer, MAX_LS_BUFFER_SIZE);
memcpy (m_Buffer + m_BufferLen, localDestination->GetEncryptionPublicKey (), 256);
m_BufferLen += 256;
2014-12-16 05:24:01 +03:00
auto signingKeyLen = localDestination->GetIdentity ().GetSigningPublicKeyLen ();
memset (m_Buffer + m_BufferLen, 0, signingKeyLen);
m_BufferLen += signingKeyLen;
2014-07-29 21:44:54 +04:00
auto tunnels = pool.GetInboundTunnels (5); // 5 tunnels maximum
m_Buffer[m_BufferLen] = tunnels.size (); // num leases
m_BufferLen++;
2014-07-29 21:44:54 +04:00
// leases
2015-03-23 22:53:20 +03:00
CryptoPP::AutoSeededRandomPool rnd;
2014-07-29 21:44:54 +04:00
for (auto it: tunnels)
{
2015-03-23 19:55:42 +03:00
memcpy (m_Buffer + m_BufferLen, it->GetNextIdentHash (), 32);
m_BufferLen += 32; // gateway id
htobe32buf (m_Buffer + m_BufferLen, it->GetNextTunnelID ());
m_BufferLen += 4; // tunnel id
2015-03-26 17:30:29 +03:00
uint64_t ts = it->GetCreationTime () + i2p::tunnel::TUNNEL_EXPIRATION_TIMEOUT - i2p::tunnel::TUNNEL_EXPIRATION_THRESHOLD; // 1 minute before expiration
2014-07-29 21:44:54 +04:00
ts *= 1000; // in milliseconds
2015-03-23 22:53:20 +03:00
ts += rnd.GenerateWord32 (0, 5); // + random milliseconds
2015-03-23 19:55:42 +03:00
htobe64buf (m_Buffer + m_BufferLen, ts);
m_BufferLen += 8; // end date
2014-12-31 17:14:53 +03:00
}
2014-07-29 21:44:54 +04:00
// signature
2014-12-16 05:24:01 +03:00
localDestination->Sign (m_Buffer, m_BufferLen, m_Buffer + m_BufferLen);
m_BufferLen += localDestination->GetIdentity ().GetSignatureLen ();
2014-07-29 21:44:54 +04:00
LogPrint ("Local LeaseSet of ", tunnels.size (), " leases created");
ReadFromBuffer ();
2014-07-22 04:14:11 +04:00
}
2015-04-08 16:39:02 +03:00
void LeaseSet::Update (const uint8_t * buf, size_t len)
2014-07-22 04:14:11 +04:00
{
m_Leases.clear ();
2015-04-08 16:39:02 +03:00
if (len > m_BufferLen)
{
auto oldBuffer = m_Buffer;
m_Buffer = new uint8_t[len];
delete[] oldBuffer;
}
2014-07-29 21:44:54 +04:00
memcpy (m_Buffer, buf, len);
m_BufferLen = len;
ReadFromBuffer ();
2014-07-22 04:14:11 +04:00
}
2014-07-29 21:44:54 +04:00
void LeaseSet::ReadFromBuffer ()
2014-07-22 04:14:11 +04:00
{
size_t size = m_Identity.FromBuffer (m_Buffer, m_BufferLen);
memcpy (m_EncryptionKey, m_Buffer + size, 256);
size += 256; // encryption key
size += m_Identity.GetSigningPublicKeyLen (); // unused signing key
uint8_t num = m_Buffer[size];
size++; // num
LogPrint ("LeaseSet num=", (int)num);
2015-04-08 17:34:16 +03:00
if (!num) m_IsValid = false;
2013-11-25 03:10:27 +04:00
// process leases
const uint8_t * leases = m_Buffer + size;
for (int i = 0; i < num; i++)
2013-11-25 03:10:27 +04:00
{
2014-12-31 17:14:53 +03:00
Lease lease;
2015-03-23 19:55:42 +03:00
lease.tunnelGateway = leases;
leases += 32; // gateway
lease.tunnelID = bufbe32toh (leases);
leases += 4; // tunnel ID
lease.endDate = bufbe64toh (leases);
leases += 8; // end date
2014-01-09 07:47:22 +04:00
m_Leases.push_back (lease);
// check if lease's gateway is in our netDb
if (!netdb.FindRouter (lease.tunnelGateway))
{
// if not found request it
2015-04-08 17:34:16 +03:00
LogPrint (eLogInfo, "Lease's tunnel gateway not found. Requested");
netdb.RequestDestination (lease.tunnelGateway);
}
}
2014-01-09 07:47:22 +04:00
// verify
if (!m_Identity.Verify (m_Buffer, leases - m_Buffer, leases))
2015-04-08 17:34:16 +03:00
{
LogPrint (eLogWarning, "LeaseSet verification failed");
m_IsValid = false;
}
2014-07-22 04:14:11 +04:00
}
2015-03-26 17:30:29 +03:00
const std::vector<Lease> LeaseSet::GetNonExpiredLeases (bool withThreshold) const
2014-01-15 05:57:33 +04:00
{
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
2014-03-23 17:25:16 +04:00
std::vector<Lease> leases;
2014-01-15 05:57:33 +04:00
for (auto& it: m_Leases)
2015-03-26 17:30:29 +03:00
{
auto endDate = it.endDate;
if (!withThreshold)
endDate -= i2p::tunnel::TUNNEL_EXPIRATION_THRESHOLD*1000;
if (ts < endDate)
2014-03-23 17:25:16 +04:00
leases.push_back (it);
2015-03-26 17:30:29 +03:00
}
2014-01-15 05:57:33 +04:00
return leases;
}
bool LeaseSet::HasExpiredLeases () const
{
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
for (auto& it: m_Leases)
if (ts >= it.endDate) return true;
return false;
}
bool LeaseSet::HasNonExpiredLeases () const
{
auto ts = i2p::util::GetMillisecondsSinceEpoch ();
for (auto& it: m_Leases)
if (ts < it.endDate) return true;
return false;
}
2013-11-25 03:10:27 +04:00
}
}