2017-07-07 23:58:05 +00:00
/*
* ZeroTier One - Network Virtualization Everywhere
2019-01-14 18:25:53 +00:00
* Copyright ( C ) 2011 - 2019 ZeroTier , Inc . https : //www.zerotier.com/
2017-07-07 23:58:05 +00:00
*
* 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
2019-01-14 18:25:53 +00:00
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
2017-07-07 23:58:05 +00:00
*
* - -
*
* You can be released from the requirements of the license by purchasing
* a commercial license . Buying such a license is mandatory as soon as you
* develop commercial closed - source software that incorporates or links
* directly against ZeroTier software without disclosing the source code
* of your own application .
*/
2017-12-05 22:16:45 +00:00
//#define ZT_TRACE
2017-12-04 22:40:10 +00:00
# include <stdio.h>
2018-02-03 01:11:23 +00:00
# include <stdarg.h>
2017-12-04 22:40:10 +00:00
2017-07-07 23:58:05 +00:00
# include "Trace.hpp"
# include "RuntimeEnvironment.hpp"
# include "Switch.hpp"
# include "Node.hpp"
# include "Utils.hpp"
2017-07-13 17:51:05 +00:00
# include "Dictionary.hpp"
# include "CertificateOfMembership.hpp"
# include "CertificateOfOwnership.hpp"
# include "Tag.hpp"
# include "Capability.hpp"
# include "Revocation.hpp"
2018-06-22 21:05:53 +00:00
# include "../include/ZeroTierDebug.h"
2017-07-07 23:58:05 +00:00
namespace ZeroTier {
2017-12-04 22:40:10 +00:00
# ifdef ZT_TRACE
static void ZT_LOCAL_TRACE ( void * const tPtr , const RuntimeEnvironment * const RR , const char * const fmt , . . . )
{
char traceMsgBuf [ 1024 ] ;
va_list ap ;
va_start ( ap , fmt ) ;
vsnprintf ( traceMsgBuf , sizeof ( traceMsgBuf ) , fmt , ap ) ;
va_end ( ap ) ;
traceMsgBuf [ sizeof ( traceMsgBuf ) - 1 ] = ( char ) 0 ;
RR - > node - > postEvent ( tPtr , ZT_EVENT_TRACE , traceMsgBuf ) ;
}
# else
# define ZT_LOCAL_TRACE(...)
# endif
2017-07-13 17:51:05 +00:00
void Trace : : resettingPathsInScope ( void * const tPtr , const Address & reporter , const InetAddress & reporterPhysicalAddress , const InetAddress & myPhysicalAddress , const InetAddress : : IpScope scope )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " RESET and revalidate paths in scope %d; new phy address %s reported by trusted peer %.10llx " , ( int ) scope , myPhysicalAddress . toIpString ( tmp ) , reporter . toInt ( ) ) ;
2017-07-13 17:51:05 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__RESETTING_PATHS_IN_SCOPE_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , reporter ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , reporterPhysicalAddress . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_PHYADDR , myPhysicalAddress . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__IP_SCOPE , ( uint64_t ) scope ) ;
2017-07-07 23:58:05 +00:00
2017-12-04 22:40:10 +00:00
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
2018-01-10 23:23:48 +00:00
_spamToAllNetworks ( tPtr , d , Trace : : LEVEL_NORMAL ) ;
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : peerConfirmingUnknownPath ( void * const tPtr , const uint64_t networkId , Peer & peer , const SharedPtr < Path > & path , const uint64_t packetId , const Packet : : Verb verb )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
if ( ! path ) return ; // sanity check
ZT_LOCAL_TRACE ( tPtr , RR , " trying unknown path %s to %.10llx (packet %.16llx verb %d local socket %lld network %.16llx) " , path - > address ( ) . toString ( tmp ) , peer . address ( ) . toInt ( ) , packetId , ( double ) verb , path - > localSocket ( ) , networkId ) ;
std : : pair < Address , Trace : : Level > byn ;
if ( networkId ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( networkId , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__PEER_CONFIRMING_UNKNOWN_PATH_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_VERB , ( uint64_t ) verb ) ;
if ( networkId )
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , networkId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , peer . address ( ) ) ;
if ( path ) {
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , path - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , path - > localSocket ( ) ) ;
}
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
2017-07-13 17:51:05 +00:00
}
2017-07-07 23:58:05 +00:00
}
2018-05-31 00:45:29 +00:00
void Trace : : peerLinkNowRedundant ( void * const tPtr , Peer & peer )
2018-05-01 23:32:15 +00:00
{
2018-05-31 00:45:29 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " link to peer %.10llx is fully redundant " , peer . address ( ) . toInt ( ) ) ;
2018-05-01 23:32:15 +00:00
}
2018-05-31 00:45:29 +00:00
void Trace : : peerLinkNoLongerRedundant ( void * const tPtr , Peer & peer )
2018-05-01 23:32:15 +00:00
{
2018-05-31 00:45:29 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " link to peer %.10llx is no longer redundant " , peer . address ( ) . toInt ( ) ) ;
2018-05-01 23:32:15 +00:00
}
2018-05-31 00:45:29 +00:00
void Trace : : peerLinkAggregateStatistics ( void * const tPtr , Peer & peer )
2018-05-01 23:32:15 +00:00
{
2018-05-31 00:45:29 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " link to peer %.10llx is composed of (%d) physical paths %s, has packet delay variance (%.0f ms), mean latency (%.0f ms) " ,
peer . address ( ) . toInt ( ) ,
peer . aggregateLinkPhysicalPathCount ( ) ,
peer . interfaceListStr ( ) ,
peer . computeAggregateLinkPacketDelayVariance ( ) ,
peer . computeAggregateLinkMeanLatency ( ) ) ;
2018-05-01 23:32:15 +00:00
}
2017-12-04 22:40:10 +00:00
void Trace : : peerLearnedNewPath ( void * const tPtr , const uint64_t networkId , Peer & peer , const SharedPtr < Path > & newPath , const uint64_t packetId )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
if ( ! newPath ) return ; // sanity check
ZT_LOCAL_TRACE ( tPtr , RR , " learned new path %s to %.10llx (packet %.16llx local socket %lld network %.16llx) " , newPath - > address ( ) . toString ( tmp ) , peer . address ( ) . toInt ( ) , packetId , newPath - > localSocket ( ) , networkId ) ;
std : : pair < Address , Trace : : Level > byn ;
if ( networkId ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( networkId , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__PEER_LEARNED_NEW_PATH_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
if ( networkId )
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , networkId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , peer . address ( ) ) ;
2017-07-13 17:51:05 +00:00
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , newPath - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , newPath - > localSocket ( ) ) ;
2017-12-04 22:40:10 +00:00
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
2017-07-13 17:51:05 +00:00
}
2017-07-07 23:58:05 +00:00
}
2017-10-25 19:42:14 +00:00
void Trace : : peerRedirected ( void * const tPtr , const uint64_t networkId , Peer & peer , const SharedPtr < Path > & newPath )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
if ( ! newPath ) return ; // sanity check
ZT_LOCAL_TRACE ( tPtr , RR , " explicit redirect from %.10llx to path %s " , peer . address ( ) . toInt ( ) , newPath - > address ( ) . toString ( tmp ) ) ;
std : : pair < Address , Trace : : Level > byn ;
if ( networkId ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( networkId , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__PEER_REDIRECTED_S ) ;
if ( networkId )
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , networkId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , peer . address ( ) ) ;
2017-07-13 17:51:05 +00:00
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , newPath - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , newPath - > localSocket ( ) ) ;
2017-12-04 22:40:10 +00:00
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
2017-07-13 17:51:05 +00:00
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : outgoingNetworkFrameDropped ( void * const tPtr , const SharedPtr < Network > & network , const MAC & sourceMac , const MAC & destMac , const unsigned int etherType , const unsigned int vlanId , const unsigned int frameLen , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-12-05 22:53:28 +00:00
# ifdef ZT_TRACE
2017-12-04 22:40:10 +00:00
char tmp [ 128 ] , tmp2 [ 128 ] ;
2017-12-05 22:53:28 +00:00
# endif
2017-07-13 17:51:05 +00:00
if ( ! network ) return ; // sanity check
2017-12-04 22:40:10 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " %.16llx DROP frame %s -> %s etherType %.4x size %u (%s) " , network - > id ( ) , sourceMac . toString ( tmp ) , destMac . toString ( tmp2 ) , etherType , frameLen , ( reason ) ? reason : " unknown reason " ) ;
std : : pair < Address , Trace : : Level > byn ;
{ Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( network - > id ( ) , byn ) ; }
2018-01-10 23:23:48 +00:00
if ( ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_VERBOSE ) ) | | ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_VERBOSE ) ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__OUTGOING_NETWORK_FRAME_DROPPED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , network - > id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__SOURCE_MAC , sourceMac . toInt ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__DEST_MAC , destMac . toInt ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__ETHERTYPE , ( uint64_t ) etherType ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__VLAN_ID , ( uint64_t ) vlanId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__FRAME_LENGTH , ( uint64_t ) frameLen ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_VERBOSE ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , _globalTarget ) ;
2018-01-10 23:23:48 +00:00
if ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_VERBOSE ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , byn . first ) ;
2017-07-14 21:57:40 +00:00
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : incomingNetworkAccessDenied ( void * const tPtr , const SharedPtr < Network > & network , const SharedPtr < Path > & path , const uint64_t packetId , const unsigned int packetLength , const Address & source , const Packet : : Verb verb , bool credentialsRequested )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
if ( ! network ) return ; // sanity check
ZT_LOCAL_TRACE ( tPtr , RR , " %.16llx DENIED packet from %.10llx(%s) verb %d size %u%s " , network - > id ( ) , source . toInt ( ) , ( path ) ? ( path - > address ( ) . toString ( tmp ) ) : " ??? " , ( int ) verb , packetLength , credentialsRequested ? " (credentials requested) " : " (credentials not requested) " ) ;
std : : pair < Address , Trace : : Level > byn ;
{ Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( network - > id ( ) , byn ) ; }
2018-01-10 23:23:48 +00:00
if ( ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_VERBOSE ) ) | | ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_VERBOSE ) ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__INCOMING_NETWORK_ACCESS_DENIED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_VERB , ( uint64_t ) verb ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , source ) ;
if ( path ) {
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , path - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , path - > localSocket ( ) ) ;
}
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , network - > id ( ) ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_VERBOSE ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , _globalTarget ) ;
2018-01-10 23:23:48 +00:00
if ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_VERBOSE ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , byn . first ) ;
2017-07-13 17:51:05 +00:00
}
2017-07-07 23:58:05 +00:00
}
2017-07-14 21:57:40 +00:00
void Trace : : incomingNetworkFrameDropped ( void * const tPtr , const SharedPtr < Network > & network , const SharedPtr < Path > & path , const uint64_t packetId , const unsigned int packetLength , const Address & source , const Packet : : Verb verb , const MAC & sourceMac , const MAC & destMac , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-07-14 21:57:40 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
if ( ! network ) return ; // sanity check
ZT_LOCAL_TRACE ( tPtr , RR , " %.16llx DROPPED frame from %.10llx(%s) verb %d size %u " , network - > id ( ) , source . toInt ( ) , ( path ) ? ( path - > address ( ) . toString ( tmp ) ) : " ??? " , ( int ) verb , packetLength ) ;
std : : pair < Address , Trace : : Level > byn ;
{ Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( network - > id ( ) , byn ) ; }
2018-01-10 23:23:48 +00:00
if ( ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_VERBOSE ) ) | | ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_VERBOSE ) ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__INCOMING_NETWORK_FRAME_DROPPED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_VERB , ( uint64_t ) verb ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , source ) ;
if ( path ) {
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , path - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , path - > localSocket ( ) ) ;
}
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , network - > id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__SOURCE_MAC , sourceMac . toInt ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__DEST_MAC , destMac . toInt ( ) ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_VERBOSE ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , _globalTarget ) ;
2018-01-10 23:23:48 +00:00
if ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_VERBOSE ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , byn . first ) ;
2017-07-14 21:57:40 +00:00
}
2017-07-07 23:58:05 +00:00
}
2017-08-18 20:59:22 +00:00
void Trace : : incomingPacketMessageAuthenticationFailure ( void * const tPtr , const SharedPtr < Path > & path , const uint64_t packetId , const Address & source , const unsigned int hops , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " MAC failed for packet %.16llx from %.10llx(%s) " , packetId , source . toInt ( ) , ( path ) ? path - > address ( ) . toString ( tmp ) : " ??? " ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = Trace : : LEVEL_DEBUG ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__PACKET_MAC_FAILURE_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_HOPS , ( uint64_t ) hops ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , source ) ;
if ( path ) {
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , path - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , path - > localSocket ( ) ) ;
}
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
_send ( tPtr , d , _globalTarget ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : incomingPacketInvalid ( void * const tPtr , const SharedPtr < Path > & path , const uint64_t packetId , const Address & source , const unsigned int hops , const Packet : : Verb verb , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " INVALID packet %.16llx from %.10llx(%s) (%s) " , packetId , source . toInt ( ) , ( path ) ? path - > address ( ) . toString ( tmp ) : " ??? " , ( reason ) ? reason : " unknown reason " ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = Trace : : LEVEL_DEBUG ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__PACKET_INVALID_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_VERB , ( uint64_t ) verb ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , source ) ;
if ( path ) {
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , path - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , path - > localSocket ( ) ) ;
}
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_HOPS , ( uint64_t ) hops ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
_send ( tPtr , d , _globalTarget ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : incomingPacketDroppedHELLO ( void * const tPtr , const SharedPtr < Path > & path , const uint64_t packetId , const Address & source , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-07-13 17:51:05 +00:00
char tmp [ 128 ] ;
2017-12-04 22:40:10 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " DROPPED HELLO from %.10llx(%s) (%s) " , source . toInt ( ) , ( path ) ? path - > address ( ) . toString ( tmp ) : " ??? " , ( reason ) ? reason : " ??? " ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = Trace : : LEVEL_DEBUG ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__PACKET_INVALID_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__PACKET_ID , packetId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_ZTADDR , source ) ;
if ( path ) {
d . add ( ZT_REMOTE_TRACE_FIELD__REMOTE_PHYADDR , path - > address ( ) . toString ( tmp ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__LOCAL_SOCKET , path - > localSocket ( ) ) ;
}
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
_send ( tPtr , d , _globalTarget ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : networkConfigRequestSent ( void * const tPtr , const Network & network , const Address & controller )
2017-07-07 23:58:05 +00:00
{
2017-12-04 22:40:10 +00:00
ZT_LOCAL_TRACE ( tPtr , RR , " requesting configuration for network %.16llx " , network . id ( ) ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = Trace : : LEVEL_DEBUG ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__NETWORK_CONFIG_REQUEST_SENT_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , network . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_CONTROLLER_ID , controller ) ;
_send ( tPtr , d , _globalTarget ) ;
}
2017-07-07 23:58:05 +00:00
}
void Trace : : networkFilter (
2017-07-13 17:51:05 +00:00
void * const tPtr ,
2017-07-07 23:58:05 +00:00
const Network & network ,
const RuleResultLog & primaryRuleSetLog ,
const RuleResultLog * const matchingCapabilityRuleSetLog ,
const Capability * const matchingCapability ,
const Address & ztSource ,
const Address & ztDest ,
const MAC & macSource ,
const MAC & macDest ,
const uint8_t * const frameData ,
const unsigned int frameLen ,
const unsigned int etherType ,
const unsigned int vlanId ,
const bool noTee ,
const bool inbound ,
const int accept )
{
2017-12-04 22:40:10 +00:00
std : : pair < Address , Trace : : Level > byn ;
{ Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( network . id ( ) , byn ) ; }
2018-01-10 23:23:48 +00:00
if ( ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_RULES ) ) | | ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_RULES ) ) ) {
2017-12-04 22:40:10 +00:00
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__NETWORK_FILTER_TRACE_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , network . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__SOURCE_ZTADDR , ztSource ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__DEST_ZTADDR , ztDest ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__SOURCE_MAC , macSource . toInt ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__DEST_MAC , macDest . toInt ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__ETHERTYPE , ( uint64_t ) etherType ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__VLAN_ID , ( uint64_t ) vlanId ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__FILTER_FLAG_NOTEE , noTee ? " 1 " : " 0 " ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__FILTER_FLAG_INBOUND , inbound ? " 1 " : " 0 " ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__FILTER_RESULT , ( int64_t ) accept ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__FILTER_BASE_RULE_LOG , ( const char * ) primaryRuleSetLog . data ( ) , ( int ) primaryRuleSetLog . sizeBytes ( ) ) ;
if ( matchingCapabilityRuleSetLog )
d . add ( ZT_REMOTE_TRACE_FIELD__FILTER_CAP_RULE_LOG , ( const char * ) matchingCapabilityRuleSetLog - > data ( ) , ( int ) matchingCapabilityRuleSetLog - > sizeBytes ( ) ) ;
if ( matchingCapability )
d . add ( ZT_REMOTE_TRACE_FIELD__FILTER_CAP_ID , ( uint64_t ) matchingCapability - > id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__FRAME_LENGTH , ( uint64_t ) frameLen ) ;
if ( frameLen > 0 )
d . add ( ZT_REMOTE_TRACE_FIELD__FRAME_DATA , ( const char * ) frameData , ( frameLen > 256 ) ? ( int ) 256 : ( int ) frameLen ) ;
2018-01-10 23:23:48 +00:00
if ( ( _globalTarget ) & & ( ( int ) _globalLevel > = ( int ) Trace : : LEVEL_RULES ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , _globalTarget ) ;
2018-01-10 23:23:48 +00:00
if ( ( byn . first ) & & ( ( int ) byn . second > = ( int ) Trace : : LEVEL_RULES ) )
2017-12-04 22:40:10 +00:00
_send ( tPtr , d , byn . first ) ;
}
2017-07-13 17:51:05 +00:00
}
void Trace : : credentialRejected ( void * const tPtr , const CertificateOfMembership & c , const char * reason )
{
2017-12-04 22:40:10 +00:00
std : : pair < Address , Trace : : Level > byn ;
if ( c . networkId ( ) ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( c . networkId ( ) , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , c . networkId ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TYPE , ( uint64_t ) c . credentialType ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ID , ( uint64_t ) c . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TIMESTAMP , c . timestamp ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ISSUED_TO , c . issuedTo ( ) ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : credentialRejected ( void * const tPtr , const CertificateOfOwnership & c , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-12-04 22:40:10 +00:00
std : : pair < Address , Trace : : Level > byn ;
if ( c . networkId ( ) ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( c . networkId ( ) , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , c . networkId ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TYPE , ( uint64_t ) c . credentialType ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ID , ( uint64_t ) c . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TIMESTAMP , c . timestamp ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ISSUED_TO , c . issuedTo ( ) ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : credentialRejected ( void * const tPtr , const Capability & c , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-12-04 22:40:10 +00:00
std : : pair < Address , Trace : : Level > byn ;
if ( c . networkId ( ) ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( c . networkId ( ) , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , c . networkId ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TYPE , ( uint64_t ) c . credentialType ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ID , ( uint64_t ) c . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TIMESTAMP , c . timestamp ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ISSUED_TO , c . issuedTo ( ) ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : credentialRejected ( void * const tPtr , const Tag & c , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-12-04 22:40:10 +00:00
std : : pair < Address , Trace : : Level > byn ;
if ( c . networkId ( ) ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( c . networkId ( ) , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , c . networkId ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TYPE , ( uint64_t ) c . credentialType ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ID , ( uint64_t ) c . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TIMESTAMP , c . timestamp ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ISSUED_TO , c . issuedTo ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_INFO , ( uint64_t ) c . value ( ) ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-07-13 17:51:05 +00:00
void Trace : : credentialRejected ( void * const tPtr , const Revocation & c , const char * reason )
2017-07-07 23:58:05 +00:00
{
2017-12-04 22:40:10 +00:00
std : : pair < Address , Trace : : Level > byn ;
if ( c . networkId ( ) ) { Mutex : : Lock l ( _byNet_m ) ; _byNet . get ( c . networkId ( ) , byn ) ; }
if ( ( _globalTarget ) | | ( byn . first ) ) {
Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > d ;
d . add ( ZT_REMOTE_TRACE_FIELD__EVENT , ZT_REMOTE_TRACE_EVENT__CREDENTIAL_REJECTED_S ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__NETWORK_ID , c . networkId ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_TYPE , ( uint64_t ) c . credentialType ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_ID , ( uint64_t ) c . id ( ) ) ;
d . add ( ZT_REMOTE_TRACE_FIELD__CREDENTIAL_REVOCATION_TARGET , c . target ( ) ) ;
if ( reason )
d . add ( ZT_REMOTE_TRACE_FIELD__REASON , reason ) ;
if ( _globalTarget )
_send ( tPtr , d , _globalTarget ) ;
if ( byn . first )
_send ( tPtr , d , byn . first ) ;
}
2017-07-07 23:58:05 +00:00
}
2017-12-04 22:40:10 +00:00
void Trace : : updateMemoizedSettings ( )
2017-07-07 23:58:05 +00:00
{
2017-12-04 22:40:10 +00:00
_globalTarget = RR - > node - > remoteTraceTarget ( ) ;
_globalLevel = RR - > node - > remoteTraceLevel ( ) ;
const std : : vector < SharedPtr < Network > > nws ( RR - > node - > allNetworks ( ) ) ;
{
Mutex : : Lock l ( _byNet_m ) ;
_byNet . clear ( ) ;
for ( std : : vector < SharedPtr < Network > > : : const_iterator n ( nws . begin ( ) ) ; n ! = nws . end ( ) ; + + n ) {
const Address dest ( ( * n ) - > config ( ) . remoteTraceTarget ) ;
if ( dest ) {
std : : pair < Address , Trace : : Level > & m = _byNet [ ( * n ) - > id ( ) ] ;
m . first = dest ;
m . second = ( * n ) - > config ( ) . remoteTraceLevel ;
2017-07-13 22:08:57 +00:00
}
}
}
2017-07-13 17:51:05 +00:00
}
2017-12-04 22:40:10 +00:00
void Trace : : _send ( void * const tPtr , const Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > & d , const Address & dest )
2017-07-13 17:51:05 +00:00
{
2017-12-04 22:40:10 +00:00
Packet outp ( dest , RR - > identity . address ( ) , Packet : : VERB_REMOTE_TRACE ) ;
outp . appendCString ( d . data ( ) ) ;
outp . compress ( ) ;
RR - > sw - > send ( tPtr , outp , true ) ;
2017-07-13 17:51:05 +00:00
}
2017-12-04 22:40:10 +00:00
void Trace : : _spamToAllNetworks ( void * const tPtr , const Dictionary < ZT_MAX_REMOTE_TRACE_SIZE > & d , const Level level )
2017-07-13 17:51:05 +00:00
{
2017-12-04 22:40:10 +00:00
Mutex : : Lock l ( _byNet_m ) ;
Hashtable < uint64_t , std : : pair < Address , Trace : : Level > > : : Iterator i ( _byNet ) ;
uint64_t * k = ( uint64_t * ) 0 ;
std : : pair < Address , Trace : : Level > * v = ( std : : pair < Address , Trace : : Level > * ) 0 ;
while ( i . next ( k , v ) ) {
if ( ( v ) & & ( v - > first ) & & ( ( int ) v - > second > = ( int ) level ) )
_send ( tPtr , d , v - > first ) ;
2017-07-13 17:51:05 +00:00
}
2017-07-07 23:58:05 +00:00
}
} // namespace ZeroTier