2017-11-07 22:44:46 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
2019-01-14 18:25:53 +00:00
|
|
|
* Copyright (C) 2011-2019 ZeroTier, Inc. https://www.zerotier.com/
|
2017-11-07 22:44:46 +00:00
|
|
|
*
|
|
|
|
* 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
|
2019-01-14 18:25:53 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* You can be released from the requirements of the license by purchasing
|
|
|
|
* a commercial license. Buying such a license is mandatory as soon as you
|
|
|
|
* develop commercial closed-source software that incorporates or links
|
|
|
|
* directly against ZeroTier software without disclosing the source code
|
|
|
|
* of your own application.
|
2017-11-07 22:44:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZT_CONTROLLER_DB_HPP
|
|
|
|
#define ZT_CONTROLLER_DB_HPP
|
|
|
|
|
|
|
|
#include "../node/Constants.hpp"
|
2017-12-07 21:39:25 +00:00
|
|
|
#include "../node/Identity.hpp"
|
2017-11-07 22:44:46 +00:00
|
|
|
#include "../node/InetAddress.hpp"
|
|
|
|
#include "../osdep/OSUtils.hpp"
|
|
|
|
#include "../osdep/BlockingQueue.hpp"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <vector>
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
#include "../ext/json/json.hpp"
|
|
|
|
|
|
|
|
namespace ZeroTier
|
|
|
|
{
|
|
|
|
|
|
|
|
class EmbeddedNetworkController;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class with common infrastructure for all controller DB implementations
|
|
|
|
*/
|
|
|
|
class DB
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct NetworkSummaryInfo
|
|
|
|
{
|
|
|
|
NetworkSummaryInfo() : authorizedMemberCount(0),totalMemberCount(0),mostRecentDeauthTime(0) {}
|
|
|
|
std::vector<Address> activeBridges;
|
|
|
|
std::vector<InetAddress> allocatedIps;
|
|
|
|
unsigned long authorizedMemberCount;
|
|
|
|
unsigned long totalMemberCount;
|
|
|
|
int64_t mostRecentDeauthTime;
|
|
|
|
};
|
|
|
|
|
2018-01-09 20:39:25 +00:00
|
|
|
/**
|
|
|
|
* Ensure that all network fields are present
|
|
|
|
*/
|
|
|
|
static void initNetwork(nlohmann::json &network);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure that all member fields are present
|
|
|
|
*/
|
|
|
|
static void initMember(nlohmann::json &member);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove old and temporary network fields
|
|
|
|
*/
|
|
|
|
static void cleanNetwork(nlohmann::json &network);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove old and temporary member fields
|
|
|
|
*/
|
|
|
|
static void cleanMember(nlohmann::json &member);
|
|
|
|
|
2017-12-07 21:39:25 +00:00
|
|
|
DB(EmbeddedNetworkController *const nc,const Identity &myId,const char *path);
|
2017-11-07 22:44:46 +00:00
|
|
|
virtual ~DB();
|
|
|
|
|
|
|
|
virtual bool waitForReady() = 0;
|
2018-07-11 17:42:31 +00:00
|
|
|
virtual bool isReady() = 0;
|
2017-11-07 22:44:46 +00:00
|
|
|
|
|
|
|
inline bool hasNetwork(const uint64_t networkId) const
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> l(_networks_l);
|
|
|
|
return (_networks.find(networkId) != _networks.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get(const uint64_t networkId,nlohmann::json &network);
|
|
|
|
bool get(const uint64_t networkId,nlohmann::json &network,const uint64_t memberId,nlohmann::json &member);
|
|
|
|
bool get(const uint64_t networkId,nlohmann::json &network,const uint64_t memberId,nlohmann::json &member,NetworkSummaryInfo &info);
|
|
|
|
bool get(const uint64_t networkId,nlohmann::json &network,std::vector<nlohmann::json> &members);
|
|
|
|
|
|
|
|
bool summary(const uint64_t networkId,NetworkSummaryInfo &info);
|
|
|
|
|
|
|
|
void networks(std::vector<uint64_t> &networks);
|
|
|
|
|
2017-11-08 19:06:14 +00:00
|
|
|
virtual void save(nlohmann::json *orig,nlohmann::json &record) = 0;
|
2017-11-07 22:44:46 +00:00
|
|
|
|
|
|
|
virtual void eraseNetwork(const uint64_t networkId) = 0;
|
|
|
|
|
|
|
|
virtual void eraseMember(const uint64_t networkId,const uint64_t memberId) = 0;
|
|
|
|
|
2017-11-09 01:19:46 +00:00
|
|
|
virtual void nodeIsOnline(const uint64_t networkId,const uint64_t memberId,const InetAddress &physicalAddress) = 0;
|
2017-11-08 19:06:14 +00:00
|
|
|
|
2017-11-07 22:44:46 +00:00
|
|
|
protected:
|
|
|
|
struct _Network
|
|
|
|
{
|
|
|
|
_Network() : mostRecentDeauthTime(0) {}
|
|
|
|
nlohmann::json config;
|
|
|
|
std::unordered_map<uint64_t,nlohmann::json> members;
|
|
|
|
std::unordered_set<uint64_t> activeBridgeMembers;
|
|
|
|
std::unordered_set<uint64_t> authorizedMembers;
|
|
|
|
std::unordered_set<InetAddress,InetAddress::Hasher> allocatedIps;
|
|
|
|
int64_t mostRecentDeauthTime;
|
|
|
|
std::mutex lock;
|
|
|
|
};
|
|
|
|
|
2018-03-09 06:33:08 +00:00
|
|
|
void _memberChanged(nlohmann::json &old,nlohmann::json &memberConfig,bool push);
|
|
|
|
void _networkChanged(nlohmann::json &old,nlohmann::json &networkConfig,bool push);
|
2017-11-07 22:44:46 +00:00
|
|
|
void _fillSummaryInfo(const std::shared_ptr<_Network> &nw,NetworkSummaryInfo &info);
|
|
|
|
|
|
|
|
EmbeddedNetworkController *const _controller;
|
2017-12-07 21:39:25 +00:00
|
|
|
const Identity _myId;
|
2017-11-07 22:44:46 +00:00
|
|
|
const Address _myAddress;
|
|
|
|
const std::string _path;
|
|
|
|
std::string _myAddressStr;
|
|
|
|
|
|
|
|
std::unordered_map< uint64_t,std::shared_ptr<_Network> > _networks;
|
|
|
|
std::unordered_multimap< uint64_t,uint64_t > _networkByMember;
|
|
|
|
mutable std::mutex _networks_l;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|