2019-08-06 13:51:23 +00:00
|
|
|
/*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
2019-08-06 13:51:23 +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-08-06 13:51:23 +00:00
|
|
|
*
|
2020-08-20 19:51:39 +00:00
|
|
|
* Change Date: 2025-01-01
|
2019-08-06 13:51:23 +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-08-06 13:51:23 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2019-08-06 13:51:23 +00:00
|
|
|
|
|
|
|
#ifndef ZT_DBMIRRORSET_HPP
|
|
|
|
#define ZT_DBMIRRORSET_HPP
|
|
|
|
|
|
|
|
#include "DB.hpp"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <memory>
|
|
|
|
#include <mutex>
|
2019-08-06 15:42:54 +00:00
|
|
|
#include <set>
|
2019-08-08 22:20:50 +00:00
|
|
|
#include <thread>
|
2019-08-06 13:51:23 +00:00
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
class DBMirrorSet : public DB::ChangeListener
|
|
|
|
{
|
|
|
|
public:
|
2019-08-06 15:42:54 +00:00
|
|
|
DBMirrorSet(DB::ChangeListener *listener);
|
2019-08-06 13:51:23 +00:00
|
|
|
virtual ~DBMirrorSet();
|
|
|
|
|
2019-08-06 15:42:54 +00:00
|
|
|
bool hasNetwork(const uint64_t networkId) const;
|
|
|
|
|
|
|
|
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,DB::NetworkSummaryInfo &info);
|
|
|
|
bool get(const uint64_t networkId,nlohmann::json &network,std::vector<nlohmann::json> &members);
|
|
|
|
|
|
|
|
void networks(std::set<uint64_t> &networks);
|
|
|
|
|
2019-08-06 13:51:23 +00:00
|
|
|
bool waitForReady();
|
|
|
|
bool isReady();
|
2019-08-06 15:42:54 +00:00
|
|
|
bool save(nlohmann::json &record,bool notifyListeners);
|
2019-08-06 13:51:23 +00:00
|
|
|
void eraseNetwork(const uint64_t networkId);
|
|
|
|
void eraseMember(const uint64_t networkId,const uint64_t memberId);
|
|
|
|
void nodeIsOnline(const uint64_t networkId,const uint64_t memberId,const InetAddress &physicalAddress);
|
|
|
|
|
|
|
|
// These are called by various DB instances when changes occur.
|
2019-08-06 15:42:54 +00:00
|
|
|
virtual void onNetworkUpdate(const void *db,uint64_t networkId,const nlohmann::json &network);
|
|
|
|
virtual void onNetworkMemberUpdate(const void *db,uint64_t networkId,uint64_t memberId,const nlohmann::json &member);
|
|
|
|
virtual void onNetworkMemberDeauthorize(const void *db,uint64_t networkId,uint64_t memberId);
|
2019-08-06 13:51:23 +00:00
|
|
|
|
2021-11-04 22:40:08 +00:00
|
|
|
AuthInfo getSSOAuthInfo(const nlohmann::json &member, const std::string &redirectURL);
|
2021-08-18 16:17:40 +00:00
|
|
|
void networkMemberSSOHasExpired(uint64_t nwid, int64_t ts);
|
2021-06-03 21:38:26 +00:00
|
|
|
|
2019-08-06 13:51:23 +00:00
|
|
|
inline void addDB(const std::shared_ptr<DB> &db)
|
|
|
|
{
|
2019-08-06 15:42:54 +00:00
|
|
|
db->addListener(this);
|
2019-08-06 13:51:23 +00:00
|
|
|
std::lock_guard<std::mutex> l(_dbs_l);
|
|
|
|
_dbs.push_back(db);
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:45:18 +00:00
|
|
|
void membersExpiring(std::set< std::pair<uint64_t, uint64_t> > &soon, std::set< std::pair<uint64_t, uint64_t> > &expired);
|
|
|
|
void memberWillExpire(int64_t expTime, uint64_t nwid, uint64_t memberId);
|
2021-07-23 22:49:00 +00:00
|
|
|
|
2019-08-06 13:51:23 +00:00
|
|
|
private:
|
2019-08-06 15:42:54 +00:00
|
|
|
DB::ChangeListener *const _listener;
|
2019-08-08 22:20:50 +00:00
|
|
|
std::atomic_bool _running;
|
|
|
|
std::thread _syncCheckerThread;
|
2019-08-06 13:51:23 +00:00
|
|
|
std::vector< std::shared_ptr< DB > > _dbs;
|
2019-08-06 15:42:54 +00:00
|
|
|
mutable std::mutex _dbs_l;
|
2021-07-23 23:05:59 +00:00
|
|
|
std::set< std::pair< int64_t, std::pair<uint64_t, uint64_t> > > _membersExpiringSoon;
|
2021-07-23 22:49:00 +00:00
|
|
|
mutable std::mutex _membersExpiringSoon_l;
|
2019-08-06 13:51:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|