mirror of
https://github.com/NAStools/zerotierone.git
synced 2024-11-13 17:10:35 -08:00
233 lines
7.6 KiB
C++
233 lines
7.6 KiB
C++
/*
|
|
* ZeroTier One - Network Virtualization Everywhere
|
|
* Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef ZT_WORLD_HPP
|
|
#define ZT_WORLD_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "Constants.hpp"
|
|
#include "InetAddress.hpp"
|
|
#include "Identity.hpp"
|
|
#include "Buffer.hpp"
|
|
#include "C25519.hpp"
|
|
|
|
/**
|
|
* Maximum number of roots (sanity limit, okay to increase)
|
|
*
|
|
* A given root can (through multi-homing) be distributed across any number of
|
|
* physical endpoints, but having more than one is good to permit total failure
|
|
* of one root or its withdrawal due to compromise without taking the whole net
|
|
* down.
|
|
*/
|
|
#define ZT_WORLD_MAX_ROOTS 4
|
|
|
|
/**
|
|
* Maximum number of stable endpoints per root (sanity limit, okay to increase)
|
|
*/
|
|
#define ZT_WORLD_MAX_STABLE_ENDPOINTS_PER_ROOT 32
|
|
|
|
/**
|
|
* The (more than) maximum length of a serialized World
|
|
*/
|
|
#define ZT_WORLD_MAX_SERIALIZED_LENGTH (((1024 + (32 * ZT_WORLD_MAX_STABLE_ENDPOINTS_PER_ROOT)) * ZT_WORLD_MAX_ROOTS) + ZT_C25519_PUBLIC_KEY_LEN + ZT_C25519_SIGNATURE_LEN + 128)
|
|
|
|
/**
|
|
* World ID indicating null / empty World object
|
|
*/
|
|
#define ZT_WORLD_ID_NULL 0
|
|
|
|
/**
|
|
* World ID for a test network with ephemeral or temporary roots
|
|
*/
|
|
#define ZT_WORLD_ID_TESTNET 1
|
|
|
|
/**
|
|
* World ID for Earth
|
|
*
|
|
* This is the ID for the ZeroTier World used on planet Earth. It is unrelated
|
|
* to the public network 8056c2e21c000001 of the same name. It was chosen
|
|
* from Earth's approximate distance from the sun in kilometers.
|
|
*/
|
|
#define ZT_WORLD_ID_EARTH 149604618
|
|
|
|
/**
|
|
* World ID for Mars -- for future use by SpaceX or others
|
|
*/
|
|
#define ZT_WORLD_ID_MARS 227883110
|
|
|
|
namespace ZeroTier {
|
|
|
|
/**
|
|
* A world definition (formerly known as a root topology)
|
|
*
|
|
* Think of a World as a single data center. Within this data center a set
|
|
* of distributed fault tolerant root servers provide stable anchor points
|
|
* for a peer to peer network that provides VLAN service. Updates to a world
|
|
* definition can be published by signing them with the previous revision's
|
|
* signing key, and should be very infrequent.
|
|
*
|
|
* The maximum data center size is approximately 2.5 cubic light seconds,
|
|
* since many protocols have issues with >5s RTT latencies.
|
|
*
|
|
* ZeroTier operates a World for Earth capable of encompassing the planet, its
|
|
* orbits, the Moon (about 1.3 light seconds), and nearby Lagrange points. A
|
|
* world ID for Mars and nearby space is defined but not yet used, and a test
|
|
* world ID is provided for testing purposes.
|
|
*
|
|
* If you absolutely must run your own "unofficial" ZeroTier network, please
|
|
* define your world IDs above 0xffffffff (4294967295). Code to make a World
|
|
* is in mkworld.cpp in the parent directory and must be edited to change
|
|
* settings.
|
|
*/
|
|
class World
|
|
{
|
|
public:
|
|
struct Root
|
|
{
|
|
Identity identity;
|
|
std::vector<InetAddress> stableEndpoints;
|
|
|
|
inline bool operator==(const Root &r) const throw() { return ((identity == r.identity)&&(stableEndpoints == r.stableEndpoints)); }
|
|
inline bool operator!=(const Root &r) const throw() { return (!(*this == r)); }
|
|
inline bool operator<(const Root &r) const throw() { return (identity < r.identity); } // for sorting
|
|
};
|
|
|
|
/**
|
|
* Construct an empty / null World
|
|
*/
|
|
World() :
|
|
_id(ZT_WORLD_ID_NULL),
|
|
_ts(0) {}
|
|
|
|
/**
|
|
* @return Root servers for this world and their stable endpoints
|
|
*/
|
|
inline const std::vector<World::Root> &roots() const throw() { return _roots; }
|
|
|
|
/**
|
|
* @return World unique identifier
|
|
*/
|
|
inline uint64_t id() const throw() { return _id; }
|
|
|
|
/**
|
|
* @return World definition timestamp
|
|
*/
|
|
inline uint64_t timestamp() const throw() { return _ts; }
|
|
|
|
/**
|
|
* Check whether a world update should replace this one
|
|
*
|
|
* A new world update is valid if it is for the same world ID, is newer,
|
|
* and is signed by the current world's signing key. If this world object
|
|
* is null, it can always be updated.
|
|
*
|
|
* @param update Candidate update
|
|
* @param fullSignatureCheck Perform full cryptographic signature check (true == yes, false == skip)
|
|
* @return True if update is newer than current and is properly signed
|
|
*/
|
|
inline bool shouldBeReplacedBy(const World &update,bool fullSignatureCheck)
|
|
{
|
|
if (_id == ZT_WORLD_ID_NULL)
|
|
return true;
|
|
if ((_id == update._id)&&(_ts < update._ts)) {
|
|
if (fullSignatureCheck) {
|
|
Buffer<ZT_WORLD_MAX_SERIALIZED_LENGTH> tmp;
|
|
update.serialize(tmp,true);
|
|
return C25519::verify(_updateSigningKey,tmp.data(),tmp.size(),update._signature);
|
|
} else return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return True if this World is non-empty
|
|
*/
|
|
inline operator bool() const throw() { return (_id != ZT_WORLD_ID_NULL); }
|
|
|
|
template<unsigned int C>
|
|
inline void serialize(Buffer<C> &b,bool forSign = false) const
|
|
{
|
|
if (forSign)
|
|
b.append((uint64_t)0x7f7f7f7f7f7f7f7fULL);
|
|
b.append((uint8_t)0x01); // version -- only one valid value for now
|
|
b.append((uint64_t)_id);
|
|
b.append((uint64_t)_ts);
|
|
b.append(_updateSigningKey.data,ZT_C25519_PUBLIC_KEY_LEN);
|
|
if (!forSign)
|
|
b.append(_signature.data,ZT_C25519_SIGNATURE_LEN);
|
|
b.append((uint8_t)_roots.size());
|
|
for(std::vector<Root>::const_iterator r(_roots.begin());r!=_roots.end();++r) {
|
|
r->identity.serialize(b);
|
|
b.append((uint8_t)r->stableEndpoints.size());
|
|
for(std::vector<InetAddress>::const_iterator ep(r->stableEndpoints.begin());ep!=r->stableEndpoints.end();++ep)
|
|
ep->serialize(b);
|
|
}
|
|
if (forSign)
|
|
b.append((uint64_t)0xf7f7f7f7f7f7f7f7ULL);
|
|
}
|
|
|
|
template<unsigned int C>
|
|
inline unsigned int deserialize(const Buffer<C> &b,unsigned int startAt = 0)
|
|
{
|
|
unsigned int p = startAt;
|
|
|
|
_roots.clear();
|
|
|
|
if (b[p++] != 0x01)
|
|
throw std::invalid_argument("invalid World serialized version");
|
|
|
|
_id = b.template at<uint64_t>(p); p += 8;
|
|
_ts = b.template at<uint64_t>(p); p += 8;
|
|
memcpy(_updateSigningKey.data,b.field(p,ZT_C25519_PUBLIC_KEY_LEN),ZT_C25519_PUBLIC_KEY_LEN); p += ZT_C25519_PUBLIC_KEY_LEN;
|
|
memcpy(_signature.data,b.field(p,ZT_C25519_SIGNATURE_LEN),ZT_C25519_SIGNATURE_LEN); p += ZT_C25519_SIGNATURE_LEN;
|
|
unsigned int numRoots = b[p++];
|
|
if (numRoots > ZT_WORLD_MAX_ROOTS)
|
|
throw std::invalid_argument("too many roots in World");
|
|
for(unsigned int k=0;k<numRoots;++k) {
|
|
_roots.push_back(Root());
|
|
Root &r = _roots.back();
|
|
p += r.identity.deserialize(b,p);
|
|
unsigned int numStableEndpoints = b[p++];
|
|
if (numStableEndpoints > ZT_WORLD_MAX_STABLE_ENDPOINTS_PER_ROOT)
|
|
throw std::invalid_argument("too many stable endpoints in World/Root");
|
|
for(unsigned int kk=0;kk<numStableEndpoints;++kk) {
|
|
r.stableEndpoints.push_back(InetAddress());
|
|
p += r.stableEndpoints.back().deserialize(b,p);
|
|
}
|
|
}
|
|
|
|
return (p - startAt);
|
|
}
|
|
|
|
inline bool operator==(const World &w) const throw() { return ((_id == w._id)&&(_ts == w._ts)&&(_updateSigningKey == w._updateSigningKey)&&(_signature == w._signature)&&(_roots == w._roots)); }
|
|
inline bool operator!=(const World &w) const throw() { return (!(*this == w)); }
|
|
|
|
protected:
|
|
uint64_t _id;
|
|
uint64_t _ts;
|
|
C25519::Public _updateSigningKey;
|
|
C25519::Signature _signature;
|
|
std::vector<Root> _roots;
|
|
};
|
|
|
|
} // namespace ZeroTier
|
|
|
|
#endif
|