Home | History | Annotate | Line # | Download | only in ntpd
refclock_shm.c revision 1.8
      1  1.8  christos /*	$NetBSD: refclock_shm.c,v 1.8 2016/05/01 23:32:01 christos Exp $	*/
      2  1.1    kardel 
      3  1.1    kardel /*
      4  1.2  christos  * refclock_shm - clock driver for utc via shared memory
      5  1.1    kardel  * - under construction -
      6  1.1    kardel  * To add new modes: Extend or union the shmTime-struct. Do not
      7  1.1    kardel  * extend/shrink size, because otherwise existing implementations
      8  1.1    kardel  * will specify wrong size of shared memory-segment
      9  1.1    kardel  * PB 18.3.97
     10  1.1    kardel  */
     11  1.1    kardel 
     12  1.1    kardel #ifdef HAVE_CONFIG_H
     13  1.1    kardel # include <config.h>
     14  1.1    kardel #endif
     15  1.1    kardel 
     16  1.2  christos #include "ntp_types.h"
     17  1.2  christos 
     18  1.1    kardel #if defined(REFCLOCK) && defined(CLOCK_SHM)
     19  1.1    kardel 
     20  1.1    kardel #include "ntpd.h"
     21  1.2  christos #undef fileno
     22  1.1    kardel #include "ntp_io.h"
     23  1.2  christos #undef fileno
     24  1.1    kardel #include "ntp_refclock.h"
     25  1.2  christos #undef fileno
     26  1.2  christos #include "timespecops.h"
     27  1.2  christos #undef fileno
     28  1.1    kardel #include "ntp_stdlib.h"
     29  1.6  christos #include "ntp_assert.h"
     30  1.1    kardel 
     31  1.2  christos #undef fileno
     32  1.1    kardel #include <ctype.h>
     33  1.2  christos #undef fileno
     34  1.1    kardel 
     35  1.1    kardel #ifndef SYS_WINNT
     36  1.1    kardel # include <sys/ipc.h>
     37  1.1    kardel # include <sys/shm.h>
     38  1.1    kardel # include <assert.h>
     39  1.1    kardel # include <unistd.h>
     40  1.1    kardel # include <stdio.h>
     41  1.1    kardel #endif
     42  1.1    kardel 
     43  1.6  christos #ifdef HAVE_STDATOMIC_H
     44  1.6  christos # include <stdatomic.h>
     45  1.6  christos #endif /* HAVE_STDATOMIC_H */
     46  1.6  christos 
     47  1.1    kardel /*
     48  1.1    kardel  * This driver supports a reference clock attached thru shared memory
     49  1.2  christos  */
     50  1.1    kardel 
     51  1.1    kardel /*
     52  1.1    kardel  * SHM interface definitions
     53  1.1    kardel  */
     54  1.1    kardel #define PRECISION       (-1)    /* precision assumed (0.5 s) */
     55  1.1    kardel #define REFID           "SHM"   /* reference ID */
     56  1.1    kardel #define DESCRIPTION     "SHM/Shared memory interface"
     57  1.1    kardel 
     58  1.1    kardel #define NSAMPLES        3       /* stages of median filter */
     59  1.1    kardel 
     60  1.1    kardel /*
     61  1.4  christos  * Mode flags
     62  1.4  christos  */
     63  1.4  christos #define SHM_MODE_PRIVATE 0x0001
     64  1.4  christos 
     65  1.4  christos /*
     66  1.1    kardel  * Function prototypes
     67  1.1    kardel  */
     68  1.1    kardel static  int     shm_start       (int unit, struct peer *peer);
     69  1.1    kardel static  void    shm_shutdown    (int unit, struct peer *peer);
     70  1.1    kardel static  void    shm_poll        (int unit, struct peer *peer);
     71  1.1    kardel static  void    shm_timer       (int unit, struct peer *peer);
     72  1.3  christos static	void	shm_clockstats  (int unit, struct peer *peer);
     73  1.3  christos static	void	shm_control	(int unit, const struct refclockstat * in_st,
     74  1.3  christos 				 struct refclockstat * out_st, struct peer *peer);
     75  1.1    kardel 
     76  1.1    kardel /*
     77  1.1    kardel  * Transfer vector
     78  1.1    kardel  */
     79  1.1    kardel struct  refclock refclock_shm = {
     80  1.1    kardel 	shm_start,              /* start up driver */
     81  1.1    kardel 	shm_shutdown,           /* shut down driver */
     82  1.1    kardel 	shm_poll,		/* transmit poll message */
     83  1.3  christos 	shm_control,		/* control settings */
     84  1.1    kardel 	noentry,		/* not used: init */
     85  1.1    kardel 	noentry,		/* not used: buginfo */
     86  1.1    kardel 	shm_timer,              /* once per second */
     87  1.1    kardel };
     88  1.1    kardel 
     89  1.1    kardel struct shmTime {
     90  1.2  christos 	int    mode; /* 0 - if valid is set:
     91  1.2  christos 		      *       use values,
     92  1.1    kardel 		      *       clear valid
     93  1.2  christos 		      * 1 - if valid is set:
     94  1.1    kardel 		      *       if count before and after read of values is equal,
     95  1.2  christos 		      *         use values
     96  1.1    kardel 		      *       clear valid
     97  1.1    kardel 		      */
     98  1.2  christos 	volatile int    count;
     99  1.2  christos 	time_t		clockTimeStampSec;
    100  1.2  christos 	int		clockTimeStampUSec;
    101  1.2  christos 	time_t		receiveTimeStampSec;
    102  1.2  christos 	int		receiveTimeStampUSec;
    103  1.2  christos 	int		leap;
    104  1.2  christos 	int		precision;
    105  1.2  christos 	int		nsamples;
    106  1.2  christos 	volatile int    valid;
    107  1.2  christos 	unsigned	clockTimeStampNSec;	/* Unsigned ns timestamps */
    108  1.2  christos 	unsigned	receiveTimeStampNSec;	/* Unsigned ns timestamps */
    109  1.2  christos 	int		dummy[8];
    110  1.1    kardel };
    111  1.1    kardel 
    112  1.1    kardel struct shmunit {
    113  1.1    kardel 	struct shmTime *shm;	/* pointer to shared memory segment */
    114  1.4  christos 	int forall;		/* access for all UIDs?	*/
    115  1.1    kardel 
    116  1.1    kardel 	/* debugging/monitoring counters - reset when printed */
    117  1.1    kardel 	int ticks;		/* number of attempts to read data*/
    118  1.1    kardel 	int good;		/* number of valid samples */
    119  1.1    kardel 	int notready;		/* number of peeks without data ready */
    120  1.1    kardel 	int bad;		/* number of invalid samples */
    121  1.1    kardel 	int clash;		/* number of access clashes while reading */
    122  1.3  christos 
    123  1.3  christos 	time_t max_delta;	/* difference limit */
    124  1.3  christos 	time_t max_delay;	/* age/stale limit */
    125  1.1    kardel };
    126  1.1    kardel 
    127  1.6  christos 
    128  1.4  christos static struct shmTime*
    129  1.4  christos getShmTime(
    130  1.4  christos 	int unit,
    131  1.4  christos 	int/*BOOL*/ forall
    132  1.4  christos 	)
    133  1.4  christos {
    134  1.4  christos 	struct shmTime *p = NULL;
    135  1.1    kardel 
    136  1.4  christos #ifndef SYS_WINNT
    137  1.1    kardel 
    138  1.4  christos 	int shmid;
    139  1.1    kardel 
    140  1.1    kardel 	/* 0x4e545030 is NTP0.
    141  1.1    kardel 	 * Big units will give non-ascii but that's OK
    142  1.2  christos 	 * as long as everybody does it the same way.
    143  1.1    kardel 	 */
    144  1.4  christos 	shmid=shmget(0x4e545030 + unit, sizeof (struct shmTime),
    145  1.4  christos 		      IPC_CREAT | (forall ? 0666 : 0600));
    146  1.2  christos 	if (shmid == -1) { /* error */
    147  1.2  christos 		msyslog(LOG_ERR, "SHM shmget (unit %d): %m", unit);
    148  1.4  christos 		return NULL;
    149  1.1    kardel 	}
    150  1.4  christos 	p = (struct shmTime *)shmat (shmid, 0, 0);
    151  1.4  christos 	if (p == (struct shmTime *)-1) { /* error */
    152  1.4  christos 		msyslog(LOG_ERR, "SHM shmat (unit %d): %m", unit);
    153  1.4  christos 		return NULL;
    154  1.1    kardel 	}
    155  1.6  christos 
    156  1.4  christos 	return p;
    157  1.1    kardel #else
    158  1.4  christos 
    159  1.4  christos 	static const char * nspref[2] = { "Local", "Global" };
    160  1.4  christos 	char buf[20];
    161  1.2  christos 	LPSECURITY_ATTRIBUTES psec = 0;
    162  1.2  christos 	HANDLE shmid = 0;
    163  1.1    kardel 	SECURITY_DESCRIPTOR sd;
    164  1.1    kardel 	SECURITY_ATTRIBUTES sa;
    165  1.4  christos 	unsigned int numch;
    166  1.2  christos 
    167  1.4  christos 	numch = snprintf(buf, sizeof(buf), "%s\\NTP%d",
    168  1.4  christos 			 nspref[forall != 0], (unit & 0xFF));
    169  1.4  christos 	if (numch >= sizeof(buf)) {
    170  1.4  christos 		msyslog(LOG_ERR, "SHM name too long (unit %d)", unit);
    171  1.4  christos 		return NULL;
    172  1.4  christos 	}
    173  1.4  christos 	if (forall) { /* world access */
    174  1.1    kardel 		if (!InitializeSecurityDescriptor(&sd, SECURITY_DESCRIPTOR_REVISION)) {
    175  1.2  christos 			msyslog(LOG_ERR,"SHM InitializeSecurityDescriptor (unit %d): %m", unit);
    176  1.4  christos 			return NULL;
    177  1.1    kardel 		}
    178  1.4  christos 		if (!SetSecurityDescriptorDacl(&sd, TRUE, NULL, FALSE)) {
    179  1.2  christos 			msyslog(LOG_ERR, "SHM SetSecurityDescriptorDacl (unit %d): %m", unit);
    180  1.4  christos 			return NULL;
    181  1.1    kardel 		}
    182  1.4  christos 		sa.nLength = sizeof(SECURITY_ATTRIBUTES);
    183  1.2  christos 		sa.lpSecurityDescriptor = &sd;
    184  1.4  christos 		sa.bInheritHandle = FALSE;
    185  1.2  christos 		psec = &sa;
    186  1.1    kardel 	}
    187  1.2  christos 	shmid = CreateFileMapping ((HANDLE)0xffffffff, psec, PAGE_READWRITE,
    188  1.4  christos 				   0, sizeof (struct shmTime), buf);
    189  1.4  christos 	if (shmid == NULL) { /*error*/
    190  1.4  christos 		char buf[1000];
    191  1.1    kardel 		FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM,
    192  1.1    kardel 			       0, GetLastError (), 0, buf, sizeof (buf), 0);
    193  1.2  christos 		msyslog(LOG_ERR, "SHM CreateFileMapping (unit %d): %s", unit, buf);
    194  1.4  christos 		return NULL;
    195  1.4  christos 	}
    196  1.4  christos 	p = (struct shmTime *)MapViewOfFile(shmid, FILE_MAP_WRITE, 0, 0,
    197  1.4  christos 					    sizeof (struct shmTime));
    198  1.4  christos 	if (p == NULL) { /*error*/
    199  1.4  christos 		char buf[1000];
    200  1.4  christos 		FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM,
    201  1.4  christos 			       0, GetLastError (), 0, buf, sizeof (buf), 0);
    202  1.4  christos 		msyslog(LOG_ERR,"SHM MapViewOfFile (unit %d): %s", unit, buf);
    203  1.4  christos 		return NULL;
    204  1.1    kardel 	}
    205  1.4  christos 
    206  1.5  christos 	return p;
    207  1.1    kardel #endif
    208  1.6  christos 
    209  1.6  christos 	/* NOTREACHED */
    210  1.6  christos 	ENSURE(!"getShmTime(): Not reached.");
    211  1.1    kardel }
    212  1.6  christos 
    213  1.6  christos 
    214  1.1    kardel /*
    215  1.1    kardel  * shm_start - attach to shared memory
    216  1.1    kardel  */
    217  1.1    kardel static int
    218  1.1    kardel shm_start(
    219  1.1    kardel 	int unit,
    220  1.1    kardel 	struct peer *peer
    221  1.1    kardel 	)
    222  1.1    kardel {
    223  1.4  christos 	struct refclockproc * const pp = peer->procptr;
    224  1.4  christos 	struct shmunit *      const up = emalloc_zero(sizeof(*up));
    225  1.1    kardel 
    226  1.1    kardel 	pp->io.clock_recv = noentry;
    227  1.2  christos 	pp->io.srcclock = peer;
    228  1.1    kardel 	pp->io.datalen = 0;
    229  1.1    kardel 	pp->io.fd = -1;
    230  1.1    kardel 
    231  1.4  christos 	up->forall = (unit >= 2) && !(peer->ttl & SHM_MODE_PRIVATE);
    232  1.1    kardel 
    233  1.4  christos 	up->shm = getShmTime(unit, up->forall);
    234  1.1    kardel 
    235  1.1    kardel 	/*
    236  1.1    kardel 	 * Initialize miscellaneous peer variables
    237  1.1    kardel 	 */
    238  1.1    kardel 	memcpy((char *)&pp->refid, REFID, 4);
    239  1.1    kardel 	if (up->shm != 0) {
    240  1.2  christos 		pp->unitptr = up;
    241  1.1    kardel 		up->shm->precision = PRECISION;
    242  1.1    kardel 		peer->precision = up->shm->precision;
    243  1.2  christos 		up->shm->valid = 0;
    244  1.2  christos 		up->shm->nsamples = NSAMPLES;
    245  1.1    kardel 		pp->clockdesc = DESCRIPTION;
    246  1.3  christos 		/* items to be changed later in 'shm_control()': */
    247  1.3  christos 		up->max_delay = 5;
    248  1.3  christos 		up->max_delta = 4*3600;
    249  1.2  christos 		return 1;
    250  1.2  christos 	} else {
    251  1.2  christos 		free(up);
    252  1.3  christos 		pp->unitptr = NULL;
    253  1.1    kardel 		return 0;
    254  1.1    kardel 	}
    255  1.1    kardel }
    256  1.1    kardel 
    257  1.1    kardel 
    258  1.1    kardel /*
    259  1.3  christos  * shm_control - configure flag1/time2 params
    260  1.3  christos  *
    261  1.3  christos  * These are not yet available during 'shm_start', so we have to do any
    262  1.3  christos  * pre-computations we want to avoid during regular poll/timer callbacks
    263  1.3  christos  * in this callback.
    264  1.3  christos  */
    265  1.3  christos static void
    266  1.3  christos shm_control(
    267  1.3  christos 	int                         unit,
    268  1.3  christos 	const struct refclockstat * in_st,
    269  1.3  christos 	struct refclockstat       * out_st,
    270  1.3  christos 	struct peer               * peer
    271  1.3  christos 	)
    272  1.3  christos {
    273  1.4  christos 	struct refclockproc * const pp = peer->procptr;
    274  1.4  christos 	struct shmunit *      const up = pp->unitptr;
    275  1.3  christos 
    276  1.4  christos 	UNUSED_ARG(unit);
    277  1.4  christos 	UNUSED_ARG(in_st);
    278  1.4  christos 	UNUSED_ARG(out_st);
    279  1.3  christos 	if (NULL == up)
    280  1.3  christos 		return;
    281  1.3  christos 	if (pp->sloppyclockflag & CLK_FLAG1)
    282  1.3  christos 		up->max_delta = 0;
    283  1.3  christos 	else if (pp->fudgetime2 < 1. || pp->fudgetime2 > 86400.)
    284  1.3  christos 		up->max_delta = 4*3600;
    285  1.3  christos 	else
    286  1.3  christos 		up->max_delta = (time_t)floor(pp->fudgetime2 + 0.5);
    287  1.3  christos }
    288  1.3  christos 
    289  1.3  christos 
    290  1.3  christos /*
    291  1.1    kardel  * shm_shutdown - shut down the clock
    292  1.1    kardel  */
    293  1.1    kardel static void
    294  1.1    kardel shm_shutdown(
    295  1.1    kardel 	int unit,
    296  1.1    kardel 	struct peer *peer
    297  1.1    kardel 	)
    298  1.1    kardel {
    299  1.4  christos 	struct refclockproc * const pp = peer->procptr;
    300  1.4  christos 	struct shmunit *      const up = pp->unitptr;
    301  1.2  christos 
    302  1.4  christos 	UNUSED_ARG(unit);
    303  1.2  christos 	if (NULL == up)
    304  1.2  christos 		return;
    305  1.1    kardel #ifndef SYS_WINNT
    306  1.4  christos 
    307  1.2  christos 	/* HMS: shmdt() wants char* or const void * */
    308  1.4  christos 	(void)shmdt((char *)up->shm);
    309  1.4  christos 
    310  1.1    kardel #else
    311  1.4  christos 
    312  1.4  christos 	UnmapViewOfFile(up->shm);
    313  1.4  christos 
    314  1.1    kardel #endif
    315  1.2  christos 	free(up);
    316  1.1    kardel }
    317  1.1    kardel 
    318  1.1    kardel 
    319  1.1    kardel /*
    320  1.1    kardel  * shm_poll - called by the transmit procedure
    321  1.1    kardel  */
    322  1.1    kardel static void
    323  1.1    kardel shm_poll(
    324  1.1    kardel 	int unit,
    325  1.1    kardel 	struct peer *peer
    326  1.1    kardel 	)
    327  1.1    kardel {
    328  1.4  christos 	struct refclockproc * const pp = peer->procptr;
    329  1.4  christos 	struct shmunit *      const up = pp->unitptr;
    330  1.3  christos 	int major_error;
    331  1.1    kardel 
    332  1.3  christos 	pp->polls++;
    333  1.2  christos 
    334  1.3  christos 	/* get dominant reason if we have no samples at all */
    335  1.3  christos 	major_error = max(up->notready, up->bad);
    336  1.3  christos 	major_error = max(major_error, up->clash);
    337  1.1    kardel 
    338  1.1    kardel         /*
    339  1.3  christos          * Process median filter samples. If none received, see what
    340  1.3  christos          * happened, tell the core and keep going.
    341  1.1    kardel          */
    342  1.3  christos         if (pp->coderecv != pp->codeproc) {
    343  1.3  christos 		/* have some samples, everything OK */
    344  1.3  christos 		pp->lastref = pp->lastrec;
    345  1.3  christos 		refclock_receive(peer);
    346  1.3  christos 	} else if (NULL == up->shm) { /* is this possible at all? */
    347  1.3  christos 		/* we're out of business without SHM access */
    348  1.3  christos 		refclock_report(peer, CEVNT_FAULT);
    349  1.3  christos 	} else if (major_error == up->clash) {
    350  1.3  christos 		/* too many collisions is like a bad signal */
    351  1.3  christos                 refclock_report(peer, CEVNT_PROP);
    352  1.3  christos 	} else if (major_error == up->bad) {
    353  1.3  christos 		/* too much stale/bad/garbled data */
    354  1.3  christos                 refclock_report(peer, CEVNT_BADREPLY);
    355  1.3  christos 	} else {
    356  1.3  christos 		/* in any other case assume it's just a timeout */
    357  1.1    kardel                 refclock_report(peer, CEVNT_TIMEOUT);
    358  1.1    kardel         }
    359  1.3  christos 	/* shm_clockstats() clears the tallies, so it must be last... */
    360  1.1    kardel 	shm_clockstats(unit, peer);
    361  1.1    kardel }
    362  1.1    kardel 
    363  1.6  christos 
    364  1.6  christos enum segstat_t {
    365  1.6  christos     OK, NO_SEGMENT, NOT_READY, BAD_MODE, CLASH
    366  1.6  christos };
    367  1.6  christos 
    368  1.6  christos struct shm_stat_t {
    369  1.6  christos     int status;
    370  1.6  christos     int mode;
    371  1.6  christos     struct timespec tvc, tvr, tvt;
    372  1.6  christos     int precision;
    373  1.6  christos     int leap;
    374  1.6  christos };
    375  1.6  christos 
    376  1.6  christos static inline void memory_barrier(void)
    377  1.6  christos {
    378  1.6  christos #ifdef HAVE_ATOMIC_THREAD_FENCE
    379  1.6  christos     atomic_thread_fence(memory_order_seq_cst);
    380  1.6  christos #endif /* HAVE_ATOMIC_THREAD_FENCE */
    381  1.6  christos }
    382  1.6  christos 
    383  1.6  christos static enum segstat_t shm_query(volatile struct shmTime *shm_in, struct shm_stat_t *shm_stat)
    384  1.6  christos /* try to grab a sample from the specified SHM segment */
    385  1.6  christos {
    386  1.7  christos     struct shmTime shmcopy;
    387  1.7  christos     volatile struct shmTime *shm = shm_in;
    388  1.6  christos     volatile int cnt;
    389  1.6  christos 
    390  1.6  christos     unsigned int cns_new, rns_new;
    391  1.6  christos 
    392  1.6  christos     /*
    393  1.6  christos      * This is the main routine. It snatches the time from the shm
    394  1.6  christos      * board and tacks on a local timestamp.
    395  1.6  christos      */
    396  1.6  christos     if (shm == NULL) {
    397  1.6  christos 	shm_stat->status = NO_SEGMENT;
    398  1.6  christos 	return NO_SEGMENT;
    399  1.6  christos     }
    400  1.6  christos 
    401  1.6  christos     /*@-type@*//* splint is confused about struct timespec */
    402  1.6  christos     shm_stat->tvc.tv_sec = shm_stat->tvc.tv_nsec = 0;
    403  1.6  christos     {
    404  1.6  christos 	time_t now;
    405  1.6  christos 
    406  1.6  christos 	time(&now);
    407  1.6  christos 	shm_stat->tvc.tv_sec = now;
    408  1.6  christos     }
    409  1.6  christos 
    410  1.6  christos     /* relying on word access to be atomic here */
    411  1.6  christos     if (shm->valid == 0) {
    412  1.6  christos 	shm_stat->status = NOT_READY;
    413  1.6  christos 	return NOT_READY;
    414  1.6  christos     }
    415  1.6  christos 
    416  1.6  christos     cnt = shm->count;
    417  1.6  christos 
    418  1.6  christos     /*
    419  1.6  christos      * This is proof against concurrency issues if either
    420  1.6  christos      * (a) the memory_barrier() call works on this host, or
    421  1.6  christos      * (b) memset compiles to an uninterruptible single-instruction bitblt.
    422  1.6  christos      */
    423  1.6  christos     memory_barrier();
    424  1.7  christos     memcpy(&shmcopy, (void*)(uintptr_t)shm, sizeof(struct shmTime));
    425  1.6  christos     shm->valid = 0;
    426  1.6  christos     memory_barrier();
    427  1.6  christos 
    428  1.6  christos     /*
    429  1.6  christos      * Clash detection in case neither (a) nor (b) was true.
    430  1.6  christos      * Not supported in mode 0, and word access to the count field
    431  1.6  christos      * must be atomic for this to work.
    432  1.6  christos      */
    433  1.6  christos     if (shmcopy.mode > 0 && cnt != shm->count) {
    434  1.6  christos 	shm_stat->status = CLASH;
    435  1.6  christos 	return shm_stat->status;
    436  1.6  christos     }
    437  1.6  christos 
    438  1.6  christos     shm_stat->status = OK;
    439  1.6  christos     shm_stat->mode = shmcopy.mode;
    440  1.6  christos 
    441  1.6  christos     switch (shmcopy.mode) {
    442  1.6  christos     case 0:
    443  1.6  christos 	shm_stat->tvr.tv_sec	= shmcopy.receiveTimeStampSec;
    444  1.6  christos 	shm_stat->tvr.tv_nsec	= shmcopy.receiveTimeStampUSec * 1000;
    445  1.6  christos 	rns_new		= shmcopy.receiveTimeStampNSec;
    446  1.6  christos 	shm_stat->tvt.tv_sec	= shmcopy.clockTimeStampSec;
    447  1.6  christos 	shm_stat->tvt.tv_nsec	= shmcopy.clockTimeStampUSec * 1000;
    448  1.6  christos 	cns_new		= shmcopy.clockTimeStampNSec;
    449  1.6  christos 
    450  1.6  christos 	/* Since the following comparisons are between unsigned
    451  1.6  christos 	** variables they are always well defined, and any
    452  1.6  christos 	** (signed) underflow will turn into very large unsigned
    453  1.6  christos 	** values, well above the 1000 cutoff.
    454  1.6  christos 	**
    455  1.6  christos 	** Note: The usecs *must* be a *truncated*
    456  1.6  christos 	** representation of the nsecs. This code will fail for
    457  1.6  christos 	** *rounded* usecs, and the logic to deal with
    458  1.6  christos 	** wrap-arounds in the presence of rounded values is
    459  1.6  christos 	** much more convoluted.
    460  1.6  christos 	*/
    461  1.6  christos 	if (   ((cns_new - (unsigned)shm_stat->tvt.tv_nsec) < 1000)
    462  1.6  christos 	       && ((rns_new - (unsigned)shm_stat->tvr.tv_nsec) < 1000)) {
    463  1.6  christos 	    shm_stat->tvt.tv_nsec = cns_new;
    464  1.6  christos 	    shm_stat->tvr.tv_nsec = rns_new;
    465  1.6  christos 	}
    466  1.6  christos 	/* At this point shm_stat->tvr and shm_stat->tvt contain valid ns-level
    467  1.6  christos 	** timestamps, possibly generated by extending the old
    468  1.6  christos 	** us-level timestamps
    469  1.6  christos 	*/
    470  1.6  christos 	break;
    471  1.6  christos 
    472  1.6  christos     case 1:
    473  1.6  christos 
    474  1.6  christos 	shm_stat->tvr.tv_sec	= shmcopy.receiveTimeStampSec;
    475  1.6  christos 	shm_stat->tvr.tv_nsec	= shmcopy.receiveTimeStampUSec * 1000;
    476  1.6  christos 	rns_new		= shmcopy.receiveTimeStampNSec;
    477  1.6  christos 	shm_stat->tvt.tv_sec	= shmcopy.clockTimeStampSec;
    478  1.6  christos 	shm_stat->tvt.tv_nsec	= shmcopy.clockTimeStampUSec * 1000;
    479  1.6  christos 	cns_new		= shmcopy.clockTimeStampNSec;
    480  1.6  christos 
    481  1.6  christos 	/* See the case above for an explanation of the
    482  1.6  christos 	** following test.
    483  1.6  christos 	*/
    484  1.6  christos 	if (   ((cns_new - (unsigned)shm_stat->tvt.tv_nsec) < 1000)
    485  1.6  christos 	       && ((rns_new - (unsigned)shm_stat->tvr.tv_nsec) < 1000)) {
    486  1.6  christos 	    shm_stat->tvt.tv_nsec = cns_new;
    487  1.6  christos 	    shm_stat->tvr.tv_nsec = rns_new;
    488  1.6  christos 	}
    489  1.6  christos 	/* At this point shm_stat->tvr and shm_stat->tvt contains valid ns-level
    490  1.6  christos 	** timestamps, possibly generated by extending the old
    491  1.6  christos 	** us-level timestamps
    492  1.6  christos 	*/
    493  1.6  christos 	break;
    494  1.6  christos 
    495  1.6  christos     default:
    496  1.6  christos 	shm_stat->status = BAD_MODE;
    497  1.6  christos 	break;
    498  1.6  christos     }
    499  1.6  christos     /*@-type@*/
    500  1.6  christos 
    501  1.6  christos     /*
    502  1.6  christos      * leap field is not a leap offset but a leap notification code.
    503  1.6  christos      * The values are magic numbers used by NTP and set by GPSD, if at all, in
    504  1.6  christos      * the subframe code.
    505  1.6  christos      */
    506  1.6  christos     shm_stat->leap = shmcopy.leap;
    507  1.6  christos     shm_stat->precision = shmcopy.precision;
    508  1.6  christos 
    509  1.6  christos     return shm_stat->status;
    510  1.6  christos }
    511  1.6  christos 
    512  1.1    kardel /*
    513  1.6  christos  * shm_timer - called once every second.
    514  1.4  christos  *
    515  1.6  christos  * This tries to grab a sample from the SHM segment, filtering bad ones
    516  1.1    kardel  */
    517  1.3  christos static void
    518  1.4  christos shm_timer(
    519  1.1    kardel 	int unit,
    520  1.1    kardel 	struct peer *peer
    521  1.1    kardel 	)
    522  1.1    kardel {
    523  1.4  christos 	struct refclockproc * const pp = peer->procptr;
    524  1.4  christos 	struct shmunit *      const up = pp->unitptr;
    525  1.3  christos 
    526  1.3  christos 	volatile struct shmTime *shm;
    527  1.3  christos 
    528  1.3  christos 	l_fp tsrcv;
    529  1.3  christos 	l_fp tsref;
    530  1.6  christos 	int c;
    531  1.3  christos 
    532  1.3  christos 	/* for formatting 'a_lastcode': */
    533  1.3  christos 	struct calendar cd;
    534  1.6  christos 	time_t tt;
    535  1.3  christos 	vint64 ts;
    536  1.1    kardel 
    537  1.6  christos 	enum segstat_t status;
    538  1.6  christos 	struct shm_stat_t shm_stat;
    539  1.6  christos 
    540  1.1    kardel 	up->ticks++;
    541  1.4  christos 	if ((shm = up->shm) == NULL) {
    542  1.1    kardel 		/* try to map again - this may succeed if meanwhile some-
    543  1.1    kardel 		body has ipcrm'ed the old (unaccessible) shared mem segment */
    544  1.4  christos 		shm = up->shm = getShmTime(unit, up->forall);
    545  1.4  christos 		if (shm == NULL) {
    546  1.4  christos 			DPRINTF(1, ("%s: no SHM segment\n",
    547  1.4  christos 				    refnumtoa(&peer->srcadr)));
    548  1.4  christos 			return;
    549  1.4  christos 		}
    550  1.3  christos 	}
    551  1.2  christos 
    552  1.6  christos 	/* query the segment, atomically */
    553  1.6  christos 	status = shm_query(shm, &shm_stat);
    554  1.3  christos 
    555  1.6  christos 	switch (status) {
    556  1.6  christos 	case OK:
    557  1.6  christos 	    DPRINTF(2, ("%s: SHM type %d sample\n",
    558  1.6  christos 			refnumtoa(&peer->srcadr), shm_stat.mode));
    559  1.6  christos 	    break;
    560  1.6  christos 	case NO_SEGMENT:
    561  1.6  christos 	    /* should never happen, but is harmless */
    562  1.6  christos 	    return;
    563  1.6  christos 	case NOT_READY:
    564  1.6  christos 	    DPRINTF(1, ("%s: SHM not ready\n",refnumtoa(&peer->srcadr)));
    565  1.6  christos 	    up->notready++;
    566  1.6  christos 	    return;
    567  1.6  christos 	case BAD_MODE:
    568  1.6  christos 	    DPRINTF(1, ("%s: SHM type blooper, mode=%d\n",
    569  1.6  christos 			refnumtoa(&peer->srcadr), shm->mode));
    570  1.6  christos 	    up->bad++;
    571  1.6  christos 	    msyslog (LOG_ERR, "SHM: bad mode found in shared memory: %d",
    572  1.6  christos 		     shm->mode);
    573  1.6  christos 	    return;
    574  1.6  christos 	case CLASH:
    575  1.6  christos 	    DPRINTF(1, ("%s: type 1 access clash\n",
    576  1.6  christos 			refnumtoa(&peer->srcadr)));
    577  1.6  christos 	    msyslog (LOG_NOTICE, "SHM: access clash in shared memory");
    578  1.6  christos 	    up->clash++;
    579  1.6  christos 	    return;
    580  1.3  christos 	default:
    581  1.6  christos 	    DPRINTF(1, ("%s: internal error, unknown SHM fetch status\n",
    582  1.6  christos 			refnumtoa(&peer->srcadr)));
    583  1.6  christos 	    msyslog (LOG_NOTICE, "internal error, unknown SHM fetch status");
    584  1.6  christos 	    up->bad++;
    585  1.6  christos 	    return;
    586  1.3  christos 	}
    587  1.6  christos 
    588  1.3  christos 
    589  1.3  christos 	/* format the last time code in human-readable form into
    590  1.3  christos 	 * 'pp->a_lastcode'. Someone claimed: "NetBSD has incompatible
    591  1.3  christos 	 * tv_sec". I can't find a base for this claim, but we can work
    592  1.3  christos 	 * around that potential problem. BTW, simply casting a pointer
    593  1.3  christos 	 * is a receipe for disaster on some architectures.
    594  1.3  christos 	 */
    595  1.6  christos 	tt = (time_t)shm_stat.tvt.tv_sec;
    596  1.3  christos 	ts = time_to_vint64(&tt);
    597  1.3  christos 	ntpcal_time_to_date(&cd, &ts);
    598  1.3  christos 
    599  1.3  christos 	/* add ntpq -c cv timecode in ISO 8601 format */
    600  1.3  christos 	c = snprintf(pp->a_lastcode, sizeof(pp->a_lastcode),
    601  1.3  christos 		     "%04u-%02u-%02uT%02u:%02u:%02u.%09ldZ",
    602  1.3  christos 		     cd.year, cd.month, cd.monthday,
    603  1.3  christos 		     cd.hour, cd.minute, cd.second,
    604  1.6  christos 		     (long)shm_stat.tvt.tv_nsec);
    605  1.8  christos 	pp->lencode = (c > 0 && (size_t)c < sizeof(pp->a_lastcode)) ? c : 0;
    606  1.3  christos 
    607  1.3  christos 	/* check 1: age control of local time stamp */
    608  1.6  christos 	tt = shm_stat.tvc.tv_sec - shm_stat.tvr.tv_sec;
    609  1.3  christos 	if (tt < 0 || tt > up->max_delay) {
    610  1.3  christos 		DPRINTF(1, ("%s:SHM stale/bad receive time, delay=%llds\n",
    611  1.3  christos 			    refnumtoa(&peer->srcadr), (long long)tt));
    612  1.3  christos 		up->bad++;
    613  1.3  christos 		msyslog (LOG_ERR, "SHM: stale/bad receive time, delay=%llds",
    614  1.3  christos 			 (long long)tt);
    615  1.3  christos 		return;
    616  1.1    kardel 	}
    617  1.3  christos 
    618  1.3  christos 	/* check 2: delta check */
    619  1.6  christos 	tt = shm_stat.tvr.tv_sec - shm_stat.tvt.tv_sec - (shm_stat.tvr.tv_nsec < shm_stat.tvt.tv_nsec);
    620  1.3  christos 	if (tt < 0)
    621  1.3  christos 		tt = -tt;
    622  1.3  christos 	if (up->max_delta > 0 && tt > up->max_delta) {
    623  1.3  christos 		DPRINTF(1, ("%s: SHM diff limit exceeded, delta=%llds\n",
    624  1.3  christos 			    refnumtoa(&peer->srcadr), (long long)tt));
    625  1.1    kardel 		up->bad++;
    626  1.3  christos 		msyslog (LOG_ERR, "SHM: difference limit exceeded, delta=%llds\n",
    627  1.3  christos 			 (long long)tt);
    628  1.3  christos 		return;
    629  1.1    kardel 	}
    630  1.3  christos 
    631  1.3  christos 	/* if we really made it to this point... we're winners! */
    632  1.3  christos 	DPRINTF(2, ("%s: SHM feeding data\n",
    633  1.3  christos 		    refnumtoa(&peer->srcadr)));
    634  1.6  christos 	tsrcv = tspec_stamp_to_lfp(shm_stat.tvr);
    635  1.6  christos 	tsref = tspec_stamp_to_lfp(shm_stat.tvt);
    636  1.6  christos 	pp->leap = shm_stat.leap;
    637  1.6  christos 	peer->precision = shm_stat.precision;
    638  1.3  christos 	refclock_process_offset(pp, tsref, tsrcv, pp->fudgetime1);
    639  1.1    kardel 	up->good++;
    640  1.1    kardel }
    641  1.1    kardel 
    642  1.1    kardel /*
    643  1.1    kardel  * shm_clockstats - dump and reset counters
    644  1.1    kardel  */
    645  1.3  christos static void shm_clockstats(
    646  1.1    kardel 	int unit,
    647  1.1    kardel 	struct peer *peer
    648  1.1    kardel 	)
    649  1.1    kardel {
    650  1.4  christos 	struct refclockproc * const pp = peer->procptr;
    651  1.4  christos 	struct shmunit *      const up = pp->unitptr;
    652  1.1    kardel 
    653  1.4  christos 	UNUSED_ARG(unit);
    654  1.3  christos 	if (pp->sloppyclockflag & CLK_FLAG4) {
    655  1.4  christos 		mprintf_clock_stats(
    656  1.4  christos 			&peer->srcadr, "%3d %3d %3d %3d %3d",
    657  1.4  christos 			up->ticks, up->good, up->notready,
    658  1.4  christos 			up->bad, up->clash);
    659  1.3  christos 	}
    660  1.2  christos 	up->ticks = up->good = up->notready = up->bad = up->clash = 0;
    661  1.1    kardel }
    662  1.1    kardel 
    663  1.1    kardel #else
    664  1.2  christos NONEMPTY_TRANSLATION_UNIT
    665  1.1    kardel #endif /* REFCLOCK */
    666