123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /*
- * Copyright (c)2013-2020 ZeroTier, Inc.
- *
- * Use of this software is governed by the Business Source License included
- * in the LICENSE.TXT file in the project's root directory.
- *
- * Change Date: 2024-01-01
- *
- * 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.
- */
- /****/
- #include "Trace.hpp"
- #include "RuntimeEnvironment.hpp"
- #include "Node.hpp"
- #include "Peer.hpp"
- #include "Path.hpp"
- #include "InetAddress.hpp"
- #include <cstdio>
- #include <cstdlib>
- #include <cstdarg>
- // NOTE: packet IDs are always handled in network byte order, so no need to convert them.
- namespace ZeroTier {
- Trace::Trace(const RuntimeEnvironment *renv) :
- RR(renv),
- _f(0)
- {
- }
- void Trace::unexpectedError(
- void *tPtr,
- uint32_t codeLocation,
- const char *message,
- ...)
- {
- va_list ap;
- ZT_TraceEvent_UNEXPECTED_ERROR ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_UNEXPECTED_ERROR);
- ev.codeLocation = codeLocation;
- Utils::zero<sizeof(ev.message)>(ev.message);
- va_start(ap,message);
- vsnprintf(ev.message,sizeof(ev.message),message,ap);
- va_end(ap);
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_resettingPathsInScope(
- void *const tPtr,
- const uint32_t codeLocation,
- const Identity &reporter,
- const InetAddress &from,
- const InetAddress &oldExternal,
- const InetAddress &newExternal,
- const InetAddress::IpScope scope)
- {
- ZT_TraceEvent_VL1_RESETTING_PATHS_IN_SCOPE ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL1_RESETTING_PATHS_IN_SCOPE);
- ev.codeLocation = Utils::hton(codeLocation);
- from.forTrace(ev.from);
- oldExternal.forTrace(ev.oldExternal);
- newExternal.forTrace(ev.newExternal);
- ev.scope = (uint8_t)scope;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_tryingNewPath(
- void *const tPtr,
- const uint32_t codeLocation,
- const Identity &trying,
- const InetAddress &physicalAddress,
- const InetAddress &triggerAddress,
- const uint64_t triggeringPacketId,
- const uint8_t triggeringPacketVerb,
- const Identity &triggeringPeer,
- const ZT_TraceTryingNewPathReason reason)
- {
- ZT_TraceEvent_VL1_TRYING_NEW_PATH ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL1_TRYING_NEW_PATH);
- ev.codeLocation = Utils::hton(codeLocation);
- Utils::copy<sizeof(ev.peer)>(&ev.peer,trying.fingerprint().apiFingerprint());
- physicalAddress.forTrace(ev.physicalAddress);
- triggerAddress.forTrace(ev.triggerAddress);
- ev.triggeringPacketId = triggeringPacketId;
- ev.triggeringPacketVerb = triggeringPacketVerb;
- Utils::copy<sizeof(ev.triggeringPeer)>(&ev.triggeringPeer,triggeringPeer.fingerprint().apiFingerprint());
- ev.reason = (uint8_t)reason;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_learnedNewPath(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t packetId,
- const Identity &peerIdentity,
- const InetAddress &physicalAddress,
- const InetAddress &replaced)
- {
- ZT_TraceEvent_VL1_LEARNED_NEW_PATH ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL1_LEARNED_NEW_PATH);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.packetId = packetId; // packet IDs are kept in big-endian
- Utils::copy<sizeof(ev.peer)>(&ev.peer,peerIdentity.fingerprint().apiFingerprint());
- physicalAddress.forTrace(ev.physicalAddress);
- replaced.forTrace(ev.replaced);
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_incomingPacketDropped(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t packetId,
- const uint64_t networkId,
- const Identity &peerIdentity,
- const InetAddress &physicalAddress,
- const uint8_t hops,
- const uint8_t verb,
- const ZT_TracePacketDropReason reason)
- {
- ZT_TraceEvent_VL1_INCOMING_PACKET_DROPPED ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL1_INCOMING_PACKET_DROPPED);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.packetId = packetId; // packet IDs are kept in big-endian
- ev.networkId = Utils::hton(networkId);
- Utils::copy<sizeof(ev.peer)>(&ev.peer,peerIdentity.fingerprint().apiFingerprint());
- physicalAddress.forTrace(ev.physicalAddress);
- ev.hops = hops;
- ev.verb = verb;
- ev.reason = (uint8_t)reason;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_outgoingNetworkFrameDropped(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t networkId,
- const MAC &sourceMac,
- const MAC &destMac,
- const uint16_t etherType,
- const uint16_t frameLength,
- const uint8_t *frameData,
- const ZT_TraceFrameDropReason reason)
- {
- ZT_TraceEvent_VL2_OUTGOING_FRAME_DROPPED ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL2_OUTGOING_FRAME_DROPPED);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.networkId = Utils::hton(networkId);
- ev.sourceMac = Utils::hton(sourceMac.toInt());
- ev.destMac = Utils::hton(destMac.toInt());
- ev.etherType = Utils::hton(etherType);
- ev.frameLength = Utils::hton(frameLength);
- if (frameData) {
- unsigned int l = frameLength;
- if (l > sizeof(ev.frameHead))
- l = sizeof(ev.frameHead);
- Utils::copy(ev.frameHead,frameData,l);
- Utils::zero(ev.frameHead + l,sizeof(ev.frameHead) - l);
- }
- ev.reason = (uint8_t)reason;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_incomingNetworkFrameDropped(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t networkId,
- const MAC &sourceMac,
- const MAC &destMac,
- const Identity &peerIdentity,
- const InetAddress &physicalAddress,
- const uint8_t hops,
- const uint16_t frameLength,
- const uint8_t *frameData,
- const uint8_t verb,
- const bool credentialRequestSent,
- const ZT_TraceFrameDropReason reason)
- {
- ZT_TraceEvent_VL2_INCOMING_FRAME_DROPPED ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL2_INCOMING_FRAME_DROPPED);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.networkId = Utils::hton(networkId);
- ev.sourceMac = Utils::hton(sourceMac.toInt());
- ev.destMac = Utils::hton(destMac.toInt());
- Utils::copy<sizeof(ev.sender)>(&ev.sender,peerIdentity.fingerprint().apiFingerprint());
- physicalAddress.forTrace(ev.physicalAddress);
- ev.hops = hops;
- ev.frameLength = Utils::hton(frameLength);
- if (frameData) {
- unsigned int l = frameLength;
- if (l > sizeof(ev.frameHead))
- l = sizeof(ev.frameHead);
- Utils::copy(ev.frameHead,frameData,l);
- Utils::zero(ev.frameHead + l,sizeof(ev.frameHead) - l);
- }
- ev.verb = verb;
- ev.credentialRequestSent = (uint8_t)credentialRequestSent;
- ev.reason = (uint8_t)reason;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_networkConfigRequestSent(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t networkId)
- {
- ZT_TraceEvent_VL2_NETWORK_CONFIG_REQUESTED ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL2_NETWORK_CONFIG_REQUESTED);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.networkId = Utils::hton(networkId);
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_networkFilter(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t networkId,
- const uint8_t primaryRuleSetLog[512],
- const uint8_t matchingCapabilityRuleSetLog[512],
- const uint32_t matchingCapabilityId,
- const int64_t matchingCapabilityTimestamp,
- const Address &source,
- const Address &dest,
- const MAC &sourceMac,
- const MAC &destMac,
- const uint16_t frameLength,
- const uint8_t *frameData,
- const uint16_t etherType,
- const uint16_t vlanId,
- const bool noTee,
- const bool inbound,
- const int accept)
- {
- ZT_TraceEvent_VL2_NETWORK_FILTER ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL2_NETWORK_FILTER);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.networkId = Utils::hton(networkId);
- Utils::copy<sizeof(ev.primaryRuleSetLog)>(ev.primaryRuleSetLog,primaryRuleSetLog);
- if (matchingCapabilityRuleSetLog)
- Utils::copy<sizeof(ev.matchingCapabilityRuleSetLog)>(ev.matchingCapabilityRuleSetLog,matchingCapabilityRuleSetLog);
- else Utils::zero<sizeof(ev.matchingCapabilityRuleSetLog)>(ev.matchingCapabilityRuleSetLog);
- ev.matchingCapabilityId = Utils::hton(matchingCapabilityId);
- ev.matchingCapabilityTimestamp = Utils::hton(matchingCapabilityTimestamp);
- ev.source = Utils::hton(source.toInt());
- ev.dest = Utils::hton(dest.toInt());
- ev.sourceMac = Utils::hton(sourceMac.toInt());
- ev.destMac = Utils::hton(destMac.toInt());
- ev.frameLength = Utils::hton(frameLength);
- if (frameData) {
- unsigned int l = frameLength;
- if (l > sizeof(ev.frameHead))
- l = sizeof(ev.frameHead);
- Utils::copy(ev.frameHead,frameData,l);
- Utils::zero(ev.frameHead + l,sizeof(ev.frameHead) - l);
- }
- ev.etherType = Utils::hton(etherType);
- ev.vlanId = Utils::hton(vlanId);
- ev.noTee = (uint8_t)noTee;
- ev.inbound = (uint8_t)inbound;
- ev.accept = (int8_t)accept;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- void Trace::_credentialRejected(
- void *const tPtr,
- const uint32_t codeLocation,
- const uint64_t networkId,
- const Address &address,
- const Identity &identity,
- const uint32_t credentialId,
- const int64_t credentialTimestamp,
- const uint8_t credentialType,
- const ZT_TraceCredentialRejectionReason reason)
- {
- ZT_TraceEvent_VL2_CREDENTIAL_REJECTED ev; // NOLINT(cppcoreguidelines-pro-type-member-init,hicpp-member-init)
- ev.evSize = ZT_CONST_TO_BE_UINT16(sizeof(ev));
- ev.evType = ZT_CONST_TO_BE_UINT16(ZT_TRACE_VL2_NETWORK_FILTER);
- ev.codeLocation = Utils::hton(codeLocation);
- ev.networkId = Utils::hton(networkId);
- if (identity) {
- Utils::copy<sizeof(ev.peer)>(&ev.peer,identity.fingerprint().apiFingerprint());
- } else {
- ev.peer.address = address.toInt();
- Utils::zero<sizeof(ev.peer.hash)>(ev.peer.hash);
- }
- ev.credentialId = Utils::hton(credentialId);
- ev.credentialTimestamp = Utils::hton(credentialTimestamp);
- ev.credentialType = credentialType;
- ev.reason = (uint8_t)reason;
- RR->node->postEvent(tPtr,ZT_EVENT_TRACE,&ev);
- }
- } // namespace ZeroTier
|