1 /*-
2  ***********************************************************************
3  *								       *
4  * Copyright (c) David L. Mills 1993-2001			       *
5  *								       *
6  * Permission to use, copy, modify, and distribute this software and   *
7  * its documentation for any purpose and without fee is hereby	       *
8  * granted, provided that the above copyright notice appears in all    *
9  * copies and that both the copyright notice and this permission       *
10  * notice appear in supporting documentation, and that the name	       *
11  * University of Delaware not be used in advertising or publicity      *
12  * pertaining to distribution of the software without specific,	       *
13  * written prior permission. The University of Delaware makes no       *
14  * representations about the suitability this software for any	       *
15  * purpose. It is provided "as is" without express or implied	       *
16  * warranty.							       *
17  *								       *
18  **********************************************************************/
19 
20 /*
21  * Adapted from the original sources for FreeBSD and timecounters by:
22  * Poul-Henning Kamp <phk@FreeBSD.org>.
23  *
24  * The 32bit version of the "LP" macros seems a bit past its "sell by"
25  * date so I have retained only the 64bit version and included it directly
26  * in this file.
27  *
28  * Only minor changes done to interface with the timecounters over in
29  * sys/kern/kern_clock.c.   Some of the comments below may be (even more)
30  * confusing and/or plain wrong in that context.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD: stable/12/sys/kern/kern_ntptime.c 373112 2023-06-23 04:36:41Z cy $");
35 
36 #include "opt_ntp.h"
37 
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/sysproto.h>
41 #include <sys/eventhandler.h>
42 #include <sys/kernel.h>
43 #include <sys/priv.h>
44 #include <sys/proc.h>
45 #include <sys/lock.h>
46 #include <sys/mutex.h>
47 #include <sys/time.h>
48 #include <sys/timex.h>
49 #include <sys/timetc.h>
50 #include <sys/timepps.h>
51 #include <sys/syscallsubr.h>
52 #include <sys/sysctl.h>
53 
54 #ifdef PPS_SYNC
55 FEATURE(pps_sync, "Support usage of external PPS signal by kernel PLL");
56 #endif
57 
58 /*
59  * Single-precision macros for 64-bit machines
60  */
61 typedef int64_t l_fp;
62 #define L_ADD(v, u)	((v) += (u))
63 #define L_SUB(v, u)	((v) -= (u))
64 #define L_ADDHI(v, a)	((v) += (int64_t)(a) << 32)
65 #define L_NEG(v)	((v) = -(v))
66 #define L_RSHIFT(v, n) \
67 	do { \
68 		if ((v) < 0) \
69 			(v) = -(-(v) >> (n)); \
70 		else \
71 			(v) = (v) >> (n); \
72 	} while (0)
73 #define L_MPY(v, a)	((v) *= (a))
74 #define L_CLR(v)	((v) = 0)
75 #define L_ISNEG(v)	((v) < 0)
76 #define L_LINT(v, a) \
77 	do { \
78 		if ((a) < 0) \
79 			((v) = -((int64_t)(-(a)) << 32)); \
80 		else \
81 			((v) = (int64_t)(a) << 32); \
82 	} while (0)
83 #define L_GINT(v)	((v) < 0 ? -(-(v) >> 32) : (v) >> 32)
84 
85 /*
86  * Generic NTP kernel interface
87  *
88  * These routines constitute the Network Time Protocol (NTP) interfaces
89  * for user and daemon application programs. The ntp_gettime() routine
90  * provides the time, maximum error (synch distance) and estimated error
91  * (dispersion) to client user application programs. The ntp_adjtime()
92  * routine is used by the NTP daemon to adjust the system clock to an
93  * externally derived time. The time offset and related variables set by
94  * this routine are used by other routines in this module to adjust the
95  * phase and frequency of the clock discipline loop which controls the
96  * system clock.
97  *
98  * When the kernel time is reckoned directly in nanoseconds (NTP_NANO
99  * defined), the time at each tick interrupt is derived directly from
100  * the kernel time variable. When the kernel time is reckoned in
101  * microseconds, (NTP_NANO undefined), the time is derived from the
102  * kernel time variable together with a variable representing the
103  * leftover nanoseconds at the last tick interrupt. In either case, the
104  * current nanosecond time is reckoned from these values plus an
105  * interpolated value derived by the clock routines in another
106  * architecture-specific module. The interpolation can use either a
107  * dedicated counter or a processor cycle counter (PCC) implemented in
108  * some architectures.
109  *
110  * Note that all routines must run at priority splclock or higher.
111  */
112 /*
113  * Phase/frequency-lock loop (PLL/FLL) definitions
114  *
115  * The nanosecond clock discipline uses two variable types, time
116  * variables and frequency variables. Both types are represented as 64-
117  * bit fixed-point quantities with the decimal point between two 32-bit
118  * halves. On a 32-bit machine, each half is represented as a single
119  * word and mathematical operations are done using multiple-precision
120  * arithmetic. On a 64-bit machine, ordinary computer arithmetic is
121  * used.
122  *
123  * A time variable is a signed 64-bit fixed-point number in ns and
124  * fraction. It represents the remaining time offset to be amortized
125  * over succeeding tick interrupts. The maximum time offset is about
126  * 0.5 s and the resolution is about 2.3e-10 ns.
127  *
128  *			1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
129  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
130  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
131  * |s s s|			 ns				   |
132  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
133  * |			    fraction				   |
134  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
135  *
136  * A frequency variable is a signed 64-bit fixed-point number in ns/s
137  * and fraction. It represents the ns and fraction to be added to the
138  * kernel time variable at each second. The maximum frequency offset is
139  * about +-500000 ns/s and the resolution is about 2.3e-10 ns/s.
140  *
141  *			1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
142  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
143  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
144  * |s s s s s s s s s s s s s|	          ns/s			   |
145  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
146  * |			    fraction				   |
147  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
148  */
149 /*
150  * The following variables establish the state of the PLL/FLL and the
151  * residual time and frequency offset of the local clock.
152  */
153 #define SHIFT_PLL	4		/* PLL loop gain (shift) */
154 #define SHIFT_FLL	2		/* FLL loop gain (shift) */
155 
156 static int time_state = TIME_OK;	/* clock state */
157 int time_status = STA_UNSYNC;	/* clock status bits */
158 static long time_tai;			/* TAI offset (s) */
159 static long time_monitor;		/* last time offset scaled (ns) */
160 static long time_constant;		/* poll interval (shift) (s) */
161 static long time_precision = 1;		/* clock precision (ns) */
162 static long time_maxerror = MAXPHASE / 1000; /* maximum error (us) */
163 long time_esterror = MAXPHASE / 1000; /* estimated error (us) */
164 static long time_reftime;		/* uptime at last adjustment (s) */
165 static l_fp time_offset;		/* time offset (ns) */
166 static l_fp time_freq;			/* frequency offset (ns/s) */
167 static l_fp time_adj;			/* tick adjust (ns/s) */
168 
169 static int64_t time_adjtime;		/* correction from adjtime(2) (usec) */
170 
171 static struct mtx ntp_lock;
172 MTX_SYSINIT(ntp, &ntp_lock, "ntp", MTX_SPIN);
173 
174 #define	NTP_LOCK()		mtx_lock_spin(&ntp_lock)
175 #define	NTP_UNLOCK()		mtx_unlock_spin(&ntp_lock)
176 #define	NTP_ASSERT_LOCKED()	mtx_assert(&ntp_lock, MA_OWNED)
177 
178 #ifdef PPS_SYNC
179 /*
180  * The following variables are used when a pulse-per-second (PPS) signal
181  * is available and connected via a modem control lead. They establish
182  * the engineering parameters of the clock discipline loop when
183  * controlled by the PPS signal.
184  */
185 #define PPS_FAVG	2		/* min freq avg interval (s) (shift) */
186 #define PPS_FAVGDEF	8		/* default freq avg int (s) (shift) */
187 #define PPS_FAVGMAX	15		/* max freq avg interval (s) (shift) */
188 #define PPS_PAVG	4		/* phase avg interval (s) (shift) */
189 #define PPS_VALID	120		/* PPS signal watchdog max (s) */
190 #define PPS_MAXWANDER	100000		/* max PPS wander (ns/s) */
191 #define PPS_POPCORN	2		/* popcorn spike threshold (shift) */
192 
193 static struct timespec pps_tf[3];	/* phase median filter */
194 static l_fp pps_freq;			/* scaled frequency offset (ns/s) */
195 static long pps_fcount;			/* frequency accumulator */
196 static long pps_jitter;			/* nominal jitter (ns) */
197 static long pps_stabil;			/* nominal stability (scaled ns/s) */
198 static long pps_lastsec;		/* time at last calibration (s) */
199 static int pps_valid;			/* signal watchdog counter */
200 static int pps_shift = PPS_FAVG;	/* interval duration (s) (shift) */
201 static int pps_shiftmax = PPS_FAVGDEF;	/* max interval duration (s) (shift) */
202 static int pps_intcnt;			/* wander counter */
203 
204 /*
205  * PPS signal quality monitors
206  */
207 static long pps_calcnt;			/* calibration intervals */
208 static long pps_jitcnt;			/* jitter limit exceeded */
209 static long pps_stbcnt;			/* stability limit exceeded */
210 static long pps_errcnt;			/* calibration errors */
211 #endif /* PPS_SYNC */
212 /*
213  * End of phase/frequency-lock loop (PLL/FLL) definitions
214  */
215 
216 static void ntp_init(void);
217 static void hardupdate(long offset);
218 static void ntp_gettime1(struct ntptimeval *ntvp);
219 static bool ntp_is_time_error(int tsl);
220 
221 static bool
ntp_is_time_error(int tsl)222 ntp_is_time_error(int tsl)
223 {
224 
225 	/*
226 	 * Status word error decode. If any of these conditions occur,
227 	 * an error is returned, instead of the status word. Most
228 	 * applications will care only about the fact the system clock
229 	 * may not be trusted, not about the details.
230 	 *
231 	 * Hardware or software error
232 	 */
233 	if ((tsl & (STA_UNSYNC | STA_CLOCKERR)) ||
234 
235 	/*
236 	 * PPS signal lost when either time or frequency synchronization
237 	 * requested
238 	 */
239 	    (tsl & (STA_PPSFREQ | STA_PPSTIME) &&
240 	    !(tsl & STA_PPSSIGNAL)) ||
241 
242 	/*
243 	 * PPS jitter exceeded when time synchronization requested
244 	 */
245 	    (tsl & STA_PPSTIME && tsl & STA_PPSJITTER) ||
246 
247 	/*
248 	 * PPS wander exceeded or calibration error when frequency
249 	 * synchronization requested
250 	 */
251 	    (tsl & STA_PPSFREQ &&
252 	    tsl & (STA_PPSWANDER | STA_PPSERROR)))
253 		return (true);
254 
255 	return (false);
256 }
257 
258 static void
ntp_gettime1(struct ntptimeval * ntvp)259 ntp_gettime1(struct ntptimeval *ntvp)
260 {
261 	struct timespec atv;	/* nanosecond time */
262 
263 	NTP_ASSERT_LOCKED();
264 
265 	nanotime(&atv);
266 	ntvp->time.tv_sec = atv.tv_sec;
267 	ntvp->time.tv_nsec = atv.tv_nsec;
268 	ntvp->maxerror = time_maxerror;
269 	ntvp->esterror = time_esterror;
270 	ntvp->tai = time_tai;
271 	ntvp->time_state = time_state;
272 
273 	if (ntp_is_time_error(time_status))
274 		ntvp->time_state = TIME_ERROR;
275 }
276 
277 /*
278  * ntp_gettime() - NTP user application interface
279  *
280  * See the timex.h header file for synopsis and API description.  Note that
281  * the TAI offset is returned in the ntvtimeval.tai structure member.
282  */
283 #ifndef _SYS_SYSPROTO_H_
284 struct ntp_gettime_args {
285 	struct ntptimeval *ntvp;
286 };
287 #endif
288 /* ARGSUSED */
289 int
sys_ntp_gettime(struct thread * td,struct ntp_gettime_args * uap)290 sys_ntp_gettime(struct thread *td, struct ntp_gettime_args *uap)
291 {
292 	struct ntptimeval ntv;
293 
294 	memset(&ntv, 0, sizeof(ntv));
295 
296 	NTP_LOCK();
297 	ntp_gettime1(&ntv);
298 	NTP_UNLOCK();
299 
300 	td->td_retval[0] = ntv.time_state;
301 	return (copyout(&ntv, uap->ntvp, sizeof(ntv)));
302 }
303 
304 static int
ntp_sysctl(SYSCTL_HANDLER_ARGS)305 ntp_sysctl(SYSCTL_HANDLER_ARGS)
306 {
307 	struct ntptimeval ntv;	/* temporary structure */
308 
309 	memset(&ntv, 0, sizeof(ntv));
310 
311 	NTP_LOCK();
312 	ntp_gettime1(&ntv);
313 	NTP_UNLOCK();
314 
315 	return (sysctl_handle_opaque(oidp, &ntv, sizeof(ntv), req));
316 }
317 
318 SYSCTL_NODE(_kern, OID_AUTO, ntp_pll, CTLFLAG_RW, 0, "");
319 SYSCTL_PROC(_kern_ntp_pll, OID_AUTO, gettime, CTLTYPE_OPAQUE | CTLFLAG_RD |
320     CTLFLAG_MPSAFE, 0, sizeof(struct ntptimeval) , ntp_sysctl, "S,ntptimeval",
321     "");
322 
323 #ifdef PPS_SYNC
324 SYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shiftmax, CTLFLAG_RW,
325     &pps_shiftmax, 0, "Max interval duration (sec) (shift)");
326 SYSCTL_INT(_kern_ntp_pll, OID_AUTO, pps_shift, CTLFLAG_RW,
327     &pps_shift, 0, "Interval duration (sec) (shift)");
328 SYSCTL_LONG(_kern_ntp_pll, OID_AUTO, time_monitor, CTLFLAG_RD,
329     &time_monitor, 0, "Last time offset scaled (ns)");
330 
331 SYSCTL_S64(_kern_ntp_pll, OID_AUTO, pps_freq, CTLFLAG_RD | CTLFLAG_MPSAFE,
332     &pps_freq, 0,
333     "Scaled frequency offset (ns/sec)");
334 SYSCTL_S64(_kern_ntp_pll, OID_AUTO, time_freq, CTLFLAG_RD | CTLFLAG_MPSAFE,
335     &time_freq, 0,
336     "Frequency offset (ns/sec)");
337 #endif
338 
339 /*
340  * ntp_adjtime() - NTP daemon application interface
341  *
342  * See the timex.h header file for synopsis and API description.  Note that
343  * the timex.constant structure member has a dual purpose to set the time
344  * constant and to set the TAI offset.
345  */
346 int
kern_ntp_adjtime(struct thread * td,struct timex * ntv,int * retvalp)347 kern_ntp_adjtime(struct thread *td, struct timex *ntv, int *retvalp)
348 {
349 	long freq;		/* frequency ns/s) */
350 	int modes;		/* mode bits from structure */
351 	int error, retval;
352 
353 	/*
354 	 * Update selected clock variables - only the superuser can
355 	 * change anything. Note that there is no error checking here on
356 	 * the assumption the superuser should know what it is doing.
357 	 * Note that either the time constant or TAI offset are loaded
358 	 * from the ntv.constant member, depending on the mode bits. If
359 	 * the STA_PLL bit in the status word is cleared, the state and
360 	 * status words are reset to the initial values at boot.
361 	 */
362 	modes = ntv->modes;
363 	error = 0;
364 	if (modes)
365 		error = priv_check(td, PRIV_NTP_ADJTIME);
366 	if (error != 0)
367 		return (error);
368 	NTP_LOCK();
369 	if (modes & MOD_MAXERROR)
370 		time_maxerror = ntv->maxerror;
371 	if (modes & MOD_ESTERROR)
372 		time_esterror = ntv->esterror;
373 	if (modes & MOD_STATUS) {
374 		if (time_status & STA_PLL && !(ntv->status & STA_PLL)) {
375 			time_state = TIME_OK;
376 			time_status = STA_UNSYNC;
377 #ifdef PPS_SYNC
378 			pps_shift = PPS_FAVG;
379 #endif /* PPS_SYNC */
380 		}
381 		time_status &= STA_RONLY;
382 		time_status |= ntv->status & ~STA_RONLY;
383 	}
384 	if (modes & MOD_TIMECONST) {
385 		if (ntv->constant < 0)
386 			time_constant = 0;
387 		else if (ntv->constant > MAXTC)
388 			time_constant = MAXTC;
389 		else
390 			time_constant = ntv->constant;
391 	}
392 	if (modes & MOD_TAI) {
393 		if (ntv->constant > 0) /* XXX zero & negative numbers ? */
394 			time_tai = ntv->constant;
395 	}
396 #ifdef PPS_SYNC
397 	if (modes & MOD_PPSMAX) {
398 		if (ntv->shift < PPS_FAVG)
399 			pps_shiftmax = PPS_FAVG;
400 		else if (ntv->shift > PPS_FAVGMAX)
401 			pps_shiftmax = PPS_FAVGMAX;
402 		else
403 			pps_shiftmax = ntv->shift;
404 	}
405 #endif /* PPS_SYNC */
406 	if (modes & MOD_NANO)
407 		time_status |= STA_NANO;
408 	if (modes & MOD_MICRO)
409 		time_status &= ~STA_NANO;
410 	if (modes & MOD_CLKB)
411 		time_status |= STA_CLK;
412 	if (modes & MOD_CLKA)
413 		time_status &= ~STA_CLK;
414 	if (modes & MOD_FREQUENCY) {
415 		freq = (ntv->freq * 1000LL) >> 16;
416 		if (freq > MAXFREQ)
417 			L_LINT(time_freq, MAXFREQ);
418 		else if (freq < -MAXFREQ)
419 			L_LINT(time_freq, -MAXFREQ);
420 		else {
421 			/*
422 			 * ntv->freq is [PPM * 2^16] = [us/s * 2^16]
423 			 * time_freq is [ns/s * 2^32]
424 			 */
425 			time_freq = ntv->freq * 1000LL * 65536LL;
426 		}
427 #ifdef PPS_SYNC
428 		pps_freq = time_freq;
429 #endif /* PPS_SYNC */
430 	}
431 	if (modes & MOD_OFFSET) {
432 		if (time_status & STA_NANO)
433 			hardupdate(ntv->offset);
434 		else
435 			hardupdate(ntv->offset * 1000);
436 	}
437 
438 	/*
439 	 * Retrieve all clock variables. Note that the TAI offset is
440 	 * returned only by ntp_gettime();
441 	 */
442 	if (time_status & STA_NANO)
443 		ntv->offset = L_GINT(time_offset);
444 	else
445 		ntv->offset = L_GINT(time_offset) / 1000; /* XXX rounding ? */
446 	ntv->freq = L_GINT((time_freq / 1000LL) << 16);
447 	ntv->maxerror = time_maxerror;
448 	ntv->esterror = time_esterror;
449 	ntv->status = time_status;
450 	ntv->constant = time_constant;
451 	if (time_status & STA_NANO)
452 		ntv->precision = time_precision;
453 	else
454 		ntv->precision = time_precision / 1000;
455 	ntv->tolerance = MAXFREQ * SCALE_PPM;
456 #ifdef PPS_SYNC
457 	ntv->shift = pps_shift;
458 	ntv->ppsfreq = L_GINT((pps_freq / 1000LL) << 16);
459 	if (time_status & STA_NANO)
460 		ntv->jitter = pps_jitter;
461 	else
462 		ntv->jitter = pps_jitter / 1000;
463 	ntv->stabil = pps_stabil;
464 	ntv->calcnt = pps_calcnt;
465 	ntv->errcnt = pps_errcnt;
466 	ntv->jitcnt = pps_jitcnt;
467 	ntv->stbcnt = pps_stbcnt;
468 #endif /* PPS_SYNC */
469 	retval = ntp_is_time_error(time_status) ? TIME_ERROR : time_state;
470 	NTP_UNLOCK();
471 
472 	*retvalp = retval;
473 	return (0);
474 }
475 
476 #ifndef _SYS_SYSPROTO_H_
477 struct ntp_adjtime_args {
478 	struct timex *tp;
479 };
480 #endif
481 
482 int
sys_ntp_adjtime(struct thread * td,struct ntp_adjtime_args * uap)483 sys_ntp_adjtime(struct thread *td, struct ntp_adjtime_args *uap)
484 {
485 	struct timex ntv;
486 	int error, retval;
487 
488 	error = copyin(uap->tp, &ntv, sizeof(ntv));
489 	if (error == 0) {
490 		error = kern_ntp_adjtime(td, &ntv, &retval);
491 		if (error == 0) {
492 			error = copyout(&ntv, uap->tp, sizeof(ntv));
493 			if (error == 0)
494 				td->td_retval[0] = retval;
495 		}
496 	}
497 	return (error);
498 }
499 
500 /*
501  * second_overflow() - called after ntp_tick_adjust()
502  *
503  * This routine is ordinarily called immediately following the above
504  * routine ntp_tick_adjust(). While these two routines are normally
505  * combined, they are separated here only for the purposes of
506  * simulation.
507  */
508 void
ntp_update_second(int64_t * adjustment,time_t * newsec)509 ntp_update_second(int64_t *adjustment, time_t *newsec)
510 {
511 	int tickrate;
512 	l_fp ftemp;		/* 32/64-bit temporary */
513 
514 	NTP_LOCK();
515 
516 	/*
517 	 * On rollover of the second both the nanosecond and microsecond
518 	 * clocks are updated and the state machine cranked as
519 	 * necessary. The phase adjustment to be used for the next
520 	 * second is calculated and the maximum error is increased by
521 	 * the tolerance.
522 	 */
523 	time_maxerror += MAXFREQ / 1000;
524 
525 	/*
526 	 * Leap second processing. If in leap-insert state at
527 	 * the end of the day, the system clock is set back one
528 	 * second; if in leap-delete state, the system clock is
529 	 * set ahead one second. The nano_time() routine or
530 	 * external clock driver will insure that reported time
531 	 * is always monotonic.
532 	 */
533 	switch (time_state) {
534 
535 		/*
536 		 * No warning.
537 		 */
538 		case TIME_OK:
539 		if (time_status & STA_INS)
540 			time_state = TIME_INS;
541 		else if (time_status & STA_DEL)
542 			time_state = TIME_DEL;
543 		break;
544 
545 		/*
546 		 * Insert second 23:59:60 following second
547 		 * 23:59:59.
548 		 */
549 		case TIME_INS:
550 		if (!(time_status & STA_INS))
551 			time_state = TIME_OK;
552 		else if ((*newsec) % 86400 == 0) {
553 			(*newsec)--;
554 			time_state = TIME_OOP;
555 			time_tai++;
556 		}
557 		break;
558 
559 		/*
560 		 * Delete second 23:59:59.
561 		 */
562 		case TIME_DEL:
563 		if (!(time_status & STA_DEL))
564 			time_state = TIME_OK;
565 		else if (((*newsec) + 1) % 86400 == 0) {
566 			(*newsec)++;
567 			time_tai--;
568 			time_state = TIME_WAIT;
569 		}
570 		break;
571 
572 		/*
573 		 * Insert second in progress.
574 		 */
575 		case TIME_OOP:
576 			time_state = TIME_WAIT;
577 		break;
578 
579 		/*
580 		 * Wait for status bits to clear.
581 		 */
582 		case TIME_WAIT:
583 		if (!(time_status & (STA_INS | STA_DEL)))
584 			time_state = TIME_OK;
585 	}
586 
587 	/*
588 	 * Compute the total time adjustment for the next second
589 	 * in ns. The offset is reduced by a factor depending on
590 	 * whether the PPS signal is operating. Note that the
591 	 * value is in effect scaled by the clock frequency,
592 	 * since the adjustment is added at each tick interrupt.
593 	 */
594 	ftemp = time_offset;
595 #ifdef PPS_SYNC
596 	/* XXX even if PPS signal dies we should finish adjustment ? */
597 	if (time_status & STA_PPSTIME && time_status &
598 	    STA_PPSSIGNAL)
599 		L_RSHIFT(ftemp, pps_shift);
600 	else
601 		L_RSHIFT(ftemp, SHIFT_PLL + time_constant);
602 #else
603 		L_RSHIFT(ftemp, SHIFT_PLL + time_constant);
604 #endif /* PPS_SYNC */
605 	time_adj = ftemp;
606 	L_SUB(time_offset, ftemp);
607 	L_ADD(time_adj, time_freq);
608 
609 	/*
610 	 * Apply any correction from adjtime(2).  If more than one second
611 	 * off we slew at a rate of 5ms/s (5000 PPM) else 500us/s (500 PPM)
612 	 * until the last second is slewed the final < 500 usecs.
613 	 */
614 	if (time_adjtime != 0) {
615 		if (time_adjtime > 1000000)
616 			tickrate = 5000;
617 		else if (time_adjtime < -1000000)
618 			tickrate = -5000;
619 		else if (time_adjtime > 500)
620 			tickrate = 500;
621 		else if (time_adjtime < -500)
622 			tickrate = -500;
623 		else
624 			tickrate = time_adjtime;
625 		time_adjtime -= tickrate;
626 		L_LINT(ftemp, tickrate * 1000);
627 		L_ADD(time_adj, ftemp);
628 	}
629 	*adjustment = time_adj;
630 
631 #ifdef PPS_SYNC
632 	if (pps_valid > 0)
633 		pps_valid--;
634 	else
635 		time_status &= ~STA_PPSSIGNAL;
636 #endif /* PPS_SYNC */
637 
638 	NTP_UNLOCK();
639 }
640 
641 /*
642  * ntp_init() - initialize variables and structures
643  *
644  * This routine must be called after the kernel variables hz and tick
645  * are set or changed and before the next tick interrupt. In this
646  * particular implementation, these values are assumed set elsewhere in
647  * the kernel. The design allows the clock frequency and tick interval
648  * to be changed while the system is running. So, this routine should
649  * probably be integrated with the code that does that.
650  */
651 static void
ntp_init(void)652 ntp_init(void)
653 {
654 
655 	/*
656 	 * The following variables are initialized only at startup. Only
657 	 * those structures not cleared by the compiler need to be
658 	 * initialized, and these only in the simulator. In the actual
659 	 * kernel, any nonzero values here will quickly evaporate.
660 	 */
661 	L_CLR(time_offset);
662 	L_CLR(time_freq);
663 #ifdef PPS_SYNC
664 	pps_tf[0].tv_sec = pps_tf[0].tv_nsec = 0;
665 	pps_tf[1].tv_sec = pps_tf[1].tv_nsec = 0;
666 	pps_tf[2].tv_sec = pps_tf[2].tv_nsec = 0;
667 	pps_fcount = 0;
668 	L_CLR(pps_freq);
669 #endif /* PPS_SYNC */
670 }
671 
672 SYSINIT(ntpclocks, SI_SUB_CLOCKS, SI_ORDER_MIDDLE, ntp_init, NULL);
673 
674 /*
675  * hardupdate() - local clock update
676  *
677  * This routine is called by ntp_adjtime() to update the local clock
678  * phase and frequency. The implementation is of an adaptive-parameter,
679  * hybrid phase/frequency-lock loop (PLL/FLL). The routine computes new
680  * time and frequency offset estimates for each call. If the kernel PPS
681  * discipline code is configured (PPS_SYNC), the PPS signal itself
682  * determines the new time offset, instead of the calling argument.
683  * Presumably, calls to ntp_adjtime() occur only when the caller
684  * believes the local clock is valid within some bound (+-128 ms with
685  * NTP). If the caller's time is far different than the PPS time, an
686  * argument will ensue, and it's not clear who will lose.
687  *
688  * For uncompensated quartz crystal oscillators and nominal update
689  * intervals less than 256 s, operation should be in phase-lock mode,
690  * where the loop is disciplined to phase. For update intervals greater
691  * than 1024 s, operation should be in frequency-lock mode, where the
692  * loop is disciplined to frequency. Between 256 s and 1024 s, the mode
693  * is selected by the STA_MODE status bit.
694  */
695 static void
hardupdate(offset)696 hardupdate(offset)
697 	long offset;		/* clock offset (ns) */
698 {
699 	long mtemp;
700 	l_fp ftemp;
701 
702 	NTP_ASSERT_LOCKED();
703 
704 	/*
705 	 * Select how the phase is to be controlled and from which
706 	 * source. If the PPS signal is present and enabled to
707 	 * discipline the time, the PPS offset is used; otherwise, the
708 	 * argument offset is used.
709 	 */
710 	if (!(time_status & STA_PLL))
711 		return;
712 	if (!(time_status & STA_PPSTIME && time_status &
713 	    STA_PPSSIGNAL)) {
714 		if (offset > MAXPHASE)
715 			time_monitor = MAXPHASE;
716 		else if (offset < -MAXPHASE)
717 			time_monitor = -MAXPHASE;
718 		else
719 			time_monitor = offset;
720 		L_LINT(time_offset, time_monitor);
721 	}
722 
723 	/*
724 	 * Select how the frequency is to be controlled and in which
725 	 * mode (PLL or FLL). If the PPS signal is present and enabled
726 	 * to discipline the frequency, the PPS frequency is used;
727 	 * otherwise, the argument offset is used to compute it.
728 	 */
729 	if (time_status & STA_PPSFREQ && time_status & STA_PPSSIGNAL) {
730 		time_reftime = time_uptime;
731 		return;
732 	}
733 	if (time_status & STA_FREQHOLD || time_reftime == 0)
734 		time_reftime = time_uptime;
735 	mtemp = time_uptime - time_reftime;
736 	L_LINT(ftemp, time_monitor);
737 	L_RSHIFT(ftemp, (SHIFT_PLL + 2 + time_constant) << 1);
738 	L_MPY(ftemp, mtemp);
739 	L_ADD(time_freq, ftemp);
740 	time_status &= ~STA_MODE;
741 	if (mtemp >= MINSEC && (time_status & STA_FLL || mtemp >
742 	    MAXSEC)) {
743 		L_LINT(ftemp, (time_monitor << 4) / mtemp);
744 		L_RSHIFT(ftemp, SHIFT_FLL + 4);
745 		L_ADD(time_freq, ftemp);
746 		time_status |= STA_MODE;
747 	}
748 	time_reftime = time_uptime;
749 	if (L_GINT(time_freq) > MAXFREQ)
750 		L_LINT(time_freq, MAXFREQ);
751 	else if (L_GINT(time_freq) < -MAXFREQ)
752 		L_LINT(time_freq, -MAXFREQ);
753 }
754 
755 #ifdef PPS_SYNC
756 /*
757  * hardpps() - discipline CPU clock oscillator to external PPS signal
758  *
759  * This routine is called at each PPS interrupt in order to discipline
760  * the CPU clock oscillator to the PPS signal. There are two independent
761  * first-order feedback loops, one for the phase, the other for the
762  * frequency. The phase loop measures and grooms the PPS phase offset
763  * and leaves it in a handy spot for the seconds overflow routine. The
764  * frequency loop averages successive PPS phase differences and
765  * calculates the PPS frequency offset, which is also processed by the
766  * seconds overflow routine. The code requires the caller to capture the
767  * time and architecture-dependent hardware counter values in
768  * nanoseconds at the on-time PPS signal transition.
769  *
770  * Note that, on some Unix systems this routine runs at an interrupt
771  * priority level higher than the timer interrupt routine hardclock().
772  * Therefore, the variables used are distinct from the hardclock()
773  * variables, except for the actual time and frequency variables, which
774  * are determined by this routine and updated atomically.
775  *
776  * tsp  - time at PPS
777  * nsec - hardware counter at PPS
778  */
779 void
hardpps(struct timespec * tsp,long nsec)780 hardpps(struct timespec *tsp, long nsec)
781 {
782 	long u_sec, u_nsec, v_nsec; /* temps */
783 	l_fp ftemp;
784 
785 	NTP_LOCK();
786 
787 	/*
788 	 * The signal is first processed by a range gate and frequency
789 	 * discriminator. The range gate rejects noise spikes outside
790 	 * the range +-500 us. The frequency discriminator rejects input
791 	 * signals with apparent frequency outside the range 1 +-500
792 	 * PPM. If two hits occur in the same second, we ignore the
793 	 * later hit; if not and a hit occurs outside the range gate,
794 	 * keep the later hit for later comparison, but do not process
795 	 * it.
796 	 */
797 	time_status |= STA_PPSSIGNAL | STA_PPSJITTER;
798 	time_status &= ~(STA_PPSWANDER | STA_PPSERROR);
799 	pps_valid = PPS_VALID;
800 	u_sec = tsp->tv_sec;
801 	u_nsec = tsp->tv_nsec;
802 	if (u_nsec >= (NANOSECOND >> 1)) {
803 		u_nsec -= NANOSECOND;
804 		u_sec++;
805 	}
806 	v_nsec = u_nsec - pps_tf[0].tv_nsec;
807 	if (u_sec == pps_tf[0].tv_sec && v_nsec < NANOSECOND - MAXFREQ)
808 		goto out;
809 	pps_tf[2] = pps_tf[1];
810 	pps_tf[1] = pps_tf[0];
811 	pps_tf[0].tv_sec = u_sec;
812 	pps_tf[0].tv_nsec = u_nsec;
813 
814 	/*
815 	 * Compute the difference between the current and previous
816 	 * counter values. If the difference exceeds 0.5 s, assume it
817 	 * has wrapped around, so correct 1.0 s. If the result exceeds
818 	 * the tick interval, the sample point has crossed a tick
819 	 * boundary during the last second, so correct the tick. Very
820 	 * intricate.
821 	 */
822 	u_nsec = nsec;
823 	if (u_nsec > (NANOSECOND >> 1))
824 		u_nsec -= NANOSECOND;
825 	else if (u_nsec < -(NANOSECOND >> 1))
826 		u_nsec += NANOSECOND;
827 	pps_fcount += u_nsec;
828 	if (v_nsec > MAXFREQ || v_nsec < -MAXFREQ)
829 		goto out;
830 	time_status &= ~STA_PPSJITTER;
831 
832 	/*
833 	 * A three-stage median filter is used to help denoise the PPS
834 	 * time. The median sample becomes the time offset estimate; the
835 	 * difference between the other two samples becomes the time
836 	 * dispersion (jitter) estimate.
837 	 */
838 	if (pps_tf[0].tv_nsec > pps_tf[1].tv_nsec) {
839 		if (pps_tf[1].tv_nsec > pps_tf[2].tv_nsec) {
840 			v_nsec = pps_tf[1].tv_nsec;	/* 0 1 2 */
841 			u_nsec = pps_tf[0].tv_nsec - pps_tf[2].tv_nsec;
842 		} else if (pps_tf[2].tv_nsec > pps_tf[0].tv_nsec) {
843 			v_nsec = pps_tf[0].tv_nsec;	/* 2 0 1 */
844 			u_nsec = pps_tf[2].tv_nsec - pps_tf[1].tv_nsec;
845 		} else {
846 			v_nsec = pps_tf[2].tv_nsec;	/* 0 2 1 */
847 			u_nsec = pps_tf[0].tv_nsec - pps_tf[1].tv_nsec;
848 		}
849 	} else {
850 		if (pps_tf[1].tv_nsec < pps_tf[2].tv_nsec) {
851 			v_nsec = pps_tf[1].tv_nsec;	/* 2 1 0 */
852 			u_nsec = pps_tf[2].tv_nsec - pps_tf[0].tv_nsec;
853 		} else if (pps_tf[2].tv_nsec < pps_tf[0].tv_nsec) {
854 			v_nsec = pps_tf[0].tv_nsec;	/* 1 0 2 */
855 			u_nsec = pps_tf[1].tv_nsec - pps_tf[2].tv_nsec;
856 		} else {
857 			v_nsec = pps_tf[2].tv_nsec;	/* 1 2 0 */
858 			u_nsec = pps_tf[1].tv_nsec - pps_tf[0].tv_nsec;
859 		}
860 	}
861 
862 	/*
863 	 * Nominal jitter is due to PPS signal noise and interrupt
864 	 * latency. If it exceeds the popcorn threshold, the sample is
865 	 * discarded. otherwise, if so enabled, the time offset is
866 	 * updated. We can tolerate a modest loss of data here without
867 	 * much degrading time accuracy.
868 	 *
869 	 * The measurements being checked here were made with the system
870 	 * timecounter, so the popcorn threshold is not allowed to fall below
871 	 * the number of nanoseconds in two ticks of the timecounter.  For a
872 	 * timecounter running faster than 1 GHz the lower bound is 2ns, just
873 	 * to avoid a nonsensical threshold of zero.
874 	*/
875 	if (u_nsec > lmax(pps_jitter << PPS_POPCORN,
876 	    2 * (NANOSECOND / (long)qmin(NANOSECOND, tc_getfrequency())))) {
877 		time_status |= STA_PPSJITTER;
878 		pps_jitcnt++;
879 	} else if (time_status & STA_PPSTIME) {
880 		time_monitor = -v_nsec;
881 		L_LINT(time_offset, time_monitor);
882 	}
883 	pps_jitter += (u_nsec - pps_jitter) >> PPS_FAVG;
884 	u_sec = pps_tf[0].tv_sec - pps_lastsec;
885 	if (u_sec < (1 << pps_shift))
886 		goto out;
887 
888 	/*
889 	 * At the end of the calibration interval the difference between
890 	 * the first and last counter values becomes the scaled
891 	 * frequency. It will later be divided by the length of the
892 	 * interval to determine the frequency update. If the frequency
893 	 * exceeds a sanity threshold, or if the actual calibration
894 	 * interval is not equal to the expected length, the data are
895 	 * discarded. We can tolerate a modest loss of data here without
896 	 * much degrading frequency accuracy.
897 	 */
898 	pps_calcnt++;
899 	v_nsec = -pps_fcount;
900 	pps_lastsec = pps_tf[0].tv_sec;
901 	pps_fcount = 0;
902 	u_nsec = MAXFREQ << pps_shift;
903 	if (v_nsec > u_nsec || v_nsec < -u_nsec || u_sec != (1 << pps_shift)) {
904 		time_status |= STA_PPSERROR;
905 		pps_errcnt++;
906 		goto out;
907 	}
908 
909 	/*
910 	 * Here the raw frequency offset and wander (stability) is
911 	 * calculated. If the wander is less than the wander threshold
912 	 * for four consecutive averaging intervals, the interval is
913 	 * doubled; if it is greater than the threshold for four
914 	 * consecutive intervals, the interval is halved. The scaled
915 	 * frequency offset is converted to frequency offset. The
916 	 * stability metric is calculated as the average of recent
917 	 * frequency changes, but is used only for performance
918 	 * monitoring.
919 	 */
920 	L_LINT(ftemp, v_nsec);
921 	L_RSHIFT(ftemp, pps_shift);
922 	L_SUB(ftemp, pps_freq);
923 	u_nsec = L_GINT(ftemp);
924 	if (u_nsec > PPS_MAXWANDER) {
925 		L_LINT(ftemp, PPS_MAXWANDER);
926 		pps_intcnt--;
927 		time_status |= STA_PPSWANDER;
928 		pps_stbcnt++;
929 	} else if (u_nsec < -PPS_MAXWANDER) {
930 		L_LINT(ftemp, -PPS_MAXWANDER);
931 		pps_intcnt--;
932 		time_status |= STA_PPSWANDER;
933 		pps_stbcnt++;
934 	} else {
935 		pps_intcnt++;
936 	}
937 	if (pps_intcnt >= 4) {
938 		pps_intcnt = 4;
939 		if (pps_shift < pps_shiftmax) {
940 			pps_shift++;
941 			pps_intcnt = 0;
942 		}
943 	} else if (pps_intcnt <= -4 || pps_shift > pps_shiftmax) {
944 		pps_intcnt = -4;
945 		if (pps_shift > PPS_FAVG) {
946 			pps_shift--;
947 			pps_intcnt = 0;
948 		}
949 	}
950 	if (u_nsec < 0)
951 		u_nsec = -u_nsec;
952 	pps_stabil += (u_nsec * SCALE_PPM - pps_stabil) >> PPS_FAVG;
953 
954 	/*
955 	 * The PPS frequency is recalculated and clamped to the maximum
956 	 * MAXFREQ. If enabled, the system clock frequency is updated as
957 	 * well.
958 	 */
959 	L_ADD(pps_freq, ftemp);
960 	u_nsec = L_GINT(pps_freq);
961 	if (u_nsec > MAXFREQ)
962 		L_LINT(pps_freq, MAXFREQ);
963 	else if (u_nsec < -MAXFREQ)
964 		L_LINT(pps_freq, -MAXFREQ);
965 	if (time_status & STA_PPSFREQ)
966 		time_freq = pps_freq;
967 
968 out:
969 	NTP_UNLOCK();
970 }
971 #endif /* PPS_SYNC */
972 
973 #ifndef _SYS_SYSPROTO_H_
974 struct adjtime_args {
975 	struct timeval *delta;
976 	struct timeval *olddelta;
977 };
978 #endif
979 /* ARGSUSED */
980 int
sys_adjtime(struct thread * td,struct adjtime_args * uap)981 sys_adjtime(struct thread *td, struct adjtime_args *uap)
982 {
983 	struct timeval delta, olddelta, *deltap;
984 	int error;
985 
986 	if (uap->delta) {
987 		error = copyin(uap->delta, &delta, sizeof(delta));
988 		if (error)
989 			return (error);
990 		deltap = &delta;
991 	} else
992 		deltap = NULL;
993 	error = kern_adjtime(td, deltap, &olddelta);
994 	if (uap->olddelta && error == 0)
995 		error = copyout(&olddelta, uap->olddelta, sizeof(olddelta));
996 	return (error);
997 }
998 
999 int
kern_adjtime(struct thread * td,struct timeval * delta,struct timeval * olddelta)1000 kern_adjtime(struct thread *td, struct timeval *delta, struct timeval *olddelta)
1001 {
1002 	struct timeval atv;
1003 	int64_t ltr, ltw;
1004 	int error;
1005 
1006 	if (delta != NULL) {
1007 		error = priv_check(td, PRIV_ADJTIME);
1008 		if (error != 0)
1009 			return (error);
1010 		ltw = (int64_t)delta->tv_sec * 1000000 + delta->tv_usec;
1011 	}
1012 	NTP_LOCK();
1013 	ltr = time_adjtime;
1014 	if (delta != NULL)
1015 		time_adjtime = ltw;
1016 	NTP_UNLOCK();
1017 	if (olddelta != NULL) {
1018 		atv.tv_sec = ltr / 1000000;
1019 		atv.tv_usec = ltr % 1000000;
1020 		if (atv.tv_usec < 0) {
1021 			atv.tv_usec += 1000000;
1022 			atv.tv_sec--;
1023 		}
1024 		*olddelta = atv;
1025 	}
1026 	return (0);
1027 }
1028 
1029 static struct callout resettodr_callout;
1030 static int resettodr_period = 1800;
1031 
1032 static void
periodic_resettodr(void * arg __unused)1033 periodic_resettodr(void *arg __unused)
1034 {
1035 
1036 	/*
1037 	 * Read of time_status is lock-less, which is fine since
1038 	 * ntp_is_time_error() operates on the consistent read value.
1039 	 */
1040 	if (!ntp_is_time_error(time_status))
1041 		resettodr();
1042 	if (resettodr_period > 0)
1043 		callout_schedule(&resettodr_callout, resettodr_period * hz);
1044 }
1045 
1046 static void
shutdown_resettodr(void * arg __unused,int howto __unused)1047 shutdown_resettodr(void *arg __unused, int howto __unused)
1048 {
1049 
1050 	callout_drain(&resettodr_callout);
1051 	/* Another unlocked read of time_status */
1052 	if (resettodr_period > 0 && !ntp_is_time_error(time_status))
1053 		resettodr();
1054 }
1055 
1056 static int
sysctl_resettodr_period(SYSCTL_HANDLER_ARGS)1057 sysctl_resettodr_period(SYSCTL_HANDLER_ARGS)
1058 {
1059 	int error;
1060 
1061 	error = sysctl_handle_int(oidp, oidp->oid_arg1, oidp->oid_arg2, req);
1062 	if (error || !req->newptr)
1063 		return (error);
1064 	if (cold)
1065 		goto done;
1066 	if (resettodr_period == 0)
1067 		callout_stop(&resettodr_callout);
1068 	else
1069 		callout_reset(&resettodr_callout, resettodr_period * hz,
1070 		    periodic_resettodr, NULL);
1071 done:
1072 	return (0);
1073 }
1074 
1075 SYSCTL_PROC(_machdep, OID_AUTO, rtc_save_period, CTLTYPE_INT | CTLFLAG_RWTUN |
1076     CTLFLAG_MPSAFE, &resettodr_period, 1800, sysctl_resettodr_period, "I",
1077     "Save system time to RTC with this period (in seconds)");
1078 
1079 static void
start_periodic_resettodr(void * arg __unused)1080 start_periodic_resettodr(void *arg __unused)
1081 {
1082 
1083 	EVENTHANDLER_REGISTER(shutdown_pre_sync, shutdown_resettodr, NULL,
1084 	    SHUTDOWN_PRI_FIRST);
1085 	callout_init(&resettodr_callout, 1);
1086 	if (resettodr_period == 0)
1087 		return;
1088 	callout_reset(&resettodr_callout, resettodr_period * hz,
1089 	    periodic_resettodr, NULL);
1090 }
1091 
1092 SYSINIT(periodic_resettodr, SI_SUB_LAST, SI_ORDER_MIDDLE,
1093 	start_periodic_resettodr, NULL);
1094