2013-11-24 23:10:27 +00:00
|
|
|
#ifndef LEASE_SET_H__
|
|
|
|
#define LEASE_SET_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2013-11-29 12:52:09 +00:00
|
|
|
#include <string.h>
|
2014-01-01 23:19:03 +00:00
|
|
|
#include <vector>
|
2016-05-29 20:35:57 +00:00
|
|
|
#include <set>
|
2016-02-09 15:46:27 +00:00
|
|
|
#include <memory>
|
2013-12-20 03:05:45 +00:00
|
|
|
#include "Identity.h"
|
2016-09-03 15:46:47 +00:00
|
|
|
#include "Timestamp.h"
|
2013-11-24 23:10:27 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-07-29 17:44:54 +00:00
|
|
|
|
|
|
|
namespace tunnel
|
|
|
|
{
|
2016-05-25 18:17:34 +00:00
|
|
|
class InboundTunnel;
|
2014-07-29 17:44:54 +00:00
|
|
|
}
|
|
|
|
|
2013-11-24 23:10:27 +00:00
|
|
|
namespace data
|
2013-11-29 12:52:09 +00:00
|
|
|
{
|
2016-02-29 02:43:18 +00:00
|
|
|
const int LEASE_ENDDATE_THRESHOLD = 51000; // in milliseconds
|
2013-11-24 23:10:27 +00:00
|
|
|
struct Lease
|
|
|
|
{
|
2015-03-23 16:55:42 +00:00
|
|
|
IdentHash tunnelGateway;
|
2013-11-24 23:10:27 +00:00
|
|
|
uint32_t tunnelID;
|
2016-02-09 20:27:23 +00:00
|
|
|
uint64_t endDate; // 0 means invalid
|
2016-09-03 15:46:47 +00:00
|
|
|
bool isUpdated; // trasient
|
|
|
|
/* return true if this lease expires within t millisecond + fudge factor */
|
|
|
|
bool ExpiresWithin( const uint64_t t, const uint64_t fudge = 1000 ) const {
|
|
|
|
auto expire = i2p::util::GetMillisecondsSinceEpoch ();
|
|
|
|
if(fudge) expire += rand() % fudge;
|
2016-09-03 19:35:32 +00:00
|
|
|
return endDate - expire >= t;
|
2016-09-03 15:46:47 +00:00
|
|
|
}
|
2016-02-09 20:27:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct LeaseCmp
|
|
|
|
{
|
|
|
|
bool operator() (std::shared_ptr<const Lease> l1, std::shared_ptr<const Lease> l2) const
|
|
|
|
{
|
|
|
|
if (l1->tunnelID != l2->tunnelID)
|
|
|
|
return l1->tunnelID < l2->tunnelID;
|
|
|
|
else
|
|
|
|
return l1->tunnelGateway < l2->tunnelGateway;
|
|
|
|
};
|
2013-11-24 23:10:27 +00:00
|
|
|
};
|
|
|
|
|
2016-08-27 17:17:34 +00:00
|
|
|
typedef std::function<bool(const Lease & l)> LeaseInspectFunc;
|
|
|
|
|
2016-05-25 18:17:34 +00:00
|
|
|
const size_t MAX_LS_BUFFER_SIZE = 3072;
|
|
|
|
const size_t LEASE_SIZE = 44; // 32 + 4 + 8
|
2016-02-02 16:55:38 +00:00
|
|
|
const uint8_t MAX_NUM_LEASES = 16;
|
2013-11-24 23:10:27 +00:00
|
|
|
class LeaseSet: public RoutingDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-02-08 00:45:06 +00:00
|
|
|
LeaseSet (const uint8_t * buf, size_t len, bool storeLeases = true);
|
2015-04-08 13:39:02 +00:00
|
|
|
~LeaseSet () { delete[] m_Buffer; };
|
|
|
|
void Update (const uint8_t * buf, size_t len);
|
2016-02-17 03:57:38 +00:00
|
|
|
bool IsNewer (const uint8_t * buf, size_t len) const;
|
2016-02-09 20:27:23 +00:00
|
|
|
void PopulateLeases (); // from buffer
|
2015-11-03 14:15:49 +00:00
|
|
|
std::shared_ptr<const IdentityEx> GetIdentity () const { return m_Identity; };
|
2014-10-03 19:08:41 +00:00
|
|
|
|
2014-07-29 18:31:55 +00:00
|
|
|
const uint8_t * GetBuffer () const { return m_Buffer; };
|
|
|
|
size_t GetBufferLen () const { return m_BufferLen; };
|
2015-04-08 14:34:16 +00:00
|
|
|
bool IsValid () const { return m_IsValid; };
|
2016-02-11 03:51:08 +00:00
|
|
|
const std::vector<std::shared_ptr<const Lease> > GetNonExpiredLeases (bool withThreshold = true) const;
|
2016-08-27 17:17:34 +00:00
|
|
|
const std::vector<std::shared_ptr<const Lease> > GetNonExpiredLeasesExcluding (LeaseInspectFunc exclude, bool withThreshold = true) const;
|
2014-01-15 01:57:33 +00:00
|
|
|
bool HasExpiredLeases () const;
|
2016-02-08 00:45:06 +00:00
|
|
|
bool IsExpired () const;
|
2016-02-10 03:42:01 +00:00
|
|
|
bool IsEmpty () const { return m_Leases.empty (); };
|
2016-02-08 00:45:06 +00:00
|
|
|
uint64_t GetExpirationTime () const { return m_ExpirationTime; };
|
2016-09-03 15:46:47 +00:00
|
|
|
bool ExpiresSoon(const uint64_t dlt=1000 * 5, const uint64_t fudge = 0) const ;
|
2016-02-11 19:45:33 +00:00
|
|
|
bool operator== (const LeaseSet& other) const
|
|
|
|
{ return m_BufferLen == other.m_BufferLen && !memcmp (m_Buffer, other.m_Buffer, m_BufferLen); };
|
2016-02-09 15:46:27 +00:00
|
|
|
|
|
|
|
// implements RoutingDestination
|
|
|
|
const IdentHash& GetIdentHash () const { return m_Identity->GetIdentHash (); };
|
2013-11-24 23:10:27 +00:00
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionKey; };
|
2013-11-27 01:59:25 +00:00
|
|
|
bool IsDestination () const { return true; };
|
2014-07-22 00:14:11 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-11-03 14:15:49 +00:00
|
|
|
void ReadFromBuffer (bool readIdentity = true);
|
2016-02-17 03:57:38 +00:00
|
|
|
uint64_t ExtractTimestamp (const uint8_t * buf, size_t len) const; // min expiration time
|
2013-11-24 23:10:27 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-02-08 00:45:06 +00:00
|
|
|
bool m_IsValid, m_StoreLeases; // we don't need to store leases for floodfill
|
2016-02-09 20:27:23 +00:00
|
|
|
std::set<std::shared_ptr<Lease>, LeaseCmp> m_Leases;
|
2016-02-08 00:45:06 +00:00
|
|
|
uint64_t m_ExpirationTime; // in milliseconds
|
2015-11-03 14:15:49 +00:00
|
|
|
std::shared_ptr<const IdentityEx> m_Identity;
|
2013-11-24 23:10:27 +00:00
|
|
|
uint8_t m_EncryptionKey[256];
|
2015-04-08 13:39:02 +00:00
|
|
|
uint8_t * m_Buffer;
|
2014-07-29 17:44:54 +00:00
|
|
|
size_t m_BufferLen;
|
2013-11-24 23:10:27 +00:00
|
|
|
};
|
2016-05-25 18:17:34 +00:00
|
|
|
|
|
|
|
class LocalLeaseSet
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
LocalLeaseSet (std::shared_ptr<const IdentityEx> identity, const uint8_t * encryptionPublicKey, std::vector<std::shared_ptr<i2p::tunnel::InboundTunnel> > tunnels);
|
2016-05-30 16:56:42 +00:00
|
|
|
LocalLeaseSet (std::shared_ptr<const IdentityEx> identity, const uint8_t * buf, size_t len);
|
2016-05-25 18:17:34 +00:00
|
|
|
~LocalLeaseSet () { delete[] m_Buffer; };
|
|
|
|
|
|
|
|
const uint8_t * GetBuffer () const { return m_Buffer; };
|
2016-05-25 19:10:28 +00:00
|
|
|
uint8_t * GetSignature () { return m_Buffer + m_BufferLen - GetSignatureLen (); };
|
2016-05-25 18:17:34 +00:00
|
|
|
size_t GetBufferLen () const { return m_BufferLen; };
|
|
|
|
size_t GetSignatureLen () const { return m_Identity->GetSignatureLen (); };
|
2016-05-29 20:35:57 +00:00
|
|
|
uint8_t * GetLeases () { return m_Leases; };
|
|
|
|
|
2016-05-25 18:17:34 +00:00
|
|
|
const IdentHash& GetIdentHash () const { return m_Identity->GetIdentHash (); };
|
2016-05-25 19:10:28 +00:00
|
|
|
bool IsExpired () const;
|
2016-05-30 16:56:42 +00:00
|
|
|
uint64_t GetExpirationTime () const { return m_ExpirationTime; };
|
|
|
|
void SetExpirationTime (uint64_t expirationTime) { m_ExpirationTime = expirationTime; };
|
2016-05-25 19:10:28 +00:00
|
|
|
bool operator== (const LeaseSet& other) const
|
|
|
|
{ return m_BufferLen == other.GetBufferLen () && !memcmp (other.GetBuffer (), other.GetBuffer (), m_BufferLen); };
|
|
|
|
|
2016-05-25 18:17:34 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2016-05-25 19:10:28 +00:00
|
|
|
uint64_t m_ExpirationTime; // in milliseconds
|
2016-05-25 18:17:34 +00:00
|
|
|
std::shared_ptr<const IdentityEx> m_Identity;
|
2016-05-29 20:35:57 +00:00
|
|
|
uint8_t * m_Buffer, * m_Leases;
|
2016-05-25 18:17:34 +00:00
|
|
|
size_t m_BufferLen;
|
|
|
|
};
|
2013-11-24 23:10:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|