ZeroTierOne/node
2016-11-18 15:49:28 -08:00
..
Address.hpp
Array.hpp
AtomicCounter.hpp
Buffer.hpp
C25519.cpp
C25519.hpp
Capability.cpp
Capability.hpp Broke down and added an OR to the rules engine. It is now possible to have a series of MATCHes that are ORed. 2016-10-11 12:00:16 -07:00
CertificateOfMembership.cpp
CertificateOfMembership.hpp
Cluster.cpp Cluster build fix. 2016-09-06 15:06:07 -07:00
Cluster.hpp
Constants.hpp Rate gate expensive validation of new identities in HELLO. 2016-11-18 12:59:04 -08:00
Dictionary.hpp Refactored network config chunking to sign every chunk to prevent stupid DOS attack potential, and implement network config fast propagate (though we probably will not use this for a bit). 2016-09-27 11:33:48 -07:00
Hashtable.hpp Rework how paths are set as remote cluster preferred. The code is now clearer and cluster preference indications are now very sticky as they should be. 2016-09-06 12:45:28 -07:00
Identity.cpp
Identity.hpp
IncomingPacket.cpp Rate gate expensive validation of new identities in HELLO. 2016-11-18 12:59:04 -08:00
IncomingPacket.hpp Remove unused POW code, will revisit later. 2016-10-13 13:17:30 -07:00
InetAddress.cpp Fix the case for InetAddress::containsAddress for IPv6 route of :: 2016-10-07 14:29:06 -07:00
InetAddress.hpp Small bug fix and warning removal. 2016-11-18 13:01:45 -08:00
MAC.hpp
Membership.cpp add new files & remove old ones from VS project. Now builds & runs on Windows again 2016-11-03 12:10:50 -07:00
Membership.hpp Bunch more refactoring and work on revocations, etc. 2016-09-26 16:17:02 -07:00
Multicaster.cpp Rename getBestRoot() etc. 2016-11-17 16:31:58 -08:00
Multicaster.hpp Cleanup, and implement compression disable flag for networks. 2016-09-27 12:22:25 -07:00
MulticastGroup.hpp
Mutex.hpp
Network.cpp Refactor controller to permit sending of pushes as well as just replies to config requests. 2016-11-10 11:54:47 -08:00
Network.hpp Refactor controller to permit sending of pushes as well as just replies to config requests. 2016-11-10 11:54:47 -08:00
NetworkConfig.cpp Credential TTL (tags/capabilities) should be credential time max delta, since we could get pushed one that is newer. 2016-09-07 12:12:52 -07:00
NetworkConfig.hpp Cleanup, and implement compression disable flag for networks. 2016-09-27 12:22:25 -07:00
NetworkController.hpp Refactor controller to permit sending of pushes as well as just replies to config requests. 2016-11-10 11:54:47 -08:00
Node.cpp Wire through upstream stuff and add setRole(). 2016-11-18 13:48:49 -08:00
Node.hpp Wire through upstream stuff and add setRole(). 2016-11-18 13:48:49 -08:00
NonCopyable.hpp
OutboundMulticast.cpp Cleanup, and implement compression disable flag for networks. 2016-09-27 12:22:25 -07:00
OutboundMulticast.hpp Cleanup, and implement compression disable flag for networks. 2016-09-27 12:22:25 -07:00
Packet.cpp cleanup 2016-10-13 13:52:45 -07:00
Packet.hpp Rename getBestRoot() etc. 2016-11-17 16:31:58 -08:00
Path.cpp
Path.hpp Implement relay policy, and setting multicast limit to 0 now disables multicast on the network as would be expected. 2016-09-13 14:27:18 -07:00
Peer.cpp Keep connections up for netconf stuff as well as frames. 2016-11-09 16:04:08 -08:00
Peer.hpp Modify unite() to deal with a second layer of upstreams. 2016-11-17 16:59:04 -08:00
Poly1305.cpp
Poly1305.hpp
README.md
Revocation.cpp Revocation work in progress, add WATCH which is TEE with implicit rate sync (thanks JG@DCVC!), and clean up some cruft in Network. 2016-09-23 16:08:38 -07:00
Revocation.hpp Bunch more refactoring and work on revocations, etc. 2016-09-26 16:17:02 -07:00
RuntimeEnvironment.hpp
Salsa20.cpp
Salsa20.hpp
SelfAwareness.cpp Refactor COM stuff a bit, and respond to COM requests a bit more readily for rapid setup. Will need to revisit later. 2016-09-20 21:21:34 -07:00
SelfAwareness.hpp Bunch more path refactoring. Peers no longer forget paths, but do not normally use expired paths. Expired paths might still be tried if nothing else is reachable. 2016-09-07 11:13:17 -07:00
SHA512.cpp
SHA512.hpp
SharedPtr.hpp
Switch.cpp Modify unite() to deal with a second layer of upstreams. 2016-11-17 16:59:04 -08:00
Switch.hpp Modify unite() to deal with a second layer of upstreams. 2016-11-17 16:59:04 -08:00
Tag.cpp Revocation work in progress, add WATCH which is TEE with implicit rate sync (thanks JG@DCVC!), and clean up some cruft in Network. 2016-09-23 16:08:38 -07:00
Tag.hpp Revocation work in progress, add WATCH which is TEE with implicit rate sync (thanks JG@DCVC!), and clean up some cruft in Network. 2016-09-23 16:08:38 -07:00
Topology.cpp Proactively auto-load designated upstreams. 2016-11-18 10:39:26 -08:00
Topology.hpp Rename getBestRoot() etc. 2016-11-17 16:31:58 -08:00
Utils.cpp Move split() to OSUtils since it is not used in core. 2016-11-18 15:49:28 -08:00
Utils.hpp Move split() to OSUtils since it is not used in core. 2016-11-18 15:49:28 -08:00
World.hpp Naming... 2016-09-14 17:35:50 -07:00

ZeroTier Virtual Switch Core

This directory contains the real ZeroTier: a completely OS-independent global virtual Ethernet switch engine. This is where the magic happens.

Give it wire packets and it gives you Ethernet packets, and vice versa. The core contains absolutely no actual I/O, port configuration, or other OS-specific code (except Utils::getSecureRandom()). It provides a simple C API via /include/ZeroTierOne.h. It's designed to be small and maximally portable for future use on small embedded and special purpose systems.

Code in here follows these guidelines:

  • Keep it minimal, especially in terms of code footprint and memory use.
  • There should be no OS-dependent code here unless absolutely necessary (e.g. getSecureRandom).
  • If it's not part of the core virtual Ethernet switch it does not belong here.
  • No C++11 or C++14 since older and embedded compilers don't support it yet and this should be maximally portable.
  • Minimize the use of complex C++ features since at some point we might end up "minus-minus'ing" this code if doing so proves necessary to port to tiny embedded systems.