123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- /*
- * Copyright (c)2019 ZeroTier, Inc.
- *
- * Use of this software is governed by the Business Source License included
- * in the LICENSE.TXT file in the project's root directory.
- *
- * Change Date: 2023-01-01
- *
- * 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.
- */
- /****/
- #ifndef ZT_IDENTITY_HPP
- #define ZT_IDENTITY_HPP
- #include <stdio.h>
- #include <stdlib.h>
- #include "Constants.hpp"
- #include "Utils.hpp"
- #include "Address.hpp"
- #include "C25519.hpp"
- #include "Buffer.hpp"
- #include "SHA512.hpp"
- #include "ECC384.hpp"
- #define ZT_IDENTITY_STRING_BUFFER_LENGTH 512
- namespace ZeroTier {
- /**
- * A ZeroTier identity
- *
- * An identity consists of a public key, a 40-bit ZeroTier address computed
- * from that key in a collision-resistant fashion, and a self-signature.
- *
- * The address derivation algorithm makes it computationally very expensive to
- * search for a different public key that duplicates an existing address. (See
- * code for deriveAddress() for this algorithm.)
- */
- class Identity
- {
- public:
- /**
- * Identity type -- numeric values of these enums are protocol constants
- */
- enum Type
- {
- C25519 = ZT_CRYPTO_ALG_C25519, // Type 0 -- Curve25519 and Ed25519 (1.x and 2.x, default)
- P384 = ZT_CRYPTO_ALG_P384 // Type 1 -- NIST P-384 with linked Curve25519 and Ed25519 secondaries (2.x+)
- };
- ZT_ALWAYS_INLINE Identity() { memset(reinterpret_cast<void *>(this),0,sizeof(Identity)); }
- ZT_ALWAYS_INLINE Identity(const Identity &id) { memcpy(reinterpret_cast<void *>(this),&id,sizeof(Identity)); }
- inline Identity(const char *str)
- {
- if (!fromString(str))
- throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_TYPE;
- }
- template<unsigned int C>
- inline Identity(const Buffer<C> &b,unsigned int startAt = 0) { deserialize(b,startAt); }
- ZT_ALWAYS_INLINE ~Identity() { Utils::burn(reinterpret_cast<void *>(this),sizeof(Identity)); }
- /**
- * Set identity to NIL value (all zero)
- */
- ZT_ALWAYS_INLINE void zero() { Utils::burn(reinterpret_cast<void *>(this),sizeof(Identity)); }
- ZT_ALWAYS_INLINE Identity &operator=(const Identity &id)
- {
- memcpy(reinterpret_cast<void *>(this),&id,sizeof(Identity));
- return *this;
- }
- /**
- * @return Identity type
- */
- ZT_ALWAYS_INLINE Type type() const { return _type; }
- /**
- * Generate a new identity (address, key pair)
- *
- * This is a time consuming operation.
- *
- * @param t Type of identity to generate
- */
- void generate(const Type t);
- /**
- * Check the validity of this identity's pairing of key to address
- *
- * @return True if validation check passes
- */
- bool locallyValidate() const;
- /**
- * @return True if this identity contains a private key
- */
- ZT_ALWAYS_INLINE bool hasPrivate() const { return _hasPrivate; }
- /**
- * Compute the SHA512 hash of our private key (if we have one)
- *
- * @param sha Buffer to receive SHA512 (MUST be ZT_SHA512_DIGEST_LEN (64) bytes in length)
- * @return True on success, false if no private key
- */
- inline bool sha512PrivateKey(void *const sha) const
- {
- if (_hasPrivate) {
- switch(_type) {
- case C25519:
- SHA512(sha,_priv.c25519,ZT_C25519_PRIVATE_KEY_LEN);
- return true;
- case P384:
- SHA512(sha,&_priv,ZT_C25519_PRIVATE_KEY_LEN + ZT_ECC384_PRIVATE_KEY_SIZE);
- return true;
- }
- }
- return false;
- }
- /**
- * Compute a 128-bit short hash of this identity's public key
- *
- * This is the first 128 bits of a SHA384 hash and is the hash used
- * in VERB_WILL_RELAY to report reachability.
- *
- * @param h 128-bit buffer to receive hash (must be 16 bytes in size)
- */
- inline void publicKeyHash128(void *const h) const
- {
- uint8_t tmp[48];
- switch(_type) {
- case C25519:
- SHA384(tmp,_pub.c25519,ZT_C25519_PUBLIC_KEY_LEN);
- break;
- case P384:
- SHA384(tmp,&_pub,ZT_C25519_PUBLIC_KEY_LEN + ZT_ECC384_PUBLIC_KEY_SIZE);
- break;
- }
- for(int i=0;i<16;++i)
- ((uint8_t *)h)[i] = tmp[i];
- }
- /**
- * Sign a message with this identity (private key required)
- *
- * The signature buffer should be large enough for the largest
- * signature, which is currently 96 bytes.
- *
- * @param data Data to sign
- * @param len Length of data
- * @param sig Buffer to receive signature
- * @param siglen Length of buffer
- * @return Number of bytes actually written to sig or 0 on error
- */
- inline unsigned int sign(const void *data,unsigned int len,void *sig,unsigned int siglen) const
- {
- if (_hasPrivate) {
- switch(_type) {
- case C25519:
- if (siglen >= ZT_C25519_SIGNATURE_LEN) {
- C25519::sign(_priv.c25519,_pub.c25519,data,len,sig);
- return ZT_C25519_SIGNATURE_LEN;
- }
- case P384:
- if (siglen >= ZT_ECC384_SIGNATURE_SIZE) {
- // Signature is a hash of the message followed by the c25519/ed25519 type 0
- // identity public keys to ensure that the two public keys are not separable.
- uint8_t h[48];
- SHA384(h,data,len,_pub.c25519,ZT_C25519_PUBLIC_KEY_LEN);
- ECC384ECDSASign(_priv.p384,h,(uint8_t *)sig);
- return ZT_ECC384_SIGNATURE_SIZE;
- }
- }
- }
- return 0;
- }
- /**
- * Verify a message signature against this identity
- *
- * @param data Data to check
- * @param len Length of data
- * @param signature Signature bytes
- * @param siglen Length of signature in bytes
- * @return True if signature validates and data integrity checks
- */
- inline bool verify(const void *data,unsigned int len,const void *sig,unsigned int siglen) const
- {
- switch(_type) {
- case C25519:
- return C25519::verify(_pub.c25519,data,len,sig,siglen);
- case P384:
- if (siglen == ZT_ECC384_SIGNATURE_SIZE) {
- uint8_t h[48];
- SHA384(h,data,len,_pub.c25519,ZT_C25519_PUBLIC_KEY_LEN);
- return ECC384ECDSAVerify(_pub.p384,h,(const uint8_t *)sig);
- }
- break;
- }
- return false;
- }
- /**
- * Shortcut method to perform key agreement with another identity
- *
- * This identity must have a private key. (Check hasPrivate())
- *
- * @param id Identity to agree with
- * @param key Result parameter to fill with key bytes
- * @return Was agreement successful?
- */
- inline bool agree(const Identity &id,uint8_t key[ZT_PEER_SECRET_KEY_LENGTH]) const
- {
- uint8_t rawkey[128];
- uint8_t h[64];
- if (_hasPrivate) {
- if (_type == C25519) {
- if ((id._type == C25519)||(id._type == P384)) {
- // If we are a C25519 key we can agree with another C25519 key or with only the
- // C25519 portion of a type 1 P-384 key.
- C25519::agree(_priv.c25519,id._pub.c25519,rawkey);
- SHA512(h,rawkey,ZT_C25519_SHARED_KEY_LEN);
- memcpy(key,h,ZT_PEER_SECRET_KEY_LENGTH);
- return true;
- }
- } else if (_type == P384) {
- if (id._type == P384) {
- // Perform key agreement over both curves for the same reason that C25519 public
- // keys are included in P-384 signature inputs: to bind the keys together so
- // that a type 1 identity with the same C25519 public key (and therefore address)
- // but a different P-384 key will not work.
- C25519::agree(_priv.c25519,id._pub.c25519,rawkey);
- ECC384ECDH(id._pub.p384,_priv.p384,rawkey + ZT_C25519_SHARED_KEY_LEN);
- SHA384(h,rawkey,ZT_C25519_SHARED_KEY_LEN + ZT_ECC384_SHARED_SECRET_SIZE);
- memcpy(key,h,ZT_PEER_SECRET_KEY_LENGTH);
- return true;
- } else if (id._type == C25519) {
- // If the other identity is a C25519 identity we can agree using only that type.
- C25519::agree(_priv.c25519,id._pub.c25519,rawkey);
- SHA512(h,rawkey,ZT_C25519_SHARED_KEY_LEN);
- memcpy(key,h,ZT_PEER_SECRET_KEY_LENGTH);
- return true;
- }
- }
- }
- return false;
- }
- /**
- * @return This identity's address
- */
- ZT_ALWAYS_INLINE const Address &address() const { return _address; }
- /**
- * Serialize this identity (binary)
- *
- * @param b Destination buffer to append to
- * @param includePrivate If true, include private key component (if present) (default: false)
- * @throws std::out_of_range Buffer too small
- */
- template<unsigned int C>
- inline void serialize(Buffer<C> &b,bool includePrivate = false) const
- {
- _address.appendTo(b);
- switch(_type) {
- case C25519:
- b.append((uint8_t)C25519);
- b.append(_pub.c25519,ZT_C25519_PUBLIC_KEY_LEN);
- if ((_hasPrivate)&&(includePrivate)) {
- b.append((uint8_t)ZT_C25519_PRIVATE_KEY_LEN);
- b.append(_priv.c25519,ZT_C25519_PRIVATE_KEY_LEN);
- } else {
- b.append((uint8_t)0);
- }
- break;
- case P384:
- b.append((uint8_t)P384);
- b.append(_pub.c25519,ZT_C25519_PUBLIC_KEY_LEN);
- b.append(_pub.p384,ZT_ECC384_PUBLIC_KEY_SIZE);
- if ((_hasPrivate)&&(includePrivate)) {
- b.append((uint8_t)(ZT_C25519_PRIVATE_KEY_LEN + ZT_ECC384_PRIVATE_KEY_SIZE));
- b.append(_priv.c25519,ZT_C25519_PRIVATE_KEY_LEN);
- b.append(_priv.p384,ZT_ECC384_PRIVATE_KEY_SIZE);
- } else {
- b.append((uint8_t)0);
- }
- break;
- }
- }
- /**
- * Deserialize a binary serialized identity
- *
- * If an exception is thrown, the Identity object is left in an undefined
- * state and should not be used.
- *
- * @param b Buffer containing serialized data
- * @param startAt Index within buffer of serialized data (default: 0)
- * @return Length of serialized data read from buffer
- * @throws std::out_of_range Serialized data invalid
- * @throws std::invalid_argument Serialized data invalid
- */
- template<unsigned int C>
- inline unsigned int deserialize(const Buffer<C> &b,unsigned int startAt = 0)
- {
- _hasPrivate = false;
- unsigned int p = startAt;
- unsigned int pkl;
- _address.setTo(b.field(p,ZT_ADDRESS_LENGTH),ZT_ADDRESS_LENGTH);
- p += ZT_ADDRESS_LENGTH;
- switch((_type = (Type)b[p++])) {
- case C25519:
- memcpy(_pub.c25519,b.field(p,ZT_C25519_PUBLIC_KEY_LEN),ZT_C25519_PUBLIC_KEY_LEN);
- p += ZT_C25519_PUBLIC_KEY_LEN;
- pkl = (unsigned int)b[p++];
- if (pkl) {
- if (pkl != ZT_C25519_PRIVATE_KEY_LEN)
- throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_CRYPTOGRAPHIC_TOKEN;
- _hasPrivate = true;
- memcpy(_priv.c25519,b.field(p,ZT_C25519_PRIVATE_KEY_LEN),ZT_C25519_PRIVATE_KEY_LEN);
- p += ZT_C25519_PRIVATE_KEY_LEN;
- } else {
- _hasPrivate = false;
- }
- break;
- case P384:
- memcpy(_pub.c25519,b.field(p,ZT_C25519_PUBLIC_KEY_LEN),ZT_C25519_PUBLIC_KEY_LEN);
- p += ZT_C25519_PUBLIC_KEY_LEN;
- memcpy(_pub.p384,b.field(p,ZT_ECC384_PUBLIC_KEY_SIZE),ZT_ECC384_PUBLIC_KEY_SIZE);
- p += ZT_ECC384_PUBLIC_KEY_SIZE;
- pkl = (unsigned int)b[p++];
- if (pkl) {
- if (pkl != (ZT_C25519_PRIVATE_KEY_LEN + ZT_ECC384_PRIVATE_KEY_SIZE))
- throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_CRYPTOGRAPHIC_TOKEN;
- _hasPrivate = true;
- memcpy(_priv.c25519,b.field(p,ZT_C25519_PRIVATE_KEY_LEN),ZT_C25519_PRIVATE_KEY_LEN);
- p += ZT_C25519_PRIVATE_KEY_LEN;
- memcpy(_priv.p384,b.field(p,ZT_ECC384_PRIVATE_KEY_SIZE),ZT_ECC384_PRIVATE_KEY_SIZE);
- p += ZT_ECC384_PRIVATE_KEY_SIZE;
- } else {
- _hasPrivate = false;
- }
- break;
- default:
- throw ZT_EXCEPTION_INVALID_SERIALIZED_DATA_INVALID_TYPE;
- }
- return (p - startAt);
- }
- /**
- * Serialize to a more human-friendly string
- *
- * @param includePrivate If true, include private key (if it exists)
- * @param buf Buffer to store string
- * @return ASCII string representation of identity
- */
- char *toString(bool includePrivate,char buf[ZT_IDENTITY_STRING_BUFFER_LENGTH]) const;
- /**
- * Deserialize a human-friendly string
- *
- * Note: validation is for the format only. The locallyValidate() method
- * must be used to check signature and address/key correspondence.
- *
- * @param str String to deserialize
- * @return True if deserialization appears successful
- */
- bool fromString(const char *str);
- /**
- * @return True if this identity contains something
- */
- ZT_ALWAYS_INLINE operator bool() const { return (_address); }
- inline bool operator==(const Identity &id) const
- {
- if ((_address == id._address)&&(_type == id._type)) {
- switch(_type) {
- case C25519:
- return (memcmp(_pub.c25519,id._pub.c25519,ZT_C25519_PUBLIC_KEY_LEN) == 0);
- case P384:
- return (memcmp(&_pub,&id._pub,ZT_C25519_PUBLIC_KEY_LEN + ZT_ECC384_PUBLIC_KEY_SIZE) == 0);
- default:
- return false;
- }
- }
- return false;
- }
- inline bool operator<(const Identity &id) const
- {
- if (_address < id._address)
- return true;
- if (_address == id._address) {
- if ((int)_type < (int)id._type)
- return true;
- if (_type == id._type) {
- switch(_type) {
- case C25519:
- return (memcmp(_pub.c25519,id._pub.c25519,ZT_C25519_PUBLIC_KEY_LEN) < 0);
- case P384:
- return (memcmp(&_pub,&id._pub,ZT_C25519_PUBLIC_KEY_LEN + ZT_ECC384_PUBLIC_KEY_SIZE) < 0);
- }
- }
- }
- return false;
- }
- ZT_ALWAYS_INLINE bool operator!=(const Identity &id) const { return !(*this == id); }
- ZT_ALWAYS_INLINE bool operator>(const Identity &id) const { return (id < *this); }
- ZT_ALWAYS_INLINE bool operator<=(const Identity &id) const { return !(id < *this); }
- ZT_ALWAYS_INLINE bool operator>=(const Identity &id) const { return !(*this < id); }
- ZT_ALWAYS_INLINE unsigned long hashCode() const { return ((unsigned long)(_address.toInt() << 8) + (unsigned long)_pub.c25519[0] + (unsigned long)_pub.c25519[1] + (unsigned long)_pub.c25519[2]); }
- private:
- Address _address;
- Type _type;
- bool _hasPrivate;
- ZT_PACKED_STRUCT(struct { // don't re-order these
- uint8_t c25519[ZT_C25519_PRIVATE_KEY_LEN];
- uint8_t p384[ZT_ECC384_PRIVATE_KEY_SIZE];
- }) _priv;
- ZT_PACKED_STRUCT(struct { // don't re-order these
- uint8_t c25519[ZT_C25519_PUBLIC_KEY_LEN];
- uint8_t p384[ZT_ECC384_PUBLIC_KEY_SIZE];
- }) _pub;
- };
- } // namespace ZeroTier
- #endif
|