CertificateOfMembership.hpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  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: 2023-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. friend class Credential;
  62. public:
  63. static ZT_ALWAYS_INLINE Credential::Type credentialType() { return Credential::CREDENTIAL_TYPE_COM; }
  64. /**
  65. * Reserved qualifier IDs
  66. *
  67. * IDs below 1024 are reserved for use as standard IDs. Others are available
  68. * for user-defined use.
  69. *
  70. * Addition of new required fields requires that code in hasRequiredFields
  71. * be updated as well.
  72. */
  73. enum ReservedId
  74. {
  75. /**
  76. * Timestamp of certificate
  77. */
  78. COM_RESERVED_ID_TIMESTAMP = 0,
  79. /**
  80. * Network ID for which certificate was issued
  81. */
  82. COM_RESERVED_ID_NETWORK_ID = 1,
  83. /**
  84. * ZeroTier address to whom certificate was issued
  85. */
  86. COM_RESERVED_ID_ISSUED_TO = 2
  87. };
  88. /**
  89. * Create an empty certificate of membership
  90. */
  91. ZT_ALWAYS_INLINE CertificateOfMembership() :
  92. _qualifierCount(0),
  93. _signatureLength(0) {}
  94. /**
  95. * Create from required fields common to all networks
  96. *
  97. * @param timestamp Timestamp of certificate
  98. * @param timestampMaxDelta Maximum variation between timestamps on this net
  99. * @param nwid Network ID
  100. * @param issuedTo Certificate recipient
  101. */
  102. ZT_ALWAYS_INLINE CertificateOfMembership(uint64_t timestamp,uint64_t timestampMaxDelta,uint64_t nwid,const Address &issuedTo)
  103. {
  104. _qualifiers[0].id = COM_RESERVED_ID_TIMESTAMP;
  105. _qualifiers[0].value = timestamp;
  106. _qualifiers[0].maxDelta = timestampMaxDelta;
  107. _qualifiers[1].id = COM_RESERVED_ID_NETWORK_ID;
  108. _qualifiers[1].value = nwid;
  109. _qualifiers[1].maxDelta = 0;
  110. _qualifiers[2].id = COM_RESERVED_ID_ISSUED_TO;
  111. _qualifiers[2].value = issuedTo.toInt();
  112. _qualifiers[2].maxDelta = 0xffffffffffffffffULL;
  113. _qualifierCount = 3;
  114. _signatureLength = 0;
  115. }
  116. /**
  117. * Create from binary-serialized COM in buffer
  118. *
  119. * @param b Buffer to deserialize from
  120. * @param startAt Position to start in buffer
  121. */
  122. template<unsigned int C>
  123. ZT_ALWAYS_INLINE CertificateOfMembership(const Buffer<C> &b,unsigned int startAt = 0) { deserialize(b,startAt); }
  124. /**
  125. * @return True if there's something here
  126. */
  127. ZT_ALWAYS_INLINE operator bool() const { return (_qualifierCount != 0); }
  128. /**
  129. * @return Credential ID, always 0 for COMs
  130. */
  131. ZT_ALWAYS_INLINE uint32_t id() const { return 0; }
  132. /**
  133. * @return Timestamp for this cert and maximum delta for timestamp
  134. */
  135. ZT_ALWAYS_INLINE int64_t timestamp() const
  136. {
  137. for(unsigned int i=0;i<_qualifierCount;++i) {
  138. if (_qualifiers[i].id == COM_RESERVED_ID_TIMESTAMP)
  139. return (int64_t)_qualifiers[i].value;
  140. }
  141. return 0;
  142. }
  143. /**
  144. * @return Address to which this cert was issued
  145. */
  146. ZT_ALWAYS_INLINE Address issuedTo() const
  147. {
  148. for(unsigned int i=0;i<_qualifierCount;++i) {
  149. if (_qualifiers[i].id == COM_RESERVED_ID_ISSUED_TO)
  150. return Address(_qualifiers[i].value);
  151. }
  152. return Address();
  153. }
  154. /**
  155. * @return Network ID for which this cert was issued
  156. */
  157. ZT_ALWAYS_INLINE uint64_t networkId() const
  158. {
  159. for(unsigned int i=0;i<_qualifierCount;++i) {
  160. if (_qualifiers[i].id == COM_RESERVED_ID_NETWORK_ID)
  161. return _qualifiers[i].value;
  162. }
  163. return 0ULL;
  164. }
  165. /**
  166. * Add or update a qualifier in this certificate
  167. *
  168. * Any signature is invalidated and signedBy is set to null.
  169. *
  170. * @param id Qualifier ID
  171. * @param value Qualifier value
  172. * @param maxDelta Qualifier maximum allowed difference (absolute value of difference)
  173. */
  174. inline void setQualifier(uint64_t id,uint64_t value,uint64_t maxDelta)
  175. {
  176. _signedBy.zero();
  177. for(unsigned int i=0;i<_qualifierCount;++i) {
  178. if (_qualifiers[i].id == id) {
  179. _qualifiers[i].value = value;
  180. _qualifiers[i].maxDelta = maxDelta;
  181. return;
  182. }
  183. }
  184. if (_qualifierCount < ZT_NETWORK_COM_MAX_QUALIFIERS) {
  185. _qualifiers[_qualifierCount].id = id;
  186. _qualifiers[_qualifierCount].value = value;
  187. _qualifiers[_qualifierCount].maxDelta = maxDelta;
  188. ++_qualifierCount;
  189. std::sort(&(_qualifiers[0]),&(_qualifiers[_qualifierCount]));
  190. }
  191. }
  192. ZT_ALWAYS_INLINE void setQualifier(ReservedId id,uint64_t value,uint64_t maxDelta) { setQualifier((uint64_t)id,value,maxDelta); }
  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. inline bool agreesWith(const CertificateOfMembership &other) const
  207. {
  208. unsigned int myidx = 0;
  209. unsigned int otheridx = 0;
  210. if ((_qualifierCount == 0)||(other._qualifierCount == 0))
  211. return false;
  212. while (myidx < _qualifierCount) {
  213. // Fail if we're at the end of other, since this means the field is
  214. // missing.
  215. if (otheridx >= other._qualifierCount)
  216. return false;
  217. // Seek to corresponding tuple in other, ignoring tuples that
  218. // we may not have. If we run off the end of other, the tuple is
  219. // missing. This works because tuples are sorted by ID.
  220. while (other._qualifiers[otheridx].id != _qualifiers[myidx].id) {
  221. ++otheridx;
  222. if (otheridx >= other._qualifierCount)
  223. return false;
  224. }
  225. // Compare to determine if the absolute value of the difference
  226. // between these two parameters is within our maxDelta.
  227. const uint64_t a = _qualifiers[myidx].value;
  228. const uint64_t b = other._qualifiers[myidx].value;
  229. if (((a >= b) ? (a - b) : (b - a)) > _qualifiers[myidx].maxDelta)
  230. return false;
  231. ++myidx;
  232. }
  233. return true;
  234. }
  235. /**
  236. * Sign this certificate
  237. *
  238. * @param with Identity to sign with, must include private key
  239. * @return True if signature was successful
  240. */
  241. inline bool sign(const Identity &with)
  242. {
  243. uint64_t buf[ZT_NETWORK_COM_MAX_QUALIFIERS * 3];
  244. unsigned int ptr = 0;
  245. for(unsigned int i=0;i<_qualifierCount;++i) {
  246. buf[ptr++] = Utils::hton(_qualifiers[i].id);
  247. buf[ptr++] = Utils::hton(_qualifiers[i].value);
  248. buf[ptr++] = Utils::hton(_qualifiers[i].maxDelta);
  249. }
  250. try {
  251. _signatureLength = with.sign(buf,ptr * sizeof(uint64_t),_signature,sizeof(_signature));
  252. _signedBy = with.address();
  253. return true;
  254. } catch ( ... ) {
  255. _signedBy.zero();
  256. return false;
  257. }
  258. }
  259. /**
  260. * Verify this COM and its signature
  261. *
  262. * @param RR Runtime environment for looking up peers
  263. * @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
  264. */
  265. ZT_ALWAYS_INLINE Credential::VerifyResult verify(const RuntimeEnvironment *RR,void *tPtr) const { return _verify(RR,tPtr,*this); }
  266. /**
  267. * @return True if signed
  268. */
  269. ZT_ALWAYS_INLINE bool isSigned() const { return (_signedBy); }
  270. /**
  271. * @return Address that signed this certificate or null address if none
  272. */
  273. ZT_ALWAYS_INLINE const Address &signedBy() const { return _signedBy; }
  274. template<unsigned int C>
  275. inline void serialize(Buffer<C> &b) const
  276. {
  277. b.append((uint8_t)1);
  278. b.append((uint16_t)_qualifierCount);
  279. for(unsigned int i=0;i<_qualifierCount;++i) {
  280. b.append(_qualifiers[i].id);
  281. b.append(_qualifiers[i].value);
  282. b.append(_qualifiers[i].maxDelta);
  283. }
  284. _signedBy.appendTo(b);
  285. if ((_signedBy)&&(_signatureLength == 96)) {
  286. // UGLY: Ed25519 signatures in ZT are 96 bytes (64 + 32 bytes of hash).
  287. // P-384 signatures are also 96 bytes, praise the horned one. That means
  288. // we don't need to include a length. If we ever do we will need a new
  289. // serialized object version, but only for those with length != 96.
  290. b.append(_signature,96);
  291. }
  292. }
  293. template<unsigned int C>
  294. inline unsigned int deserialize(const Buffer<C> &b,unsigned int startAt = 0)
  295. {
  296. unsigned int p = startAt;
  297. _signedBy.zero();
  298. _qualifierCount = 0;
  299. _signatureLength = 0;
  300. if (b[p++] != 1)
  301. throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_TYPE;
  302. unsigned int numq = b.template at<uint16_t>(p); p += sizeof(uint16_t);
  303. uint64_t lastId = 0;
  304. for(unsigned int i=0;i<numq;++i) {
  305. const uint64_t qid = b.template at<uint64_t>(p);
  306. if (qid < lastId)
  307. throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_BAD_ENCODING;
  308. else lastId = qid;
  309. if (_qualifierCount < ZT_NETWORK_COM_MAX_QUALIFIERS) {
  310. _qualifiers[_qualifierCount].id = qid;
  311. _qualifiers[_qualifierCount].value = b.template at<uint64_t>(p + 8);
  312. _qualifiers[_qualifierCount].maxDelta = b.template at<uint64_t>(p + 16);
  313. p += 24;
  314. ++_qualifierCount;
  315. } else {
  316. throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_OVERFLOW;
  317. }
  318. }
  319. _signedBy.setTo(b.field(p,ZT_ADDRESS_LENGTH),ZT_ADDRESS_LENGTH);
  320. p += ZT_ADDRESS_LENGTH;
  321. if (_signedBy) {
  322. // See "UGLY" comment in serialize()...
  323. _signatureLength = 96;
  324. memcpy(_signature,b.field(p,96),96);
  325. p += 96;
  326. }
  327. return (p - startAt);
  328. }
  329. ZT_ALWAYS_INLINE bool operator==(const CertificateOfMembership &c) const
  330. {
  331. if (_signedBy != c._signedBy)
  332. return false;
  333. if (_qualifierCount != c._qualifierCount)
  334. return false;
  335. if (_signatureLength != c._signatureLength)
  336. return false;
  337. for(unsigned int i=0;i<_qualifierCount;++i) {
  338. const _Qualifier &a = _qualifiers[i];
  339. const _Qualifier &b = c._qualifiers[i];
  340. if ((a.id != b.id)||(a.value != b.value)||(a.maxDelta != b.maxDelta))
  341. return false;
  342. }
  343. return (memcmp(_signature,c._signature,_signatureLength) == 0);
  344. }
  345. ZT_ALWAYS_INLINE bool operator!=(const CertificateOfMembership &c) const { return (!(*this == c)); }
  346. private:
  347. struct _Qualifier
  348. {
  349. _Qualifier() : id(0),value(0),maxDelta(0) {}
  350. uint64_t id;
  351. uint64_t value;
  352. uint64_t maxDelta;
  353. inline bool operator<(const _Qualifier &q) const { return (id < q.id); } // sort order
  354. };
  355. Address _signedBy;
  356. _Qualifier _qualifiers[ZT_NETWORK_COM_MAX_QUALIFIERS];
  357. unsigned int _qualifierCount;
  358. unsigned int _signatureLength;
  359. uint8_t _signature[ZT_SIGNATURE_BUFFER_SIZE];
  360. };
  361. } // namespace ZeroTier
  362. #endif