CertificateOfMembership.hpp 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /*
  2. * Copyright (c)2019 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: 2025-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_CERTIFICATEOFMEMBERSHIP_HPP
  14. #define ZT_CERTIFICATEOFMEMBERSHIP_HPP
  15. #include <stdint.h>
  16. #include <string.h>
  17. #include <string>
  18. #include <stdexcept>
  19. #include <algorithm>
  20. #include "Constants.hpp"
  21. #include "Credential.hpp"
  22. #include "Buffer.hpp"
  23. #include "Address.hpp"
  24. #include "C25519.hpp"
  25. #include "Identity.hpp"
  26. #include "Utils.hpp"
  27. /**
  28. * Maximum number of qualifiers allowed in a COM (absolute max: 65535)
  29. */
  30. #define ZT_NETWORK_COM_MAX_QUALIFIERS 8
  31. namespace ZeroTier {
  32. class RuntimeEnvironment;
  33. /**
  34. * Certificate of network membership
  35. *
  36. * The COM contains a sorted set of three-element tuples called qualifiers.
  37. * These contain an id, a value, and a maximum delta.
  38. *
  39. * The ID is arbitrary and should be assigned using a scheme that makes
  40. * every ID globally unique. IDs beneath 65536 are reserved for global
  41. * assignment by ZeroTier Networks.
  42. *
  43. * The value's meaning is ID-specific and isn't important here. What's
  44. * important is the value and the third member of the tuple: the maximum
  45. * delta. The maximum delta is the maximum difference permitted between
  46. * values for a given ID between certificates for the two certificates to
  47. * themselves agree.
  48. *
  49. * Network membership is checked by checking whether a peer's certificate
  50. * agrees with your own. The timestamp provides the fundamental criterion--
  51. * each member of a private network must constantly obtain new certificates
  52. * often enough to stay within the max delta for this qualifier. But other
  53. * criteria could be added in the future for very special behaviors, things
  54. * like latitude and longitude for instance.
  55. *
  56. * This is a memcpy()'able structure and is safe (in a crash sense) to modify
  57. * without locks.
  58. */
  59. class CertificateOfMembership : public Credential
  60. {
  61. public:
  62. static inline Credential::Type credentialType() { return Credential::CREDENTIAL_TYPE_COM; }
  63. /**
  64. * Reserved qualifier IDs
  65. *
  66. * IDs below 1024 are reserved for use as standard IDs. Others are available
  67. * for user-defined use.
  68. *
  69. * Addition of new required fields requires that code in hasRequiredFields
  70. * be updated as well.
  71. */
  72. enum ReservedId
  73. {
  74. /**
  75. * Timestamp of certificate
  76. */
  77. COM_RESERVED_ID_TIMESTAMP = 0,
  78. /**
  79. * Network ID for which certificate was issued
  80. */
  81. COM_RESERVED_ID_NETWORK_ID = 1,
  82. /**
  83. * ZeroTier address to whom certificate was issued
  84. */
  85. COM_RESERVED_ID_ISSUED_TO = 2
  86. };
  87. /**
  88. * Create an empty certificate of membership
  89. */
  90. CertificateOfMembership() :
  91. _qualifierCount(0) {}
  92. /**
  93. * Create from required fields common to all networks
  94. *
  95. * @param timestamp Timestamp of certificate
  96. * @param timestampMaxDelta Maximum variation between timestamps on this net
  97. * @param nwid Network ID
  98. * @param issuedTo Certificate recipient
  99. */
  100. CertificateOfMembership(uint64_t timestamp,uint64_t timestampMaxDelta,uint64_t nwid,const Address &issuedTo)
  101. {
  102. _qualifiers[0].id = COM_RESERVED_ID_TIMESTAMP;
  103. _qualifiers[0].value = timestamp;
  104. _qualifiers[0].maxDelta = timestampMaxDelta;
  105. _qualifiers[1].id = COM_RESERVED_ID_NETWORK_ID;
  106. _qualifiers[1].value = nwid;
  107. _qualifiers[1].maxDelta = 0;
  108. _qualifiers[2].id = COM_RESERVED_ID_ISSUED_TO;
  109. _qualifiers[2].value = issuedTo.toInt();
  110. _qualifiers[2].maxDelta = 0xffffffffffffffffULL;
  111. _qualifierCount = 3;
  112. memset(_signature.data,0,ZT_C25519_SIGNATURE_LEN);
  113. }
  114. /**
  115. * Create from binary-serialized COM in buffer
  116. *
  117. * @param b Buffer to deserialize from
  118. * @param startAt Position to start in buffer
  119. */
  120. template<unsigned int C>
  121. CertificateOfMembership(const Buffer<C> &b,unsigned int startAt = 0)
  122. {
  123. deserialize(b,startAt);
  124. }
  125. /**
  126. * @return True if there's something here
  127. */
  128. inline operator bool() const { return (_qualifierCount != 0); }
  129. /**
  130. * @return Credential ID, always 0 for COMs
  131. */
  132. inline uint32_t id() const { return 0; }
  133. /**
  134. * @return Timestamp for this cert and maximum delta for timestamp
  135. */
  136. inline int64_t timestamp() const
  137. {
  138. for(unsigned int i=0;i<_qualifierCount;++i) {
  139. if (_qualifiers[i].id == COM_RESERVED_ID_TIMESTAMP)
  140. return _qualifiers[i].value;
  141. }
  142. return 0;
  143. }
  144. /**
  145. * @return Address to which this cert was issued
  146. */
  147. inline Address issuedTo() const
  148. {
  149. for(unsigned int i=0;i<_qualifierCount;++i) {
  150. if (_qualifiers[i].id == COM_RESERVED_ID_ISSUED_TO)
  151. return Address(_qualifiers[i].value);
  152. }
  153. return Address();
  154. }
  155. /**
  156. * @return Network ID for which this cert was issued
  157. */
  158. inline uint64_t networkId() const
  159. {
  160. for(unsigned int i=0;i<_qualifierCount;++i) {
  161. if (_qualifiers[i].id == COM_RESERVED_ID_NETWORK_ID)
  162. return _qualifiers[i].value;
  163. }
  164. return 0ULL;
  165. }
  166. /**
  167. * Add or update a qualifier in this certificate
  168. *
  169. * Any signature is invalidated and signedBy is set to null.
  170. *
  171. * @param id Qualifier ID
  172. * @param value Qualifier value
  173. * @param maxDelta Qualifier maximum allowed difference (absolute value of difference)
  174. */
  175. void setQualifier(uint64_t id,uint64_t value,uint64_t maxDelta);
  176. inline void setQualifier(ReservedId id,uint64_t value,uint64_t maxDelta) { setQualifier((uint64_t)id,value,maxDelta); }
  177. #ifdef ZT_SUPPORT_OLD_STYLE_NETCONF
  178. /**
  179. * @return String-serialized representation of this certificate
  180. */
  181. std::string toString() const;
  182. /**
  183. * Set this certificate equal to the hex-serialized string
  184. *
  185. * Invalid strings will result in invalid or undefined certificate
  186. * contents. These will subsequently fail validation and comparison.
  187. * Empty strings will result in an empty certificate.
  188. *
  189. * @param s String to deserialize
  190. */
  191. void fromString(const char *s);
  192. #endif // ZT_SUPPORT_OLD_STYLE_NETCONF
  193. /**
  194. * Compare two certificates for parameter agreement
  195. *
  196. * This compares this certificate with the other and returns true if all
  197. * parameters in this cert are present in the other and if they agree to
  198. * within this cert's max delta value for each given parameter.
  199. *
  200. * Tuples present in other but not in this cert are ignored, but any
  201. * tuples present in this cert but not in other result in 'false'.
  202. *
  203. * @param other Cert to compare with
  204. * @return True if certs agree and 'other' may be communicated with
  205. */
  206. bool agreesWith(const CertificateOfMembership &other) const;
  207. /**
  208. * Sign this certificate
  209. *
  210. * @param with Identity to sign with, must include private key
  211. * @return True if signature was successful
  212. */
  213. bool sign(const Identity &with);
  214. /**
  215. * Verify this COM and its signature
  216. *
  217. * @param RR Runtime environment for looking up peers
  218. * @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
  219. * @return 0 == OK, 1 == waiting for WHOIS, -1 == BAD signature or credential
  220. */
  221. int verify(const RuntimeEnvironment *RR,void *tPtr) const;
  222. /**
  223. * @return True if signed
  224. */
  225. inline bool isSigned() const { return (_signedBy); }
  226. /**
  227. * @return Address that signed this certificate or null address if none
  228. */
  229. inline const Address &signedBy() const { return _signedBy; }
  230. template<unsigned int C>
  231. inline void serialize(Buffer<C> &b) const
  232. {
  233. b.append((uint8_t)1);
  234. b.append((uint16_t)_qualifierCount);
  235. for(unsigned int i=0;i<_qualifierCount;++i) {
  236. b.append(_qualifiers[i].id);
  237. b.append(_qualifiers[i].value);
  238. b.append(_qualifiers[i].maxDelta);
  239. }
  240. _signedBy.appendTo(b);
  241. if (_signedBy)
  242. b.append(_signature.data,ZT_C25519_SIGNATURE_LEN);
  243. }
  244. template<unsigned int C>
  245. inline unsigned int deserialize(const Buffer<C> &b,unsigned int startAt = 0)
  246. {
  247. unsigned int p = startAt;
  248. _qualifierCount = 0;
  249. _signedBy.zero();
  250. if (b[p++] != 1)
  251. throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_TYPE;
  252. unsigned int numq = b.template at<uint16_t>(p); p += sizeof(uint16_t);
  253. uint64_t lastId = 0;
  254. for(unsigned int i=0;i<numq;++i) {
  255. const uint64_t qid = b.template at<uint64_t>(p);
  256. if (qid < lastId)
  257. throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_BAD_ENCODING;
  258. else lastId = qid;
  259. if (_qualifierCount < ZT_NETWORK_COM_MAX_QUALIFIERS) {
  260. _qualifiers[_qualifierCount].id = qid;
  261. _qualifiers[_qualifierCount].value = b.template at<uint64_t>(p + 8);
  262. _qualifiers[_qualifierCount].maxDelta = b.template at<uint64_t>(p + 16);
  263. p += 24;
  264. ++_qualifierCount;
  265. } else {
  266. throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_OVERFLOW;
  267. }
  268. }
  269. _signedBy.setTo(b.field(p,ZT_ADDRESS_LENGTH),ZT_ADDRESS_LENGTH);
  270. p += ZT_ADDRESS_LENGTH;
  271. if (_signedBy) {
  272. memcpy(_signature.data,b.field(p,ZT_C25519_SIGNATURE_LEN),ZT_C25519_SIGNATURE_LEN);
  273. p += ZT_C25519_SIGNATURE_LEN;
  274. }
  275. return (p - startAt);
  276. }
  277. inline bool operator==(const CertificateOfMembership &c) const
  278. {
  279. if (_signedBy != c._signedBy)
  280. return false;
  281. if (_qualifierCount != c._qualifierCount)
  282. return false;
  283. for(unsigned int i=0;i<_qualifierCount;++i) {
  284. const _Qualifier &a = _qualifiers[i];
  285. const _Qualifier &b = c._qualifiers[i];
  286. if ((a.id != b.id)||(a.value != b.value)||(a.maxDelta != b.maxDelta))
  287. return false;
  288. }
  289. return (memcmp(_signature.data,c._signature.data,ZT_C25519_SIGNATURE_LEN) == 0);
  290. }
  291. inline bool operator!=(const CertificateOfMembership &c) const { return (!(*this == c)); }
  292. private:
  293. struct _Qualifier
  294. {
  295. _Qualifier() : id(0),value(0),maxDelta(0) {}
  296. uint64_t id;
  297. uint64_t value;
  298. uint64_t maxDelta;
  299. inline bool operator<(const _Qualifier &q) const { return (id < q.id); } // sort order
  300. };
  301. Address _signedBy;
  302. _Qualifier _qualifiers[ZT_NETWORK_COM_MAX_QUALIFIERS];
  303. unsigned int _qualifierCount;
  304. C25519::Signature _signature;
  305. };
  306. } // namespace ZeroTier
  307. #endif