Membership.hpp 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. * Copyright (c)2013-2020 ZeroTier, Inc.
  3. *
  4. * Use of this software is governed by the Business Source License included
  5. * in the LICENSE.TXT file in the project's root directory.
  6. *
  7. * Change Date: 2024-01-01
  8. *
  9. * On the date above, in accordance with the Business Source License, use
  10. * of this software will be governed by version 2.0 of the Apache License.
  11. */
  12. /****/
  13. #ifndef ZT_MEMBERSHIP_HPP
  14. #define ZT_MEMBERSHIP_HPP
  15. #include <cstdint>
  16. #include "Constants.hpp"
  17. #include "Credential.hpp"
  18. #include "Hashtable.hpp"
  19. #include "CertificateOfMembership.hpp"
  20. #include "Capability.hpp"
  21. #include "Tag.hpp"
  22. #include "Revocation.hpp"
  23. #include "NetworkConfig.hpp"
  24. namespace ZeroTier {
  25. class RuntimeEnvironment;
  26. class Network;
  27. /**
  28. * A container for certificates of membership and other network credentials
  29. *
  30. * This is essentially a relational join between Peer and Network.
  31. *
  32. * This class is not thread safe. It must be locked externally.
  33. */
  34. class Membership
  35. {
  36. public:
  37. enum AddCredentialResult
  38. {
  39. ADD_REJECTED,
  40. ADD_ACCEPTED_NEW,
  41. ADD_ACCEPTED_REDUNDANT,
  42. ADD_DEFERRED_FOR_WHOIS
  43. };
  44. Membership();
  45. ~Membership();
  46. /**
  47. * Send COM and other credentials to this peer
  48. *
  49. * @param RR Runtime environment
  50. * @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
  51. * @param now Current time
  52. * @param to Peer identity
  53. * @param nconf My network config
  54. */
  55. void pushCredentials(const RuntimeEnvironment *RR,void *tPtr,int64_t now,const SharedPtr<Peer> &to,const NetworkConfig &nconf);
  56. /**
  57. * @return Time we last pushed credentials to this member
  58. */
  59. ZT_INLINE int64_t lastPushedCredentials() const noexcept { return _lastPushedCredentials; }
  60. /**
  61. * Get a remote member's tag (if we have it)
  62. *
  63. * @param nconf Network configuration
  64. * @param id Tag ID
  65. * @return Pointer to tag or NULL if not found
  66. */
  67. ZT_INLINE const Tag *getTag(const NetworkConfig &nconf,const uint32_t id) const noexcept
  68. {
  69. const Tag *const t = _remoteTags.get(id);
  70. return (((t)&&(_isCredentialTimestampValid(nconf,*t))) ? t : (Tag *)0);
  71. }
  72. /**
  73. * Clean internal databases of stale entries
  74. *
  75. * @param now Current time
  76. * @param nconf Current network configuration
  77. */
  78. void clean(int64_t now,const NetworkConfig &nconf);
  79. /**
  80. * Generates a key for internal use in indexing credentials by type and credential ID
  81. */
  82. static ZT_INLINE uint64_t credentialKey(const ZT_CredentialType &t,const uint32_t i) noexcept { return (((uint64_t)t << 32U) | (uint64_t)i); }
  83. /**
  84. * Check whether the peer represented by this Membership owns a given address
  85. *
  86. * @tparam Type of resource: InetAddress or MAC
  87. * @param nconf Our network config
  88. * @param r Resource to check
  89. * @return True if this peer has a certificate of ownership for the given resource
  90. */
  91. template<typename T>
  92. ZT_INLINE bool peerOwnsAddress(const NetworkConfig &nconf,const T &r) const noexcept
  93. {
  94. if (_isUnspoofableAddress(nconf,r))
  95. return true;
  96. uint32_t *k = nullptr;
  97. CertificateOfOwnership *v = nullptr;
  98. Hashtable< uint32_t,CertificateOfOwnership >::Iterator i(*(const_cast< Hashtable< uint32_t,CertificateOfOwnership> *>(&_remoteCoos)));
  99. while (i.next(k,v)) {
  100. if (_isCredentialTimestampValid(nconf,*v)&&(v->owns(r)))
  101. return true;
  102. }
  103. return false;
  104. }
  105. /**
  106. * Check if our local COM agrees with theirs, with possible memo-ization.
  107. *
  108. * @param localCom
  109. */
  110. ZT_INLINE bool certificateOfMembershipAgress(const CertificateOfMembership &localCom,const Identity &remoteIdentity)
  111. {
  112. if ((_comAgreementLocalTimestamp == localCom.timestamp())&&(_comAgreementRemoteTimestamp == _com.timestamp()))
  113. return true;
  114. if (_com.agreesWith(localCom)) {
  115. // SECURITY: newer network controllers embed the full fingerprint into the COM. If we are
  116. // joined to a network managed by one of these, our COM will contain one. If it's present
  117. // we compare vs the other and require them to match. If our COM does not contain a full
  118. // identity fingerprint we compare by address only, which is a legacy mode supported for
  119. // old network controllers. Note that this is safe because the controller issues us our COM
  120. // and in so doing indicates if it's new or old. However this will go away after a while
  121. // once we can be pretty sure there are no ancient controllers around.
  122. if (localCom.issuedTo().haveHash()) {
  123. if (localCom.issuedTo() != _com.issuedTo())
  124. return false;
  125. } else {
  126. // LEGACY: support networks run by old controllers.
  127. if (localCom.issuedTo().address() != _com.issuedTo().address())
  128. return false;
  129. }
  130. // Remember that these two COMs agreed. If any are updated this is invalidated and a full
  131. // agreement check will be done again.
  132. _comAgreementLocalTimestamp = localCom.timestamp();
  133. _comAgreementRemoteTimestamp = _com.timestamp();
  134. return true;
  135. }
  136. return false;
  137. }
  138. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const CertificateOfMembership &com);
  139. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const Tag &tag);
  140. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const Capability &cap);
  141. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const CertificateOfOwnership &coo);
  142. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const Revocation &rev);
  143. private:
  144. // This returns true if a resource is an IPv6 NDP-emulated address. These embed the ZT
  145. // address of the peer and therefore cannot be spoofed, causing peerOwnsAddress() to
  146. // always return true for them. A certificate is not required for these.
  147. ZT_INLINE bool _isUnspoofableAddress(const NetworkConfig &nconf,const MAC &m) const noexcept { return false; }
  148. bool _isUnspoofableAddress(const NetworkConfig &nconf,const InetAddress &ip) const noexcept;
  149. // This compares the remote credential's timestamp to the timestamp in our network config
  150. // plus or minus the permitted maximum timestamp delta.
  151. template<typename C>
  152. ZT_INLINE bool _isCredentialTimestampValid(const NetworkConfig &nconf,const C &remoteCredential) const noexcept
  153. {
  154. const int64_t ts = remoteCredential.timestamp();
  155. if (((ts >= nconf.timestamp) ? (ts - nconf.timestamp) : (nconf.timestamp - ts)) <= nconf.credentialTimeMaxDelta) {
  156. const int64_t *threshold = _revocations.get(credentialKey(C::credentialType(),remoteCredential.id()));
  157. return ((!threshold)||(ts > *threshold));
  158. }
  159. return false;
  160. }
  161. template<typename C>
  162. ZT_INLINE void _cleanCredImpl(const NetworkConfig &nconf,Hashtable<uint32_t,C> &remoteCreds)
  163. {
  164. uint32_t *k = nullptr;
  165. C *v = nullptr;
  166. typename Hashtable<uint32_t,C>::Iterator i(remoteCreds);
  167. while (i.next(k,v)) {
  168. if (!_isCredentialTimestampValid(nconf,*v))
  169. remoteCreds.erase(*k);
  170. }
  171. }
  172. // Revocation threshold for COM or 0 if none
  173. int64_t _comRevocationThreshold;
  174. // Time we last pushed credentials
  175. int64_t _lastPushedCredentials;
  176. // COM timestamps at which we last agreed-- used to memo-ize agreement and avoid having to recompute constantly.
  177. int64_t _comAgreementLocalTimestamp,_comAgreementRemoteTimestamp;
  178. // Remote member's latest network COM
  179. CertificateOfMembership _com;
  180. // Revocations by credentialKey()
  181. Hashtable< uint64_t,int64_t > _revocations;
  182. // Remote credentials that we have received from this member (and that are valid)
  183. Hashtable< uint32_t,Tag > _remoteTags;
  184. Hashtable< uint32_t,Capability > _remoteCaps;
  185. Hashtable< uint32_t,CertificateOfOwnership > _remoteCoos;
  186. public:
  187. class CapabilityIterator
  188. {
  189. public:
  190. ZT_INLINE CapabilityIterator(Membership &m,const NetworkConfig &nconf) noexcept :
  191. _hti(m._remoteCaps),
  192. _k(nullptr),
  193. _c(nullptr),
  194. _m(m),
  195. _nconf(nconf)
  196. {
  197. }
  198. ZT_INLINE Capability *next() noexcept
  199. {
  200. while (_hti.next(_k,_c)) {
  201. if (_m._isCredentialTimestampValid(_nconf,*_c))
  202. return _c;
  203. }
  204. return nullptr;
  205. }
  206. private:
  207. Hashtable< uint32_t,Capability >::Iterator _hti;
  208. uint32_t *_k;
  209. Capability *_c;
  210. Membership &_m;
  211. const NetworkConfig &_nconf;
  212. };
  213. };
  214. } // namespace ZeroTier
  215. #endif