peerplays-fc/src/network/ntp.cpp

151 lines
4.9 KiB
C++
Raw Normal View History

2014-06-11 19:17:28 +00:00
#include <fc/network/ntp.hpp>
#include <fc/network/udp_socket.hpp>
#include <fc/network/resolve.hpp>
#include <fc/network/ip.hpp>
2014-06-16 15:17:29 +00:00
#include <fc/thread/thread.hpp>
2014-06-11 19:17:28 +00:00
2014-06-11 23:14:04 +00:00
#include <stdint.h>
#include "../byteswap.hpp"
2014-06-11 20:32:47 +00:00
2014-06-11 19:17:28 +00:00
#include <array>
namespace fc
{
2014-06-16 15:17:29 +00:00
namespace detail {
class ntp_impl
{
public:
ntp_impl():_request_interval_sec( 60*60 /* 1 hr */),_ntp_thread("ntp")
2014-06-16 15:17:29 +00:00
{
_ntp_hosts.push_back( std::make_pair( "pool.ntp.org",123 ) );
}
/** vector < host, port > */
std::vector< std::pair< std::string, uint16_t> > _ntp_hosts;
fc::future<void> _read_loop;
udp_socket _sock;
uint32_t _request_interval_sec;
fc::time_point _last_request_time;
2014-06-16 15:17:29 +00:00
optional<fc::microseconds> _last_ntp_delta;
fc::thread _ntp_thread;
2014-06-16 15:17:29 +00:00
void request_now()
{
for( auto item : _ntp_hosts )
{
try
{
ilog( "resolving... ${r}", ("r", item) );
auto eps = resolve( item.first, item.second );
for( auto ep : eps )
{
ilog( "sending request to ${ep}", ("ep",ep) );
std::array<unsigned char, 48> send_buf { {010,0,0,0,0,0,0,0,0} };
_last_request_time = fc::time_point::now();
2014-06-16 15:17:29 +00:00
_sock.send_to( (const char*)send_buf.data(), send_buf.size(), ep );
2014-06-16 18:04:36 +00:00
break;
2014-06-16 15:17:29 +00:00
}
}
// this could fail to resolve but we want to go on to other hosts..
catch ( const fc::exception& e )
{
elog( "${e}", ("e",e.to_detail_string() ) );
}
}
} // request_now
void request_time()
2014-06-16 15:17:29 +00:00
{
request_now();
_ntp_thread.schedule( [=](){ request_time(); }, fc::time_point::now() + fc::seconds(_request_interval_sec) );
2014-06-16 15:17:29 +00:00
} // request_loop
void read_loop()
{
while( !_read_loop.canceled() )
{
fc::ip::endpoint from;
std::array<uint64_t, 1024> recv_buf;
try
{
_sock.receive_from( (char*)recv_buf.data(), recv_buf.size(), from );
} FC_RETHROW_EXCEPTIONS(error, "Error reading from NTP socket");
2014-06-16 15:17:29 +00:00
uint64_t receive_timestamp_net_order = recv_buf[4];
uint64_t receive_timestamp_host = bswap_64(receive_timestamp_net_order);
uint32_t fractional_seconds = receive_timestamp_host & 0xffffffff;
uint32_t microseconds = (uint32_t)(((((uint64_t)fractional_seconds) * 1000000) + (UINT64_C(1)<<31)) >> 32);
uint32_t seconds_since_1900 = receive_timestamp_host >> 32;
uint32_t seconds_since_epoch = seconds_since_1900 - 2208988800;
if( fc::time_point::now() - _last_request_time > fc::seconds(1) )
request_now();
else
2014-06-16 18:04:36 +00:00
{
auto ntp_time = (fc::time_point() + fc::seconds(seconds_since_epoch) + fc::microseconds(microseconds));
if( ntp_time - fc::time_point::now() < fc::seconds(60*60*24) &&
fc::time_point::now() - ntp_time < fc::seconds(60*60*24) )
{
_last_ntp_delta = ntp_time - fc::time_point::now();
}
else
elog( "NTP time is way off ${time}", ("time",ntp_time)("local",fc::time_point::now()) );
2014-06-16 18:04:36 +00:00
}
2014-06-16 15:17:29 +00:00
}
} // read_loop
};
} // namespace detail
2014-06-11 19:17:28 +00:00
2014-06-16 15:17:29 +00:00
ntp::ntp()
:my( new detail::ntp_impl() )
2014-06-11 19:17:28 +00:00
{
2014-06-16 15:17:29 +00:00
my->_sock.open();
2014-06-11 19:17:28 +00:00
my->_ntp_thread.async( [=](){ my->request_time(); } );
my->_read_loop = my->_ntp_thread.async( [=](){ my->read_loop(); } );
2014-06-16 15:17:29 +00:00
}
2014-06-11 19:17:28 +00:00
2014-06-16 15:17:29 +00:00
ntp::~ntp()
{
try {
my->_read_loop.cancel();
my->_sock.close();
my->_read_loop.wait();
}
catch ( const fc::exception& )
2014-06-16 15:17:29 +00:00
{
// we expect canceled exceptions, but cannot throw
2014-06-16 15:17:29 +00:00
// from destructor
}
}
2014-06-11 19:17:28 +00:00
2014-06-16 15:17:29 +00:00
void ntp::add_server( const std::string& hostname, uint16_t port)
{
my->_ntp_hosts.push_back( std::make_pair(hostname,port) );
}
2014-06-11 19:17:28 +00:00
2014-06-16 15:17:29 +00:00
void ntp::set_request_interval( uint32_t interval_sec )
{
my->_request_interval_sec = interval_sec;
}
2014-06-16 15:17:29 +00:00
void ntp::request_now()
{
my->request_now();
}
2014-06-11 23:14:04 +00:00
2014-06-16 15:17:29 +00:00
optional<time_point> ntp::get_time()const
{
if( my->_last_ntp_delta )
return fc::time_point::now() + *my->_last_ntp_delta;
return optional<time_point>();
2014-06-11 19:17:28 +00:00
}
}