2016-08-04 01:04:08 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
|
|
|
* Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZT_MEMBERSHIP_HPP
|
|
|
|
#define ZT_MEMBERSHIP_HPP
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-08-08 23:50:00 +00:00
|
|
|
#include <map>
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
#include "Constants.hpp"
|
|
|
|
#include "../include/ZeroTierOne.h"
|
|
|
|
#include "CertificateOfMembership.hpp"
|
|
|
|
#include "Capability.hpp"
|
|
|
|
#include "Tag.hpp"
|
|
|
|
#include "Hashtable.hpp"
|
|
|
|
#include "NetworkConfig.hpp"
|
|
|
|
|
2016-08-04 16:02:35 +00:00
|
|
|
// Expiration time for capability and tag cache
|
|
|
|
#define ZT_MEMBERSHIP_STATE_EXPIRATION_TIME (ZT_NETWORK_COM_DEFAULT_REVISION_MAX_DELTA * 4)
|
|
|
|
|
|
|
|
// Expiration time for Memberships (used in Peer::clean())
|
|
|
|
#define ZT_MEMBERSHIP_EXPIRATION_TIME (ZT_MEMBERSHIP_STATE_EXPIRATION_TIME * 4)
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
namespace ZeroTier {
|
|
|
|
|
2016-08-04 16:02:35 +00:00
|
|
|
class RuntimeEnvironment;
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-08 23:50:00 +00:00
|
|
|
* A container for certificates of membership and other credentials for peer participation on networks
|
2016-08-04 01:04:08 +00:00
|
|
|
*/
|
|
|
|
class Membership
|
|
|
|
{
|
|
|
|
private:
|
2016-08-08 23:50:00 +00:00
|
|
|
// Tags and related state
|
2016-08-04 01:04:08 +00:00
|
|
|
struct TState
|
|
|
|
{
|
|
|
|
TState() : lastPushed(0),lastReceived(0) {}
|
2016-08-08 23:50:00 +00:00
|
|
|
// Last time we pushed OUR tag to this peer (with this ID)
|
2016-08-04 01:04:08 +00:00
|
|
|
uint64_t lastPushed;
|
2016-08-08 23:50:00 +00:00
|
|
|
// Last time we received THEIR tag (with this ID)
|
2016-08-04 01:04:08 +00:00
|
|
|
uint64_t lastReceived;
|
2016-08-08 23:50:00 +00:00
|
|
|
// THEIR tag
|
2016-08-04 01:04:08 +00:00
|
|
|
Tag tag;
|
|
|
|
};
|
|
|
|
|
2016-08-08 23:50:00 +00:00
|
|
|
// Credentials and related state
|
2016-08-04 01:04:08 +00:00
|
|
|
struct CState
|
|
|
|
{
|
|
|
|
CState() : lastPushed(0),lastReceived(0) {}
|
2016-08-08 23:50:00 +00:00
|
|
|
// Last time we pushed OUR capability to this peer (with this ID)
|
2016-08-04 01:04:08 +00:00
|
|
|
uint64_t lastPushed;
|
2016-08-08 23:50:00 +00:00
|
|
|
// Last time we received THEIR capability (with this ID)
|
2016-08-04 01:04:08 +00:00
|
|
|
uint64_t lastReceived;
|
2016-08-08 23:50:00 +00:00
|
|
|
// THEIR capability
|
2016-08-04 01:04:08 +00:00
|
|
|
Capability cap;
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2016-08-08 23:50:00 +00:00
|
|
|
/**
|
|
|
|
* A wrapper to iterate through capabilities in ascending order of capability ID
|
|
|
|
*/
|
|
|
|
class CapabilityIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CapabilityIterator(const Membership &m) :
|
|
|
|
_i(m._caps.begin()),
|
|
|
|
_e(m._caps.end())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-08-23 01:06:46 +00:00
|
|
|
inline const Capability *next(const NetworkConfig &nconf)
|
2016-08-08 23:50:00 +00:00
|
|
|
{
|
|
|
|
while (_i != _e) {
|
2016-08-23 01:06:46 +00:00
|
|
|
if ((_i->second.lastReceived)&&(nconf.isCredentialTimestampValid(_i->second.cap)))
|
2016-08-08 23:50:00 +00:00
|
|
|
return &((_i++)->second.cap);
|
|
|
|
else ++_i;
|
|
|
|
}
|
|
|
|
return (const Capability *)0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::map<uint32_t,CState>::const_iterator _i,_e;
|
|
|
|
};
|
|
|
|
friend class CapabilityIterator;
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
Membership() :
|
|
|
|
_lastPushedCom(0),
|
|
|
|
_com(),
|
2016-08-08 23:50:00 +00:00
|
|
|
_caps(),
|
2016-08-04 01:04:08 +00:00
|
|
|
_tags(8)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send COM and other credentials to this peer if needed
|
|
|
|
*
|
|
|
|
* This checks last pushed times for our COM and for other credentials and
|
|
|
|
* sends VERB_NETWORK_CREDENTIALS if the recipient might need them.
|
|
|
|
*
|
2016-08-04 16:02:35 +00:00
|
|
|
* @param RR Runtime environment
|
|
|
|
* @param now Current time
|
2016-08-05 22:02:01 +00:00
|
|
|
* @param peerAddress Address of member peer
|
2016-08-08 23:50:00 +00:00
|
|
|
* @param com My network certificate of membership (if any) (not the one here, but ours -- in NetworkConfig)
|
2016-08-05 22:02:01 +00:00
|
|
|
* @param cap Capability to send or 0 if none
|
|
|
|
* @param tags Tags that this peer might need
|
2016-08-04 01:04:08 +00:00
|
|
|
* @param tagCount Number of tag IDs
|
2016-08-04 16:02:35 +00:00
|
|
|
* @return True if we pushed something
|
2016-08-04 01:04:08 +00:00
|
|
|
*/
|
2016-08-05 22:02:01 +00:00
|
|
|
bool sendCredentialsIfNeeded(const RuntimeEnvironment *RR,const uint64_t now,const Address &peerAddress,const CertificateOfMembership &com,const Capability *cap,const Tag **tags,const unsigned int tagCount);
|
2016-08-04 01:04:08 +00:00
|
|
|
|
2016-08-04 17:18:33 +00:00
|
|
|
/**
|
|
|
|
* @return This peer's COM if they have sent one
|
|
|
|
*/
|
|
|
|
inline const CertificateOfMembership &com() const { return _com; }
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
/**
|
|
|
|
* @param nconf Network configuration
|
|
|
|
* @param id Tag ID
|
|
|
|
* @return Pointer to tag or NULL if not found
|
|
|
|
*/
|
|
|
|
inline const Tag *getTag(const NetworkConfig &nconf,const uint32_t id) const
|
|
|
|
{
|
|
|
|
const TState *t = _tags.get(id);
|
2016-08-23 01:06:46 +00:00
|
|
|
return ((t) ? (((t->lastReceived != 0)&&(nconf.isCredentialTimestampValid(t->tag))) ? &(t->tag) : (const Tag *)0) : (const Tag *)0);
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
|
|
|
|
2016-08-05 22:02:01 +00:00
|
|
|
/**
|
|
|
|
* @param nconf Network configuration
|
|
|
|
* @param ids Array to store IDs into
|
|
|
|
* @param values Array to store values into
|
|
|
|
* @param maxTags Capacity of ids[] and values[]
|
|
|
|
* @return Number of tags added to arrays
|
|
|
|
*/
|
|
|
|
inline unsigned int getAllTags(const NetworkConfig &nconf,uint32_t *ids,uint32_t *values,unsigned int maxTags) const
|
|
|
|
{
|
|
|
|
unsigned int n = 0;
|
|
|
|
uint32_t *id = (uint32_t *)0;
|
|
|
|
TState *ts = (TState *)0;
|
|
|
|
Hashtable<uint32_t,TState>::Iterator i(const_cast<Membership *>(this)->_tags);
|
|
|
|
while (i.next(id,ts)) {
|
2016-08-23 01:06:46 +00:00
|
|
|
if ((ts->lastReceived)&&(nconf.isCredentialTimestampValid(ts->tag))) {
|
2016-08-05 22:02:01 +00:00
|
|
|
if (n >= maxTags)
|
|
|
|
return n;
|
|
|
|
ids[n] = *id;
|
|
|
|
values[n] = ts->tag.value();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
/**
|
|
|
|
* @param nconf Network configuration
|
|
|
|
* @param id Capablity ID
|
|
|
|
* @return Pointer to capability or NULL if not found
|
|
|
|
*/
|
|
|
|
inline const Capability *getCapability(const NetworkConfig &nconf,const uint32_t id) const
|
|
|
|
{
|
2016-08-08 23:50:00 +00:00
|
|
|
std::map<uint32_t,CState>::const_iterator c(_caps.find(id));
|
2016-08-23 01:06:46 +00:00
|
|
|
return ((c != _caps.end()) ? (((c->second.lastReceived != 0)&&(nconf.isCredentialTimestampValid(c->second.cap))) ? &(c->second.cap) : (const Capability *)0) : (const Capability *)0);
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 16:02:35 +00:00
|
|
|
/**
|
|
|
|
* Validate and add a credential if signature is okay and it's otherwise good
|
|
|
|
*
|
|
|
|
* @return 0 == OK, 1 == waiting for WHOIS, -1 == BAD signature or credential
|
|
|
|
*/
|
2016-08-09 00:33:26 +00:00
|
|
|
int addCredential(const RuntimeEnvironment *RR,const CertificateOfMembership &com);
|
2016-08-04 16:02:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate and add a credential if signature is okay and it's otherwise good
|
|
|
|
*
|
|
|
|
* @return 0 == OK, 1 == waiting for WHOIS, -1 == BAD signature or credential
|
|
|
|
*/
|
2016-08-09 00:33:26 +00:00
|
|
|
int addCredential(const RuntimeEnvironment *RR,const Tag &tag);
|
2016-08-04 16:02:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Validate and add a credential if signature is okay and it's otherwise good
|
|
|
|
*
|
|
|
|
* @return 0 == OK, 1 == waiting for WHOIS, -1 == BAD signature or credential
|
|
|
|
*/
|
2016-08-09 00:33:26 +00:00
|
|
|
int addCredential(const RuntimeEnvironment *RR,const Capability &cap);
|
2016-08-04 16:02:35 +00:00
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
/**
|
|
|
|
* Clean up old or stale entries
|
2016-08-04 16:02:35 +00:00
|
|
|
*
|
|
|
|
* @return Time of most recent activity in this Membership
|
2016-08-04 01:04:08 +00:00
|
|
|
*/
|
2016-08-04 16:02:35 +00:00
|
|
|
inline uint64_t clean(const uint64_t now)
|
2016-08-04 01:04:08 +00:00
|
|
|
{
|
2016-08-04 16:02:35 +00:00
|
|
|
uint64_t lastAct = _lastPushedCom;
|
|
|
|
|
2016-08-08 23:50:00 +00:00
|
|
|
for(std::map<uint32_t,CState>::iterator i(_caps.begin());i!=_caps.end();) {
|
|
|
|
const uint64_t la = std::max(i->second.lastPushed,i->second.lastReceived);
|
|
|
|
if ((now - la) > ZT_MEMBERSHIP_STATE_EXPIRATION_TIME) {
|
|
|
|
_caps.erase(i++);
|
|
|
|
} else {
|
|
|
|
++i;
|
|
|
|
if (la > lastAct)
|
|
|
|
lastAct = la;
|
|
|
|
}
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
|
|
|
|
2016-08-08 23:50:00 +00:00
|
|
|
uint32_t *i = (uint32_t *)0;
|
2016-08-04 01:04:08 +00:00
|
|
|
TState *ts = (TState *)0;
|
|
|
|
Hashtable<uint32_t,TState>::Iterator tsi(_tags);
|
|
|
|
while (tsi.next(i,ts)) {
|
2016-08-04 16:02:35 +00:00
|
|
|
const uint64_t la = std::max(ts->lastPushed,ts->lastReceived);
|
|
|
|
if ((now - la) > ZT_MEMBERSHIP_STATE_EXPIRATION_TIME)
|
2016-08-04 01:04:08 +00:00
|
|
|
_tags.erase(*i);
|
2016-08-04 16:02:35 +00:00
|
|
|
else if (la > lastAct)
|
|
|
|
lastAct = la;
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
2016-08-04 16:02:35 +00:00
|
|
|
|
|
|
|
return lastAct;
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Last time we pushed our COM to this peer
|
|
|
|
uint64_t _lastPushedCom;
|
|
|
|
|
|
|
|
// COM from this peer
|
|
|
|
CertificateOfMembership _com;
|
|
|
|
|
2016-08-08 23:50:00 +00:00
|
|
|
// Capability-related state (we need an ordered container here, hence std::map)
|
|
|
|
std::map<uint32_t,CState> _caps;
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
// Tag-related state
|
|
|
|
Hashtable<uint32_t,TState> _tags;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|