2016-08-04 01:04:08 +00:00
|
|
|
/*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
2016-08-04 01:04:08 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Use of this software is governed by the Business Source License included
|
|
|
|
* in the LICENSE.TXT file in the project's root directory.
|
2016-08-04 01:04:08 +00:00
|
|
|
*
|
2020-08-20 19:51:39 +00:00
|
|
|
* Change Date: 2025-01-01
|
2016-08-04 01:04:08 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* On the date above, in accordance with the Business Source License, use
|
|
|
|
* of this software will be governed by version 2.0 of the Apache License.
|
2016-08-04 01:04:08 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
#ifndef ZT_MEMBERSHIP_HPP
|
|
|
|
#define ZT_MEMBERSHIP_HPP
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "Constants.hpp"
|
|
|
|
#include "../include/ZeroTierOne.h"
|
2017-04-04 13:47:01 +00:00
|
|
|
#include "Credential.hpp"
|
|
|
|
#include "Hashtable.hpp"
|
2016-08-04 01:04:08 +00:00
|
|
|
#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"
|
|
|
|
|
2016-09-26 23:17:02 +00:00
|
|
|
#define ZT_MEMBERSHIP_CRED_ID_UNUSED 0xffffffffffffffffULL
|
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
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
|
|
|
|
*
|
2017-02-23 19:47:36 +00:00
|
|
|
* This is essentially a relational join between Peer and Network.
|
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
|
|
|
|
{
|
|
|
|
public:
|
2016-09-23 23:08:38 +00:00
|
|
|
enum AddCredentialResult
|
|
|
|
{
|
|
|
|
ADD_REJECTED,
|
|
|
|
ADD_ACCEPTED_NEW,
|
|
|
|
ADD_ACCEPTED_REDUNDANT,
|
|
|
|
ADD_DEFERRED_FOR_WHOIS
|
|
|
|
};
|
|
|
|
|
|
|
|
Membership();
|
2016-08-04 01:04:08 +00:00
|
|
|
|
|
|
|
/**
|
2019-03-19 23:43:43 +00:00
|
|
|
* Send COM and other credentials to this peer
|
2016-08-04 01:04:08 +00:00
|
|
|
*
|
2016-08-04 16:02:35 +00:00
|
|
|
* @param RR Runtime environment
|
2017-03-28 00:03:17 +00:00
|
|
|
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
|
2016-08-04 16:02:35 +00:00
|
|
|
* @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-08-04 01:04:08 +00:00
|
|
|
*/
|
2019-08-03 03:43:02 +00:00
|
|
|
void pushCredentials(const RuntimeEnvironment *RR,void *tPtr,const int64_t now,const Address &peerAddress,const NetworkConfig &nconf);
|
2016-08-04 01:04:08 +00:00
|
|
|
|
2022-04-19 20:06:53 +00:00
|
|
|
inline int64_t lastPushedCredentials() { return _lastPushedCredentials; }
|
2019-06-25 20:42:20 +00:00
|
|
|
|
2016-09-07 22:15:52 +00:00
|
|
|
/**
|
2017-04-04 15:07:38 +00:00
|
|
|
* Check whether we should push MULTICAST_LIKEs to this peer, and update last sent time if true
|
2016-09-07 22:15:52 +00:00
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
* @return True if we should update multicasts
|
|
|
|
*/
|
2017-10-02 22:52:57 +00:00
|
|
|
inline bool multicastLikeGate(const int64_t now)
|
2017-04-04 15:07:38 +00:00
|
|
|
{
|
|
|
|
if ((now - _lastUpdatedMulticast) >= ZT_MULTICAST_ANNOUNCE_PERIOD) {
|
|
|
|
_lastUpdatedMulticast = now;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-09-07 22:15:52 +00:00
|
|
|
|
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
|
2021-09-20 22:26:49 +00:00
|
|
|
* @param otherNodeIdentity Identity of remote node
|
2016-08-23 20:46:36 +00:00
|
|
|
* @return True if this peer is allowed on this network at all
|
|
|
|
*/
|
2021-09-20 22:26:49 +00:00
|
|
|
inline bool isAllowedOnNetwork(const NetworkConfig &thisNodeNetworkConfig, const Identity &otherNodeIdentity) const
|
2016-08-23 20:46:36 +00:00
|
|
|
{
|
2021-09-20 22:26:49 +00:00
|
|
|
if (thisNodeNetworkConfig.isPublic()) return true;
|
2017-04-04 13:47:01 +00:00
|
|
|
if (_com.timestamp() <= _comRevocationThreshold) return false;
|
2021-09-20 22:26:49 +00:00
|
|
|
return thisNodeNetworkConfig.com.agreesWith(_com, otherNodeIdentity);
|
2016-08-23 20:46:36 +00:00
|
|
|
}
|
|
|
|
|
2017-10-02 22:52:57 +00:00
|
|
|
inline bool recentlyAssociated(const int64_t now) const
|
2017-07-13 17:51:05 +00:00
|
|
|
{
|
|
|
|
return ((_com)&&((now - _com.timestamp()) < ZT_PEER_ACTIVITY_TIMEOUT));
|
|
|
|
}
|
|
|
|
|
2016-08-23 20:46:36 +00:00
|
|
|
/**
|
2017-02-23 20:34:17 +00:00
|
|
|
* Check whether the peer represented by this Membership owns a given resource
|
|
|
|
*
|
|
|
|
* @tparam Type of resource: InetAddress or MAC
|
|
|
|
* @param nconf Our network config
|
|
|
|
* @param r Resource to check
|
|
|
|
* @return True if this peer has a certificate of ownership for the given resource
|
2016-08-04 17:18:33 +00:00
|
|
|
*/
|
2017-02-23 20:34:17 +00:00
|
|
|
template<typename T>
|
2017-04-04 15:07:38 +00:00
|
|
|
inline bool hasCertificateOfOwnershipFor(const NetworkConfig &nconf,const T &r) const
|
2017-02-23 20:34:17 +00:00
|
|
|
{
|
2017-04-04 13:47:01 +00:00
|
|
|
uint32_t *k = (uint32_t *)0;
|
|
|
|
CertificateOfOwnership *v = (CertificateOfOwnership *)0;
|
2017-04-04 15:07:38 +00:00
|
|
|
Hashtable< uint32_t,CertificateOfOwnership >::Iterator i(*(const_cast< Hashtable< uint32_t,CertificateOfOwnership> *>(&_remoteCoos)));
|
2017-04-04 13:47:01 +00:00
|
|
|
while (i.next(k,v)) {
|
|
|
|
if (_isCredentialTimestampValid(nconf,*v)&&(v->owns(r)))
|
2017-02-23 20:34:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-08-04 22:08:33 +00:00
|
|
|
return _isV6NDPEmulated(nconf,r);
|
2017-02-23 20:34:17 +00:00
|
|
|
}
|
2016-08-04 17:18:33 +00:00
|
|
|
|
2016-08-04 01:04:08 +00:00
|
|
|
/**
|
2017-04-04 13:47:01 +00:00
|
|
|
* Get a remote member's tag (if we have it)
|
|
|
|
*
|
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
|
|
|
|
*/
|
2017-04-04 13:47:01 +00:00
|
|
|
inline const Tag *getTag(const NetworkConfig &nconf,const uint32_t id) const
|
|
|
|
{
|
|
|
|
const Tag *const t = _remoteTags.get(id);
|
|
|
|
return (((t)&&(_isCredentialTimestampValid(nconf,*t))) ? t : (Tag *)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
|
|
|
|
*/
|
2017-03-28 00:03:17 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,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
|
|
|
|
*/
|
2017-03-28 00:03:17 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,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
|
|
|
|
*/
|
2017-03-28 00:03:17 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const NetworkConfig &nconf,const Capability &cap);
|
2016-08-04 16:02:35 +00:00
|
|
|
|
2016-09-26 23:17:02 +00:00
|
|
|
/**
|
|
|
|
* Validate and add a credential if signature is okay and it's otherwise good
|
|
|
|
*/
|
2017-04-04 13:47:01 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const NetworkConfig &nconf,const CertificateOfOwnership &coo);
|
2016-09-26 23:17:02 +00:00
|
|
|
|
2017-02-23 19:47:36 +00:00
|
|
|
/**
|
|
|
|
* Validate and add a credential if signature is okay and it's otherwise good
|
|
|
|
*/
|
2017-04-04 13:47:01 +00:00
|
|
|
AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const NetworkConfig &nconf,const Revocation &rev);
|
2017-02-23 19:47:36 +00:00
|
|
|
|
2017-04-04 13:47:01 +00:00
|
|
|
/**
|
2017-04-04 15:07:38 +00:00
|
|
|
* Clean internal databases of stale entries
|
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
* @param nconf Current network configuration
|
|
|
|
*/
|
2017-10-02 22:52:57 +00:00
|
|
|
void clean(const int64_t now,const NetworkConfig &nconf);
|
2017-04-04 15:07:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates a key for the internal use in indexing credentials by type and credential ID
|
2017-04-04 13:47:01 +00:00
|
|
|
*/
|
2017-04-04 15:07:38 +00:00
|
|
|
static uint64_t credentialKey(const Credential::Type &t,const uint32_t i) { return (((uint64_t)t << 32) | (uint64_t)i); }
|
2016-09-26 23:17:02 +00:00
|
|
|
|
2017-04-04 13:47:01 +00:00
|
|
|
private:
|
2019-08-04 22:08:33 +00:00
|
|
|
inline bool _isV6NDPEmulated(const NetworkConfig &nconf,const MAC &m) const { return false; }
|
|
|
|
inline bool _isV6NDPEmulated(const NetworkConfig &nconf,const InetAddress &ip) const
|
|
|
|
{
|
2019-08-23 17:15:13 +00:00
|
|
|
if ((ip.isV6())&&(nconf.ndpEmulation())) {
|
|
|
|
const InetAddress sixpl(InetAddress::makeIpv66plane(nconf.networkId,nconf.issuedTo.toInt()));
|
2019-08-24 04:28:26 +00:00
|
|
|
for(unsigned int i=0;i<nconf.staticIpCount;++i) {
|
2019-08-23 17:15:13 +00:00
|
|
|
if (nconf.staticIps[i].ipsEqual(sixpl)) {
|
|
|
|
bool prefixMatches = true;
|
2019-08-24 04:28:26 +00:00
|
|
|
for(unsigned int j=0;j<5;++j) { // check for match on /40
|
2019-08-23 17:15:13 +00:00
|
|
|
if ((((const struct sockaddr_in6 *)&ip)->sin6_addr.s6_addr)[j] != (((const struct sockaddr_in6 *)&sixpl)->sin6_addr.s6_addr)[j]) {
|
|
|
|
prefixMatches = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (prefixMatches)
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const InetAddress rfc4193(InetAddress::makeIpv6rfc4193(nconf.networkId,nconf.issuedTo.toInt()));
|
2019-08-24 04:28:26 +00:00
|
|
|
for(unsigned int i=0;i<nconf.staticIpCount;++i) {
|
2019-08-23 17:15:13 +00:00
|
|
|
if (nconf.staticIps[i].ipsEqual(rfc4193)) {
|
|
|
|
bool prefixMatches = true;
|
2019-08-24 04:28:26 +00:00
|
|
|
for(unsigned int j=0;j<11;++j) { // check for match on /88
|
2019-08-23 17:15:13 +00:00
|
|
|
if ((((const struct sockaddr_in6 *)&ip)->sin6_addr.s6_addr)[j] != (((const struct sockaddr_in6 *)&rfc4193)->sin6_addr.s6_addr)[j]) {
|
|
|
|
prefixMatches = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (prefixMatches)
|
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 22:08:33 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-23 20:34:17 +00:00
|
|
|
template<typename C>
|
2017-04-04 13:47:01 +00:00
|
|
|
inline bool _isCredentialTimestampValid(const NetworkConfig &nconf,const C &remoteCredential) const
|
2016-08-04 01:04:08 +00:00
|
|
|
{
|
2017-10-04 19:01:17 +00:00
|
|
|
const int64_t ts = remoteCredential.timestamp();
|
2017-04-04 13:47:01 +00:00
|
|
|
if (((ts >= nconf.timestamp) ? (ts - nconf.timestamp) : (nconf.timestamp - ts)) <= nconf.credentialTimeMaxDelta) {
|
2017-10-04 19:01:17 +00:00
|
|
|
const int64_t *threshold = _revocations.get(credentialKey(C::credentialType(),remoteCredential.id()));
|
2017-04-04 13:47:01 +00:00
|
|
|
return ((!threshold)||(ts > *threshold));
|
|
|
|
}
|
|
|
|
return false;
|
2016-08-04 01:04:08 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 15:07:38 +00:00
|
|
|
template<typename C>
|
2019-03-21 23:18:49 +00:00
|
|
|
inline void _cleanCredImpl(const NetworkConfig &nconf,Hashtable<uint32_t,C> &remoteCreds)
|
2017-04-04 15:07:38 +00:00
|
|
|
{
|
|
|
|
uint32_t *k = (uint32_t *)0;
|
|
|
|
C *v = (C *)0;
|
|
|
|
typename Hashtable<uint32_t,C>::Iterator i(remoteCreds);
|
|
|
|
while (i.next(k,v)) {
|
|
|
|
if (!_isCredentialTimestampValid(nconf,*v))
|
|
|
|
remoteCreds.erase(*k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 22:15:52 +00:00
|
|
|
// Last time we pushed MULTICAST_LIKE(s)
|
2017-10-02 22:52:57 +00:00
|
|
|
int64_t _lastUpdatedMulticast;
|
2016-09-07 22:15:52 +00:00
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Revocation threshold for COM or 0 if none
|
2017-10-02 22:52:57 +00:00
|
|
|
int64_t _comRevocationThreshold;
|
2016-08-23 20:46:36 +00:00
|
|
|
|
2019-06-25 20:42:20 +00:00
|
|
|
// Time we last pushed credentials
|
|
|
|
int64_t _lastPushedCredentials;
|
|
|
|
|
2016-09-23 23:08:38 +00:00
|
|
|
// Remote member's latest network COM
|
2016-08-04 01:04:08 +00:00
|
|
|
CertificateOfMembership _com;
|
|
|
|
|
2017-04-04 15:07:38 +00:00
|
|
|
// Revocations by credentialKey()
|
2017-10-04 19:01:17 +00:00
|
|
|
Hashtable< uint64_t,int64_t > _revocations;
|
2016-09-23 23:08:38 +00:00
|
|
|
|
2017-04-04 15:07:38 +00:00
|
|
|
// Remote credentials that we have received from this member (and that are valid)
|
2017-04-04 13:47:01 +00:00
|
|
|
Hashtable< uint32_t,Tag > _remoteTags;
|
|
|
|
Hashtable< uint32_t,Capability > _remoteCaps;
|
|
|
|
Hashtable< uint32_t,CertificateOfOwnership > _remoteCoos;
|
2016-08-04 01:04:08 +00:00
|
|
|
|
2017-04-04 15:07:38 +00:00
|
|
|
public:
|
|
|
|
class CapabilityIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CapabilityIterator(Membership &m,const NetworkConfig &nconf) :
|
|
|
|
_hti(m._remoteCaps),
|
|
|
|
_k((uint32_t *)0),
|
|
|
|
_c((Capability *)0),
|
2017-04-04 15:46:12 +00:00
|
|
|
_m(m),
|
2017-04-04 15:07:38 +00:00
|
|
|
_nconf(nconf)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Capability *next()
|
|
|
|
{
|
2017-04-04 15:46:12 +00:00
|
|
|
while (_hti.next(_k,_c)) {
|
|
|
|
if (_m._isCredentialTimestampValid(_nconf,*_c))
|
|
|
|
return _c;
|
|
|
|
}
|
|
|
|
return (Capability *)0;
|
2017-04-04 15:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Hashtable< uint32_t,Capability >::Iterator _hti;
|
|
|
|
uint32_t *_k;
|
|
|
|
Capability *_c;
|
2017-04-04 15:46:12 +00:00
|
|
|
Membership &_m;
|
2017-04-04 15:07:38 +00:00
|
|
|
const NetworkConfig &_nconf;
|
|
|
|
};
|
2016-08-04 01:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|