ZeroTierOne/node
2022-06-08 10:01:54 -07:00
..
Address.hpp
AES.cpp Likely fix for some alignment issues on ARM. 2020-11-25 14:28:41 -05:00
AES.hpp
AES_aesni.cpp
AES_armcrypto.cpp Fixing regression in AES for ARM targets 2020-11-27 08:22:55 +00:00
AtomicCounter.hpp
Bond.cpp Fix for ab-mode link failure, QoS metrics (WIP) 2022-06-08 10:01:54 -07:00
Bond.hpp Fix for ab-mode link failure, QoS metrics (WIP) 2022-06-08 10:01:54 -07:00
Buffer.hpp
C25519.cpp
C25519.hpp
Capability.cpp
Capability.hpp
CertificateOfMembership.cpp Revert "Use a faster method of fingerprinting identities." 2021-09-20 22:05:39 -04:00
CertificateOfMembership.hpp Remove ancient controller support. 2021-09-20 18:38:29 -04:00
CertificateOfOwnership.cpp
CertificateOfOwnership.hpp
Constants.hpp Fix for ab-mode link failure, QoS metrics (WIP) 2022-06-08 10:01:54 -07:00
Credential.hpp
Dictionary.hpp
DNS.hpp
Hashtable.hpp
Identity.cpp
Identity.hpp Revert "Use a faster method of fingerprinting identities." 2021-09-20 22:05:39 -04:00
IncomingPacket.cpp Fix for ab-mode link failure, QoS metrics (WIP) 2022-06-08 10:01:54 -07:00
IncomingPacket.hpp Fix for ab-mode link failure, QoS metrics (WIP) 2022-06-08 10:01:54 -07:00
InetAddress.cpp missing break in InetAddress::ipScope() 2020-11-23 14:54:13 -08:00
InetAddress.hpp
MAC.hpp
Membership.cpp Fix a possible excessive memory use issue in controller and clean up a bunch of COM handling and other code in the normal node. 2022-04-19 19:59:54 -04:00
Membership.hpp Several more SSO/OIDC related fixes, and bump version to 1.8.9. 2022-04-19 21:29:11 -04:00
Multicaster.cpp
Multicaster.hpp
MulticastGroup.hpp
Mutex.hpp Use lowercase when including Windows headers 2021-12-29 16:29:08 -05:00
Network.cpp Several more SSO/OIDC related fixes, and bump version to 1.8.9. 2022-04-19 21:29:11 -04:00
Network.hpp Fix a possible excessive memory use issue in controller and clean up a bunch of COM handling and other code in the normal node. 2022-04-19 19:59:54 -04:00
NetworkConfig.cpp refresh token run loop 2021-12-03 15:44:04 -08:00
NetworkConfig.hpp Restore sending of rejections but move it exclusively to a thread, widen netconf window to 30 minutes. 2022-04-19 10:37:58 -04:00
NetworkController.hpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
Node.cpp Set version to correct 1.10.0. 2022-06-06 16:18:50 -04:00
Node.hpp Consolidation of multipath logic. Better system separation 2021-09-01 21:37:49 -07:00
OutboundMulticast.cpp
OutboundMulticast.hpp
Packet.cpp
Packet.hpp Basic plumbing for authentication requirement and piping through of URL information. 2021-05-24 22:58:17 -04:00
Path.cpp
Path.hpp Change ECHO divisor from 20 to 6 2022-02-25 11:29:07 -08:00
Peer.cpp Build fix. 2022-04-19 21:30:36 -04:00
Peer.hpp Several more SSO/OIDC related fixes, and bump version to 1.8.9. 2022-04-19 21:29:11 -04:00
Poly1305.cpp
Poly1305.hpp
README.md
Revocation.cpp
Revocation.hpp Push credentials always if updated (client-side) and some controller-side cleanup that should be logically irrelevant but will prevent unnecessary DB lookups. 2022-04-19 12:41:38 -04:00
RingBuffer.hpp
RuntimeEnvironment.hpp Consolidation of multipath logic. Better system separation 2021-09-01 21:37:49 -07:00
Salsa20.cpp
Salsa20.hpp ALMOST compiles for ARM64 Windows, only remaining barrier is ring in zeroidc. 2022-04-27 12:19:42 -04:00
SelfAwareness.cpp Proactively seek, enumerate, and distribute external surface addresses 2022-02-17 15:39:17 -08:00
SelfAwareness.hpp Proactively seek, enumerate, and distribute external surface addresses 2022-02-17 15:39:17 -08:00
SHA512.cpp
SHA512.hpp
SharedPtr.hpp
Switch.cpp Consolidation of multipath logic. Better system separation 2021-09-01 21:37:49 -07:00
Switch.hpp
Tag.cpp
Tag.hpp
Topology.cpp Rev roots. 2022-02-15 09:13:58 -05:00
Topology.hpp
Trace.cpp Fix erroneous cast of verb to double that causes invalid tracing output 2021-05-04 08:59:52 -07:00
Trace.hpp
Utils.cpp yes 2021-04-13 16:12:11 +00:00
Utils.hpp
World.hpp

ZeroTier Network Hypervisor 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.