2019-07-22 20:43:06 +00:00
|
|
|
/*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
2019-07-22 20:43:06 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Use of this software is governed by the Business Source License included
|
|
|
|
* in the LICENSE.TXT file in the project's root directory.
|
2019-07-22 20:43:06 +00:00
|
|
|
*
|
2020-08-20 19:51:39 +00:00
|
|
|
* Change Date: 2025-01-01
|
2019-07-22 20:43:06 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* 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.
|
2019-07-22 20:43:06 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2019-07-22 20:43:06 +00:00
|
|
|
|
|
|
|
#ifndef ZT_CONTROLLER_LFDB_HPP
|
|
|
|
#define ZT_CONTROLLER_LFDB_HPP
|
|
|
|
|
|
|
|
#include "DB.hpp"
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DB implementation for controller that stores data in LF
|
|
|
|
*/
|
|
|
|
class LFDB : public DB
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2019-08-06 15:42:54 +00:00
|
|
|
* @param myId This controller's identity
|
2019-07-22 20:43:06 +00:00
|
|
|
* @param path Base path for ZeroTier node itself
|
|
|
|
* @param lfOwnerPrivate LF owner private in PEM format
|
|
|
|
* @param lfOwnerPublic LF owner public in @base62 format
|
|
|
|
* @param lfNodeHost LF node host
|
|
|
|
* @param lfNodePort LF node http (not https) port
|
|
|
|
* @param storeOnlineState If true, store online/offline state and IP info in LF (a lot of data, only for private networks!)
|
|
|
|
*/
|
2019-07-27 00:39:00 +00:00
|
|
|
LFDB(const Identity &myId,const char *path,const char *lfOwnerPrivate,const char *lfOwnerPublic,const char *lfNodeHost,int lfNodePort,bool storeOnlineState);
|
2019-07-22 20:43:06 +00:00
|
|
|
virtual ~LFDB();
|
|
|
|
|
|
|
|
virtual bool waitForReady();
|
|
|
|
virtual bool isReady();
|
2019-08-06 15:42:54 +00:00
|
|
|
virtual bool save(nlohmann::json &record,bool notifyListeners);
|
2019-07-22 20:43:06 +00:00
|
|
|
virtual void eraseNetwork(const uint64_t networkId);
|
|
|
|
virtual void eraseMember(const uint64_t networkId,const uint64_t memberId);
|
|
|
|
virtual void nodeIsOnline(const uint64_t networkId,const uint64_t memberId,const InetAddress &physicalAddress);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const Identity _myId;
|
|
|
|
|
2019-07-23 23:06:35 +00:00
|
|
|
std::string _lfOwnerPrivate,_lfOwnerPublic;
|
2019-07-22 20:43:06 +00:00
|
|
|
std::string _lfNodeHost;
|
|
|
|
int _lfNodePort;
|
|
|
|
|
|
|
|
struct _MemberState
|
|
|
|
{
|
2019-07-23 16:29:08 +00:00
|
|
|
_MemberState() :
|
|
|
|
lastOnlineAddress(),
|
|
|
|
lastOnlineTime(0),
|
|
|
|
dirty(false),
|
|
|
|
lastOnlineDirty(false) {}
|
2019-07-22 20:43:06 +00:00
|
|
|
InetAddress lastOnlineAddress;
|
|
|
|
int64_t lastOnlineTime;
|
|
|
|
bool dirty;
|
|
|
|
bool lastOnlineDirty;
|
|
|
|
};
|
|
|
|
struct _NetworkState
|
|
|
|
{
|
2019-07-23 16:29:08 +00:00
|
|
|
_NetworkState() :
|
|
|
|
members(),
|
|
|
|
dirty(false) {}
|
2019-07-22 20:43:06 +00:00
|
|
|
std::unordered_map<uint64_t,_MemberState> members;
|
|
|
|
bool dirty;
|
|
|
|
};
|
|
|
|
std::unordered_map<uint64_t,_NetworkState> _state;
|
|
|
|
std::mutex _state_l;
|
|
|
|
|
|
|
|
std::atomic_bool _running;
|
|
|
|
std::atomic_bool _ready;
|
|
|
|
std::thread _syncThread;
|
|
|
|
bool _storeOnlineState;
|
|
|
|
};
|
2019-08-23 16:23:39 +00:00
|
|
|
|
2019-07-22 20:43:06 +00:00
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|