2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Copyright (c)2019 ZeroTier, Inc.
|
2013-07-04 20:56:19 +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.
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
2019-08-23 16:23:39 +00:00
|
|
|
* Change Date: 2023-01-01
|
2013-07-04 20:56:19 +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.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2019-08-23 16:23:39 +00:00
|
|
|
/****/
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-12-07 00:49:20 +00:00
|
|
|
#ifndef ZT_TOPOLOGY_HPP
|
|
|
|
#define ZT_TOPOLOGY_HPP
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-06 18:58:34 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2013-09-17 19:53:59 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <stdexcept>
|
2014-10-14 23:38:27 +00:00
|
|
|
#include <algorithm>
|
2015-10-13 15:49:36 +00:00
|
|
|
#include <utility>
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-10-05 14:19:12 +00:00
|
|
|
#include "Constants.hpp"
|
2016-07-12 15:29:50 +00:00
|
|
|
#include "../include/ZeroTierOne.h"
|
2014-08-14 23:52:22 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "Address.hpp"
|
2014-08-14 23:52:22 +00:00
|
|
|
#include "Identity.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "Peer.hpp"
|
2016-09-01 22:43:07 +00:00
|
|
|
#include "Path.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "Mutex.hpp"
|
|
|
|
#include "InetAddress.hpp"
|
2015-09-04 19:14:21 +00:00
|
|
|
#include "Hashtable.hpp"
|
2019-08-15 17:49:50 +00:00
|
|
|
#include "Root.hpp"
|
2019-08-21 21:36:56 +00:00
|
|
|
#include "SharedPtr.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
class RuntimeEnvironment;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database of network topology
|
|
|
|
*/
|
2013-08-05 20:06:16 +00:00
|
|
|
class Topology
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE Topology(const RuntimeEnvironment *renv,const Identity &myId) :
|
2019-08-14 17:35:57 +00:00
|
|
|
RR(renv),
|
2019-08-15 17:49:50 +00:00
|
|
|
_myIdentity(myId),
|
2019-08-14 17:35:57 +00:00
|
|
|
_numConfiguredPhysicalPaths(0) {}
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE ~Topology() {}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
2013-10-05 14:19:12 +00:00
|
|
|
* Add a peer to database
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
2013-10-05 14:19:12 +00:00
|
|
|
* This will not replace existing peers. In that case the existing peer
|
|
|
|
* record is returned.
|
|
|
|
*
|
2017-03-28 00:03:17 +00:00
|
|
|
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
|
2013-10-05 14:19:12 +00:00
|
|
|
* @param peer Peer to add
|
|
|
|
* @return New or existing peer (should replace 'peer')
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE SharedPtr<Peer> add(const SharedPtr<Peer> &peer)
|
2019-08-14 17:35:57 +00:00
|
|
|
{
|
|
|
|
SharedPtr<Peer> np;
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_peers_m);
|
|
|
|
SharedPtr<Peer> &hp = _peers[peer->address()];
|
|
|
|
if (!hp)
|
|
|
|
hp = peer;
|
|
|
|
np = hp;
|
|
|
|
}
|
|
|
|
return np;
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a peer from its address
|
2015-07-28 00:02:43 +00:00
|
|
|
*
|
2017-03-28 00:03:17 +00:00
|
|
|
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
|
2013-07-04 20:56:19 +00:00
|
|
|
* @param zta ZeroTier address of peer
|
|
|
|
* @return Peer or NULL if not found
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE SharedPtr<Peer> get(const Address &zta)
|
2019-08-14 17:35:57 +00:00
|
|
|
{
|
2019-08-15 17:49:50 +00:00
|
|
|
if (zta == _myIdentity.address())
|
2019-08-14 17:35:57 +00:00
|
|
|
return SharedPtr<Peer>();
|
2019-08-15 17:49:50 +00:00
|
|
|
|
|
|
|
Mutex::Lock l1(_peers_m);
|
2019-08-14 19:48:45 +00:00
|
|
|
const SharedPtr<Peer> *const ap = _peers.get(zta);
|
2019-08-15 17:49:50 +00:00
|
|
|
if (ap)
|
|
|
|
return *ap;
|
|
|
|
|
|
|
|
Mutex::Lock l2(_roots_m);
|
|
|
|
for(std::vector<Root>::const_iterator r(_roots.begin());r!=_roots.end();++r) {
|
|
|
|
if (r->address() == zta) {
|
|
|
|
try {
|
|
|
|
SharedPtr<Peer> rp(new Peer(RR,_myIdentity,r->id()));
|
|
|
|
_peers[zta] = rp;
|
|
|
|
return rp;
|
|
|
|
} catch ( ... ) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SharedPtr<Peer>();
|
2019-08-14 17:35:57 +00:00
|
|
|
}
|
2013-10-21 18:12:00 +00:00
|
|
|
|
2017-07-06 17:25:36 +00:00
|
|
|
/**
|
|
|
|
* @param tPtr Thread pointer to be handed through to any callbacks called as a result of this call
|
|
|
|
* @param zta ZeroTier address of peer
|
|
|
|
* @return Identity or NULL identity if not found
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE Identity getIdentity(void *tPtr,const Address &zta)
|
2019-08-14 17:35:57 +00:00
|
|
|
{
|
2019-08-15 17:49:50 +00:00
|
|
|
if (zta == _myIdentity.address()) {
|
|
|
|
return _myIdentity;
|
2019-08-14 17:35:57 +00:00
|
|
|
} else {
|
|
|
|
Mutex::Lock _l(_peers_m);
|
|
|
|
const SharedPtr<Peer> *const ap = _peers.get(zta);
|
|
|
|
if (ap)
|
|
|
|
return (*ap)->identity();
|
|
|
|
}
|
|
|
|
return Identity();
|
|
|
|
}
|
2019-08-14 19:48:45 +00:00
|
|
|
|
2016-09-01 22:43:07 +00:00
|
|
|
/**
|
|
|
|
* Get a Path object for a given local and remote physical address, creating if needed
|
|
|
|
*
|
2017-07-06 18:45:22 +00:00
|
|
|
* @param l Local socket
|
2016-09-01 22:43:07 +00:00
|
|
|
* @param r Remote address
|
|
|
|
* @return Pointer to canonicalized Path object
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE SharedPtr<Path> getPath(const int64_t l,const InetAddress &r)
|
2016-09-01 22:43:07 +00:00
|
|
|
{
|
2017-01-28 00:16:06 +00:00
|
|
|
Mutex::Lock _l(_paths_m);
|
2016-09-01 22:43:07 +00:00
|
|
|
SharedPtr<Path> &p = _paths[Path::HashKey(l,r)];
|
|
|
|
if (!p)
|
2018-04-06 15:10:34 +00:00
|
|
|
p.set(new Path(l,r));
|
2016-09-01 22:43:07 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2019-08-15 17:49:50 +00:00
|
|
|
/**
|
|
|
|
* @param id Identity to check
|
|
|
|
* @return True if this identity corresponds to a root
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE bool isRoot(const Identity &id) const
|
2019-08-14 17:35:57 +00:00
|
|
|
{
|
2019-08-15 17:49:50 +00:00
|
|
|
Mutex::Lock l(_roots_m);
|
|
|
|
for(std::vector<Root>::const_iterator r(_roots.begin());r!=_roots.end();++r) {
|
|
|
|
if (r->is(id))
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-14 17:35:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2019-08-14 19:48:45 +00:00
|
|
|
|
2019-08-15 17:49:50 +00:00
|
|
|
/**
|
|
|
|
* Do periodic tasks such as database cleanup
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE void doPeriodicTasks(int64_t now)
|
2019-08-14 17:35:57 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
Mutex::Lock _l1(_peers_m);
|
|
|
|
Hashtable< Address,SharedPtr<Peer> >::Iterator i(_peers);
|
|
|
|
Address *a = (Address *)0;
|
|
|
|
SharedPtr<Peer> *p = (SharedPtr<Peer> *)0;
|
|
|
|
while (i.next(a,p)) {
|
2019-08-22 20:06:08 +00:00
|
|
|
if (!(*p)->alive(now)) {
|
2019-08-14 17:35:57 +00:00
|
|
|
_peers.erase(*a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_paths_m);
|
|
|
|
Hashtable< Path::HashKey,SharedPtr<Path> >::Iterator i(_paths);
|
|
|
|
Path::HashKey *k = (Path::HashKey *)0;
|
|
|
|
SharedPtr<Path> *p = (SharedPtr<Path> *)0;
|
|
|
|
while (i.next(k,p)) {
|
|
|
|
if (p->references() <= 1)
|
|
|
|
_paths.erase(*k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2015-10-26 19:41:08 +00:00
|
|
|
/**
|
2015-11-13 20:14:28 +00:00
|
|
|
* @param now Current time
|
2015-10-28 21:29:08 +00:00
|
|
|
* @return Number of peers with active direct paths
|
2015-10-26 19:41:08 +00:00
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE unsigned long countActive(int64_t now) const
|
2015-11-13 20:14:28 +00:00
|
|
|
{
|
|
|
|
unsigned long cnt = 0;
|
2017-01-28 00:16:06 +00:00
|
|
|
Mutex::Lock _l(_peers_m);
|
2015-11-13 20:14:28 +00:00
|
|
|
Hashtable< Address,SharedPtr<Peer> >::Iterator i(const_cast<Topology *>(this)->_peers);
|
|
|
|
Address *a = (Address *)0;
|
|
|
|
SharedPtr<Peer> *p = (SharedPtr<Peer> *)0;
|
|
|
|
while (i.next(a,p)) {
|
2018-05-01 23:32:15 +00:00
|
|
|
const SharedPtr<Path> pp((*p)->getAppropriatePath(now,false));
|
2017-10-25 19:42:14 +00:00
|
|
|
if (pp)
|
2017-04-15 00:53:32 +00:00
|
|
|
++cnt;
|
2015-11-13 20:14:28 +00:00
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
2015-10-26 19:41:08 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
|
|
|
* Apply a function or function object to all peers
|
|
|
|
*
|
2019-08-21 21:24:45 +00:00
|
|
|
* This locks the peer map during execution, so calls to get() etc. during
|
|
|
|
* eachPeer() will deadlock.
|
|
|
|
*
|
2013-07-04 20:56:19 +00:00
|
|
|
* @param f Function to apply
|
|
|
|
* @tparam F Function or function object type
|
|
|
|
*/
|
|
|
|
template<typename F>
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE void eachPeer(F f)
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
2019-08-21 21:24:45 +00:00
|
|
|
Mutex::Lock l(_peers_m);
|
2015-10-02 00:09:01 +00:00
|
|
|
Hashtable< Address,SharedPtr<Peer> >::Iterator i(_peers);
|
2015-09-04 19:14:21 +00:00
|
|
|
Address *a = (Address *)0;
|
|
|
|
SharedPtr<Peer> *p = (SharedPtr<Peer> *)0;
|
2015-10-30 21:11:10 +00:00
|
|
|
while (i.next(a,p)) {
|
2019-08-22 20:06:08 +00:00
|
|
|
f(*((const SharedPtr<Peer> *)p));
|
2015-10-30 21:11:10 +00:00
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-09 01:45:21 +00:00
|
|
|
/**
|
2019-08-21 21:24:45 +00:00
|
|
|
* Apply a function or function object to all roots
|
|
|
|
*
|
|
|
|
* This locks the root list during execution but other operations
|
|
|
|
* are fine.
|
|
|
|
*
|
|
|
|
* @param f Function to apply
|
|
|
|
* @tparam F function or function object type
|
2015-04-09 01:45:21 +00:00
|
|
|
*/
|
2019-08-21 21:24:45 +00:00
|
|
|
template<typename F>
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE void eachRoot(F f)
|
2015-04-09 01:45:21 +00:00
|
|
|
{
|
2019-08-21 21:24:45 +00:00
|
|
|
Mutex::Lock l(_roots_m);
|
|
|
|
SharedPtr<Peer> rp;
|
|
|
|
for(std::vector<Root>::const_iterator i(_roots.begin());i!=_roots.end();++i) {
|
|
|
|
{
|
2019-08-21 21:36:56 +00:00
|
|
|
Mutex::Lock l2(_peers_m);
|
2019-08-21 21:24:45 +00:00
|
|
|
const SharedPtr<Peer> *const ap = _peers.get(i->address());
|
|
|
|
if (ap) {
|
|
|
|
rp = *ap;
|
|
|
|
} else {
|
|
|
|
rp.set(new Peer(RR,_myIdentity,i->id()));
|
|
|
|
_peers.set(rp->address(),rp);
|
|
|
|
}
|
|
|
|
}
|
2019-08-22 20:06:08 +00:00
|
|
|
f(*i,rp);
|
2019-08-21 21:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-23 14:04:20 +00:00
|
|
|
/**
|
|
|
|
* Get the best root, rescanning and re-ranking roots periodically
|
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
* @return Best/fastest currently connected root or NULL if none
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE SharedPtr<Peer> root(const int64_t now)
|
2019-08-23 14:04:20 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock l(_bestRoot_m);
|
|
|
|
if ((!_bestRoot)||((now - _lastRankedBestRoot) >= ZT_FIND_BEST_ROOT_PERIOD)) {
|
|
|
|
_bestRoot.zero();
|
|
|
|
Mutex::Lock l2(_roots_m);
|
|
|
|
SharedPtr<Peer> rp;
|
|
|
|
long bestQuality = 2147483647;
|
|
|
|
for(std::vector<Root>::const_iterator i(_roots.begin());i!=_roots.end();++i) {
|
|
|
|
{
|
|
|
|
Mutex::Lock l2(_peers_m);
|
|
|
|
const SharedPtr<Peer> *const ap = _peers.get(i->address());
|
|
|
|
if (ap) {
|
|
|
|
rp = *ap;
|
|
|
|
} else {
|
|
|
|
rp.set(new Peer(RR,_myIdentity,i->id()));
|
|
|
|
_peers.set(rp->address(),rp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SharedPtr<Path> path(rp->getAppropriatePath(now,false));
|
|
|
|
if (path) {
|
|
|
|
const long pq = path->quality(now);
|
|
|
|
if (pq < bestQuality) {
|
|
|
|
bestQuality = pq;
|
|
|
|
_bestRoot = rp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return _bestRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the best relay to a given address, which may or may not be a root
|
|
|
|
*
|
|
|
|
* @param now Current time
|
|
|
|
* @param toAddr Destination address
|
|
|
|
* @return Best current relay or NULL if none
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE SharedPtr<Peer> findRelayTo(const int64_t now,const Address &toAddr)
|
2019-08-23 14:04:20 +00:00
|
|
|
{
|
|
|
|
// TODO: in the future this will check 'mesh-like' relays and if enabled consult LF for other roots (for if this is a root)
|
|
|
|
return root(now);
|
|
|
|
}
|
|
|
|
|
2019-08-21 21:24:45 +00:00
|
|
|
/**
|
|
|
|
* @param allPeers vector to fill with all current peers
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE void getAllPeers(std::vector< SharedPtr<Peer> > &allPeers) const
|
2019-08-21 21:24:45 +00:00
|
|
|
{
|
|
|
|
Mutex::Lock l(_peers_m);
|
|
|
|
allPeers.clear();
|
|
|
|
allPeers.reserve(_peers.size());
|
|
|
|
Hashtable< Address,SharedPtr<Peer> >::Iterator i(*(const_cast<Hashtable< Address,SharedPtr<Peer> > *>(&_peers)));
|
|
|
|
Address *a = (Address *)0;
|
|
|
|
SharedPtr<Peer> *p = (SharedPtr<Peer> *)0;
|
|
|
|
while (i.next(a,p)) {
|
|
|
|
allPeers.push_back(*p);
|
|
|
|
}
|
2015-04-09 01:45:21 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 23:25:34 +00:00
|
|
|
/**
|
|
|
|
* Get info about a path
|
|
|
|
*
|
|
|
|
* The supplied result variables are not modified if no special config info is found.
|
|
|
|
*
|
|
|
|
* @param physicalAddress Physical endpoint address
|
|
|
|
* @param mtu Variable set to MTU
|
|
|
|
* @param trustedPathId Variable set to trusted path ID
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE void getOutboundPathInfo(const InetAddress &physicalAddress,unsigned int &mtu,uint64_t &trustedPathId)
|
2017-09-01 23:25:34 +00:00
|
|
|
{
|
|
|
|
for(unsigned int i=0,j=_numConfiguredPhysicalPaths;i<j;++i) {
|
|
|
|
if (_physicalPathConfig[i].first.containsAddress(physicalAddress)) {
|
|
|
|
trustedPathId = _physicalPathConfig[i].second.trustedPathId;
|
|
|
|
mtu = _physicalPathConfig[i].second.mtu;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the payload MTU for an outbound physical path (returns default if not configured)
|
|
|
|
*
|
|
|
|
* @param physicalAddress Physical endpoint address
|
|
|
|
* @return MTU
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE unsigned int getOutboundPathMtu(const InetAddress &physicalAddress)
|
2017-09-01 23:25:34 +00:00
|
|
|
{
|
|
|
|
for(unsigned int i=0,j=_numConfiguredPhysicalPaths;i<j;++i) {
|
|
|
|
if (_physicalPathConfig[i].first.containsAddress(physicalAddress))
|
|
|
|
return _physicalPathConfig[i].second.mtu;
|
|
|
|
}
|
|
|
|
return ZT_DEFAULT_PHYSMTU;
|
|
|
|
}
|
|
|
|
|
2016-07-12 15:29:50 +00:00
|
|
|
/**
|
|
|
|
* Get the outbound trusted path ID for a physical address, or 0 if none
|
|
|
|
*
|
|
|
|
* @param physicalAddress Physical address to which we are sending the packet
|
|
|
|
* @return Trusted path ID or 0 if none (0 is not a valid trusted path ID)
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE uint64_t getOutboundPathTrust(const InetAddress &physicalAddress)
|
2016-07-12 15:29:50 +00:00
|
|
|
{
|
2017-09-01 23:25:34 +00:00
|
|
|
for(unsigned int i=0,j=_numConfiguredPhysicalPaths;i<j;++i) {
|
|
|
|
if (_physicalPathConfig[i].first.containsAddress(physicalAddress))
|
|
|
|
return _physicalPathConfig[i].second.trustedPathId;
|
2016-07-12 15:29:50 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether in incoming trusted path marked packet is valid
|
|
|
|
*
|
|
|
|
* @param physicalAddress Originating physical address
|
|
|
|
* @param trustedPathId Trusted path ID from packet (from MAC field)
|
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE bool shouldInboundPathBeTrusted(const InetAddress &physicalAddress,const uint64_t trustedPathId)
|
2016-07-12 15:29:50 +00:00
|
|
|
{
|
2017-09-01 23:25:34 +00:00
|
|
|
for(unsigned int i=0,j=_numConfiguredPhysicalPaths;i<j;++i) {
|
|
|
|
if ((_physicalPathConfig[i].second.trustedPathId == trustedPathId)&&(_physicalPathConfig[i].first.containsAddress(physicalAddress)))
|
2016-07-12 15:29:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-09-01 23:25:34 +00:00
|
|
|
* Set or clear physical path configuration (called via Node::setPhysicalPathConfiguration)
|
2016-07-12 15:29:50 +00:00
|
|
|
*/
|
2019-09-12 17:37:26 +00:00
|
|
|
ZT_ALWAYS_INLINE void setPhysicalPathConfiguration(const struct sockaddr_storage *pathNetwork,const ZT_PhysicalPathConfiguration *pathConfig)
|
2019-08-14 17:35:57 +00:00
|
|
|
{
|
|
|
|
if (!pathNetwork) {
|
|
|
|
_numConfiguredPhysicalPaths = 0;
|
|
|
|
} else {
|
|
|
|
std::map<InetAddress,ZT_PhysicalPathConfiguration> cpaths;
|
|
|
|
for(unsigned int i=0,j=_numConfiguredPhysicalPaths;i<j;++i)
|
|
|
|
cpaths[_physicalPathConfig[i].first] = _physicalPathConfig[i].second;
|
2019-08-21 21:24:45 +00:00
|
|
|
|
2019-08-14 17:35:57 +00:00
|
|
|
if (pathConfig) {
|
|
|
|
ZT_PhysicalPathConfiguration pc(*pathConfig);
|
2019-08-21 21:24:45 +00:00
|
|
|
|
2019-08-14 17:35:57 +00:00
|
|
|
if (pc.mtu <= 0)
|
|
|
|
pc.mtu = ZT_DEFAULT_PHYSMTU;
|
|
|
|
else if (pc.mtu < ZT_MIN_PHYSMTU)
|
|
|
|
pc.mtu = ZT_MIN_PHYSMTU;
|
|
|
|
else if (pc.mtu > ZT_MAX_PHYSMTU)
|
|
|
|
pc.mtu = ZT_MAX_PHYSMTU;
|
2019-08-21 21:24:45 +00:00
|
|
|
|
2019-08-14 17:35:57 +00:00
|
|
|
cpaths[*(reinterpret_cast<const InetAddress *>(pathNetwork))] = pc;
|
|
|
|
} else {
|
|
|
|
cpaths.erase(*(reinterpret_cast<const InetAddress *>(pathNetwork)));
|
|
|
|
}
|
2019-08-21 21:24:45 +00:00
|
|
|
|
2019-08-14 17:35:57 +00:00
|
|
|
unsigned int cnt = 0;
|
|
|
|
for(std::map<InetAddress,ZT_PhysicalPathConfiguration>::const_iterator i(cpaths.begin());((i!=cpaths.end())&&(cnt<ZT_MAX_CONFIGURABLE_PATHS));++i) {
|
|
|
|
_physicalPathConfig[cnt].first = i->first;
|
|
|
|
_physicalPathConfig[cnt].second = i->second;
|
|
|
|
++cnt;
|
|
|
|
}
|
|
|
|
_numConfiguredPhysicalPaths = cnt;
|
|
|
|
}
|
|
|
|
}
|
2016-07-12 15:29:50 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
private:
|
2015-11-13 20:14:28 +00:00
|
|
|
const RuntimeEnvironment *const RR;
|
2019-08-15 17:49:50 +00:00
|
|
|
const Identity _myIdentity;
|
2017-09-01 23:25:34 +00:00
|
|
|
std::pair<InetAddress,ZT_PhysicalPathConfiguration> _physicalPathConfig[ZT_MAX_CONFIGURABLE_PATHS];
|
2019-08-06 21:46:13 +00:00
|
|
|
unsigned int _numConfiguredPhysicalPaths;
|
2019-08-15 17:49:50 +00:00
|
|
|
std::vector<Root> _roots;
|
2019-08-23 14:04:20 +00:00
|
|
|
SharedPtr<Peer> _bestRoot;
|
|
|
|
int64_t _lastRankedBestRoot;
|
2015-10-02 00:09:01 +00:00
|
|
|
Hashtable< Address,SharedPtr<Peer> > _peers;
|
2016-09-01 22:43:07 +00:00
|
|
|
Hashtable< Path::HashKey,SharedPtr<Path> > _paths;
|
2019-08-15 17:49:50 +00:00
|
|
|
Mutex _roots_m;
|
2019-08-23 14:04:20 +00:00
|
|
|
Mutex _bestRoot_m;
|
2019-08-15 17:49:50 +00:00
|
|
|
Mutex _peers_m;
|
2017-01-28 00:16:06 +00:00
|
|
|
Mutex _paths_m;
|
2013-07-04 20:56:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|