1485 lines
38 KiB
C
1485 lines
38 KiB
C
/**
|
|
* @file clock.c
|
|
* @note Copyright (C) 2011 Richard Cochran <richardcochran@gmail.com>
|
|
*
|
|
* 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 2 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 along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
#include <errno.h>
|
|
#include <poll.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
#include "address.h"
|
|
#include "bmc.h"
|
|
#include "clock.h"
|
|
#include "clockadj.h"
|
|
#include "clockcheck.h"
|
|
#include "foreign.h"
|
|
#include "filter.h"
|
|
#include "missing.h"
|
|
#include "msg.h"
|
|
#include "phc.h"
|
|
#include "port.h"
|
|
#include "servo.h"
|
|
#include "stats.h"
|
|
#include "print.h"
|
|
#include "tlv.h"
|
|
#include "uds.h"
|
|
#include "util.h"
|
|
|
|
#define CLK_N_PORTS (MAX_PORTS + 1) /* plus one for the UDS interface */
|
|
#define N_CLOCK_PFD (N_POLLFD + 1) /* one extra per port, for the fault timer */
|
|
#define POW2_41 ((double)(1ULL << 41))
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
struct freq_estimator {
|
|
tmv_t origin1;
|
|
tmv_t ingress1;
|
|
unsigned int max_count;
|
|
unsigned int count;
|
|
};
|
|
|
|
struct clock_stats {
|
|
struct stats *offset;
|
|
struct stats *freq;
|
|
struct stats *delay;
|
|
unsigned int max_count;
|
|
};
|
|
|
|
struct clock_subscriber {
|
|
LIST_ENTRY(clock_subscriber) list;
|
|
uint8_t events[EVENT_BITMASK_CNT];
|
|
struct PortIdentity targetPortIdentity;
|
|
struct address addr;
|
|
UInteger16 sequenceId;
|
|
time_t expiration;
|
|
};
|
|
|
|
struct clock {
|
|
clockid_t clkid;
|
|
struct servo *servo;
|
|
struct defaultDS dds;
|
|
struct dataset default_dataset;
|
|
struct currentDS cur;
|
|
struct parent_ds dad;
|
|
struct timePropertiesDS tds;
|
|
struct ClockIdentity ptl[PATH_TRACE_MAX];
|
|
struct foreign_clock *best;
|
|
struct ClockIdentity best_id;
|
|
struct port *port[CLK_N_PORTS];
|
|
struct pollfd pollfd[CLK_N_PORTS*N_CLOCK_PFD];
|
|
int fault_fd[CLK_N_PORTS];
|
|
int nports; /* does not include the UDS port */
|
|
int free_running;
|
|
int freq_est_interval;
|
|
int grand_master_capable; /* for 802.1AS only */
|
|
int utc_timescale;
|
|
int utc_offset_set;
|
|
int leap_set;
|
|
int kernel_leap;
|
|
int utc_offset; /* grand master role */
|
|
int time_flags; /* grand master role */
|
|
int time_source; /* grand master role */
|
|
enum servo_state servo_state;
|
|
tmv_t master_offset;
|
|
tmv_t path_delay;
|
|
struct filter *delay_filter;
|
|
struct freq_estimator fest;
|
|
struct time_status_np status;
|
|
double nrr;
|
|
tmv_t c1;
|
|
tmv_t c2;
|
|
tmv_t t1;
|
|
tmv_t t2;
|
|
struct clock_description desc;
|
|
struct clock_stats stats;
|
|
int stats_interval;
|
|
struct clockcheck *sanity_check;
|
|
struct interface uds_interface;
|
|
LIST_HEAD(clock_subscribers_head, clock_subscriber) subscribers;
|
|
};
|
|
|
|
struct clock the_clock;
|
|
|
|
static void handle_state_decision_event(struct clock *c);
|
|
|
|
static int cid_eq(struct ClockIdentity *a, struct ClockIdentity *b)
|
|
{
|
|
return 0 == memcmp(a, b, sizeof(*a));
|
|
}
|
|
|
|
#ifndef LIST_FOREACH_SAFE
|
|
#define LIST_FOREACH_SAFE(var, head, field, tvar) \
|
|
for ((var) = LIST_FIRST((head)); \
|
|
(var) && ((tvar) = LIST_NEXT((var), field), 1); \
|
|
(var) = (tvar))
|
|
#endif
|
|
|
|
static void remove_subscriber(struct clock_subscriber *s)
|
|
{
|
|
LIST_REMOVE(s, list);
|
|
free(s);
|
|
}
|
|
|
|
static void clock_update_subscription(struct clock *c, struct ptp_message *req,
|
|
uint8_t *bitmask, uint16_t duration)
|
|
{
|
|
struct clock_subscriber *s;
|
|
int i, remove = 1;
|
|
struct timespec now;
|
|
|
|
for (i = 0; i < EVENT_BITMASK_CNT; i++) {
|
|
if (bitmask[i]) {
|
|
remove = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
LIST_FOREACH(s, &c->subscribers, list) {
|
|
if (!memcmp(&s->targetPortIdentity, &req->header.sourcePortIdentity,
|
|
sizeof(struct PortIdentity))) {
|
|
/* Found, update the transport address and event
|
|
* mask. */
|
|
if (!remove) {
|
|
s->addr = req->address;
|
|
memcpy(s->events, bitmask, EVENT_BITMASK_CNT);
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
s->expiration = now.tv_sec + duration;
|
|
} else {
|
|
remove_subscriber(s);
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
if (remove)
|
|
return;
|
|
/* Not present yet, add the subscriber. */
|
|
s = malloc(sizeof(*s));
|
|
if (!s) {
|
|
pr_err("failed to allocate memory for a subscriber");
|
|
return;
|
|
}
|
|
s->targetPortIdentity = req->header.sourcePortIdentity;
|
|
s->addr = req->address;
|
|
memcpy(s->events, bitmask, EVENT_BITMASK_CNT);
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
s->expiration = now.tv_sec + duration;
|
|
s->sequenceId = 0;
|
|
LIST_INSERT_HEAD(&c->subscribers, s, list);
|
|
}
|
|
|
|
static void clock_get_subscription(struct clock *c, struct ptp_message *req,
|
|
uint8_t *bitmask, uint16_t *duration)
|
|
{
|
|
struct clock_subscriber *s;
|
|
struct timespec now;
|
|
|
|
LIST_FOREACH(s, &c->subscribers, list) {
|
|
if (!memcmp(&s->targetPortIdentity, &req->header.sourcePortIdentity,
|
|
sizeof(struct PortIdentity))) {
|
|
memcpy(bitmask, s->events, EVENT_BITMASK_CNT);
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
if (s->expiration < now.tv_sec)
|
|
*duration = 0;
|
|
else
|
|
*duration = s->expiration - now.tv_sec;
|
|
return;
|
|
}
|
|
}
|
|
/* A client without entry means the client has no subscriptions. */
|
|
memset(bitmask, 0, EVENT_BITMASK_CNT);
|
|
*duration = 0;
|
|
}
|
|
|
|
static void clock_flush_subscriptions(struct clock *c)
|
|
{
|
|
struct clock_subscriber *s, *tmp;
|
|
|
|
LIST_FOREACH_SAFE(s, &c->subscribers, list, tmp) {
|
|
remove_subscriber(s);
|
|
}
|
|
}
|
|
|
|
static void clock_prune_subscriptions(struct clock *c)
|
|
{
|
|
struct clock_subscriber *s, *tmp;
|
|
struct timespec now;
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
LIST_FOREACH_SAFE(s, &c->subscribers, list, tmp) {
|
|
if (s->expiration <= now.tv_sec) {
|
|
pr_info("subscriber %s timed out",
|
|
pid2str(&s->targetPortIdentity));
|
|
remove_subscriber(s);
|
|
}
|
|
}
|
|
}
|
|
|
|
void clock_send_notification(struct clock *c, struct ptp_message *msg,
|
|
int msglen, enum notification event)
|
|
{
|
|
unsigned int event_pos = event / 8;
|
|
uint8_t mask = 1 << (event % 8);
|
|
struct port *uds = c->port[c->nports];
|
|
struct clock_subscriber *s;
|
|
|
|
LIST_FOREACH(s, &c->subscribers, list) {
|
|
if (!(s->events[event_pos] & mask))
|
|
continue;
|
|
/* send event */
|
|
msg->header.sequenceId = htons(s->sequenceId);
|
|
s->sequenceId++;
|
|
msg->management.targetPortIdentity.clockIdentity =
|
|
s->targetPortIdentity.clockIdentity;
|
|
msg->management.targetPortIdentity.portNumber =
|
|
htons(s->targetPortIdentity.portNumber);
|
|
msg->address = s->addr;
|
|
port_forward_to(uds, msg);
|
|
}
|
|
}
|
|
|
|
void clock_destroy(struct clock *c)
|
|
{
|
|
int i;
|
|
|
|
clock_flush_subscriptions(c);
|
|
for (i = 0; i < c->nports; i++) {
|
|
port_close(c->port[i]);
|
|
close(c->fault_fd[i]);
|
|
}
|
|
port_close(c->port[i]); /*uds*/
|
|
if (c->clkid != CLOCK_REALTIME) {
|
|
phc_close(c->clkid);
|
|
}
|
|
servo_destroy(c->servo);
|
|
filter_destroy(c->delay_filter);
|
|
stats_destroy(c->stats.offset);
|
|
stats_destroy(c->stats.freq);
|
|
stats_destroy(c->stats.delay);
|
|
if (c->sanity_check)
|
|
clockcheck_destroy(c->sanity_check);
|
|
memset(c, 0, sizeof(*c));
|
|
msg_cleanup();
|
|
}
|
|
|
|
static int clock_fault_timeout(struct clock *c, int index, int set)
|
|
{
|
|
struct fault_interval i;
|
|
|
|
if (!set) {
|
|
pr_debug("clearing fault on port %d", index + 1);
|
|
return set_tmo_lin(c->fault_fd[index], 0);
|
|
}
|
|
|
|
fault_interval(c->port[index], last_fault_type(c->port[index]), &i);
|
|
|
|
if (i.type == FTMO_LINEAR_SECONDS) {
|
|
pr_debug("waiting %d seconds to clear fault on port %d",
|
|
i.val, index + 1);
|
|
return set_tmo_lin(c->fault_fd[index], i.val);
|
|
} else if (i.type == FTMO_LOG2_SECONDS) {
|
|
pr_debug("waiting 2^{%d} seconds to clear fault on port %d",
|
|
i.val, index + 1);
|
|
return set_tmo_log(c->fault_fd[index], 1, i.val);
|
|
}
|
|
|
|
pr_err("Unsupported fault interval type %d", i.type);
|
|
return -1;
|
|
}
|
|
|
|
static void clock_freq_est_reset(struct clock *c)
|
|
{
|
|
c->fest.origin1 = tmv_zero();
|
|
c->fest.ingress1 = tmv_zero();
|
|
c->fest.count = 0;
|
|
};
|
|
|
|
static void clock_management_send_error(struct port *p,
|
|
struct ptp_message *msg, int error_id)
|
|
{
|
|
if (port_management_error(port_identity(p), p, msg, error_id))
|
|
pr_err("failed to send management error status");
|
|
}
|
|
|
|
/* The 'p' and 'req' paremeters are needed for the GET actions that operate
|
|
* on per-client datasets. If such actions do not apply to the caller, it is
|
|
* allowed to pass both of them as NULL.
|
|
*/
|
|
static int clock_management_fill_response(struct clock *c, struct port *p,
|
|
struct ptp_message *req,
|
|
struct ptp_message *rsp, int id)
|
|
{
|
|
int datalen = 0, respond = 0;
|
|
struct management_tlv *tlv;
|
|
struct management_tlv_datum *mtd;
|
|
struct time_status_np *tsn;
|
|
struct grandmaster_settings_np *gsn;
|
|
struct subscribe_events_np *sen;
|
|
struct PTPText *text;
|
|
|
|
tlv = (struct management_tlv *) rsp->management.suffix;
|
|
tlv->type = TLV_MANAGEMENT;
|
|
tlv->id = id;
|
|
|
|
switch (id) {
|
|
case USER_DESCRIPTION:
|
|
text = (struct PTPText *) tlv->data;
|
|
text->length = c->desc.userDescription.length;
|
|
memcpy(text->text, c->desc.userDescription.text, text->length);
|
|
datalen = 1 + text->length;
|
|
respond = 1;
|
|
break;
|
|
case DEFAULT_DATA_SET:
|
|
memcpy(tlv->data, &c->dds, sizeof(c->dds));
|
|
datalen = sizeof(c->dds);
|
|
respond = 1;
|
|
break;
|
|
case CURRENT_DATA_SET:
|
|
memcpy(tlv->data, &c->cur, sizeof(c->cur));
|
|
datalen = sizeof(c->cur);
|
|
respond = 1;
|
|
break;
|
|
case PARENT_DATA_SET:
|
|
memcpy(tlv->data, &c->dad.pds, sizeof(c->dad.pds));
|
|
datalen = sizeof(c->dad.pds);
|
|
respond = 1;
|
|
break;
|
|
case TIME_PROPERTIES_DATA_SET:
|
|
memcpy(tlv->data, &c->tds, sizeof(c->tds));
|
|
datalen = sizeof(c->tds);
|
|
respond = 1;
|
|
break;
|
|
case PRIORITY1:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->dds.priority1;
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case PRIORITY2:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->dds.priority2;
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case DOMAIN:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->dds.domainNumber;
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case SLAVE_ONLY:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->dds.flags & DDS_SLAVE_ONLY;
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case CLOCK_ACCURACY:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->dds.clockQuality.clockAccuracy;
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case TRACEABILITY_PROPERTIES:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->tds.flags & (TIME_TRACEABLE|FREQ_TRACEABLE);
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case TIMESCALE_PROPERTIES:
|
|
mtd = (struct management_tlv_datum *) tlv->data;
|
|
mtd->val = c->tds.flags & PTP_TIMESCALE;
|
|
datalen = sizeof(*mtd);
|
|
respond = 1;
|
|
break;
|
|
case TIME_STATUS_NP:
|
|
tsn = (struct time_status_np *) tlv->data;
|
|
tsn->master_offset = c->master_offset;
|
|
tsn->ingress_time = tmv_to_nanoseconds(c->t2);
|
|
tsn->cumulativeScaledRateOffset =
|
|
(Integer32) (c->status.cumulativeScaledRateOffset +
|
|
c->nrr * POW2_41 - POW2_41);
|
|
tsn->scaledLastGmPhaseChange = c->status.scaledLastGmPhaseChange;
|
|
tsn->gmTimeBaseIndicator = c->status.gmTimeBaseIndicator;
|
|
tsn->lastGmPhaseChange = c->status.lastGmPhaseChange;
|
|
if (cid_eq(&c->dad.pds.grandmasterIdentity, &c->dds.clockIdentity))
|
|
tsn->gmPresent = 0;
|
|
else
|
|
tsn->gmPresent = 1;
|
|
tsn->gmIdentity = c->dad.pds.grandmasterIdentity;
|
|
datalen = sizeof(*tsn);
|
|
respond = 1;
|
|
break;
|
|
case GRANDMASTER_SETTINGS_NP:
|
|
gsn = (struct grandmaster_settings_np *) tlv->data;
|
|
gsn->clockQuality = c->dds.clockQuality;
|
|
gsn->utc_offset = c->utc_offset;
|
|
gsn->time_flags = c->time_flags;
|
|
gsn->time_source = c->time_source;
|
|
datalen = sizeof(*gsn);
|
|
respond = 1;
|
|
break;
|
|
case SUBSCRIBE_EVENTS_NP:
|
|
if (p != c->port[c->nports]) {
|
|
/* Only the UDS port allowed. */
|
|
break;
|
|
}
|
|
sen = (struct subscribe_events_np *)tlv->data;
|
|
clock_get_subscription(c, req, sen->bitmask, &sen->duration);
|
|
respond = 1;
|
|
break;
|
|
}
|
|
if (respond) {
|
|
if (datalen % 2) {
|
|
tlv->data[datalen] = 0;
|
|
datalen++;
|
|
}
|
|
tlv->length = sizeof(tlv->id) + datalen;
|
|
rsp->header.messageLength += sizeof(*tlv) + datalen;
|
|
rsp->tlv_count = 1;
|
|
}
|
|
return respond;
|
|
}
|
|
|
|
static int clock_management_get_response(struct clock *c, struct port *p,
|
|
int id, struct ptp_message *req)
|
|
{
|
|
struct PortIdentity pid = port_identity(p);
|
|
struct ptp_message *rsp;
|
|
int respond;
|
|
|
|
rsp = port_management_reply(pid, p, req);
|
|
if (!rsp) {
|
|
return 0;
|
|
}
|
|
respond = clock_management_fill_response(c, p, req, rsp, id);
|
|
if (respond)
|
|
port_prepare_and_send(p, rsp, 0);
|
|
msg_put(rsp);
|
|
return respond;
|
|
}
|
|
|
|
static int clock_management_set(struct clock *c, struct port *p,
|
|
int id, struct ptp_message *req, int *changed)
|
|
{
|
|
int respond = 0;
|
|
struct management_tlv *tlv;
|
|
struct grandmaster_settings_np *gsn;
|
|
struct subscribe_events_np *sen;
|
|
|
|
tlv = (struct management_tlv *) req->management.suffix;
|
|
|
|
switch (id) {
|
|
case GRANDMASTER_SETTINGS_NP:
|
|
gsn = (struct grandmaster_settings_np *) tlv->data;
|
|
c->dds.clockQuality = gsn->clockQuality;
|
|
c->utc_offset = gsn->utc_offset;
|
|
c->time_flags = gsn->time_flags;
|
|
c->time_source = gsn->time_source;
|
|
*changed = 1;
|
|
respond = 1;
|
|
break;
|
|
case SUBSCRIBE_EVENTS_NP:
|
|
sen = (struct subscribe_events_np *)tlv->data;
|
|
clock_update_subscription(c, req, sen->bitmask,
|
|
sen->duration);
|
|
respond = 1;
|
|
break;
|
|
}
|
|
if (respond && !clock_management_get_response(c, p, id, req))
|
|
pr_err("failed to send management set response");
|
|
return respond ? 1 : 0;
|
|
}
|
|
|
|
static void clock_stats_update(struct clock_stats *s,
|
|
int64_t offset, double freq)
|
|
{
|
|
struct stats_result offset_stats, freq_stats, delay_stats;
|
|
|
|
stats_add_value(s->offset, offset);
|
|
stats_add_value(s->freq, freq);
|
|
|
|
if (stats_get_num_values(s->offset) < s->max_count)
|
|
return;
|
|
|
|
stats_get_result(s->offset, &offset_stats);
|
|
stats_get_result(s->freq, &freq_stats);
|
|
|
|
/* Path delay stats are updated separately, they may be empty. */
|
|
if (!stats_get_result(s->delay, &delay_stats)) {
|
|
pr_info("rms %4.0f max %4.0f "
|
|
"freq %+6.0f +/- %3.0f "
|
|
"delay %5.0f +/- %3.0f",
|
|
offset_stats.rms, offset_stats.max_abs,
|
|
freq_stats.mean, freq_stats.stddev,
|
|
delay_stats.mean, delay_stats.stddev);
|
|
} else {
|
|
pr_info("rms %4.0f max %4.0f "
|
|
"freq %+6.0f +/- %3.0f",
|
|
offset_stats.rms, offset_stats.max_abs,
|
|
freq_stats.mean, freq_stats.stddev);
|
|
}
|
|
|
|
stats_reset(s->offset);
|
|
stats_reset(s->freq);
|
|
stats_reset(s->delay);
|
|
}
|
|
|
|
static enum servo_state clock_no_adjust(struct clock *c)
|
|
{
|
|
double fui;
|
|
double ratio, freq;
|
|
tmv_t origin2;
|
|
struct freq_estimator *f = &c->fest;
|
|
enum servo_state state = SERVO_UNLOCKED;
|
|
/*
|
|
* We have clock.t1 as the origin time stamp, and clock.t2 as
|
|
* the ingress. According to the master's clock, the time at
|
|
* which the sync arrived is:
|
|
*
|
|
* origin = origin_ts + path_delay + correction
|
|
*
|
|
* The ratio of the local clock freqency to the master clock
|
|
* is estimated by:
|
|
*
|
|
* (ingress_2 - ingress_1) / (origin_2 - origin_1)
|
|
*
|
|
* Both of the origin time estimates include the path delay,
|
|
* but we assume that the path delay is in fact constant.
|
|
* By leaving out the path delay altogther, we can avoid the
|
|
* error caused by our imperfect path delay measurement.
|
|
*/
|
|
if (!f->ingress1) {
|
|
f->ingress1 = c->t2;
|
|
f->origin1 = tmv_add(c->t1, tmv_add(c->c1, c->c2));
|
|
return state;
|
|
}
|
|
f->count++;
|
|
if (f->count < f->max_count) {
|
|
return state;
|
|
}
|
|
if (tmv_eq(c->t2, f->ingress1)) {
|
|
pr_warning("bad timestamps in rate ratio calculation");
|
|
return state;
|
|
}
|
|
/*
|
|
* origin2 = c->t1 (+c->path_delay) + c->c1 + c->c2;
|
|
*/
|
|
origin2 = tmv_add(c->t1, tmv_add(c->c1, c->c2));
|
|
|
|
ratio = tmv_dbl(tmv_sub(origin2, f->origin1)) /
|
|
tmv_dbl(tmv_sub(c->t2, f->ingress1));
|
|
freq = (1.0 - ratio) * 1e9;
|
|
|
|
if (c->stats.max_count > 1) {
|
|
clock_stats_update(&c->stats,
|
|
tmv_to_nanoseconds(c->master_offset), freq);
|
|
} else {
|
|
pr_info("master offset %10" PRId64 " s%d freq %+7.0f "
|
|
"path delay %9" PRId64,
|
|
tmv_to_nanoseconds(c->master_offset), state, freq,
|
|
tmv_to_nanoseconds(c->path_delay));
|
|
}
|
|
|
|
fui = 1.0 + (c->status.cumulativeScaledRateOffset + 0.0) / POW2_41;
|
|
|
|
pr_debug("peer/local %.9f", c->nrr);
|
|
pr_debug("fup_info %.9f", fui);
|
|
pr_debug("product %.9f", fui * c->nrr);
|
|
pr_debug("sum-1 %.9f", fui + c->nrr - 1.0);
|
|
pr_debug("master/local %.9f", ratio);
|
|
pr_debug("diff %+.9f", ratio - (fui + c->nrr - 1.0));
|
|
|
|
f->ingress1 = c->t2;
|
|
f->origin1 = origin2;
|
|
f->count = 0;
|
|
|
|
return state;
|
|
}
|
|
|
|
static void clock_update_grandmaster(struct clock *c)
|
|
{
|
|
struct parentDS *pds = &c->dad.pds;
|
|
memset(&c->cur, 0, sizeof(c->cur));
|
|
memset(c->ptl, 0, sizeof(c->ptl));
|
|
pds->parentPortIdentity.clockIdentity = c->dds.clockIdentity;
|
|
pds->parentPortIdentity.portNumber = 0;
|
|
pds->grandmasterIdentity = c->dds.clockIdentity;
|
|
pds->grandmasterClockQuality = c->dds.clockQuality;
|
|
pds->grandmasterPriority1 = c->dds.priority1;
|
|
pds->grandmasterPriority2 = c->dds.priority2;
|
|
c->dad.path_length = 0;
|
|
c->tds.currentUtcOffset = c->utc_offset;
|
|
c->tds.flags = c->time_flags;
|
|
c->tds.timeSource = c->time_source;
|
|
}
|
|
|
|
static void clock_update_slave(struct clock *c)
|
|
{
|
|
struct parentDS *pds = &c->dad.pds;
|
|
struct ptp_message *msg = TAILQ_FIRST(&c->best->messages);
|
|
c->cur.stepsRemoved = 1 + c->best->dataset.stepsRemoved;
|
|
pds->parentPortIdentity = c->best->dataset.sender;
|
|
pds->grandmasterIdentity = msg->announce.grandmasterIdentity;
|
|
pds->grandmasterClockQuality = msg->announce.grandmasterClockQuality;
|
|
pds->grandmasterPriority1 = msg->announce.grandmasterPriority1;
|
|
pds->grandmasterPriority2 = msg->announce.grandmasterPriority2;
|
|
c->tds.currentUtcOffset = msg->announce.currentUtcOffset;
|
|
c->tds.flags = msg->header.flagField[1];
|
|
c->tds.timeSource = msg->announce.timeSource;
|
|
if (!(c->tds.flags & PTP_TIMESCALE)) {
|
|
pr_warning("foreign master not using PTP timescale");
|
|
}
|
|
if (c->tds.currentUtcOffset < CURRENT_UTC_OFFSET) {
|
|
pr_warning("running in a temporal vortex");
|
|
}
|
|
}
|
|
|
|
static int clock_utc_correct(struct clock *c, tmv_t ingress)
|
|
{
|
|
struct timespec offset;
|
|
int utc_offset, leap, clock_leap;
|
|
uint64_t ts;
|
|
|
|
if (!c->utc_timescale)
|
|
return 0;
|
|
|
|
if (c->tds.flags & UTC_OFF_VALID && c->tds.flags & TIME_TRACEABLE) {
|
|
utc_offset = c->tds.currentUtcOffset;
|
|
} else if (c->tds.currentUtcOffset > CURRENT_UTC_OFFSET) {
|
|
utc_offset = c->tds.currentUtcOffset;
|
|
} else {
|
|
utc_offset = CURRENT_UTC_OFFSET;
|
|
}
|
|
|
|
if (c->tds.flags & LEAP_61) {
|
|
leap = 1;
|
|
} else if (c->tds.flags & LEAP_59) {
|
|
leap = -1;
|
|
} else {
|
|
leap = 0;
|
|
}
|
|
|
|
/* Handle leap seconds. */
|
|
if ((leap || c->leap_set) && c->clkid == CLOCK_REALTIME) {
|
|
/* If the clock will be stepped, the time stamp has to be the
|
|
target time. Ignore possible 1 second error in utc_offset. */
|
|
if (c->servo_state == SERVO_UNLOCKED) {
|
|
ts = tmv_to_nanoseconds(tmv_sub(ingress,
|
|
c->master_offset));
|
|
if (c->tds.flags & PTP_TIMESCALE)
|
|
ts -= utc_offset * NS_PER_SEC;
|
|
} else {
|
|
ts = tmv_to_nanoseconds(ingress);
|
|
}
|
|
|
|
/* Suspend clock updates in the last second before midnight. */
|
|
if (is_utc_ambiguous(ts)) {
|
|
pr_info("clock update suspended due to leap second");
|
|
return -1;
|
|
}
|
|
|
|
clock_leap = leap_second_status(ts, c->leap_set,
|
|
&leap, &utc_offset);
|
|
if (c->leap_set != clock_leap) {
|
|
if (c->kernel_leap)
|
|
sysclk_set_leap(clock_leap);
|
|
c->leap_set = clock_leap;
|
|
}
|
|
}
|
|
|
|
/* Update TAI-UTC offset of the system clock if valid and traceable. */
|
|
if (c->tds.flags & UTC_OFF_VALID && c->tds.flags & TIME_TRACEABLE &&
|
|
c->utc_offset_set != utc_offset && c->clkid == CLOCK_REALTIME) {
|
|
sysclk_set_tai_offset(utc_offset);
|
|
c->utc_offset_set = utc_offset;
|
|
}
|
|
|
|
if (!(c->tds.flags & PTP_TIMESCALE))
|
|
return 0;
|
|
|
|
offset.tv_sec = utc_offset;
|
|
offset.tv_nsec = 0;
|
|
/* Local clock is UTC, but master is TAI. */
|
|
c->master_offset = tmv_add(c->master_offset, timespec_to_tmv(offset));
|
|
return 0;
|
|
}
|
|
|
|
static int forwarding(struct clock *c, struct port *p)
|
|
{
|
|
enum port_state ps = port_state(p);
|
|
switch (ps) {
|
|
case PS_MASTER:
|
|
case PS_GRAND_MASTER:
|
|
case PS_SLAVE:
|
|
case PS_UNCALIBRATED:
|
|
case PS_PRE_MASTER:
|
|
return 1;
|
|
default:
|
|
break;
|
|
}
|
|
if (p == c->port[c->nports] && ps != PS_FAULTY) { /*uds*/
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/* public methods */
|
|
|
|
UInteger8 clock_class(struct clock *c)
|
|
{
|
|
return c->dds.clockQuality.clockClass;
|
|
}
|
|
|
|
struct clock *clock_create(int phc_index, struct interface *iface, int count,
|
|
enum timestamp_type timestamping, struct default_ds *dds,
|
|
enum servo_type servo)
|
|
{
|
|
int i, fadj = 0, max_adj = 0.0, sw_ts = timestamping == TS_SOFTWARE ? 1 : 0;
|
|
struct clock *c = &the_clock;
|
|
char phc[32];
|
|
struct interface *udsif = &c->uds_interface;
|
|
struct timespec ts;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ts);
|
|
srandom(ts.tv_sec ^ ts.tv_nsec);
|
|
|
|
if (c->nports)
|
|
clock_destroy(c);
|
|
|
|
snprintf(udsif->name, sizeof(udsif->name), "%s", uds_path);
|
|
udsif->transport = TRANS_UDS;
|
|
udsif->delay_filter_length = 1;
|
|
|
|
c->free_running = dds->free_running;
|
|
c->freq_est_interval = dds->freq_est_interval;
|
|
c->grand_master_capable = dds->grand_master_capable;
|
|
c->kernel_leap = dds->kernel_leap;
|
|
c->utc_offset = CURRENT_UTC_OFFSET;
|
|
c->time_source = dds->time_source;
|
|
c->desc = dds->clock_desc;
|
|
|
|
if (c->free_running) {
|
|
c->clkid = CLOCK_INVALID;
|
|
if (timestamping == TS_SOFTWARE || timestamping == TS_LEGACY_HW) {
|
|
c->utc_timescale = 1;
|
|
}
|
|
} else if (phc_index >= 0) {
|
|
snprintf(phc, 31, "/dev/ptp%d", phc_index);
|
|
c->clkid = phc_open(phc);
|
|
if (c->clkid == CLOCK_INVALID) {
|
|
pr_err("Failed to open %s: %m", phc);
|
|
return NULL;
|
|
}
|
|
max_adj = phc_max_adj(c->clkid);
|
|
if (!max_adj) {
|
|
pr_err("clock is not adjustable");
|
|
return NULL;
|
|
}
|
|
clockadj_init(c->clkid);
|
|
} else {
|
|
c->clkid = CLOCK_REALTIME;
|
|
c->utc_timescale = 1;
|
|
clockadj_init(c->clkid);
|
|
max_adj = sysclk_max_freq();
|
|
sysclk_set_leap(0);
|
|
}
|
|
c->utc_offset_set = 0;
|
|
c->leap_set = 0;
|
|
c->time_flags = c->utc_timescale ? 0 : PTP_TIMESCALE;
|
|
|
|
if (c->clkid != CLOCK_INVALID) {
|
|
fadj = (int) clockadj_get_freq(c->clkid);
|
|
/* Due to a bug in older kernels, the reading may silently fail
|
|
and return 0. Set the frequency back to make sure fadj is
|
|
the actual frequency of the clock. */
|
|
clockadj_set_freq(c->clkid, fadj);
|
|
}
|
|
c->servo = servo_create(servo, -fadj, max_adj, sw_ts);
|
|
if (!c->servo) {
|
|
pr_err("Failed to create clock servo");
|
|
return NULL;
|
|
}
|
|
c->servo_state = SERVO_UNLOCKED;
|
|
c->delay_filter = filter_create(dds->delay_filter,
|
|
dds->delay_filter_length);
|
|
if (!c->delay_filter) {
|
|
pr_err("Failed to create delay filter");
|
|
return NULL;
|
|
}
|
|
c->nrr = 1.0;
|
|
c->stats_interval = dds->stats_interval;
|
|
c->stats.offset = stats_create();
|
|
c->stats.freq = stats_create();
|
|
c->stats.delay = stats_create();
|
|
if (!c->stats.offset || !c->stats.freq || !c->stats.delay) {
|
|
pr_err("failed to create stats");
|
|
return NULL;
|
|
}
|
|
if (dds->sanity_freq_limit) {
|
|
c->sanity_check = clockcheck_create(dds->sanity_freq_limit);
|
|
if (!c->sanity_check) {
|
|
pr_err("Failed to create clock sanity check");
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
c->dds = dds->dds;
|
|
|
|
/* Initialize the parentDS. */
|
|
clock_update_grandmaster(c);
|
|
c->dad.pds.parentStats = 0;
|
|
c->dad.pds.observedParentOffsetScaledLogVariance = 0xffff;
|
|
c->dad.pds.observedParentClockPhaseChangeRate = 0x7fffffff;
|
|
c->dad.ptl = c->ptl;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(c->pollfd); i++) {
|
|
c->pollfd[i].fd = -1;
|
|
c->pollfd[i].events = 0;
|
|
}
|
|
|
|
clock_sync_interval(c, 0);
|
|
|
|
LIST_INIT(&c->subscribers);
|
|
|
|
for (i = 0; i < count; i++) {
|
|
c->port[i] = port_open(phc_index, timestamping, 1+i, &iface[i], c);
|
|
if (!c->port[i]) {
|
|
pr_err("failed to open port %s", iface[i].name);
|
|
return NULL;
|
|
}
|
|
c->fault_fd[i] = timerfd_create(CLOCK_MONOTONIC, 0);
|
|
if (c->fault_fd[i] < 0) {
|
|
pr_err("timerfd_create failed: %m");
|
|
return NULL;
|
|
}
|
|
c->pollfd[N_CLOCK_PFD * i + N_POLLFD].fd = c->fault_fd[i];
|
|
c->pollfd[N_CLOCK_PFD * i + N_POLLFD].events = POLLIN|POLLPRI;
|
|
}
|
|
|
|
/*
|
|
* One extra port is for the UDS interface.
|
|
*/
|
|
c->port[i] = port_open(phc_index, timestamping, 0, udsif, c);
|
|
if (!c->port[i]) {
|
|
pr_err("failed to open the UDS port");
|
|
return NULL;
|
|
}
|
|
|
|
c->dds.numberPorts = c->nports = count;
|
|
|
|
for (i = 0; i < c->nports; i++)
|
|
port_dispatch(c->port[i], EV_INITIALIZE, 0);
|
|
|
|
port_dispatch(c->port[i], EV_INITIALIZE, 0); /*uds*/
|
|
|
|
return c;
|
|
}
|
|
|
|
struct dataset *clock_best_foreign(struct clock *c)
|
|
{
|
|
return c->best ? &c->best->dataset : NULL;
|
|
}
|
|
|
|
struct port *clock_best_port(struct clock *c)
|
|
{
|
|
return c->best ? c->best->port : NULL;
|
|
}
|
|
|
|
struct dataset *clock_default_ds(struct clock *c)
|
|
{
|
|
struct dataset *out = &c->default_dataset;
|
|
struct defaultDS *in = &c->dds;
|
|
|
|
out->priority1 = in->priority1;
|
|
out->identity = in->clockIdentity;
|
|
out->quality = in->clockQuality;
|
|
out->priority2 = in->priority2;
|
|
out->stepsRemoved = 0;
|
|
out->sender.clockIdentity = in->clockIdentity;
|
|
out->sender.portNumber = 0;
|
|
out->receiver.clockIdentity = in->clockIdentity;
|
|
out->receiver.portNumber = 0;
|
|
|
|
return out;
|
|
}
|
|
|
|
UInteger8 clock_domain_number(struct clock *c)
|
|
{
|
|
return c->dds.domainNumber;
|
|
}
|
|
|
|
void clock_follow_up_info(struct clock *c, struct follow_up_info_tlv *f)
|
|
{
|
|
c->status.cumulativeScaledRateOffset = f->cumulativeScaledRateOffset;
|
|
c->status.scaledLastGmPhaseChange = f->scaledLastGmPhaseChange;
|
|
c->status.gmTimeBaseIndicator = f->gmTimeBaseIndicator;
|
|
memcpy(&c->status.lastGmPhaseChange, &f->lastGmPhaseChange,
|
|
sizeof(c->status.lastGmPhaseChange));
|
|
}
|
|
|
|
int clock_gm_capable(struct clock *c)
|
|
{
|
|
return c->grand_master_capable;
|
|
}
|
|
|
|
struct ClockIdentity clock_identity(struct clock *c)
|
|
{
|
|
return c->dds.clockIdentity;
|
|
}
|
|
|
|
void clock_install_fda(struct clock *c, struct port *p, struct fdarray fda)
|
|
{
|
|
int i, j, k;
|
|
for (i = 0; i < c->nports + 1; i++) {
|
|
if (p == c->port[i])
|
|
break;
|
|
}
|
|
for (j = 0; j < N_POLLFD; j++) {
|
|
k = N_CLOCK_PFD * i + j;
|
|
c->pollfd[k].fd = fda.fd[j];
|
|
c->pollfd[k].events = POLLIN|POLLPRI;
|
|
}
|
|
}
|
|
|
|
static void clock_forward_mgmt_msg(struct clock *c, struct port *p, struct ptp_message *msg)
|
|
{
|
|
int i, pdulen = 0, msg_ready = 0;
|
|
struct port *fwd;
|
|
if (forwarding(c, p) && msg->management.boundaryHops) {
|
|
for (i = 0; i < c->nports + 1; i++) {
|
|
fwd = c->port[i];
|
|
if (fwd != p && forwarding(c, fwd)) {
|
|
/* delay calling msg_pre_send until
|
|
* actually forwarding */
|
|
if (!msg_ready) {
|
|
msg_ready = 1;
|
|
pdulen = msg->header.messageLength;
|
|
msg->management.boundaryHops--;
|
|
msg_pre_send(msg);
|
|
}
|
|
if (port_forward(fwd, msg))
|
|
pr_err("port %d: management forward failed", i + 1);
|
|
}
|
|
}
|
|
if (msg_ready) {
|
|
msg_post_recv(msg, pdulen);
|
|
msg->management.boundaryHops++;
|
|
}
|
|
}
|
|
}
|
|
|
|
int clock_manage(struct clock *c, struct port *p, struct ptp_message *msg)
|
|
{
|
|
int changed = 0, i, res, answers;
|
|
struct management_tlv *mgt;
|
|
struct ClockIdentity *tcid, wildcard = {
|
|
{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
|
|
};
|
|
|
|
/* Forward this message out all eligible ports. */
|
|
clock_forward_mgmt_msg(c, p, msg);
|
|
|
|
/* Apply this message to the local clock and ports. */
|
|
tcid = &msg->management.targetPortIdentity.clockIdentity;
|
|
if (!cid_eq(tcid, &wildcard) && !cid_eq(tcid, &c->dds.clockIdentity)) {
|
|
return changed;
|
|
}
|
|
if (msg->tlv_count != 1) {
|
|
return changed;
|
|
}
|
|
mgt = (struct management_tlv *) msg->management.suffix;
|
|
|
|
/*
|
|
The correct length according to the management ID is checked
|
|
in tlv.c, but management TLVs with empty bodies are also
|
|
received successfully to support GETs and CMDs. At this
|
|
point the TLV either has the correct length or length 2.
|
|
*/
|
|
switch (management_action(msg)) {
|
|
case GET:
|
|
if (clock_management_get_response(c, p, mgt->id, msg))
|
|
return changed;
|
|
break;
|
|
case SET:
|
|
if (mgt->length == 2 && mgt->id != NULL_MANAGEMENT) {
|
|
clock_management_send_error(p, msg, WRONG_LENGTH);
|
|
return changed;
|
|
}
|
|
if (p != c->port[c->nports]) {
|
|
/* Sorry, only allowed on the UDS port. */
|
|
clock_management_send_error(p, msg, NOT_SUPPORTED);
|
|
return changed;
|
|
}
|
|
if (clock_management_set(c, p, mgt->id, msg, &changed))
|
|
return changed;
|
|
break;
|
|
case COMMAND:
|
|
break;
|
|
default:
|
|
return changed;
|
|
}
|
|
|
|
switch (mgt->id) {
|
|
case PORT_PROPERTIES_NP:
|
|
if (p != c->port[c->nports]) {
|
|
/* Only the UDS port allowed. */
|
|
clock_management_send_error(p, msg, NOT_SUPPORTED);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
switch (mgt->id) {
|
|
case USER_DESCRIPTION:
|
|
case SAVE_IN_NON_VOLATILE_STORAGE:
|
|
case RESET_NON_VOLATILE_STORAGE:
|
|
case INITIALIZE:
|
|
case FAULT_LOG:
|
|
case FAULT_LOG_RESET:
|
|
case DEFAULT_DATA_SET:
|
|
case CURRENT_DATA_SET:
|
|
case PARENT_DATA_SET:
|
|
case TIME_PROPERTIES_DATA_SET:
|
|
case PRIORITY1:
|
|
case PRIORITY2:
|
|
case DOMAIN:
|
|
case SLAVE_ONLY:
|
|
case TIME:
|
|
case CLOCK_ACCURACY:
|
|
case UTC_PROPERTIES:
|
|
case TRACEABILITY_PROPERTIES:
|
|
case TIMESCALE_PROPERTIES:
|
|
case PATH_TRACE_LIST:
|
|
case PATH_TRACE_ENABLE:
|
|
case GRANDMASTER_CLUSTER_TABLE:
|
|
case ACCEPTABLE_MASTER_TABLE:
|
|
case ACCEPTABLE_MASTER_MAX_TABLE_SIZE:
|
|
case ALTERNATE_TIME_OFFSET_ENABLE:
|
|
case ALTERNATE_TIME_OFFSET_NAME:
|
|
case ALTERNATE_TIME_OFFSET_MAX_KEY:
|
|
case ALTERNATE_TIME_OFFSET_PROPERTIES:
|
|
case TRANSPARENT_CLOCK_DEFAULT_DATA_SET:
|
|
case PRIMARY_DOMAIN:
|
|
case TIME_STATUS_NP:
|
|
case GRANDMASTER_SETTINGS_NP:
|
|
case SUBSCRIBE_EVENTS_NP:
|
|
clock_management_send_error(p, msg, NOT_SUPPORTED);
|
|
break;
|
|
default:
|
|
answers = 0;
|
|
for (i = 0; i < c->nports; i++) {
|
|
res = port_manage(c->port[i], p, msg);
|
|
if (res < 0)
|
|
return changed;
|
|
if (res > 0)
|
|
answers++;
|
|
}
|
|
if (!answers) {
|
|
/* IEEE 1588 Interpretation #21 suggests to use
|
|
* WRONG_VALUE for ports that do not exist */
|
|
clock_management_send_error(p, msg, WRONG_VALUE);
|
|
}
|
|
break;
|
|
}
|
|
return changed;
|
|
}
|
|
|
|
void clock_notify_event(struct clock *c, enum notification event)
|
|
{
|
|
struct port *uds = c->port[c->nports];
|
|
struct PortIdentity pid = port_identity(uds);
|
|
struct ptp_message *msg;
|
|
UInteger16 msg_len;
|
|
int id;
|
|
|
|
switch (event) {
|
|
/* set id */
|
|
default:
|
|
return;
|
|
}
|
|
/* targetPortIdentity and sequenceId will be filled by
|
|
* clock_send_notification */
|
|
msg = port_management_notify(pid, uds);
|
|
if (!msg)
|
|
return;
|
|
if (!clock_management_fill_response(c, NULL, NULL, msg, id))
|
|
goto err;
|
|
msg_len = msg->header.messageLength;
|
|
if (msg_pre_send(msg))
|
|
goto err;
|
|
clock_send_notification(c, msg, msg_len, event);
|
|
err:
|
|
msg_put(msg);
|
|
}
|
|
|
|
struct parent_ds *clock_parent_ds(struct clock *c)
|
|
{
|
|
return &c->dad;
|
|
}
|
|
|
|
struct PortIdentity clock_parent_identity(struct clock *c)
|
|
{
|
|
return c->dad.pds.parentPortIdentity;
|
|
}
|
|
|
|
int clock_poll(struct clock *c)
|
|
{
|
|
int cnt, err, i, j, k, sde = 0;
|
|
enum fsm_event event;
|
|
|
|
cnt = poll(c->pollfd, ARRAY_SIZE(c->pollfd), -1);
|
|
if (cnt < 0) {
|
|
if (EINTR == errno) {
|
|
return 0;
|
|
} else {
|
|
pr_emerg("poll failed");
|
|
return -1;
|
|
}
|
|
} else if (!cnt) {
|
|
return 0;
|
|
}
|
|
|
|
for (i = 0; i < c->nports; i++) {
|
|
|
|
/* Let the ports handle their events. */
|
|
for (j = err = 0; j < N_POLLFD && !err; j++) {
|
|
k = N_CLOCK_PFD * i + j;
|
|
if (c->pollfd[k].revents & (POLLIN|POLLPRI)) {
|
|
event = port_event(c->port[i], j);
|
|
if (EV_STATE_DECISION_EVENT == event)
|
|
sde = 1;
|
|
if (EV_ANNOUNCE_RECEIPT_TIMEOUT_EXPIRES == event)
|
|
sde = 1;
|
|
err = port_dispatch(c->port[i], event, 0);
|
|
/* Clear any fault after a little while. */
|
|
if (PS_FAULTY == port_state(c->port[i])) {
|
|
clock_fault_timeout(c, i, 1);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Check the fault timer. */
|
|
k = N_CLOCK_PFD * i + N_POLLFD;
|
|
if (c->pollfd[k].revents & (POLLIN|POLLPRI)) {
|
|
clock_fault_timeout(c, i, 0);
|
|
port_dispatch(c->port[i], EV_FAULT_CLEARED, 0);
|
|
}
|
|
}
|
|
|
|
/* Check the UDS port. */
|
|
for (j = 0; j < N_POLLFD; j++) {
|
|
k = N_CLOCK_PFD * i + j;
|
|
if (c->pollfd[k].revents & (POLLIN|POLLPRI)) {
|
|
event = port_event(c->port[i], j);
|
|
if (EV_STATE_DECISION_EVENT == event)
|
|
sde = 1;
|
|
}
|
|
}
|
|
|
|
if (sde)
|
|
handle_state_decision_event(c);
|
|
|
|
clock_prune_subscriptions(c);
|
|
return 0;
|
|
}
|
|
|
|
void clock_path_delay(struct clock *c, struct timespec req, struct timestamp rx,
|
|
Integer64 correction)
|
|
{
|
|
tmv_t c1, c2, c3, pd, t1, t2, t3, t4;
|
|
double rr;
|
|
|
|
if (tmv_is_zero(c->t1))
|
|
return;
|
|
|
|
c1 = c->c1;
|
|
c2 = c->c2;
|
|
c3 = correction_to_tmv(correction);
|
|
t1 = c->t1;
|
|
t2 = c->t2;
|
|
t3 = timespec_to_tmv(req);
|
|
t4 = timestamp_to_tmv(rx);
|
|
rr = clock_rate_ratio(c);
|
|
|
|
/*
|
|
* c->path_delay = (t2 - t3) * rr + (t4 - t1);
|
|
* c->path_delay -= c_sync + c_fup + c_delay_resp;
|
|
* c->path_delay /= 2.0;
|
|
*/
|
|
|
|
pd = tmv_sub(t2, t3);
|
|
if (rr != 1.0)
|
|
pd = dbl_tmv(tmv_dbl(pd) * rr);
|
|
pd = tmv_add(pd, tmv_sub(t4, t1));
|
|
pd = tmv_sub(pd, tmv_add(c1, tmv_add(c2, c3)));
|
|
pd = tmv_div(pd, 2);
|
|
|
|
if (pd < 0) {
|
|
pr_debug("negative path delay %10" PRId64, pd);
|
|
pr_debug("path_delay = (t2 - t3) * rr + (t4 - t1) - (c1 + c2 + c3)");
|
|
pr_debug("t2 - t3 = %+10" PRId64, t2 - t3);
|
|
pr_debug("t4 - t1 = %+10" PRId64, t4 - t1);
|
|
pr_debug("rr = %.9f", rr);
|
|
pr_debug("c1 %10" PRId64, c1);
|
|
pr_debug("c2 %10" PRId64, c2);
|
|
pr_debug("c3 %10" PRId64, c3);
|
|
}
|
|
|
|
c->path_delay = filter_sample(c->delay_filter, pd);
|
|
|
|
c->cur.meanPathDelay = tmv_to_TimeInterval(c->path_delay);
|
|
|
|
pr_debug("path delay %10" PRId64 " %10" PRId64, c->path_delay, pd);
|
|
|
|
if (c->stats.delay)
|
|
stats_add_value(c->stats.delay, tmv_to_nanoseconds(pd));
|
|
}
|
|
|
|
void clock_peer_delay(struct clock *c, tmv_t ppd, double nrr)
|
|
{
|
|
c->path_delay = ppd;
|
|
c->nrr = nrr;
|
|
|
|
if (c->stats.delay)
|
|
stats_add_value(c->stats.delay, tmv_to_nanoseconds(ppd));
|
|
}
|
|
|
|
void clock_remove_fda(struct clock *c, struct port *p, struct fdarray fda)
|
|
{
|
|
int i, j, k;
|
|
for (i = 0; i < c->nports + 1; i++) {
|
|
if (p == c->port[i])
|
|
break;
|
|
}
|
|
for (j = 0; j < N_POLLFD; j++) {
|
|
k = N_CLOCK_PFD * i + j;
|
|
c->pollfd[k].fd = -1;
|
|
c->pollfd[k].events = 0;
|
|
}
|
|
}
|
|
|
|
int clock_slave_only(struct clock *c)
|
|
{
|
|
return c->dds.flags & DDS_SLAVE_ONLY;
|
|
}
|
|
|
|
UInteger16 clock_steps_removed(struct clock *c)
|
|
{
|
|
return c->cur.stepsRemoved;
|
|
}
|
|
|
|
enum servo_state clock_synchronize(struct clock *c,
|
|
struct timespec ingress_ts,
|
|
struct timestamp origin_ts,
|
|
Integer64 correction1,
|
|
Integer64 correction2)
|
|
{
|
|
double adj;
|
|
tmv_t ingress, origin;
|
|
enum servo_state state = SERVO_UNLOCKED;
|
|
|
|
ingress = timespec_to_tmv(ingress_ts);
|
|
origin = timestamp_to_tmv(origin_ts);
|
|
|
|
c->t1 = origin;
|
|
c->t2 = ingress;
|
|
|
|
c->c1 = correction_to_tmv(correction1);
|
|
c->c2 = correction_to_tmv(correction2);
|
|
|
|
/*
|
|
* c->master_offset = ingress - origin - c->path_delay - c->c1 - c->c2;
|
|
*/
|
|
c->master_offset = tmv_sub(ingress,
|
|
tmv_add(origin, tmv_add(c->path_delay, tmv_add(c->c1, c->c2))));
|
|
|
|
if (!c->path_delay)
|
|
return state;
|
|
|
|
if (clock_utc_correct(c, ingress))
|
|
return c->servo_state;
|
|
|
|
c->cur.offsetFromMaster = tmv_to_TimeInterval(c->master_offset);
|
|
|
|
if (c->free_running)
|
|
return clock_no_adjust(c);
|
|
|
|
adj = servo_sample(c->servo, tmv_to_nanoseconds(c->master_offset),
|
|
tmv_to_nanoseconds(ingress), &state);
|
|
c->servo_state = state;
|
|
|
|
if (c->stats.max_count > 1) {
|
|
clock_stats_update(&c->stats,
|
|
tmv_to_nanoseconds(c->master_offset), adj);
|
|
} else {
|
|
pr_info("master offset %10" PRId64 " s%d freq %+7.0f "
|
|
"path delay %9" PRId64,
|
|
tmv_to_nanoseconds(c->master_offset), state, adj,
|
|
tmv_to_nanoseconds(c->path_delay));
|
|
}
|
|
|
|
switch (state) {
|
|
case SERVO_UNLOCKED:
|
|
break;
|
|
case SERVO_JUMP:
|
|
clockadj_set_freq(c->clkid, -adj);
|
|
clockadj_step(c->clkid, -tmv_to_nanoseconds(c->master_offset));
|
|
c->t1 = tmv_zero();
|
|
c->t2 = tmv_zero();
|
|
if (c->sanity_check) {
|
|
clockcheck_set_freq(c->sanity_check, -adj);
|
|
clockcheck_step(c->sanity_check,
|
|
-tmv_to_nanoseconds(c->master_offset));
|
|
}
|
|
break;
|
|
case SERVO_LOCKED:
|
|
clockadj_set_freq(c->clkid, -adj);
|
|
if (c->clkid == CLOCK_REALTIME)
|
|
sysclk_set_sync();
|
|
if (c->sanity_check)
|
|
clockcheck_set_freq(c->sanity_check, -adj);
|
|
break;
|
|
}
|
|
return state;
|
|
}
|
|
|
|
void clock_sync_interval(struct clock *c, int n)
|
|
{
|
|
int shift;
|
|
|
|
shift = c->freq_est_interval - n;
|
|
if (shift < 0)
|
|
shift = 0;
|
|
else if (shift >= sizeof(int) * 8) {
|
|
shift = sizeof(int) * 8 - 1;
|
|
pr_warning("freq_est_interval is too long");
|
|
}
|
|
c->fest.max_count = (1 << shift);
|
|
|
|
shift = c->stats_interval - n;
|
|
if (shift < 0)
|
|
shift = 0;
|
|
else if (shift >= sizeof(int) * 8) {
|
|
shift = sizeof(int) * 8 - 1;
|
|
pr_warning("summary_interval is too long");
|
|
}
|
|
c->stats.max_count = (1 << shift);
|
|
|
|
servo_sync_interval(c->servo, n < 0 ? 1.0 / (1 << -n) : 1 << n);
|
|
}
|
|
|
|
struct timePropertiesDS *clock_time_properties(struct clock *c)
|
|
{
|
|
return &c->tds;
|
|
}
|
|
|
|
void clock_update_time_properties(struct clock *c, struct timePropertiesDS tds)
|
|
{
|
|
c->tds = tds;
|
|
}
|
|
|
|
static void handle_state_decision_event(struct clock *c)
|
|
{
|
|
struct foreign_clock *best = NULL, *fc;
|
|
struct ClockIdentity best_id;
|
|
int fresh_best = 0, i;
|
|
|
|
for (i = 0; i < c->nports; i++) {
|
|
fc = port_compute_best(c->port[i]);
|
|
if (!fc)
|
|
continue;
|
|
if (!best || dscmp(&fc->dataset, &best->dataset) > 0)
|
|
best = fc;
|
|
}
|
|
|
|
if (best) {
|
|
best_id = best->dataset.identity;
|
|
} else {
|
|
best_id = c->dds.clockIdentity;
|
|
}
|
|
|
|
pr_notice("selected best master clock %s",
|
|
cid2str(&best_id));
|
|
|
|
if (!cid_eq(&best_id, &c->best_id)) {
|
|
clock_freq_est_reset(c);
|
|
filter_reset(c->delay_filter);
|
|
c->t1 = tmv_zero();
|
|
c->t2 = tmv_zero();
|
|
c->path_delay = 0;
|
|
c->nrr = 1.0;
|
|
fresh_best = 1;
|
|
}
|
|
|
|
c->best = best;
|
|
c->best_id = best_id;
|
|
|
|
for (i = 0; i < c->nports; i++) {
|
|
enum port_state ps;
|
|
enum fsm_event event;
|
|
ps = bmc_state_decision(c, c->port[i]);
|
|
switch (ps) {
|
|
case PS_LISTENING:
|
|
event = EV_NONE;
|
|
break;
|
|
case PS_GRAND_MASTER:
|
|
pr_notice("assuming the grand master role");
|
|
clock_update_grandmaster(c);
|
|
event = EV_RS_GRAND_MASTER;
|
|
break;
|
|
case PS_MASTER:
|
|
event = EV_RS_MASTER;
|
|
break;
|
|
case PS_PASSIVE:
|
|
event = EV_RS_PASSIVE;
|
|
break;
|
|
case PS_SLAVE:
|
|
clock_update_slave(c);
|
|
event = EV_RS_SLAVE;
|
|
break;
|
|
default:
|
|
event = EV_FAULT_DETECTED;
|
|
break;
|
|
}
|
|
port_dispatch(c->port[i], event, fresh_best);
|
|
}
|
|
}
|
|
|
|
struct clock_description *clock_description(struct clock *c)
|
|
{
|
|
return &c->desc;
|
|
}
|
|
|
|
int clock_num_ports(struct clock *c)
|
|
{
|
|
return c->nports;
|
|
}
|
|
|
|
void clock_check_ts(struct clock *c, struct timespec ts)
|
|
{
|
|
if (c->sanity_check &&
|
|
clockcheck_sample(c->sanity_check,
|
|
ts.tv_sec * NS_PER_SEC + ts.tv_nsec)) {
|
|
servo_reset(c->servo);
|
|
}
|
|
}
|
|
|
|
double clock_rate_ratio(struct clock *c)
|
|
{
|
|
return servo_rate_ratio(c->servo);
|
|
}
|