123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- /*
- * Copyright (c)2013-2020 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: 2025-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_DICTIONARY_HPP
- #define ZT_DICTIONARY_HPP
- #include "Constants.hpp"
- #include "Utils.hpp"
- #include "Address.hpp"
- #include "Buf.hpp"
- #include "Containers.hpp"
- namespace ZeroTier {
- class Identity;
- /**
- * A simple key-value store for short keys
- *
- * This data structure is used for network configurations, node meta-data,
- * and other open-definition protocol objects.
- *
- * This is technically a binary encoding, but with delimiters chosen so that
- * it looks like a series of key=value lines of the keys and values are
- * human-readable strings.
- *
- * The fastest way to build a dictionary to send is to use the append
- * static functions, not to populate and then encode a Dictionary.
- */
- class Dictionary
- {
- public:
- typedef SortedMap< String, Vector< uint8_t > >::const_iterator const_iterator;
- Dictionary();
- ~Dictionary();
- /*
- ZT_INLINE void dump() const
- {
- printf("\n--\n");
- for (const_iterator e(begin()); e != end(); ++e) {
- printf("%.8x %s=", Utils::fnv1a32(e->second.data(), (unsigned int)e->second.size()), e->first.c_str());
- bool binary = false;
- for (Vector< uint8_t >::const_iterator c(e->second.begin()); c != e->second.end(); ++c) {
- if ((*c < 33) || (*c > 126)) {
- binary = true;
- break;
- }
- }
- if (binary) {
- for (Vector< uint8_t >::const_iterator c(e->second.begin()); c != e->second.end(); ++c)
- printf("%.2x", (unsigned int)*c);
- } else {
- Vector< uint8_t > s(e->second);
- s.push_back(0);
- printf("%s", s.data());
- }
- printf("\n");
- }
- printf("--\n");
- }
- */
- /**
- * Get a reference to a value
- *
- * @param k Key to look up
- * @return Reference to value
- */
- Vector< uint8_t > &operator[](const char *k);
- /**
- * Get a const reference to a value
- *
- * @param k Key to look up
- * @return Reference to value or to empty vector if not found
- */
- const Vector< uint8_t > &operator[](const char *k) const;
- /**
- * @return Start of key->value pairs
- */
- ZT_INLINE const_iterator begin() const noexcept
- { return m_entries.begin(); }
- /**
- * @return End of key->value pairs
- */
- ZT_INLINE const_iterator end() const noexcept
- { return m_entries.end(); }
- /**
- * Add an integer as a hexadecimal string value
- *
- * @param k Key to set
- * @param v Integer to set, will be cast to uint64_t and stored as hex
- */
- ZT_INLINE void add(const char *const k, const uint64_t v)
- {
- char buf[24];
- add(k, Utils::hex((uint64_t)(v), buf));
- }
- /**
- * Add an integer as a hexadecimal string value
- *
- * @param k Key to set
- * @param v Integer to set, will be cast to uint64_t and stored as hex
- */
- ZT_INLINE void add(const char *const k, const int64_t v)
- {
- char buf[24];
- add(k, Utils::hex((uint64_t)(v), buf));
- }
- /**
- * Add an address in 10-digit hex string format
- */
- void add(const char *k, const Address &v);
- /**
- * Add a C string as a value
- */
- void add(const char *k, const char *v);
- /**
- * Add a binary blob as a value
- */
- void add(const char *k, const void *data, unsigned int len);
- /**
- * Get an integer
- *
- * @param k Key to look up
- * @param dfl Default value (default: 0)
- * @return Value of key or default if not found
- */
- uint64_t getUI(const char *k, uint64_t dfl = 0) const;
- /**
- * Get a C string
- *
- * If the buffer is too small the string will be truncated, but the
- * buffer will always end in a terminating null no matter what.
- *
- * @param k Key to look up
- * @param v Buffer to hold string
- * @param cap Maximum size of string (including terminating null)
- */
- char *getS(const char *k, char *v, unsigned int cap) const;
- /**
- * Get an object supporting the marshal/unmarshal interface pattern
- *
- * @tparam T Object type (inferred)
- * @param k Key to look up
- * @param obj Object to unmarshal() into
- * @return True if unmarshal was successful
- */
- template< typename T >
- ZT_INLINE bool getO(const char *k, T &obj) const
- {
- const Vector< uint8_t > &d = (*this)[k];
- if (d.empty())
- return false;
- return (obj.unmarshal(d.data(), (unsigned int)d.size()) > 0);
- }
- /**
- * Add an object supporting the marshal/unmarshal interface pattern
- *
- * @tparam T Object type (inferred)
- * @param k Key to add
- * @param obj Object to marshal() into vector
- * @return True if successful
- */
- template< typename T >
- ZT_INLINE bool addO(const char *k, T &obj)
- {
- Vector< uint8_t > &d = (*this)[k];
- d.resize(T::marshalSizeMax());
- const int l = obj.marshal(d.data());
- if (l > 0) {
- d.resize(l);
- return true;
- }
- d.clear();
- return false;
- }
- /**
- * Erase all entries in dictionary
- */
- void clear();
- /**
- * @return Number of entries
- */
- ZT_INLINE unsigned int size() const noexcept
- { return (unsigned int)m_entries.size(); }
- /**
- * @return True if dictionary is not empty
- */
- ZT_INLINE bool empty() const noexcept
- { return m_entries.empty(); }
- /**
- * Encode to a string in the supplied vector
- *
- * @param out String encoded dictionary
- */
- void encode(Vector< uint8_t > &out) const;
- /**
- * Decode a string encoded dictionary
- *
- * This will decode up to 'len' but will also abort if it finds a
- * null/zero as this could be a C string.
- *
- * @param data Data to decode
- * @param len Length of data
- * @return True if dictionary was formatted correctly and valid, false on error
- */
- bool decode(const void *data, unsigned int len);
- /**
- * Append a key=value pair to a buffer (vector or FCV)
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param v Value
- */
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const bool v)
- {
- s_appendKey(out, k);
- out.push_back((uint8_t)(v ? '1' : '0'));
- out.push_back((uint8_t)'\n');
- }
- /**
- * Append a key=value pair to a buffer (vector or FCV)
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param v Value
- */
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const Address v)
- {
- s_appendKey(out, k);
- const uint64_t a = v.toInt();
- static_assert(ZT_ADDRESS_LENGTH_HEX == 10, "this must be rewritten for any change in address length");
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 36U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 32U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 28U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 24U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 20U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 16U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 12U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 8U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[(a >> 4U) & 0xfU]);
- out.push_back((uint8_t)Utils::HEXCHARS[a & 0xfU]);
- out.push_back((uint8_t)'\n');
- }
- /**
- * Append a key=value pair to a buffer (vector or FCV)
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param v Value
- */
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const uint64_t v)
- {
- s_appendKey(out, k);
- char buf[17];
- Utils::hex(v, buf);
- unsigned int i = 0;
- while (buf[i])
- out.push_back((uint8_t)buf[i++]);
- out.push_back((uint8_t)'\n');
- }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const int64_t v)
- { append(out, k, (uint64_t)v); }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const uint32_t v)
- { append(out, k, (uint64_t)v); }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const int32_t v)
- { append(out, k, (uint64_t)v); }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const uint16_t v)
- { append(out, k, (uint64_t)v); }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const int16_t v)
- { append(out, k, (uint64_t)v); }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const uint8_t v)
- { append(out, k, (uint64_t)v); }
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const int8_t v)
- { append(out, k, (uint64_t)v); }
- /**
- * Append a key=value pair to a buffer (vector or FCV)
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param v Value
- */
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const char *v)
- {
- if ((v) && (*v)) {
- s_appendKey(out, k);
- while (*v)
- s_appendValueByte(out, (uint8_t)*(v++));
- out.push_back((uint8_t)'\n');
- }
- }
- /**
- * Append a key=value pair to a buffer (vector or FCV)
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param v Value
- * @param vlen Value length in bytes
- */
- template< typename V >
- ZT_INLINE static void append(V &out, const char *const k, const void *const v, const unsigned int vlen)
- {
- s_appendKey(out, k);
- for (unsigned int i = 0; i < vlen; ++i)
- s_appendValueByte(out, reinterpret_cast<const uint8_t *>(v)[i]);
- out.push_back((uint8_t)'\n');
- }
- /**
- * Append a packet ID as raw bytes in the provided byte order
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param pid Packet ID
- */
- template< typename V >
- static ZT_INLINE void appendPacketId(V &out, const char *const k, const uint64_t pid)
- { append(out, k, &pid, 8); }
- /**
- * Append key=value with any object implementing the correct marshal interface
- *
- * @param out Buffer
- * @param k Key (must be <= 8 characters)
- * @param v Marshal-able object
- * @return Bytes appended or negative on error (return value of marshal())
- */
- template< typename V, typename T >
- static ZT_INLINE int appendObject(V &out, const char *const k, const T &v)
- {
- uint8_t tmp[2048]; // large enough for any current object
- if (T::marshalSizeMax() > sizeof(tmp))
- return -1;
- const int mlen = v.marshal(tmp);
- if (mlen > 0)
- append(out, k, tmp, (unsigned int)mlen);
- return mlen;
- }
- /**
- * Append #sub where sub is a hexadecimal string to 'name' and store in 'buf'
- *
- * @param buf Buffer to store subscript key
- * @param name Root name
- * @param sub Subscript index
- * @return Pointer to 'buf'
- */
- static char *arraySubscript(char *buf, unsigned int bufSize, const char *name, const unsigned long sub) noexcept;
- private:
- template< typename V >
- ZT_INLINE static void s_appendValueByte(V &out, const uint8_t c)
- {
- switch (c) {
- case 0:
- out.push_back(92);
- out.push_back(48);
- break;
- case 10:
- out.push_back(92);
- out.push_back(110);
- break;
- case 13:
- out.push_back(92);
- out.push_back(114);
- break;
- case 61:
- out.push_back(92);
- out.push_back(101);
- break;
- case 92:
- out.push_back(92);
- out.push_back(92);
- break;
- default:
- out.push_back(c);
- break;
- }
- }
- template< typename V >
- ZT_INLINE static void s_appendKey(V &out, const char *k)
- {
- for (;;) {
- const char c = *(k++);
- if (c == 0)
- break;
- out.push_back((uint8_t)c);
- }
- out.push_back((uint8_t)'=');
- }
- // Dictionary maps need to be sorted so that they always encode in the same order
- // to yield blobs that can be hashed and signed reproducibly. Other than for areas
- // where dictionaries are signed and verified the order doesn't matter.
- SortedMap< String, Vector< uint8_t > > m_entries;
- };
- } // namespace ZeroTier
- #endif
|