2015-02-24 20:28:58 +00:00
|
|
|
/*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
2015-02-24 20:28:58 +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.
|
2015-02-24 20:28:58 +00:00
|
|
|
*
|
2024-03-19 21:38:48 +00:00
|
|
|
* Change Date: 2026-01-01
|
2015-02-24 20:28:58 +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.
|
2015-02-24 20:28:58 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2015-02-24 20:28:58 +00:00
|
|
|
|
2015-04-15 22:12:09 +00:00
|
|
|
#ifndef ZT_SQLITENETWORKCONTROLLER_HPP
|
|
|
|
#define ZT_SQLITENETWORKCONTROLLER_HPP
|
2015-02-24 20:28:58 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2015-03-12 21:03:53 +00:00
|
|
|
|
2015-02-24 20:28:58 +00:00
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2016-08-16 23:46:08 +00:00
|
|
|
#include <set>
|
2016-08-25 18:26:45 +00:00
|
|
|
#include <list>
|
2017-05-02 23:58:51 +00:00
|
|
|
#include <thread>
|
2017-07-14 21:33:36 +00:00
|
|
|
#include <unordered_map>
|
2017-11-03 20:59:36 +00:00
|
|
|
#include <atomic>
|
2015-02-24 20:28:58 +00:00
|
|
|
|
2015-02-24 22:17:57 +00:00
|
|
|
#include "../node/Constants.hpp"
|
2015-04-15 22:12:09 +00:00
|
|
|
#include "../node/NetworkController.hpp"
|
2016-08-16 21:05:17 +00:00
|
|
|
#include "../node/Utils.hpp"
|
2016-08-25 18:26:45 +00:00
|
|
|
#include "../node/Address.hpp"
|
2016-08-16 23:46:08 +00:00
|
|
|
#include "../node/InetAddress.hpp"
|
2016-08-16 21:05:17 +00:00
|
|
|
|
|
|
|
#include "../osdep/OSUtils.hpp"
|
2016-08-25 18:26:45 +00:00
|
|
|
#include "../osdep/Thread.hpp"
|
2016-11-10 21:57:01 +00:00
|
|
|
#include "../osdep/BlockingQueue.hpp"
|
2015-04-21 23:41:35 +00:00
|
|
|
|
2022-05-13 16:34:15 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2015-10-08 20:25:38 +00:00
|
|
|
|
2023-04-28 18:03:28 +00:00
|
|
|
#include <cpp-httplib/httplib.h>
|
|
|
|
|
2017-11-09 22:01:16 +00:00
|
|
|
#include "DB.hpp"
|
2019-08-06 16:00:35 +00:00
|
|
|
#include "DBMirrorSet.hpp"
|
2016-11-04 22:18:31 +00:00
|
|
|
|
2015-02-24 22:17:57 +00:00
|
|
|
namespace ZeroTier {
|
2015-02-24 20:28:58 +00:00
|
|
|
|
2015-10-06 22:56:18 +00:00
|
|
|
class Node;
|
2020-05-11 22:03:56 +00:00
|
|
|
struct RedisConfig;
|
2015-10-06 22:56:18 +00:00
|
|
|
|
2019-07-27 00:39:00 +00:00
|
|
|
class EmbeddedNetworkController : public NetworkController,public DB::ChangeListener
|
2015-02-24 20:28:58 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-12-15 23:08:47 +00:00
|
|
|
/**
|
|
|
|
* @param node Parent node
|
2017-11-03 18:39:27 +00:00
|
|
|
* @param dbPath Database path (file path or database credentials)
|
2016-12-15 23:08:47 +00:00
|
|
|
*/
|
2020-05-11 22:03:56 +00:00
|
|
|
EmbeddedNetworkController(Node *node,const char *ztPath,const char *dbPath, int listenPort, RedisConfig *rc);
|
2016-08-17 17:42:32 +00:00
|
|
|
virtual ~EmbeddedNetworkController();
|
2015-03-13 20:53:15 +00:00
|
|
|
|
2016-11-10 19:54:47 +00:00
|
|
|
virtual void init(const Identity &signingId,Sender *sender);
|
|
|
|
|
2021-06-04 23:29:03 +00:00
|
|
|
void setSSORedirectURL(const std::string &url);
|
|
|
|
|
2016-11-10 19:54:47 +00:00
|
|
|
virtual void request(
|
|
|
|
uint64_t nwid,
|
2015-02-24 20:28:58 +00:00
|
|
|
const InetAddress &fromAddr,
|
2016-11-10 19:54:47 +00:00
|
|
|
uint64_t requestPacketId,
|
2015-03-18 23:10:48 +00:00
|
|
|
const Identity &identity,
|
2016-11-10 19:54:47 +00:00
|
|
|
const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData);
|
2015-02-24 20:28:58 +00:00
|
|
|
|
2023-04-28 18:03:28 +00:00
|
|
|
void configureHTTPControlPlane(
|
|
|
|
httplib::Server &s,
|
2023-08-25 16:51:33 +00:00
|
|
|
httplib::Server &sV6,
|
2023-04-28 18:03:28 +00:00
|
|
|
const std::function<void(const httplib::Request&, httplib::Response&, std::string)>);
|
2015-04-21 23:41:35 +00:00
|
|
|
|
2017-07-14 20:03:16 +00:00
|
|
|
void handleRemoteTrace(const ZT_RemoteTrace &rt);
|
|
|
|
|
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);
|
2017-08-16 21:14:49 +00:00
|
|
|
|
2015-02-24 20:28:58 +00:00
|
|
|
private:
|
2017-03-21 13:31:15 +00:00
|
|
|
void _request(uint64_t nwid,const InetAddress &fromAddr,uint64_t requestPacketId,const Identity &identity,const Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> &metaData);
|
2017-08-31 22:01:21 +00:00
|
|
|
void _startThreads();
|
2023-05-16 18:56:58 +00:00
|
|
|
void _ssoExpiryThread();
|
2017-05-02 23:58:51 +00:00
|
|
|
|
2023-04-28 18:03:28 +00:00
|
|
|
std::string networkUpdateFromPostData(uint64_t networkID, const std::string &body);
|
|
|
|
|
2017-11-03 18:39:27 +00:00
|
|
|
struct _RQEntry
|
|
|
|
{
|
|
|
|
uint64_t nwid;
|
|
|
|
uint64_t requestPacketId;
|
|
|
|
InetAddress fromAddr;
|
|
|
|
Identity identity;
|
|
|
|
Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> metaData;
|
|
|
|
enum {
|
|
|
|
RQENTRY_TYPE_REQUEST = 0
|
|
|
|
} type;
|
|
|
|
};
|
2022-04-14 01:39:56 +00:00
|
|
|
|
2017-05-01 20:21:26 +00:00
|
|
|
struct _MemberStatusKey
|
|
|
|
{
|
|
|
|
_MemberStatusKey() : networkId(0),nodeId(0) {}
|
|
|
|
_MemberStatusKey(const uint64_t nwid,const uint64_t nid) : networkId(nwid),nodeId(nid) {}
|
|
|
|
uint64_t networkId;
|
|
|
|
uint64_t nodeId;
|
|
|
|
inline bool operator==(const _MemberStatusKey &k) const { return ((k.networkId == networkId)&&(k.nodeId == nodeId)); }
|
2022-04-19 23:59:54 +00:00
|
|
|
inline bool operator<(const _MemberStatusKey &k) const { return (k.networkId < networkId) || ((k.networkId == networkId)&&(k.nodeId < nodeId)); }
|
2017-05-01 20:21:26 +00:00
|
|
|
};
|
|
|
|
struct _MemberStatus
|
|
|
|
{
|
2022-04-14 01:39:56 +00:00
|
|
|
_MemberStatus() : lastRequestTime(0),authenticationExpiryTime(-1),vMajor(-1),vMinor(-1),vRev(-1),vProto(-1) {}
|
|
|
|
int64_t lastRequestTime;
|
|
|
|
int64_t authenticationExpiryTime;
|
2017-05-01 20:21:26 +00:00
|
|
|
int vMajor,vMinor,vRev,vProto;
|
|
|
|
Dictionary<ZT_NETWORKCONFIG_METADATA_DICT_CAPACITY> lastRequestMetaData;
|
|
|
|
Identity identity;
|
2017-10-02 22:52:57 +00:00
|
|
|
inline bool online(const int64_t now) const { return ((now - lastRequestTime) < (ZT_NETWORK_AUTOCONF_DELAY * 2)); }
|
2017-05-01 20:21:26 +00:00
|
|
|
};
|
|
|
|
struct _MemberStatusHash
|
|
|
|
{
|
|
|
|
inline std::size_t operator()(const _MemberStatusKey &networkIdNodeId) const
|
|
|
|
{
|
|
|
|
return (std::size_t)(networkIdNodeId.networkId + networkIdNodeId.nodeId);
|
|
|
|
}
|
|
|
|
};
|
2017-11-03 18:39:27 +00:00
|
|
|
|
|
|
|
const int64_t _startTime;
|
2019-01-21 19:18:20 +00:00
|
|
|
int _listenPort;
|
2017-11-03 18:39:27 +00:00
|
|
|
Node *const _node;
|
2019-08-07 16:23:48 +00:00
|
|
|
std::string _ztPath;
|
2017-11-03 18:39:27 +00:00
|
|
|
std::string _path;
|
|
|
|
Identity _signingId;
|
|
|
|
std::string _signingIdAddressString;
|
|
|
|
NetworkController::Sender *_sender;
|
2018-11-12 06:35:15 +00:00
|
|
|
|
2019-08-06 16:00:35 +00:00
|
|
|
DBMirrorSet _db;
|
2017-11-03 20:59:36 +00:00
|
|
|
BlockingQueue< _RQEntry * > _queue;
|
2018-11-12 06:35:15 +00:00
|
|
|
|
2017-11-03 18:39:27 +00:00
|
|
|
std::vector<std::thread> _threads;
|
|
|
|
std::mutex _threads_l;
|
2018-11-12 06:35:15 +00:00
|
|
|
|
2017-05-01 20:21:26 +00:00
|
|
|
std::unordered_map< _MemberStatusKey,_MemberStatus,_MemberStatusHash > _memberStatus;
|
2017-11-03 18:39:27 +00:00
|
|
|
std::mutex _memberStatus_l;
|
2020-05-11 22:03:56 +00:00
|
|
|
|
2022-04-19 23:59:54 +00:00
|
|
|
std::set< std::pair<int64_t, _MemberStatusKey> > _expiringSoon;
|
2022-04-19 14:37:58 +00:00
|
|
|
std::mutex _expiringSoon_l;
|
2022-04-14 01:39:56 +00:00
|
|
|
|
2020-05-11 22:03:56 +00:00
|
|
|
RedisConfig *_rc;
|
2021-06-04 23:29:03 +00:00
|
|
|
std::string _ssoRedirectURL;
|
2023-05-23 19:11:26 +00:00
|
|
|
|
2023-05-25 18:09:08 +00:00
|
|
|
bool _ssoExpiryRunning;
|
|
|
|
std::thread _ssoExpiry;
|
|
|
|
|
2023-05-23 19:11:26 +00:00
|
|
|
#ifdef CENTRAL_CONTROLLER_REQUEST_BENCHMARK
|
|
|
|
prometheus::simpleapi::benchmark_family_t _member_status_lookup;
|
|
|
|
prometheus::simpleapi::counter_family_t _member_status_lookup_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _node_is_online;
|
|
|
|
prometheus::simpleapi::counter_family_t _node_is_online_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _get_and_init_member;
|
|
|
|
prometheus::simpleapi::counter_family_t _get_and_init_member_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _have_identity;
|
|
|
|
prometheus::simpleapi::counter_family_t _have_identity_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _determine_auth;
|
|
|
|
prometheus::simpleapi::counter_family_t _determine_auth_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _sso_check;
|
|
|
|
prometheus::simpleapi::counter_family_t _sso_check_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _auth_check;
|
|
|
|
prometheus::simpleapi::counter_family_t _auth_check_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _json_schlep;
|
|
|
|
prometheus::simpleapi::counter_family_t _json_schlep_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _issue_certificate;
|
|
|
|
prometheus::simpleapi::counter_family_t _issue_certificate_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _save_member;
|
|
|
|
prometheus::simpleapi::counter_family_t _save_member_count;
|
|
|
|
prometheus::simpleapi::benchmark_family_t _send_netconf;
|
|
|
|
prometheus::simpleapi::counter_family_t _send_netconf_count;
|
|
|
|
#endif
|
2015-02-24 20:28:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|