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>
|
|
|
|
|
|
|
|
#include "Constants.hpp"
|
|
|
|
#include "../include/ZeroTierOne.h"
|
|
|
|
#include "CertificateOfMembership.hpp"
|
|
|
|
#include "Capability.hpp"
|
|
|
|
#include "Tag.hpp"
|
2016-09-23 23:08:38 +00:00
|
|
|
#include "Revocation.hpp"
|
2016-08-04 01:04:08 +00:00
|
|
|
#include "NetworkConfig.hpp"
|
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
2016-08-04 16:02:35 +00:00
|
|
|
class RuntimeEnvironment;
|
2016-09-07 22:15:52 +00:00
|
|
|
class Network;
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-23 20:46:36 +00:00
|
|
|
* A container for certificates of membership and other network credentials
|
|
|
|
*
|
|
|
|
* This is kind of analogous to a join table between Peer and Network. It is
|
2016-09-23 23:08:38 +00:00
|
|
|
* held by the Network object for each participating Peer.
|
2016-08-25 00:24:35 +00:00
|
|
|
*
|
2016-09-23 23:08:38 +00:00
|
|
|
* This class is not thread safe. It must be locked externally.
|
2016-08-04 01:04:08 +00:00
|
|
|
*/
|
|
|
|
class Membership
|
|
|
|
{
|
|
|
|
private:
|
2016-08-08 23:50:00 +00:00
|
|
|
// Tags and related state
|
2016-09-23 23:08:38 +00:00
|
|
|
struct _RemoteTag
|
2016-08-04 01:04:08 +00:00
|
|
|
{
|
2016-09-23 23:08:38 +00:00
|
|
|
_RemoteTag() : id(0xffffffffffffffffULL),lastReceived(0),revocationThreshold(0) {}
|
|
|
|
// Tag ID (last 32 bits, first 32 bits are set in unused entries to sort them to end)
|
|
|
|
uint64_t id;
|
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-09-23 23:08:38 +00:00
|
|
|
// Revocation blacklist threshold or 0 if none
|
|
|
|
uint64_t revocationThreshold;
|
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-09-23 23:08:38 +00:00
|
|
|
struct _RemoteCapability
|
2016-08-04 01:04:08 +00:00
|
|
|
{
|
2016-09-23 23:08:38 +00:00
|
|
|
_RemoteCapability() : id(0xffffffffffffffffULL),lastReceived(0),revocationThreshold(0) {}
|
|
|
|
// Capability ID (last 32 bits, first 32 bits are set in unused entries to sort them to end)
|
|
|
|
uint64_t id;
|
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-09-23 23:08:38 +00:00
|
|
|
// Revocation blacklist threshold or 0 if none
|
|
|
|
uint64_t revocationThreshold;
|
2016-08-08 23:50:00 +00:00
|
|
|
// THEIR capability
|
2016-08-04 01:04:08 +00:00
|
|
|
Capability cap;
|
|
|
|
};
|
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Comparison operator for remote credential entries
|
|
|
|
template<typename T>
|
|
|
|
struct _RemoteCredentialSorter
|
|
|
|
{
|
|
|
|
inline bool operator()(const T *a,const T *b) const { return (a->id < b->id); }
|
|
|
|
inline bool operator()(const uint64_t a,const T *b) const { return (a < b->id); }
|
|
|
|
inline bool operator()(const T *a,const uint64_t b) const { return (a->id < b); }
|
|
|
|
inline bool operator()(const uint64_t a,const uint64_t b) const { return (a < b); }
|
|
|
|
};
|
|
|
|
|
|
|
|
// Used to track push state for network config tags[] and capabilities[] entries
|
|
|
|
struct _LocalCredentialPushState
|
|
|
|
{
|
|
|
|
_LocalCredentialPushState() : lastPushed(0),id(0) {}
|
|
|
|
uint64_t lastPushed;
|
|
|
|
uint32_t id;
|
|
|
|
};
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
public:
|
2016-09-23 23:08:38 +00:00
|
|
|
enum AddCredentialResult
|
|
|
|
{
|
|
|
|
ADD_REJECTED,
|
|
|
|
ADD_ACCEPTED_NEW,
|
|
|
|
ADD_ACCEPTED_REDUNDANT,
|
|
|
|
ADD_DEFERRED_FOR_WHOIS
|
|
|
|
};
|
|
|
|
|
2016-08-08 23:50:00 +00:00
|
|
|
/**
|
2016-09-23 23:08:38 +00:00
|
|
|
* Iterator to scan forward through capabilities in ascending order of ID
|
2016-08-08 23:50:00 +00:00
|
|
|
*/
|
|
|
|
class CapabilityIterator
|
|
|
|
{
|
|
|
|
public:
|
2016-09-23 23:08:38 +00:00
|
|
|
CapabilityIterator(const Membership &m,const NetworkConfig &nconf) :
|
|
|
|
_m(&m),
|
|
|
|
_c(&nconf),
|
|
|
|
_i(&(m._remoteCaps[0])) {}
|
2016-08-08 23:50:00 +00:00
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
inline const Capability *next()
|
2016-08-08 23:50:00 +00:00
|
|
|
{
|
2016-09-23 23:08:38 +00:00
|
|
|
for(;;) {
|
|
|
|
if ((_i != &(_m->_remoteCaps[ZT_MAX_NETWORK_CAPABILITIES]))&&((*_i)->id != 0xffffffffffffffffULL)) {
|
|
|
|
const Capability *tmp = &((*_i)->cap);
|
|
|
|
if (_m->_isCredentialTimestampValid(*_c,*tmp,**_i)) {
|
|
|
|
++_i;
|
|
|
|
return tmp;
|
|
|
|
} else ++_i;
|
|
|
|
} else {
|
|
|
|
return (const Capability *)0;
|
|
|
|
}
|
2016-08-08 23:50:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-09-23 23:08:38 +00:00
|
|
|
const Membership *_m;
|
|
|
|
const NetworkConfig *_c;
|
|
|
|
const _RemoteCapability *const *_i;
|
2016-08-08 23:50:00 +00:00
|
|
|
};
|
|
|
|
friend class CapabilityIterator;
|
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
/**
|
|
|
|
* Iterator to scan forward through tags in ascending order of ID
|
|
|
|
*/
|
|
|
|
class TagIterator
|
2016-08-04 01:04:08 +00:00
|
|
|
{
|
2016-09-23 23:08:38 +00:00
|
|
|
public:
|
|
|
|
TagIterator(const Membership &m,const NetworkConfig &nconf) :
|
|
|
|
_m(&m),
|
|
|
|
_c(&nconf),
|
|
|
|
_i(&(m._remoteTags[0])) {}
|
|
|
|
|
|
|
|
inline const Tag *next()
|
|
|
|
{
|
|
|
|
for(;;) {
|
|
|
|
if ((_i != &(_m->_remoteTags[ZT_MAX_NETWORK_TAGS]))&&((*_i)->id != 0xffffffffffffffffULL)) {
|
|
|
|
const Tag *tmp = &((*_i)->tag);
|
|
|
|
if (_m->_isCredentialTimestampValid(*_c,*tmp,**_i)) {
|
|
|
|
++_i;
|
|
|
|
return tmp;
|
|
|
|
} else ++_i;
|
|
|
|
} else {
|
|
|
|
return (const Tag *)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Membership *_m;
|
|
|
|
const NetworkConfig *_c;
|
|
|
|
const _RemoteTag *const *_i;
|
|
|
|
};
|
|
|
|
friend class TagIterator;
|
|
|
|
|
|
|
|
Membership();
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-09-01 00:56:59 +00:00
|
|
|
* @param peerAddress Address of member peer (the one that this Membership describes)
|
2016-08-26 01:21:20 +00:00
|
|
|
* @param nconf My network config
|
2016-09-23 23:08:38 +00:00
|
|
|
* @param localCapabilityIndex Index of local capability to include (in nconf.capabilities[]) or -1 if none
|
|
|
|
* @param force If true, send objects regardless of last push time
|
2016-08-04 01:04:08 +00:00
|
|
|
*/
|
2016-09-23 23:08:38 +00:00
|
|
|
void pushCredentials(const RuntimeEnvironment *RR,const uint64_t now,const Address &peerAddress,const NetworkConfig &nconf,int localCapabilityIndex,const bool force);
|
2016-08-04 01:04:08 +00:00
|
|
|
|
2016-09-07 22:15:52 +00:00
|
|
|
/**
|
|
|
|
* Check whether we should push MULTICAST_LIKEs to this peer
|
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
* @return True if we should update multicasts
|
|
|
|
*/
|
|
|
|
inline bool shouldLikeMulticasts(const uint64_t now) const { return ((now - _lastUpdatedMulticast) >= ZT_MULTICAST_ANNOUNCE_PERIOD); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set time we last updated multicasts for this peer
|
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
*/
|
|
|
|
inline void likingMulticasts(const uint64_t now) { _lastUpdatedMulticast = now; }
|
|
|
|
|
2016-08-04 17:18:33 +00:00
|
|
|
/**
|
2016-09-23 23:08:38 +00:00
|
|
|
* Check whether the peer represented by this Membership should be allowed on this network at all
|
|
|
|
*
|
2016-08-23 20:46:36 +00:00
|
|
|
* @param nconf Our network config
|
|
|
|
* @return True if this peer is allowed on this network at all
|
|
|
|
*/
|
|
|
|
inline bool isAllowedOnNetwork(const NetworkConfig &nconf) const
|
|
|
|
{
|
|
|
|
if (nconf.isPublic())
|
|
|
|
return true;
|
2016-09-23 23:08:38 +00:00
|
|
|
if ((_comRevocationThreshold)&&(_com.timestamp().first <= _comRevocationThreshold))
|
2016-08-23 20:46:36 +00:00
|
|
|
return false;
|
|
|
|
return nconf.com.agreesWith(_com);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-09-23 23:08:38 +00:00
|
|
|
* @param nconf Network configuration
|
|
|
|
* @param id Capablity ID
|
|
|
|
* @return Pointer to capability or NULL if not found
|
2016-08-04 17:18:33 +00:00
|
|
|
*/
|
2016-09-23 23:08:38 +00:00
|
|
|
const Capability *getCapability(const NetworkConfig &nconf,const uint32_t id) const;
|
2016-08-04 17:18:33 +00:00
|
|
|
|
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
|
|
|
|
*/
|
2016-09-23 23:08:38 +00:00
|
|
|
const Tag *getTag(const NetworkConfig &nconf,const uint32_t id) const;
|
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
|
|
|
|
*/
|
2016-09-23 23:08:38 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,const NetworkConfig &nconf,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
|
|
|
|
*/
|
2016-09-23 23:08:38 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,const NetworkConfig &nconf,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
|
|
|
|
*/
|
2016-09-23 23:08:38 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,const NetworkConfig &nconf,const Capability &cap);
|
2016-08-04 16:02:35 +00:00
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
private:
|
|
|
|
template<typename C,typename CS>
|
|
|
|
inline bool _isCredentialTimestampValid(const NetworkConfig &nconf,const C &cred,const CS &state) const
|
2016-08-04 01:04:08 +00:00
|
|
|
{
|
2016-09-23 23:08:38 +00:00
|
|
|
const uint64_t ts = cred.timestamp();
|
|
|
|
return ( (((ts >= nconf.timestamp) ? (ts - nconf.timestamp) : (nconf.timestamp - ts)) <= nconf.credentialTimeMaxDelta) && (ts > state.revocationThreshold) );
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 22:15:52 +00:00
|
|
|
// Last time we pushed MULTICAST_LIKE(s)
|
|
|
|
uint64_t _lastUpdatedMulticast;
|
|
|
|
|
2016-08-26 01:21:20 +00:00
|
|
|
// Last time we checked if credential push was needed
|
|
|
|
uint64_t _lastPushAttempt;
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
// Last time we pushed our COM to this peer
|
|
|
|
uint64_t _lastPushedCom;
|
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Revocation threshold for COM or 0 if none
|
|
|
|
uint64_t _comRevocationThreshold;
|
2016-08-23 20:46:36 +00:00
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Remote member's latest network COM
|
2016-08-04 01:04:08 +00:00
|
|
|
CertificateOfMembership _com;
|
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Sorted (in ascending order of ID) arrays of pointers to remote tags and capabilities
|
|
|
|
_RemoteTag *_remoteTags[ZT_MAX_NETWORK_TAGS];
|
|
|
|
_RemoteCapability *_remoteCaps[ZT_MAX_NETWORK_CAPABILITIES];
|
|
|
|
|
|
|
|
// This is the RAM allocated for remote tags and capabilities from which the sorted arrays are populated
|
|
|
|
_RemoteTag _tagMem[ZT_MAX_NETWORK_TAGS];
|
|
|
|
_RemoteCapability _capMem[ZT_MAX_NETWORK_CAPABILITIES];
|
2016-08-04 01:04:08 +00:00
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Local credential push state tracking
|
|
|
|
_LocalCredentialPushState _localTags[ZT_MAX_NETWORK_TAGS];
|
|
|
|
_LocalCredentialPushState _localCaps[ZT_MAX_NETWORK_CAPABILITIES];
|
2016-08-04 01:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|