2013-07-04 20:56:19 +00:00
/*
2019-08-23 16:23:39 +00:00
* Copyright ( c ) 2019 ZeroTier , Inc .
2013-07-04 20:56:19 +00:00
*
2019-08-23 16:23:39 +00:00
* Use of this software is governed by the Business Source License included
* in the LICENSE . TXT file in the project ' s root directory .
2013-07-04 20:56:19 +00:00
*
2020-08-20 19:51:39 +00:00
* Change Date : 2025 - 01 - 01
2013-07-04 20:56:19 +00:00
*
2019-08-23 16:23:39 +00:00
* 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 .
2013-07-04 20:56:19 +00:00
*/
2019-08-23 16:23:39 +00:00
/****/
2013-07-04 20:56:19 +00:00
2013-12-07 00:49:20 +00:00
# ifndef ZT_MAC_HPP
# define ZT_MAC_HPP
2013-07-04 20:56:19 +00:00
# include <stdio.h>
# include <stdlib.h>
2014-05-23 21:32:31 +00:00
# include <stdint.h>
2013-08-30 21:05:43 +00:00
2013-07-04 20:56:19 +00:00
# include "Constants.hpp"
# include "Utils.hpp"
2014-05-23 21:32:31 +00:00
# include "Address.hpp"
# include "Buffer.hpp"
2013-07-04 20:56:19 +00:00
namespace ZeroTier {
/**
2014-05-23 21:32:31 +00:00
* 48 - byte Ethernet MAC address
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
class MAC
2013-07-04 20:56:19 +00:00
{
public :
2017-07-06 23:11:11 +00:00
MAC ( ) : _m ( 0ULL ) { }
MAC ( const MAC & m ) : _m ( m . _m ) { }
2014-05-23 21:32:31 +00:00
2017-07-06 23:11:11 +00:00
MAC ( const unsigned char a , const unsigned char b , const unsigned char c , const unsigned char d , const unsigned char e , const unsigned char f ) :
2014-05-23 21:32:31 +00:00
_m ( ( ( ( ( uint64_t ) a ) & 0xffULL ) < < 40 ) |
( ( ( ( uint64_t ) b ) & 0xffULL ) < < 32 ) |
( ( ( ( uint64_t ) c ) & 0xffULL ) < < 24 ) |
( ( ( ( uint64_t ) d ) & 0xffULL ) < < 16 ) |
( ( ( ( uint64_t ) e ) & 0xffULL ) < < 8 ) |
( ( ( uint64_t ) f ) & 0xffULL ) ) { }
2017-07-06 23:11:11 +00:00
MAC ( const void * bits , unsigned int len ) { setTo ( bits , len ) ; }
MAC ( const Address & ztaddr , uint64_t nwid ) { fromAddress ( ztaddr , nwid ) ; }
MAC ( const uint64_t m ) : _m ( m & 0xffffffffffffULL ) { }
2015-04-01 00:53:34 +00:00
/**
* @ return MAC in 64 - bit integer
*/
2017-07-06 23:11:11 +00:00
inline uint64_t toInt ( ) const { return _m ; }
2015-04-01 00:53:34 +00:00
2014-05-23 21:32:31 +00:00
/**
* Set MAC to zero
*/
inline void zero ( ) { _m = 0ULL ; }
/**
* @ return True if MAC is non - zero
*/
2017-07-06 23:11:11 +00:00
inline operator bool ( ) const { return ( _m ! = 0ULL ) ; }
2014-05-23 21:32:31 +00:00
2013-07-04 20:56:19 +00:00
/**
2014-05-23 21:32:31 +00:00
* @ param bits Raw MAC in big - endian byte order
* @ param len Length , must be > = 6 or result is zero
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
inline void setTo ( const void * bits , unsigned int len )
2013-07-04 20:56:19 +00:00
{
2014-05-23 21:32:31 +00:00
if ( len < 6 ) {
_m = 0ULL ;
return ;
}
const unsigned char * b = ( const unsigned char * ) bits ;
2023-05-01 18:48:16 +00:00
_m = ( ( ( ( uint64_t ) * b ) & 0xff ) < < 40 ) ;
+ + b ;
_m | = ( ( ( ( uint64_t ) * b ) & 0xff ) < < 32 ) ;
+ + b ;
_m | = ( ( ( ( uint64_t ) * b ) & 0xff ) < < 24 ) ;
+ + b ;
_m | = ( ( ( ( uint64_t ) * b ) & 0xff ) < < 16 ) ;
+ + b ;
_m | = ( ( ( ( uint64_t ) * b ) & 0xff ) < < 8 ) ;
+ + b ;
2014-05-23 21:32:31 +00:00
_m | = ( ( ( uint64_t ) * b ) & 0xff ) ;
2013-07-04 20:56:19 +00:00
}
/**
2014-05-23 21:32:31 +00:00
* @ param buf Destination buffer for MAC in big - endian byte order
* @ param len Length of buffer , must be > = 6 or nothing is copied
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
inline void copyTo ( void * buf , unsigned int len ) const
2013-07-04 20:56:19 +00:00
{
2023-05-01 18:48:16 +00:00
if ( len < 6 ) {
2014-05-23 21:32:31 +00:00
return ;
2023-05-01 18:48:16 +00:00
}
2014-05-23 21:32:31 +00:00
unsigned char * b = ( unsigned char * ) buf ;
* ( b + + ) = ( unsigned char ) ( ( _m > > 40 ) & 0xff ) ;
* ( b + + ) = ( unsigned char ) ( ( _m > > 32 ) & 0xff ) ;
* ( b + + ) = ( unsigned char ) ( ( _m > > 24 ) & 0xff ) ;
* ( b + + ) = ( unsigned char ) ( ( _m > > 16 ) & 0xff ) ;
* ( b + + ) = ( unsigned char ) ( ( _m > > 8 ) & 0xff ) ;
* b = ( unsigned char ) ( _m & 0xff ) ;
2013-07-04 20:56:19 +00:00
}
/**
2014-05-23 21:32:31 +00:00
* Append to a buffer in big - endian byte order
2013-07-04 20:56:19 +00:00
*
2014-05-23 21:32:31 +00:00
* @ param b Buffer to append to
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
template < unsigned int C >
inline void appendTo ( Buffer < C > & b ) const
2013-07-04 20:56:19 +00:00
{
2014-05-23 21:32:31 +00:00
unsigned char * p = ( unsigned char * ) b . appendField ( 6 ) ;
* ( p + + ) = ( unsigned char ) ( ( _m > > 40 ) & 0xff ) ;
* ( p + + ) = ( unsigned char ) ( ( _m > > 32 ) & 0xff ) ;
* ( p + + ) = ( unsigned char ) ( ( _m > > 24 ) & 0xff ) ;
* ( p + + ) = ( unsigned char ) ( ( _m > > 16 ) & 0xff ) ;
* ( p + + ) = ( unsigned char ) ( ( _m > > 8 ) & 0xff ) ;
* p = ( unsigned char ) ( _m & 0xff ) ;
2013-07-04 20:56:19 +00:00
}
/**
2014-05-23 21:32:31 +00:00
* @ return True if this is broadcast ( all 0xff )
2013-07-04 20:56:19 +00:00
*/
2017-07-06 23:11:11 +00:00
inline bool isBroadcast ( ) const { return ( _m = = 0xffffffffffffULL ) ; }
2014-05-23 21:32:31 +00:00
/**
* @ return True if this is a multicast MAC
*/
2017-07-06 23:11:11 +00:00
inline bool isMulticast ( ) const { return ( ( _m & 0x010000000000ULL ) ! = 0ULL ) ; }
2014-05-23 21:32:31 +00:00
/**
* @ param True if this is a locally - administered MAC
*/
2017-07-06 23:11:11 +00:00
inline bool isLocallyAdministered ( ) const { return ( ( _m & 0x020000000000ULL ) ! = 0ULL ) ; }
2013-07-04 20:56:19 +00:00
/**
2014-05-23 21:32:31 +00:00
* Set this MAC to a MAC derived from an address and a network ID
*
* @ param ztaddr ZeroTier address
* @ param nwid 64 - bit network ID
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
inline void fromAddress ( const Address & ztaddr , uint64_t nwid )
2013-07-04 20:56:19 +00:00
{
2014-05-23 21:32:31 +00:00
uint64_t m = ( ( uint64_t ) firstOctetForNetwork ( nwid ) ) < < 40 ;
2014-05-23 23:21:57 +00:00
m | = ztaddr . toInt ( ) ; // a is 40 bits
2014-05-23 21:32:31 +00:00
m ^ = ( ( nwid > > 8 ) & 0xff ) < < 32 ;
m ^ = ( ( nwid > > 16 ) & 0xff ) < < 24 ;
m ^ = ( ( nwid > > 24 ) & 0xff ) < < 16 ;
m ^ = ( ( nwid > > 32 ) & 0xff ) < < 8 ;
m ^ = ( nwid > > 40 ) & 0xff ;
_m = m ;
2013-07-04 20:56:19 +00:00
}
/**
2014-05-23 21:32:31 +00:00
* Get the ZeroTier address for this MAC on this network ( assuming no bridging of course , basic unicast )
*
2023-01-11 18:42:30 +00:00
* This just XORs the next - least - significant 5 bytes of the network ID again to unmask .
2014-05-23 21:32:31 +00:00
*
* @ param nwid Network ID
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
inline Address toAddress ( uint64_t nwid ) const
2013-07-04 20:56:19 +00:00
{
2014-05-23 23:21:57 +00:00
uint64_t a = _m & 0xffffffffffULL ; // least significant 40 bits of MAC are formed from address
a ^ = ( ( nwid > > 8 ) & 0xff ) < < 32 ; // ... XORed with bits 8-48 of the nwid in little-endian byte order, so unmask it
2014-05-23 21:32:31 +00:00
a ^ = ( ( nwid > > 16 ) & 0xff ) < < 24 ;
a ^ = ( ( nwid > > 24 ) & 0xff ) < < 16 ;
a ^ = ( ( nwid > > 32 ) & 0xff ) < < 8 ;
a ^ = ( nwid > > 40 ) & 0xff ;
return Address ( a ) ;
2013-07-04 20:56:19 +00:00
}
/**
2014-05-23 21:32:31 +00:00
* @ param nwid Network ID
* @ return First octet of MAC for this network
2013-07-04 20:56:19 +00:00
*/
2014-05-23 21:32:31 +00:00
static inline unsigned char firstOctetForNetwork ( uint64_t nwid )
2013-07-04 20:56:19 +00:00
{
2014-05-23 21:32:31 +00:00
unsigned char a = ( ( unsigned char ) ( nwid & 0xfe ) | 0x02 ) ; // locally administered, not multicast, from LSB of network ID
2014-06-18 15:25:30 +00:00
return ( ( a = = 0x52 ) ? 0x32 : a ) ; // blacklist 0x52 since it's used by KVM, libvirt, and other popular virtualization engines... seems de-facto standard on Linux
2013-07-04 20:56:19 +00:00
}
/**
2014-05-23 21:32:31 +00:00
* @ param i Value from 0 to 5 ( inclusive )
* @ return Byte at said position ( address interpreted in big - endian order )
2013-07-04 20:56:19 +00:00
*/
2017-07-17 21:21:09 +00:00
inline unsigned char operator [ ] ( unsigned int i ) const { return ( unsigned char ) ( ( _m > > ( 40 - ( i * 8 ) ) ) & 0xff ) ; }
2013-07-04 20:56:19 +00:00
2013-10-18 20:27:07 +00:00
/**
2014-05-23 21:32:31 +00:00
* @ return 6 , which is the number of bytes in a MAC , for container compliance
2013-10-18 20:27:07 +00:00
*/
2017-07-06 23:11:11 +00:00
inline unsigned int size ( ) const { return 6 ; }
2014-05-23 21:32:31 +00:00
2017-07-06 23:11:11 +00:00
inline unsigned long hashCode ( ) const { return ( unsigned long ) _m ; }
2015-08-27 23:17:21 +00:00
2017-12-04 22:40:10 +00:00
inline char * toString ( char buf [ 18 ] ) const
{
buf [ 0 ] = Utils : : HEXCHARS [ ( _m > > 44 ) & 0xf ] ;
buf [ 1 ] = Utils : : HEXCHARS [ ( _m > > 40 ) & 0xf ] ;
buf [ 2 ] = ' : ' ;
buf [ 3 ] = Utils : : HEXCHARS [ ( _m > > 36 ) & 0xf ] ;
buf [ 4 ] = Utils : : HEXCHARS [ ( _m > > 32 ) & 0xf ] ;
buf [ 5 ] = ' : ' ;
buf [ 6 ] = Utils : : HEXCHARS [ ( _m > > 28 ) & 0xf ] ;
buf [ 7 ] = Utils : : HEXCHARS [ ( _m > > 24 ) & 0xf ] ;
buf [ 8 ] = ' : ' ;
buf [ 9 ] = Utils : : HEXCHARS [ ( _m > > 20 ) & 0xf ] ;
buf [ 10 ] = Utils : : HEXCHARS [ ( _m > > 16 ) & 0xf ] ;
buf [ 11 ] = ' : ' ;
buf [ 12 ] = Utils : : HEXCHARS [ ( _m > > 12 ) & 0xf ] ;
buf [ 13 ] = Utils : : HEXCHARS [ ( _m > > 8 ) & 0xf ] ;
buf [ 14 ] = ' : ' ;
buf [ 15 ] = Utils : : HEXCHARS [ ( _m > > 4 ) & 0xf ] ;
buf [ 16 ] = Utils : : HEXCHARS [ _m & 0xf ] ;
buf [ 17 ] = ( char ) 0 ;
return buf ;
}
2014-05-23 21:32:31 +00:00
inline MAC & operator = ( const MAC & m )
2013-07-04 20:56:19 +00:00
{
2014-05-23 21:32:31 +00:00
_m = m . _m ;
return * this ;
2013-07-04 20:56:19 +00:00
}
2015-09-11 18:45:04 +00:00
inline MAC & operator = ( const uint64_t m )
{
_m = m ;
return * this ;
}
2014-05-23 21:32:31 +00:00
2017-07-06 23:11:11 +00:00
inline bool operator = = ( const MAC & m ) const { return ( _m = = m . _m ) ; }
inline bool operator ! = ( const MAC & m ) const { return ( _m ! = m . _m ) ; }
inline bool operator < ( const MAC & m ) const { return ( _m < m . _m ) ; }
inline bool operator < = ( const MAC & m ) const { return ( _m < = m . _m ) ; }
inline bool operator > ( const MAC & m ) const { return ( _m > m . _m ) ; }
inline bool operator > = ( const MAC & m ) const { return ( _m > = m . _m ) ; }
2014-05-23 21:32:31 +00:00
private :
uint64_t _m ;
2013-07-04 20:56:19 +00:00
} ;
} // namespace ZeroTier
# endif