2013-07-04 20:56:19 +00:00
|
|
|
/*
|
|
|
|
* ZeroTier One - Global Peer to Peer Ethernet
|
|
|
|
* Copyright (C) 2012-2013 ZeroTier Networks LLC
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
|
|
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
*
|
|
|
|
* If you would like to embed ZeroTier into a commercial application or
|
|
|
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
|
|
|
* LLC. Start here: http://www.zerotier.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ZT_NETWORK_HPP
|
|
|
|
#define _ZT_NETWORK_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <set>
|
2013-07-29 17:56:20 +00:00
|
|
|
#include <map>
|
2013-07-04 20:56:19 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <stdexcept>
|
2013-07-29 17:56:20 +00:00
|
|
|
|
|
|
|
#include "Constants.hpp"
|
|
|
|
#include "Utils.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
#include "EthernetTap.hpp"
|
|
|
|
#include "Address.hpp"
|
|
|
|
#include "Mutex.hpp"
|
|
|
|
#include "SharedPtr.hpp"
|
|
|
|
#include "AtomicCounter.hpp"
|
|
|
|
#include "MulticastGroup.hpp"
|
2013-07-09 18:06:55 +00:00
|
|
|
#include "NonCopyable.hpp"
|
2013-07-10 21:24:27 +00:00
|
|
|
#include "MAC.hpp"
|
2013-07-29 17:56:20 +00:00
|
|
|
#include "Dictionary.hpp"
|
|
|
|
#include "Identity.hpp"
|
|
|
|
#include "InetAddress.hpp"
|
2013-09-04 13:27:56 +00:00
|
|
|
#include "BandwidthAccount.hpp"
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
class RuntimeEnvironment;
|
2013-07-04 20:56:19 +00:00
|
|
|
class NodeConfig;
|
|
|
|
|
|
|
|
/**
|
2013-07-27 20:20:08 +00:00
|
|
|
* A virtual LAN
|
|
|
|
*
|
2013-07-29 17:56:20 +00:00
|
|
|
* Networks can be open or closed. Each network has an ID whose most
|
|
|
|
* significant 40 bits are the ZeroTier address of the node that should
|
|
|
|
* be contacted for network configuration. The least significant 24
|
|
|
|
* bits are arbitrary, allowing up to 2^24 networks per managing
|
|
|
|
* node.
|
2013-07-27 20:20:08 +00:00
|
|
|
*
|
|
|
|
* Open networks do not track membership. Anyone is allowed to communicate
|
|
|
|
* over them.
|
|
|
|
*
|
|
|
|
* Closed networks track membership by way of timestamped signatures. When
|
|
|
|
* the network requests its configuration, one of the fields returned is
|
|
|
|
* a signature for the identity of the peer on the network. This signature
|
|
|
|
* includes a timestamp. When a peer communicates with other peers on a
|
|
|
|
* closed network, it periodically (and pre-emptively) propagates this
|
|
|
|
* signature to the peers with which it is communicating. Peers reject
|
|
|
|
* packets with an error if no recent signature is on file.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-07-09 18:06:55 +00:00
|
|
|
class Network : NonCopyable
|
2013-07-04 20:56:19 +00:00
|
|
|
{
|
|
|
|
friend class SharedPtr<Network>;
|
|
|
|
friend class NodeConfig;
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
public:
|
|
|
|
/**
|
2013-08-03 16:53:46 +00:00
|
|
|
* A certificate of network membership for private network participation
|
2013-07-29 17:56:20 +00:00
|
|
|
*/
|
|
|
|
class Certificate : private Dictionary
|
|
|
|
{
|
|
|
|
public:
|
2013-09-04 13:27:56 +00:00
|
|
|
Certificate() {}
|
|
|
|
Certificate(const char *s) : Dictionary(s) {}
|
|
|
|
Certificate(const std::string &s) : Dictionary(s) {}
|
|
|
|
inline std::string toString() const { return Dictionary::toString(); }
|
2013-07-29 17:56:20 +00:00
|
|
|
|
|
|
|
/**
|
2013-07-29 20:18:29 +00:00
|
|
|
* Sign this certificate
|
2013-07-29 17:56:20 +00:00
|
|
|
*
|
|
|
|
* @param with Signing identity -- the identity of this network's controller
|
2013-07-29 20:18:29 +00:00
|
|
|
* @return Signature or empty string on failure
|
2013-07-29 17:56:20 +00:00
|
|
|
*/
|
2013-07-29 20:18:29 +00:00
|
|
|
inline std::string sign(const Identity &with) const
|
|
|
|
{
|
|
|
|
unsigned char dig[32];
|
|
|
|
_shaForSignature(dig);
|
|
|
|
return with.sign(dig);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify this certificate's signature
|
|
|
|
*
|
|
|
|
* @param with Signing identity -- the identity of this network's controller
|
|
|
|
* @param sig Signature
|
|
|
|
* @param siglen Length of signature in bytes
|
|
|
|
*/
|
|
|
|
inline bool verify(const Identity &with,const void *sig,unsigned int siglen) const
|
|
|
|
{
|
|
|
|
unsigned char dig[32];
|
|
|
|
_shaForSignature(dig);
|
|
|
|
return with.verifySignature(dig,sig,siglen);
|
|
|
|
}
|
2013-07-29 17:56:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if another peer is indeed a current member of this network
|
|
|
|
*
|
|
|
|
* Fields with companion ~fields are compared with the defined maximum
|
|
|
|
* delta in this certificate. Fields without ~fields are compared for
|
|
|
|
* equality.
|
|
|
|
*
|
2013-07-29 20:18:29 +00:00
|
|
|
* This does not verify the certificate's signature!
|
2013-07-29 17:56:20 +00:00
|
|
|
*
|
|
|
|
* @param mc Peer membership certificate
|
|
|
|
* @return True if mc's membership in this network is current
|
|
|
|
*/
|
|
|
|
bool qualifyMembership(const Certificate &mc) const;
|
2013-07-29 20:18:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void _shaForSignature(unsigned char *dig) const;
|
2013-07-29 17:56:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2013-09-04 13:27:56 +00:00
|
|
|
* Preload and rates of accrual for multicast group bandwidth limits
|
|
|
|
*
|
|
|
|
* Key is multicast group in lower case hex format: MAC (without :s) /
|
|
|
|
* ADI (hex). Value is a comma-delimited list of: preload, min, max,
|
|
|
|
* rate of accrual for bandwidth accounts. A key called '*' indicates
|
|
|
|
* the default for unlisted groups.
|
2013-07-29 17:56:20 +00:00
|
|
|
*/
|
2013-09-04 13:27:56 +00:00
|
|
|
class MulticastRates : private Dictionary
|
2013-07-29 17:56:20 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* Preload and accrual parameter tuple
|
|
|
|
*/
|
|
|
|
struct Rate
|
2013-07-29 17:56:20 +00:00
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
Rate() {}
|
|
|
|
Rate(double pl,double minr,double maxr,double bps)
|
|
|
|
{
|
|
|
|
preload = pl;
|
|
|
|
accrual.bytesPerSecond = bps;
|
|
|
|
accrual.maxBalance = maxr;
|
|
|
|
accrual.minBalance = minr;
|
|
|
|
}
|
2013-07-29 17:56:20 +00:00
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
double preload;
|
|
|
|
BandwidthAccount::Accrual accrual;
|
|
|
|
};
|
|
|
|
|
|
|
|
MulticastRates() {}
|
|
|
|
MulticastRates(const char *s) : Dictionary(s) {}
|
|
|
|
MulticastRates(const std::string &s) : Dictionary(s) {}
|
|
|
|
inline std::string toString() const { return Dictionary::toString(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A very minimal default rate, fast enough for ARP
|
|
|
|
*/
|
|
|
|
static const Rate GLOBAL_DEFAULT_RATE;
|
2013-07-29 17:56:20 +00:00
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* @return Default rate, or GLOBAL_DEFAULT_RATE if not specified
|
|
|
|
*/
|
|
|
|
Rate defaultRate() const
|
2013-07-29 17:56:20 +00:00
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
Rate r;
|
|
|
|
const_iterator dfl(find("*"));
|
|
|
|
if (dfl == end())
|
|
|
|
return GLOBAL_DEFAULT_RATE;
|
|
|
|
return _toRate(dfl->second);
|
2013-07-29 17:56:20 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* Get the rate for a given multicast group
|
|
|
|
*
|
|
|
|
* @param mg Multicast group
|
|
|
|
* @return Rate or default() rate if not specified
|
|
|
|
*/
|
|
|
|
Rate get(const MulticastGroup &mg) const
|
2013-08-06 04:05:39 +00:00
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
const_iterator r(find(mg.toString()));
|
|
|
|
if (r == end())
|
|
|
|
return defaultRate();
|
|
|
|
return _toRate(r->second);
|
2013-08-06 04:05:39 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
private:
|
|
|
|
static inline Rate _toRate(const std::string &s)
|
2013-07-29 21:11:00 +00:00
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
char tmp[16384];
|
|
|
|
Utils::scopy(tmp,sizeof(tmp),s.c_str());
|
|
|
|
Rate r;
|
|
|
|
r.preload = 0.0;
|
|
|
|
r.accrual.bytesPerSecond = 0.0;
|
|
|
|
r.accrual.maxBalance = 0.0;
|
|
|
|
r.accrual.minBalance = 0.0;
|
|
|
|
char *saveptr = (char *)0;
|
|
|
|
unsigned int fn = 0;
|
|
|
|
for(char *f=Utils::stok(tmp,",",&saveptr);(f);f=Utils::stok((char *)0,",",&saveptr)) {
|
|
|
|
switch(fn++) {
|
|
|
|
case 0:
|
|
|
|
r.preload = Utils::strToDouble(f);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
r.accrual.minBalance = Utils::strToDouble(f);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
r.accrual.maxBalance = Utils::strToDouble(f);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
r.accrual.bytesPerSecond = Utils::strToDouble(f);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
2013-07-29 21:11:00 +00:00
|
|
|
}
|
2013-09-04 13:27:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A network configuration for a given node
|
|
|
|
*
|
|
|
|
* Configuration fields:
|
|
|
|
*
|
|
|
|
* nwid=<hex network ID> (required)
|
|
|
|
* name=short name
|
|
|
|
* desc=long(er) description
|
|
|
|
* com=Certificate (serialized dictionary)
|
|
|
|
* mr=MulticastRates (serialized dictionary)
|
|
|
|
* o=open network? (1 or 0, default false if missing)
|
|
|
|
* et=ethertype whitelist (comma-delimited list of ethertypes in decimal)
|
|
|
|
* v4s=IPv4 static assignments / netmasks (comma-delimited)
|
|
|
|
* v6s=IPv6 static assignments / netmasks (comma-delimited)
|
|
|
|
*/
|
|
|
|
class Config : private Dictionary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Config() {}
|
|
|
|
Config(const char *s) : Dictionary(s) {}
|
|
|
|
Config(const std::string &s) : Dictionary(s) {}
|
|
|
|
inline std::string toString() const { return Dictionary::toString(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return True if configuration is valid and contains required fields
|
|
|
|
*/
|
|
|
|
inline operator bool() const throw() { return (find("nwid") != end()); }
|
2013-07-29 21:11:00 +00:00
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* @return Network ID
|
|
|
|
* @throws std::invalid_argument Network ID field missing
|
|
|
|
*/
|
2013-07-29 21:11:00 +00:00
|
|
|
inline uint64_t networkId() const
|
|
|
|
throw(std::invalid_argument)
|
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
return Utils::hexStrToU64(get("nwid").c_str());
|
2013-07-29 21:11:00 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* Get this network's short name, or its ID in hex if unspecified
|
|
|
|
*
|
|
|
|
* @return Short name of this network (e.g. "earth")
|
|
|
|
*/
|
2013-08-27 19:55:32 +00:00
|
|
|
inline std::string name() const
|
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
const_iterator n(find("name"));
|
|
|
|
if (n == end())
|
|
|
|
return get("nwid");
|
|
|
|
return n->second;
|
2013-08-27 19:55:32 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* @return Long description of network or empty string if not present
|
|
|
|
*/
|
|
|
|
inline std::string desc() const
|
2013-07-29 21:11:00 +00:00
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
return get("desc",std::string());
|
2013-07-29 21:11:00 +00:00
|
|
|
}
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
/**
|
|
|
|
* @return Certificate of membership for this network, or empty cert if none
|
|
|
|
*/
|
|
|
|
inline Certificate certificateOfMembership() const
|
|
|
|
{
|
2013-08-03 16:53:46 +00:00
|
|
|
const_iterator cm(find("com"));
|
|
|
|
if (cm == end())
|
|
|
|
return Certificate();
|
|
|
|
else return Certificate(cm->second);
|
2013-07-29 17:56:20 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
/**
|
|
|
|
* @return Multicast rates for this network
|
|
|
|
*/
|
|
|
|
inline MulticastRates multicastRates() const
|
|
|
|
{
|
|
|
|
const_iterator mr(find("mr"));
|
|
|
|
if (mr == end())
|
|
|
|
return MulticastRates();
|
|
|
|
else return MulticastRates(mr->second);
|
|
|
|
}
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
/**
|
|
|
|
* @return True if this is an open non-access-controlled network
|
|
|
|
*/
|
|
|
|
inline bool isOpen() const
|
|
|
|
{
|
2013-09-04 13:27:56 +00:00
|
|
|
const_iterator o(find("o"));
|
|
|
|
if (o == end())
|
|
|
|
return false;
|
|
|
|
else if (!o->second.length())
|
|
|
|
return false;
|
|
|
|
else return (o->second[0] == '1');
|
2013-07-29 17:56:20 +00:00
|
|
|
}
|
|
|
|
|
2013-08-28 20:01:27 +00:00
|
|
|
/**
|
|
|
|
* @return Network ethertype whitelist
|
|
|
|
*/
|
|
|
|
inline std::set<unsigned int> etherTypes() const
|
|
|
|
{
|
|
|
|
char tmp[16384];
|
|
|
|
char *saveptr = (char *)0;
|
|
|
|
std::set<unsigned int> et;
|
2013-09-04 13:27:56 +00:00
|
|
|
if (!Utils::scopy(tmp,sizeof(tmp),get("et","").c_str()))
|
|
|
|
return et; // sanity check, packet can't really be that big
|
2013-08-28 20:01:27 +00:00
|
|
|
for(char *f=Utils::stok(tmp,",",&saveptr);(f);f=Utils::stok((char *)0,",",&saveptr)) {
|
2013-09-06 19:06:51 +00:00
|
|
|
unsigned int t = Utils::hexStrToUInt(f);
|
2013-08-28 20:01:27 +00:00
|
|
|
if (t)
|
|
|
|
et.insert(t);
|
|
|
|
}
|
|
|
|
return et;
|
|
|
|
}
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
/**
|
|
|
|
* @return All static addresses / netmasks, IPv4 or IPv6
|
|
|
|
*/
|
|
|
|
inline std::set<InetAddress> staticAddresses() const
|
|
|
|
{
|
|
|
|
std::set<InetAddress> sa;
|
2013-09-04 13:27:56 +00:00
|
|
|
std::vector<std::string> ips(Utils::split(get("v4s","").c_str(),",","",""));
|
2013-07-29 17:56:20 +00:00
|
|
|
for(std::vector<std::string>::const_iterator i(ips.begin());i!=ips.end();++i)
|
|
|
|
sa.insert(InetAddress(*i));
|
2013-09-04 13:27:56 +00:00
|
|
|
ips = Utils::split(get("v6s","").c_str(),",","","");
|
2013-07-29 17:56:20 +00:00
|
|
|
for(std::vector<std::string>::const_iterator i(ips.begin());i!=ips.end();++i)
|
|
|
|
sa.insert(InetAddress(*i));
|
|
|
|
return sa;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-08 14:41:17 +00:00
|
|
|
/**
|
|
|
|
* Status for networks
|
|
|
|
*/
|
|
|
|
enum Status
|
|
|
|
{
|
|
|
|
NETWORK_WAITING_FOR_FIRST_AUTOCONF,
|
|
|
|
NETWORK_OK,
|
|
|
|
NETWORK_ACCESS_DENIED
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param s Status
|
|
|
|
* @return String description
|
|
|
|
*/
|
|
|
|
static const char *statusString(const Status s)
|
|
|
|
throw();
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
private:
|
2013-07-29 17:56:20 +00:00
|
|
|
// Only NodeConfig can create, only SharedPtr can delete
|
2013-08-06 14:15:05 +00:00
|
|
|
|
|
|
|
// Actual construction happens in newInstance()
|
|
|
|
Network()
|
|
|
|
throw() :
|
|
|
|
_tap((EthernetTap *)0)
|
|
|
|
{
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-07-09 18:06:55 +00:00
|
|
|
~Network();
|
|
|
|
|
2013-08-06 05:28:56 +00:00
|
|
|
/**
|
2013-08-06 14:15:05 +00:00
|
|
|
* Create a new Network instance and restore any saved state
|
2013-08-06 05:28:56 +00:00
|
|
|
*
|
2013-08-06 14:15:05 +00:00
|
|
|
* If there is no saved state, a dummy .conf is created on disk to remember
|
|
|
|
* this network across restarts.
|
2013-08-06 05:28:56 +00:00
|
|
|
*
|
2013-08-06 14:15:05 +00:00
|
|
|
* @param renv Runtime environment
|
|
|
|
* @param id Network ID
|
|
|
|
* @return Reference counted pointer to new network
|
|
|
|
* @throws std::runtime_error Unable to create tap device or other fatal error
|
2013-08-06 05:28:56 +00:00
|
|
|
*/
|
2013-08-06 14:15:05 +00:00
|
|
|
static SharedPtr<Network> newInstance(const RuntimeEnvironment *renv,uint64_t id)
|
|
|
|
throw(std::runtime_error);
|
2013-08-06 05:28:56 +00:00
|
|
|
|
2013-08-06 04:05:39 +00:00
|
|
|
/**
|
|
|
|
* Causes all persistent disk presence to be erased on delete
|
|
|
|
*/
|
|
|
|
inline void destroyOnDelete()
|
|
|
|
{
|
|
|
|
_destroyOnDelete = true;
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @return Network ID
|
|
|
|
*/
|
|
|
|
inline uint64_t id() const throw() { return _id; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Ethernet tap
|
|
|
|
*/
|
2013-08-06 14:15:05 +00:00
|
|
|
inline EthernetTap &tap() throw() { return *_tap; }
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
2013-07-29 17:56:20 +00:00
|
|
|
* @return Address of network's controlling node
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
2013-07-29 17:56:20 +00:00
|
|
|
inline Address controller() throw() { return Address(_id >> 24); }
|
2013-07-04 20:56:19 +00:00
|
|
|
|
2013-08-03 16:53:46 +00:00
|
|
|
/**
|
|
|
|
* @return Network ID in hexadecimal form
|
|
|
|
*/
|
|
|
|
inline std::string toString()
|
|
|
|
{
|
|
|
|
char buf[64];
|
2013-08-30 21:05:43 +00:00
|
|
|
Utils::snprintf(buf,sizeof(buf),"%.16llx",(unsigned long long)_id);
|
2013-08-03 16:53:46 +00:00
|
|
|
return std::string(buf);
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
/**
|
|
|
|
* @return True if network is open (no membership required)
|
|
|
|
*/
|
2013-07-29 17:56:20 +00:00
|
|
|
inline bool isOpen() const
|
2013-07-04 20:56:19 +00:00
|
|
|
throw()
|
|
|
|
{
|
2013-07-29 21:11:00 +00:00
|
|
|
try {
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
return _configuration.isOpen();
|
|
|
|
} catch ( ... ) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-29 17:56:20 +00:00
|
|
|
* Update multicast groups for this network's tap
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* @return True if internal multicast group set has changed
|
|
|
|
*/
|
|
|
|
inline bool updateMulticastGroups()
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_lock);
|
2013-08-06 14:15:05 +00:00
|
|
|
return _tap->updateMulticastGroups(_multicastGroups);
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-29 17:56:20 +00:00
|
|
|
* @return Latest set of multicast groups for this network's tap
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
inline std::set<MulticastGroup> multicastGroups() const
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
return _multicastGroups;
|
|
|
|
}
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
/**
|
|
|
|
* Set or update this network's configuration
|
|
|
|
*
|
|
|
|
* This is called by PacketDecoder when an update comes over the wire, or
|
|
|
|
* internally when an old config is reloaded from disk.
|
|
|
|
*
|
|
|
|
* @param conf Configuration in key/value dictionary form
|
|
|
|
*/
|
|
|
|
void setConfiguration(const Config &conf);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Causes this network to request an updated configuration from its master node now
|
|
|
|
*/
|
|
|
|
void requestConfiguration();
|
|
|
|
|
2013-07-29 21:11:00 +00:00
|
|
|
/**
|
|
|
|
* Add or update a peer's membership certificate
|
|
|
|
*
|
|
|
|
* The certificate must already have been validated via signature checking.
|
|
|
|
*
|
|
|
|
* @param peer Peer that owns certificate
|
|
|
|
* @param cert Certificate itself
|
|
|
|
*/
|
2013-08-06 04:05:39 +00:00
|
|
|
void addMembershipCertificate(const Address &peer,const Certificate &cert);
|
2013-07-29 21:11:00 +00:00
|
|
|
|
2013-08-06 04:05:39 +00:00
|
|
|
/**
|
|
|
|
* @param peer Peer address to check
|
|
|
|
* @return True if peer is allowed to communicate on this network
|
|
|
|
*/
|
2013-07-29 21:11:00 +00:00
|
|
|
bool isAllowed(const Address &peer) const;
|
|
|
|
|
|
|
|
/**
|
2013-08-06 04:05:39 +00:00
|
|
|
* Perform cleanup and possibly save state
|
2013-07-29 21:11:00 +00:00
|
|
|
*/
|
|
|
|
void clean();
|
|
|
|
|
2013-07-30 15:14:53 +00:00
|
|
|
/**
|
|
|
|
* @return Time of last updated configuration or 0 if none
|
|
|
|
*/
|
|
|
|
inline uint64_t lastConfigUpdate() const
|
|
|
|
throw()
|
|
|
|
{
|
|
|
|
return _lastConfigUpdate;
|
|
|
|
}
|
|
|
|
|
2013-08-08 14:41:17 +00:00
|
|
|
/**
|
|
|
|
* @return Status of this network
|
|
|
|
*/
|
|
|
|
Status status() const;
|
|
|
|
|
2013-08-08 21:20:35 +00:00
|
|
|
/**
|
2013-09-04 13:27:56 +00:00
|
|
|
* Determine whether frames of a given ethernet type are allowed on this network
|
|
|
|
*
|
2013-08-28 20:01:27 +00:00
|
|
|
* @param etherType Ethernet frame type
|
|
|
|
* @return True if network permits this type
|
2013-08-08 21:20:35 +00:00
|
|
|
*/
|
2013-08-28 20:01:27 +00:00
|
|
|
inline bool permitsEtherType(unsigned int etherType) const
|
|
|
|
throw()
|
2013-08-08 21:20:35 +00:00
|
|
|
{
|
2013-08-28 20:01:27 +00:00
|
|
|
if (!etherType)
|
|
|
|
return false;
|
|
|
|
else if (etherType > 65535)
|
|
|
|
return false;
|
|
|
|
else return ((_etWhitelist[etherType / 8] & (unsigned char)(1 << (etherType % 8))) != 0);
|
2013-08-08 21:20:35 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
inline bool updateAndCheckMulticastBalance(const Address &a,const MulticastGroup &mg,unsigned int bytes)
|
|
|
|
{
|
|
|
|
Mutex::Lock _l(_lock);
|
|
|
|
std::map< std::pair<Address,MulticastGroup>,BandwidthAccount >::iterator bal(_multicastRateAccounts.find(std::pair<Address,MulticastGroup>(a,mg)));
|
|
|
|
}
|
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
private:
|
2013-07-09 18:06:55 +00:00
|
|
|
static void _CBhandleTapData(void *arg,const MAC &from,const MAC &to,unsigned int etherType,const Buffer<4096> &data);
|
2013-08-06 14:15:05 +00:00
|
|
|
void _restoreState();
|
2013-07-09 18:06:55 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
const RuntimeEnvironment *_r;
|
2013-07-29 17:56:20 +00:00
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
// Multicast bandwidth accounting for peers on this network
|
|
|
|
std::map< std::pair<Address,MulticastGroup>,BandwidthAccount > _multicastRateAccounts;
|
|
|
|
|
|
|
|
// Tap and tap multicast memberships for this node on this network
|
2013-08-06 14:15:05 +00:00
|
|
|
EthernetTap *_tap;
|
2013-07-04 20:56:19 +00:00
|
|
|
std::set<MulticastGroup> _multicastGroups;
|
2013-08-06 04:05:39 +00:00
|
|
|
|
2013-09-04 13:27:56 +00:00
|
|
|
// Membership certificates supplied by other peers on this network
|
2013-07-29 21:11:00 +00:00
|
|
|
std::map<Address,Certificate> _membershipCertificates;
|
2013-08-03 16:53:46 +00:00
|
|
|
|
2013-08-06 04:05:39 +00:00
|
|
|
// Configuration from network master node
|
2013-07-29 21:11:00 +00:00
|
|
|
Config _configuration;
|
|
|
|
Certificate _myCertificate;
|
2013-08-03 16:53:46 +00:00
|
|
|
|
2013-08-28 20:01:27 +00:00
|
|
|
// Ethertype whitelist bit field, set from config, for really fast lookup
|
|
|
|
unsigned char _etWhitelist[65536 / 8];
|
|
|
|
|
2013-07-29 17:56:20 +00:00
|
|
|
uint64_t _id;
|
2013-08-03 16:53:46 +00:00
|
|
|
volatile uint64_t _lastConfigUpdate;
|
2013-08-06 04:05:39 +00:00
|
|
|
volatile bool _destroyOnDelete;
|
2013-08-09 21:20:40 +00:00
|
|
|
volatile bool _ready;
|
2013-08-03 16:53:46 +00:00
|
|
|
|
2013-07-04 20:56:19 +00:00
|
|
|
Mutex _lock;
|
|
|
|
|
|
|
|
AtomicCounter __refCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // naemspace ZeroTier
|
|
|
|
|
|
|
|
#endif
|