/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) Copyright (C) 2017 Matthias P. Braendli, matthias.braendli@mpb.li http://www.opendigitalradio.org */ /* This file is part of ODR-DabMux. ODR-DabMux 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. ODR-DabMux 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 along with ODR-DabMux. If not, see . */ /* This file downloads the TAI-UTC bulletins from the USNO servers and/or * from IETF and parses them so that correct time can be communicated in EDI * timestamps. * * This file contains self-test code that can be executed by running * g++ -g -Wall -DTEST -DHAVE_CURL -std=c++11 -lcurl -lboost_regex -pthread \ * ClockTAI.cpp Log.cpp -o taitest && ./taitest */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "ClockTAI.h" #include "Log.h" #include #include #include #if SUPPORT_SETTING_CLOCK_TAI # include #endif #ifdef HAVE_CURL # include #endif #include #include #include #include #include #ifdef TEST static bool wait_longer = true; #endif // leap seconds insertion bulletin is available at static const char* tai_ietf_url = "http://www.ietf.org/timezones/data/leap-seconds.list"; // and in the tz distribution static const char* tai_tz_url = "https://raw.githubusercontent.com/eggert/tz/master/leap-seconds.list"; // leap-seconds.list has a different format from the USNO one static const char* tai_usno_url1 = "http://maia.usno.navy.mil/ser7/tai-utc.dat"; static const char* tai_usno_url2 = "http://toshi.nofs.navy.mil/ser7/tai-utc.dat"; /* Last two lines from USNO bulletin, example: 2015 JUL 1 =JD 2457204.5 TAI-UTC= 36.0 S + (MJD - 41317.) X 0.0 S 2017 JAN 1 =JD 2457754.5 TAI-UTC= 37.0 S + (MJD - 41317.) X 0.0 */ int ClockTAI::download_offset_task() { int offset = 0; bool offset_valid = false; // Clear the bulletin m_bulletin.str(""); m_bulletin.clear(); try { download_tai_utc_bulletin(tai_ietf_url); offset = parse_ietf_bulletin(); offset_valid = true; } catch (std::runtime_error& e) { etiLog.level(warn) << "TAI-UTC offset from IETF could not be retrieved: " << e.what(); } if (not offset_valid) { try { download_tai_utc_bulletin(tai_tz_url); offset = parse_ietf_bulletin(); offset_valid = true; } catch (std::runtime_error& e) { etiLog.level(warn) << "TAI-UTC offset from TZ distribution could not be retrieved: " << e.what(); } } if (not offset_valid) { try { download_tai_utc_bulletin(tai_usno_url1); offset = parse_usno_bulletin(); offset_valid = true; } catch (std::runtime_error& e) { etiLog.level(warn) << "TAI-UTC offset from USNO server #1 could not be retrieved: " << e.what(); } } if (not offset_valid) { try { download_tai_utc_bulletin(tai_usno_url2); offset = parse_usno_bulletin(); offset_valid = true; } catch (std::runtime_error& e) { etiLog.level(warn) << "TAI-UTC offset from USNO server #2 could not be retrieved: " << e.what(); } } if (offset_valid) { // With the current evolution of the offset, we're probably going // to reach 500 long after DAB gets replaced by another standard. if (offset < 0 or offset > 500) { std::stringstream ss; ss << "TAI offset " << offset << " out of range"; throw std::range_error(ss.str()); } return offset; } else { // Try again in 1 hour m_bulletin_download_time += std::chrono::hours(1); throw std::runtime_error("Could not fetch TAI-UTC offset"); } } int ClockTAI::get_offset() { auto time_now = std::chrono::system_clock::now(); if (not m_offset_valid) { #ifdef TEST m_offset = 37; // Valid in early 2017 m_offset_valid = true; // Simulate requiring a new download m_bulletin_download_time = std::chrono::system_clock::now() - std::chrono::hours(24 * 40); #else // First time we run we must block until we know // the offset m_offset = download_offset_task(); m_offset_valid = true; m_bulletin_download_time = std::chrono::system_clock::now(); #endif etiLog.level(info) << "Initialised TAI-UTC offset to " << m_offset << "s."; } if (time_now - m_bulletin_download_time > std::chrono::seconds(3600 * 24 * 31)) { // Refresh if it's older than one month. Leap seconds are // announced several months in advance if (m_offset_future.valid()) { auto state = m_offset_future.wait_for(std::chrono::seconds(0)); switch (state) { case std::future_status::ready: m_offset = m_offset_future.get(); m_offset_valid = true; m_bulletin_download_time = std::chrono::system_clock::now(); etiLog.level(info) << "Updated TAI-UTC offset to " << m_offset << "s."; #ifdef TEST wait_longer = false; #endif break; case std::future_status::deferred: case std::future_status::timeout: // Not ready yet #ifdef TEST etiLog.level(debug) << " async not ready yet"; #endif break; } } else { #ifdef TEST etiLog.level(debug) << " Launch async"; #endif m_offset_future = std::async(std::launch::async, &ClockTAI::download_offset_task, this); } } return m_offset; } #if SUPPORT_SETTING_CLOCK_TAI int ClockTAI::update_local_tai_clock(int offset) { struct timex timex_request; timex_request.modes = ADJ_TAI; timex_request.constant = offset; int err = adjtimex(&timex_request); if (err == -1) { perror("adjtimex"); } printf("adjtimex: %d, tai %d\n", err, timex_request.tai); return err; } #endif int ClockTAI::parse_ietf_bulletin() { // Example Line: // 3692217600 37 # 1 Jan 2017 // // NTP timestamp leap seconds # some comment // The NTP timestamp starts at epoch 1.1.1900. // The difference between NTP timestamps and unix epoch is 70 // years i.e. 2208988800 seconds const int64_t ntp_unix_offset = 2208988800L; boost::regex regex_bulletin(R"(([0-9]+)\s+([0-9]+)\s+#.*)"); time_t now = time(nullptr); int tai_utc_offset = 0; int tai_utc_offset_valid = false; /* We cannot just take the last line, because it might * be in the future, announcing an upcoming leap second. * * So we need to look at the current date, and compare it * with the date of the leap second. */ for (std::string line; std::getline(m_bulletin, line); ) { boost::smatch bulletin_entry; bool is_match = boost::regex_search(line, bulletin_entry, regex_bulletin); if (is_match) { if (bulletin_entry.size() != 3) { throw std::runtime_error( "Incorrect number of matched TAI IETF bulletin entries"); } const std::string bulletin_ntp_timestamp(bulletin_entry[1]); const std::string bulletin_offset(bulletin_entry[2]); const int64_t timestamp_unix = std::atol(bulletin_ntp_timestamp.c_str()) - ntp_unix_offset; const int offset = std::atoi(bulletin_offset.c_str()); #if TEST std::cerr << "Match for line " << line << std::endl; std::cerr << " " << timestamp_unix << " < " << now << std::endl; #endif // Ignore entries announcing leap seconds in the future if (timestamp_unix < now) { tai_utc_offset = offset; tai_utc_offset_valid = true; } #if TEST else { std::cerr << "IETF Ignoring offset " << bulletin_offset << " at TS " << bulletin_ntp_timestamp << " in the future" << std::endl; } #endif } } if (not tai_utc_offset_valid) { throw std::runtime_error("No data in TAI bulletin"); } return tai_utc_offset; } int ClockTAI::parse_usno_bulletin() { boost::regex regex_bulletin( "([0-9]{4}) ([A-Z]{3}) +([0-9]+) =JD +[0-9.]+ +TAI-UTC= *([0-9.]+)"); /* regex groups: * Year Month Day Julian date Offset */ const std::array months{"JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"}; /* I'm not certain about the format they would use if the day is a * two-digit number. Will they keep two spaces after the month? The regex * should be resilient enough in that case. */ time_t now = time(nullptr); struct tm *utc_time_now = gmtime(&now); const int year = utc_time_now->tm_year + 1900; const int month = utc_time_now->tm_mon; // January is 0 if (month < 0 or month > 11) { throw std::runtime_error("Invalid value for month"); } const int day = utc_time_now->tm_mday; int tai_utc_offset = 0; bool tai_utc_offset_valid = false; /* We cannot just take the last line, because it might * be in the future, announcing an upcoming leap second. * * So we need to look at the current date, and compare it * with the date of the leap second. */ for (std::string line; std::getline(m_bulletin, line); ) { boost::smatch bulletin_entry; bool is_match = boost::regex_search(line, bulletin_entry, regex_bulletin); if (is_match) { if (bulletin_entry.size() != 5) { throw std::runtime_error( "Incorrect number of matched USNO TAI bulletin entries"); } const std::string bulletin_year(bulletin_entry[1]); const std::string bulletin_month_name(bulletin_entry[2]); const std::string bulletin_day(bulletin_entry[3]); const std::string bulletin_offset(bulletin_entry[4]); const auto match = std::find(months.begin(), months.end(), bulletin_month_name); if (match == months.end()) { std::stringstream s; s << "Month " << bulletin_month_name << " not in array!"; std::runtime_error(s.str()); } if ( (std::atoi(bulletin_year.c_str()) < year) or (std::atoi(bulletin_year.c_str()) == year and std::distance(months.begin(), match) < month) or (std::atoi(bulletin_year.c_str()) == year and std::distance(months.begin(), match) == month and std::atoi(bulletin_day.c_str()) < day) ) { tai_utc_offset = std::atoi(bulletin_offset.c_str()); tai_utc_offset_valid = true; } #if TEST else { std::cerr << "Ignoring offset " << bulletin_offset << " at date " << bulletin_year << " " << bulletin_month_name << " " << bulletin_day << " in the future" << std::endl; } #endif } #if TEST else { std::cerr << "No match for line " << line << std::endl; } #endif } if (not tai_utc_offset_valid) { throw std::runtime_error("No data in TAI bulletin"); } return tai_utc_offset; } size_t ClockTAI::fill_bulletin(char *ptr, size_t size, size_t nmemb) { size_t len = size * nmemb; for (size_t i = 0; i < len; i++) { m_bulletin << ptr[i]; } return len; } size_t ClockTAI::fill_bulletin_cb( char *ptr, size_t size, size_t nmemb, void *ctx) { return ((ClockTAI*)ctx)->fill_bulletin(ptr, size, nmemb); } void ClockTAI::download_tai_utc_bulletin(const char* url) { #ifdef HAVE_CURL CURL *curl; CURLcode res; curl = curl_easy_init(); if (curl) { curl_easy_setopt(curl, CURLOPT_URL, url); /* Tell libcurl to follow redirection */ curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ClockTAI::fill_bulletin_cb); curl_easy_setopt(curl, CURLOPT_WRITEDATA, this); res = curl_easy_perform(curl); /* always cleanup ! */ curl_easy_cleanup(curl); if (res != CURLE_OK) { throw std::runtime_error( "TAI-UTC bulletin download failed: " + std::string(curl_easy_strerror(res))); } } #else throw std::runtime_error("Cannot download TAI Clock information without cURL"); #endif // HAVE_CURL } #if 0 // Example testing code void debug_tai_clk() { struct timespec rt_clk; int err = clock_gettime(CLOCK_REALTIME, &rt_clk); if (err) { perror("REALTIME clock_gettime failed"); } struct timespec tai_clk; err = clock_gettime(CLOCK_TAI, &tai_clk); if (err) { perror("TAI clock_gettime failed"); } printf("RT - TAI = %ld\n", rt_clk.tv_sec - tai_clk.tv_sec); struct timex timex_request; timex_request.modes = 0; // Do not set anything err = adjtimex(&timex_request); if (err == -1) { perror("adjtimex"); } printf("adjtimex: %d, tai %d\n", err, timex_request.tai); } #endif #if TEST int main(int argc, char **argv) { using namespace std; ClockTAI tai; while (wait_longer) { try { cerr << "Offset is " << tai.get_offset() << endl; } catch (std::exception &e) { cerr << "Exception " << e.what() << endl; } std::this_thread::sleep_for(std::chrono::seconds(2)); } return 0; } #endif