Membership.hpp 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 peerAddress Address of member peer (the one that this Membership describes)
  53. * @param nconf My network config
  54. */
  55. void pushCredentials(const RuntimeEnvironment *RR,void *tPtr,int64_t now,const Address &peerAddress,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. * Check whether the peer represented by this Membership should be allowed on this network at all
  62. *
  63. * @param nconf Our network config
  64. * @return True if this peer is allowed on this network at all
  65. */
  66. ZT_INLINE bool isAllowedOnNetwork(const NetworkConfig &nconf) const noexcept
  67. {
  68. if (nconf.isPublic()) return true; // public network
  69. if (_com.timestamp() <= _comRevocationThreshold) return false; // COM has been revoked
  70. return nconf.com.agreesWith(_com); // check timestamp agreement window
  71. }
  72. /**
  73. * Check whether the peer represented by this Membership owns a given address
  74. *
  75. * @tparam Type of resource: InetAddress or MAC
  76. * @param nconf Our network config
  77. * @param r Resource to check
  78. * @return True if this peer has a certificate of ownership for the given resource
  79. */
  80. template<typename T>
  81. ZT_INLINE bool peerOwnsAddress(const NetworkConfig &nconf,const T &r) const noexcept
  82. {
  83. if (_isUnspoofableAddress(nconf,r))
  84. return true;
  85. uint32_t *k = nullptr;
  86. CertificateOfOwnership *v = nullptr;
  87. Hashtable< uint32_t,CertificateOfOwnership >::Iterator i(*(const_cast< Hashtable< uint32_t,CertificateOfOwnership> *>(&_remoteCoos)));
  88. while (i.next(k,v)) {
  89. if (_isCredentialTimestampValid(nconf,*v)&&(v->owns(r)))
  90. return true;
  91. }
  92. return false;
  93. }
  94. /**
  95. * Get a remote member's tag (if we have it)
  96. *
  97. * @param nconf Network configuration
  98. * @param id Tag ID
  99. * @return Pointer to tag or NULL if not found
  100. */
  101. ZT_INLINE const Tag *getTag(const NetworkConfig &nconf,const uint32_t id) const noexcept
  102. {
  103. const Tag *const t = _remoteTags.get(id);
  104. return (((t)&&(_isCredentialTimestampValid(nconf,*t))) ? t : (Tag *)0);
  105. }
  106. /**
  107. * Clean internal databases of stale entries
  108. *
  109. * @param now Current time
  110. * @param nconf Current network configuration
  111. */
  112. void clean(int64_t now,const NetworkConfig &nconf);
  113. /**
  114. * Generates a key for internal use in indexing credentials by type and credential ID
  115. */
  116. static ZT_INLINE uint64_t credentialKey(const ZT_CredentialType &t,const uint32_t i) noexcept { return (((uint64_t)t << 32U) | (uint64_t)i); }
  117. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const CertificateOfMembership &com);
  118. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const Tag &tag);
  119. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const Capability &cap);
  120. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const CertificateOfOwnership &coo);
  121. AddCredentialResult addCredential(const RuntimeEnvironment *RR,void *tPtr,const Identity &sourcePeerIdentity,const NetworkConfig &nconf,const Revocation &rev);
  122. private:
  123. // This returns true if a resource is an IPv6 NDP-emulated address. These embed the ZT
  124. // address of the peer and therefore cannot be spoofed, causing peerOwnsAddress() to
  125. // always return true for them. A certificate is not required for these.
  126. ZT_INLINE bool _isUnspoofableAddress(const NetworkConfig &nconf,const MAC &m) const noexcept { return false; }
  127. bool _isUnspoofableAddress(const NetworkConfig &nconf,const InetAddress &ip) const noexcept;
  128. // This compares the remote credential's timestamp to the timestamp in our network config
  129. // plus or minus the permitted maximum timestamp delta.
  130. template<typename C>
  131. ZT_INLINE bool _isCredentialTimestampValid(const NetworkConfig &nconf,const C &remoteCredential) const noexcept
  132. {
  133. const int64_t ts = remoteCredential.timestamp();
  134. if (((ts >= nconf.timestamp) ? (ts - nconf.timestamp) : (nconf.timestamp - ts)) <= nconf.credentialTimeMaxDelta) {
  135. const int64_t *threshold = _revocations.get(credentialKey(C::credentialType(),remoteCredential.id()));
  136. return ((!threshold)||(ts > *threshold));
  137. }
  138. return false;
  139. }
  140. template<typename C>
  141. ZT_INLINE void _cleanCredImpl(const NetworkConfig &nconf,Hashtable<uint32_t,C> &remoteCreds)
  142. {
  143. uint32_t *k = nullptr;
  144. C *v = nullptr;
  145. typename Hashtable<uint32_t,C>::Iterator i(remoteCreds);
  146. while (i.next(k,v)) {
  147. if (!_isCredentialTimestampValid(nconf,*v))
  148. remoteCreds.erase(*k);
  149. }
  150. }
  151. // Revocation threshold for COM or 0 if none
  152. int64_t _comRevocationThreshold;
  153. // Time we last pushed credentials
  154. int64_t _lastPushedCredentials;
  155. // Remote member's latest network COM
  156. CertificateOfMembership _com;
  157. // Revocations by credentialKey()
  158. Hashtable< uint64_t,int64_t > _revocations;
  159. // Remote credentials that we have received from this member (and that are valid)
  160. Hashtable< uint32_t,Tag > _remoteTags;
  161. Hashtable< uint32_t,Capability > _remoteCaps;
  162. Hashtable< uint32_t,CertificateOfOwnership > _remoteCoos;
  163. public:
  164. class CapabilityIterator
  165. {
  166. public:
  167. ZT_INLINE CapabilityIterator(Membership &m,const NetworkConfig &nconf) noexcept :
  168. _hti(m._remoteCaps),
  169. _k(nullptr),
  170. _c(nullptr),
  171. _m(m),
  172. _nconf(nconf)
  173. {
  174. }
  175. ZT_INLINE Capability *next() noexcept
  176. {
  177. while (_hti.next(_k,_c)) {
  178. if (_m._isCredentialTimestampValid(_nconf,*_c))
  179. return _c;
  180. }
  181. return nullptr;
  182. }
  183. private:
  184. Hashtable< uint32_t,Capability >::Iterator _hti;
  185. uint32_t *_k;
  186. Capability *_c;
  187. Membership &_m;
  188. const NetworkConfig &_nconf;
  189. };
  190. };
  191. } // namespace ZeroTier
  192. #endif