blob: 0f12409f9443b17a4c96bdccbbee7405a0668f44 [file] [log] [blame]
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001/*
2 * NTP client/server, based on OpenNTPD 3.9p1
3 *
Adam Tkac4bf88d92015-01-04 17:46:08 +01004 * Busybox port author: Adam Tkac (C) 2009 <vonsch@gmail.com>
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01005 *
Adam Tkac4bf88d92015-01-04 17:46:08 +01006 * OpenNTPd 3.9p1 copyright holders:
7 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
8 * Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org>
9 *
10 * OpenNTPd code is licensed under ISC-style licence:
11 *
12 * Permission to use, copy, modify, and distribute this software for any
13 * purpose with or without fee is hereby granted, provided that the above
14 * copyright notice and this permission notice appear in all copies.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
17 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
19 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
20 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
21 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
22 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 ***********************************************************************
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010024 *
25 * Parts of OpenNTPD clock syncronization code is replaced by
Adam Tkac4bf88d92015-01-04 17:46:08 +010026 * code which is based on ntp-4.2.6, which carries the following
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010027 * copyright notice:
28 *
Adam Tkac4bf88d92015-01-04 17:46:08 +010029 * Copyright (c) University of Delaware 1992-2009
30 *
31 * Permission to use, copy, modify, and distribute this software and
32 * its documentation for any purpose with or without fee is hereby
33 * granted, provided that the above copyright notice appears in all
34 * copies and that both the copyright notice and this permission
35 * notice appear in supporting documentation, and that the name
36 * University of Delaware not be used in advertising or publicity
37 * pertaining to distribution of the software without specific,
38 * written prior permission. The University of Delaware makes no
39 * representations about the suitability this software for any
40 * purpose. It is provided "as is" without express or implied warranty.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010041 ***********************************************************************
42 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010043//config:config NTPD
Denys Vlasenkob097a842018-12-28 03:20:17 +010044//config: bool "ntpd (22 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010045//config: default y
46//config: select PLATFORM_LINUX
47//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020048//config: The NTP client/server daemon.
Denys Vlasenko47367e12016-11-23 09:05:14 +010049//config:
50//config:config FEATURE_NTPD_SERVER
51//config: bool "Make ntpd usable as a NTP server"
52//config: default y
53//config: depends on NTPD
54//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020055//config: Make ntpd usable as a NTP server. If you disable this option
56//config: ntpd will be usable only as a NTP client.
Denys Vlasenko47367e12016-11-23 09:05:14 +010057//config:
58//config:config FEATURE_NTPD_CONF
59//config: bool "Make ntpd understand /etc/ntp.conf"
60//config: default y
61//config: depends on NTPD
62//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020063//config: Make ntpd look in /etc/ntp.conf for peers. Only "server address"
64//config: is supported.
Denys Vlasenko63d053d2018-10-30 23:07:26 +010065//config:
Brandon P. Enochsa5413142018-10-27 18:55:59 +020066//config:config FEATURE_NTP_AUTH
67//config: bool "Support md5/sha1 message authentication codes"
Denys Vlasenko63d053d2018-10-30 23:07:26 +010068//config: default y
Brandon P. Enochsa5413142018-10-27 18:55:59 +020069//config: depends on NTPD
Denys Vlasenko47367e12016-11-23 09:05:14 +010070
71//applet:IF_NTPD(APPLET(ntpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
72
73//kbuild:lib-$(CONFIG_NTPD) += ntpd.o
Pere Orga5bc8c002011-04-11 03:29:49 +020074
75//usage:#define ntpd_trivial_usage
Brandon P. Enochsa5413142018-10-27 18:55:59 +020076//usage: "[-dnqNw"IF_FEATURE_NTPD_SERVER("l] [-I IFACE")"] [-S PROG]"
77//usage: IF_NOT_FEATURE_NTP_AUTH(" [-p PEER]...")
78//usage: IF_FEATURE_NTP_AUTH(" [-k KEYFILE] [-p [keyno:N:]PEER]...")
Pere Orga5bc8c002011-04-11 03:29:49 +020079//usage:#define ntpd_full_usage "\n\n"
80//usage: "NTP client/server\n"
Denys Vlasenko59a56042017-10-31 12:47:07 +010081//usage: "\n -d Verbose (may be repeated)"
Pere Orga5bc8c002011-04-11 03:29:49 +020082//usage: "\n -n Do not daemonize"
83//usage: "\n -q Quit after clock is set"
84//usage: "\n -N Run at high priority"
85//usage: "\n -w Do not set time (only query peers), implies -n"
Brandon P. Enochsa5413142018-10-27 18:55:59 +020086//usage: "\n -S PROG Run PROG after stepping time, stratum change, and every 11 min"
87//usage: IF_NOT_FEATURE_NTP_AUTH(
Pere Orga5bc8c002011-04-11 03:29:49 +020088//usage: "\n -p PEER Obtain time from PEER (may be repeated)"
Brandon P. Enochsa5413142018-10-27 18:55:59 +020089//usage: )
90//usage: IF_FEATURE_NTP_AUTH(
91//usage: "\n -k FILE Key file (ntp.keys compatible)"
92//usage: "\n -p [keyno:NUM:]PEER"
93//usage: "\n Obtain time from PEER (may be repeated)"
94//usage: "\n Use key NUM for authentication"
95//usage: )
Denys Vlasenko504fe452014-03-23 15:06:38 +010096//usage: IF_FEATURE_NTPD_CONF(
Denys Vlasenko3c31b092015-03-05 14:04:44 +010097//usage: "\n If -p is not given, 'server HOST' lines"
98//usage: "\n from /etc/ntp.conf are used"
Denys Vlasenko504fe452014-03-23 15:06:38 +010099//usage: )
Denys Vlasenko3aef8142015-03-02 20:59:13 +0100100//usage: IF_FEATURE_NTPD_SERVER(
101//usage: "\n -l Also run as server on port 123"
102//usage: "\n -I IFACE Bind server to IFACE, implies -l"
103//usage: )
Denys Vlasenko504fe452014-03-23 15:06:38 +0100104
105// -l and -p options are not compatible with "standard" ntpd:
106// it has them as "-l logfile" and "-p pidfile".
107// -S and -w are not compat either, "standard" ntpd has no such opts.
Pere Orga5bc8c002011-04-11 03:29:49 +0200108
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100109#include "libbb.h"
110#include <math.h>
Codarren Velvindron7c43d432018-04-15 20:37:50 +0400111#include <netinet/ip.h> /* For IPTOS_DSCP_AF21 definition */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100112#include <sys/timex.h>
Codarren Velvindron7c43d432018-04-15 20:37:50 +0400113#ifndef IPTOS_DSCP_AF21
114# define IPTOS_DSCP_AF21 0x48
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100115#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100116
117
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100118/* Verbosity control (max level of -dddd options accepted).
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100119 * max 6 is very talkative (and bloated). 3 is non-bloated,
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100120 * production level setting.
121 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100122#define MAX_VERBOSE 3
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100123
124
Denys Vlasenko65d722b2010-01-11 02:14:04 +0100125/* High-level description of the algorithm:
126 *
127 * We start running with very small poll_exp, BURSTPOLL,
Leonid Lisovskiy894ef602010-10-20 22:36:51 +0200128 * in order to quickly accumulate INITIAL_SAMPLES datapoints
Denys Vlasenko65d722b2010-01-11 02:14:04 +0100129 * for each peer. Then, time is stepped if the offset is larger
130 * than STEP_THRESHOLD, otherwise it isn't; anyway, we enlarge
131 * poll_exp to MINPOLL and enter frequency measurement step:
132 * we collect new datapoints but ignore them for WATCH_THRESHOLD
133 * seconds. After WATCH_THRESHOLD seconds we look at accumulated
134 * offset and estimate frequency drift.
135 *
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100136 * (frequency measurement step seems to not be strictly needed,
137 * it is conditionally disabled with USING_INITIAL_FREQ_ESTIMATION
138 * define set to 0)
139 *
Denys Vlasenko65d722b2010-01-11 02:14:04 +0100140 * After this, we enter "steady state": we collect a datapoint,
141 * we select the best peer, if this datapoint is not a new one
142 * (IOW: if this datapoint isn't for selected peer), sleep
143 * and collect another one; otherwise, use its offset to update
144 * frequency drift, if offset is somewhat large, reduce poll_exp,
145 * otherwise increase poll_exp.
146 *
147 * If offset is larger than STEP_THRESHOLD, which shouldn't normally
148 * happen, we assume that something "bad" happened (computer
149 * was hibernated, someone set totally wrong date, etc),
150 * then the time is stepped, all datapoints are discarded,
151 * and we go back to steady state.
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +0100152 *
153 * Made some changes to speed up re-syncing after our clock goes bad
154 * (tested with suspending my laptop):
Denys Vlasenkofc47fce2016-02-10 06:55:07 +0100155 * - if largish offset (>= STEP_THRESHOLD == 1 sec) is seen
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +0100156 * from a peer, schedule next query for this peer soon
157 * without drastically lowering poll interval for everybody.
158 * This makes us collect enough data for step much faster:
159 * e.g. at poll = 10 (1024 secs), step was done within 5 minutes
160 * after first reply which indicated that our clock is 14 seconds off.
161 * - on step, do not discard d_dispersion data of the existing datapoints,
162 * do not clear reachable_bits. This prevents discarding first ~8
163 * datapoints after the step.
Denys Vlasenko65d722b2010-01-11 02:14:04 +0100164 */
165
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +0100166#define INITIAL_SAMPLES 4 /* how many samples do we want for init */
Denys Vlasenkoea096d62019-10-30 12:13:46 +0100167#define MIN_FREQHOLD 10 /* adjust offset, but not freq in this many first adjustments */
Denys Vlasenko9b1c8bf2018-08-03 11:03:55 +0200168#define BAD_DELAY_GROWTH 4 /* drop packet if its delay grew by more than this factor */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100169
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200170#define RETRY_INTERVAL 32 /* on send/recv error, retry in N secs (need to be power of 2) */
171#define NOREPLY_INTERVAL 512 /* sent, but got no reply: cap next query by this many seconds */
172#define RESPONSE_INTERVAL 16 /* wait for reply up to N secs */
Denys Vlasenko6a4f2232017-10-31 12:44:37 +0100173#define HOSTNAME_INTERVAL 4 /* hostname lookup failed. Wait N * peer->dns_errors secs for next try */
174#define DNS_ERRORS_CAP 0x3f /* peer->dns_errors is in [0..63] */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100175
176/* Step threshold (sec). std ntpd uses 0.128.
Denys Vlasenkofc47fce2016-02-10 06:55:07 +0100177 */
178#define STEP_THRESHOLD 1
179/* Slew threshold (sec): adjtimex() won't accept offsets larger than this.
Denys Vlasenko8502fa82019-02-15 14:32:08 +0100180 * Using exact power of 2 (1/8, 1/2 etc) results in smaller code
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200181 */
Denys Vlasenko8502fa82019-02-15 14:32:08 +0100182#define SLEW_THRESHOLD 0.5
183// ^^^^ used to be 0.125.
184// Since Linux 2.6.26 (circa 2006), kernel accepts (-0.5s, +0.5s) range
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +0100185
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200186/* Stepout threshold (sec). std ntpd uses 900 (11 mins (!)) */
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +0100187//UNUSED: #define WATCH_THRESHOLD 128
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100188/* NB: set WATCH_THRESHOLD to ~60 when debugging to save time) */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100189//UNUSED: #define PANIC_THRESHOLD 1000 /* panic threshold (sec) */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100190
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200191/*
192 * If we got |offset| > BIGOFF from a peer, cap next query interval
193 * for this peer by this many seconds:
194 */
Denys Vlasenkofc47fce2016-02-10 06:55:07 +0100195#define BIGOFF STEP_THRESHOLD
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200196#define BIGOFF_INTERVAL (1 << 7) /* 128 s */
197
Denys Vlasenko12628b72010-01-11 01:31:59 +0100198#define FREQ_TOLERANCE 0.000015 /* frequency tolerance (15 PPM) */
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200199#define BURSTPOLL 0 /* initial poll */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100200#define MINPOLL 5 /* minimum poll interval. std ntpd uses 6 (6: 64 sec) */
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200201/*
Miroslav Lichvarb434ce72014-10-02 17:18:43 +0200202 * If offset > discipline_jitter * POLLADJ_GATE, and poll interval is > 2^BIGPOLL,
203 * then it is decreased _at once_. (If <= 2^BIGPOLL, it will be decreased _eventually_).
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100204 */
Miroslav Lichvarb434ce72014-10-02 17:18:43 +0200205#define BIGPOLL 9 /* 2^9 sec ~= 8.5 min */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100206#define MAXPOLL 12 /* maximum poll interval (12: 1.1h, 17: 36.4h). std ntpd uses 17 */
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200207/*
208 * Actively lower poll when we see such big offsets.
Denys Vlasenkofc47fce2016-02-10 06:55:07 +0100209 * With SLEW_THRESHOLD = 0.125, it means we try to sync more aggressively
Denys Vlasenkod3fe9602014-09-27 22:56:09 +0200210 * if offset increases over ~0.04 sec
211 */
Denys Vlasenkofc47fce2016-02-10 06:55:07 +0100212//#define POLLDOWN_OFFSET (SLEW_THRESHOLD / 3)
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100213#define MINDISP 0.01 /* minimum dispersion (sec) */
214#define MAXDISP 16 /* maximum dispersion (sec) */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100215#define MAXSTRAT 16 /* maximum stratum (infinity metric) */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100216#define MAXDIST 1 /* distance threshold (sec) */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100217#define MIN_SELECTED 1 /* minimum intersection survivors */
218#define MIN_CLUSTERED 3 /* minimum cluster survivors */
219
220#define MAXDRIFT 0.000500 /* frequency drift we can correct (500 PPM) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100221
222/* Poll-adjust threshold.
223 * When we see that offset is small enough compared to discipline jitter,
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100224 * we grow a counter: += MINPOLL. When counter goes over POLLADJ_LIMIT,
Denys Vlasenko61313112010-01-01 19:56:16 +0100225 * we poll_exp++. If offset isn't small, counter -= poll_exp*2,
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100226 * and when it goes below -POLLADJ_LIMIT, we poll_exp--.
227 * (Bumped from 30 to 40 since otherwise I often see poll_exp going *2* steps down)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100228 */
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100229#define POLLADJ_LIMIT 40
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100230/* If offset < discipline_jitter * POLLADJ_GATE, then we decide to increase
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100231 * poll interval (we think we can't improve timekeeping
232 * by staying at smaller poll).
233 */
Denys Vlasenko61313112010-01-01 19:56:16 +0100234#define POLLADJ_GATE 4
Denys Vlasenko132b0442012-03-05 00:51:48 +0100235#define TIMECONST_HACK_GATE 2
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100236/* Compromise Allan intercept (sec). doc uses 1500, std ntpd uses 512 */
Denys Vlasenko61313112010-01-01 19:56:16 +0100237#define ALLAN 512
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100238/* PLL loop gain */
Denys Vlasenko61313112010-01-01 19:56:16 +0100239#define PLL 65536
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100240/* FLL loop gain [why it depends on MAXPOLL??] */
Denys Vlasenko61313112010-01-01 19:56:16 +0100241#define FLL (MAXPOLL + 1)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100242/* Parameter averaging constant */
Denys Vlasenko61313112010-01-01 19:56:16 +0100243#define AVG 4
244
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200245#define MAX_KEY_NUMBER 65535
246#define KEYID_SIZE sizeof(uint32_t)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100247
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100248enum {
249 NTP_VERSION = 4,
250 NTP_MAXSTRATUM = 15,
251
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200252 NTP_MD5_DIGESTSIZE = 16,
253 NTP_MSGSIZE_NOAUTH = 48,
254 NTP_MSGSIZE_MD5_AUTH = NTP_MSGSIZE_NOAUTH + KEYID_SIZE + NTP_MD5_DIGESTSIZE,
255 NTP_SHA1_DIGESTSIZE = 20,
256 NTP_MSGSIZE_SHA1_AUTH = NTP_MSGSIZE_NOAUTH + KEYID_SIZE + NTP_SHA1_DIGESTSIZE,
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100257
258 /* Status Masks */
259 MODE_MASK = (7 << 0),
260 VERSION_MASK = (7 << 3),
261 VERSION_SHIFT = 3,
262 LI_MASK = (3 << 6),
263
264 /* Leap Second Codes (high order two bits of m_status) */
265 LI_NOWARNING = (0 << 6), /* no warning */
266 LI_PLUSSEC = (1 << 6), /* add a second (61 seconds) */
267 LI_MINUSSEC = (2 << 6), /* minus a second (59 seconds) */
268 LI_ALARM = (3 << 6), /* alarm condition */
269
270 /* Mode values */
271 MODE_RES0 = 0, /* reserved */
272 MODE_SYM_ACT = 1, /* symmetric active */
273 MODE_SYM_PAS = 2, /* symmetric passive */
274 MODE_CLIENT = 3, /* client */
275 MODE_SERVER = 4, /* server */
276 MODE_BROADCAST = 5, /* broadcast */
277 MODE_RES1 = 6, /* reserved for NTP control message */
278 MODE_RES2 = 7, /* reserved for private use */
279};
280
281//TODO: better base selection
282#define OFFSET_1900_1970 2208988800UL /* 1970 - 1900 in seconds */
283
284#define NUM_DATAPOINTS 8
285
286typedef struct {
287 uint32_t int_partl;
288 uint32_t fractionl;
289} l_fixedpt_t;
290
291typedef struct {
292 uint16_t int_parts;
293 uint16_t fractions;
294} s_fixedpt_t;
295
296typedef struct {
297 uint8_t m_status; /* status of local clock and leap info */
298 uint8_t m_stratum;
299 uint8_t m_ppoll; /* poll value */
300 int8_t m_precision_exp;
301 s_fixedpt_t m_rootdelay;
302 s_fixedpt_t m_rootdisp;
303 uint32_t m_refid;
304 l_fixedpt_t m_reftime;
305 l_fixedpt_t m_orgtime;
306 l_fixedpt_t m_rectime;
307 l_fixedpt_t m_xmttime;
308 uint32_t m_keyid;
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200309 uint8_t m_digest[ENABLE_FEATURE_NTP_AUTH ? NTP_SHA1_DIGESTSIZE : NTP_MD5_DIGESTSIZE];
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100310} msg_t;
311
312typedef struct {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100313 double d_offset;
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100314 double d_recv_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100315 double d_dispersion;
316} datapoint_t;
317
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200318#if ENABLE_FEATURE_NTP_AUTH
319enum {
320 HASH_MD5,
321 HASH_SHA1,
322};
323typedef struct {
324 unsigned id; //try uint16_t?
325 smalluint type;
326 smalluint msg_size;
327 smalluint key_length;
328 char key[0];
329} key_entry_t;
330#endif
331
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100332typedef struct {
333 len_and_sockaddr *p_lsa;
334 char *p_dotted;
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200335#if ENABLE_FEATURE_NTP_AUTH
336 key_entry_t *key_entry;
337#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100338 int p_fd;
339 int datapoint_idx;
340 uint32_t lastpkt_refid;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100341 uint8_t lastpkt_status;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100342 uint8_t lastpkt_stratum;
Denys Vlasenko0b002812010-01-03 08:59:59 +0100343 uint8_t reachable_bits;
Denys Vlasenko6a4f2232017-10-31 12:44:37 +0100344 uint8_t dns_errors;
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200345 /* when to send new query (if p_fd == -1)
346 * or when receive times out (if p_fd >= 0): */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100347 double next_action_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100348 double p_xmttime;
Denys Vlasenkod531f932014-04-19 19:00:16 +0200349 double p_raw_delay;
350 /* p_raw_delay is set even by "high delay" packets */
351 /* lastpkt_delay isn't */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100352 double lastpkt_recv_time;
353 double lastpkt_delay;
354 double lastpkt_rootdelay;
355 double lastpkt_rootdisp;
356 /* produced by filter algorithm: */
357 double filter_offset;
358 double filter_dispersion;
359 double filter_jitter;
360 datapoint_t filter_datapoint[NUM_DATAPOINTS];
361 /* last sent packet: */
362 msg_t p_xmt_msg;
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +0200363 char p_hostname[1];
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100364} peer_t;
365
366
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100367#define USING_KERNEL_PLL_LOOP 1
368#define USING_INITIAL_FREQ_ESTIMATION 0
369
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100370enum {
371 OPT_n = (1 << 0),
372 OPT_q = (1 << 1),
373 OPT_N = (1 << 2),
374 OPT_x = (1 << 3),
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200375 OPT_k = (1 << 4) * ENABLE_FEATURE_NTP_AUTH,
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100376 /* Insert new options above this line. */
377 /* Non-compat options: */
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200378 OPT_w = (1 << (4+ENABLE_FEATURE_NTP_AUTH)),
379 OPT_p = (1 << (5+ENABLE_FEATURE_NTP_AUTH)),
380 OPT_S = (1 << (6+ENABLE_FEATURE_NTP_AUTH)),
381 OPT_l = (1 << (7+ENABLE_FEATURE_NTP_AUTH)) * ENABLE_FEATURE_NTPD_SERVER,
382 OPT_I = (1 << (8+ENABLE_FEATURE_NTP_AUTH)) * ENABLE_FEATURE_NTPD_SERVER,
Denys Vlasenko8e23faf2011-04-07 01:45:20 +0200383 /* We hijack some bits for other purposes */
Denys Vlasenko16c52a52012-02-23 14:28:47 +0100384 OPT_qq = (1 << 31),
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100385};
386
387struct globals {
Denys Vlasenko0b002812010-01-03 08:59:59 +0100388 double cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100389 /* total round trip delay to currently selected reference clock */
390 double rootdelay;
391 /* reference timestamp: time when the system clock was last set or corrected */
392 double reftime;
393 /* total dispersion to currently selected reference clock */
394 double rootdisp;
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100395
396 double last_script_run;
397 char *script_name;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100398 llist_t *ntp_peers;
399#if ENABLE_FEATURE_NTPD_SERVER
400 int listen_fd;
Denys Vlasenko278842d2014-07-15 15:06:54 +0200401 char *if_name;
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +0200402# define G_listen_fd (G.listen_fd)
403#else
404# define G_listen_fd (-1)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100405#endif
406 unsigned verbose;
407 unsigned peer_cnt;
408 /* refid: 32-bit code identifying the particular server or reference clock
Denys Vlasenko74584b82012-03-02 01:22:40 +0100409 * in stratum 0 packets this is a four-character ASCII string,
410 * called the kiss code, used for debugging and monitoring
411 * in stratum 1 packets this is a four-character ASCII string
412 * assigned to the reference clock by IANA. Example: "GPS "
413 * in stratum 2+ packets, it's IPv4 address or 4 first bytes
414 * of MD5 hash of IPv6
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100415 */
416 uint32_t refid;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100417 uint8_t ntp_status;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100418 /* precision is defined as the larger of the resolution and time to
419 * read the clock, in log2 units. For instance, the precision of a
420 * mains-frequency clock incrementing at 60 Hz is 16 ms, even when the
421 * system clock hardware representation is to the nanosecond.
422 *
Denys Vlasenko74584b82012-03-02 01:22:40 +0100423 * Delays, jitters of various kinds are clamped down to precision.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100424 *
425 * If precision_sec is too large, discipline_jitter gets clamped to it
Denys Vlasenko74584b82012-03-02 01:22:40 +0100426 * and if offset is smaller than discipline_jitter * POLLADJ_GATE, poll
427 * interval grows even though we really can benefit from staying at
428 * smaller one, collecting non-lagged datapoits and correcting offset.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100429 * (Lagged datapoits exist when poll_exp is large but we still have
430 * systematic offset error - the time distance between datapoints
Denys Vlasenko74584b82012-03-02 01:22:40 +0100431 * is significant and older datapoints have smaller offsets.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100432 * This makes our offset estimation a bit smaller than reality)
433 * Due to this effect, setting G_precision_sec close to
434 * STEP_THRESHOLD isn't such a good idea - offsets may grow
435 * too big and we will step. I observed it with -6.
436 *
Denys Vlasenko74584b82012-03-02 01:22:40 +0100437 * OTOH, setting precision_sec far too small would result in futile
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200438 * attempts to synchronize to an unachievable precision.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100439 *
440 * -6 is 1/64 sec, -7 is 1/128 sec and so on.
Denys Vlasenko74584b82012-03-02 01:22:40 +0100441 * -8 is 1/256 ~= 0.003906 (worked well for me --vda)
442 * -9 is 1/512 ~= 0.001953 (let's try this for some time)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100443 */
Denys Vlasenko74584b82012-03-02 01:22:40 +0100444#define G_precision_exp -9
445 /*
446 * G_precision_exp is used only for construction outgoing packets.
447 * It's ok to set G_precision_sec to a slightly different value
448 * (One which is "nicer looking" in logs).
449 * Exact value would be (1.0 / (1 << (- G_precision_exp))):
450 */
451#define G_precision_sec 0.002
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100452 uint8_t stratum;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100453
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100454#define STATE_NSET 0 /* initial state, "nothing is set" */
455//#define STATE_FSET 1 /* frequency set from file */
Denys Vlasenko6c46eed2013-12-04 17:12:11 +0100456//#define STATE_SPIK 2 /* spike detected */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100457//#define STATE_FREQ 3 /* initial frequency */
458#define STATE_SYNC 4 /* clock synchronized (normal operation) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100459 uint8_t discipline_state; // doc calls it c.state
460 uint8_t poll_exp; // s.poll
461 int polladj_count; // c.count
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +0100462 int FREQHOLD_cnt;
Denys Vlasenko61313112010-01-01 19:56:16 +0100463 long kernel_freq_drift;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100464 peer_t *last_update_peer;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100465 double last_update_offset; // c.last
Denys Vlasenko61313112010-01-01 19:56:16 +0100466 double last_update_recv_time; // s.t
467 double discipline_jitter; // c.jitter
Denys Vlasenko547ee792012-03-05 10:18:00 +0100468 /* Since we only compare it with ints, can simplify code
469 * by not making this variable floating point:
470 */
471 unsigned offset_to_jitter_ratio;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100472 //double cluster_offset; // s.offset
473 //double cluster_jitter; // s.jitter
Denys Vlasenko61313112010-01-01 19:56:16 +0100474#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100475 double discipline_freq_drift; // c.freq
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100476 /* Maybe conditionally calculate wander? it's used only for logging */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100477 double discipline_wander; // c.wander
Denys Vlasenko61313112010-01-01 19:56:16 +0100478#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100479};
480#define G (*ptr_to_globals)
481
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100482
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100483#define VERB1 if (MAX_VERBOSE && G.verbose)
484#define VERB2 if (MAX_VERBOSE >= 2 && G.verbose >= 2)
485#define VERB3 if (MAX_VERBOSE >= 3 && G.verbose >= 3)
486#define VERB4 if (MAX_VERBOSE >= 4 && G.verbose >= 4)
487#define VERB5 if (MAX_VERBOSE >= 5 && G.verbose >= 5)
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100488#define VERB6 if (MAX_VERBOSE >= 6 && G.verbose >= 6)
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100489
490
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100491static double LOG2D(int a)
492{
493 if (a < 0)
494 return 1.0 / (1UL << -a);
495 return 1UL << a;
496}
497static ALWAYS_INLINE double SQUARE(double x)
498{
499 return x * x;
500}
501static ALWAYS_INLINE double MAXD(double a, double b)
502{
503 if (a > b)
504 return a;
505 return b;
506}
Denys Vlasenkoe5897d02019-10-25 13:05:15 +0200507#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100508static ALWAYS_INLINE double MIND(double a, double b)
509{
510 if (a < b)
511 return a;
512 return b;
513}
Denys Vlasenkoe5897d02019-10-25 13:05:15 +0200514#endif
Denys Vlasenkod498ff02010-01-03 21:06:27 +0100515static NOINLINE double my_SQRT(double X)
516{
517 union {
518 float f;
519 int32_t i;
520 } v;
521 double invsqrt;
522 double Xhalf = X * 0.5;
523
524 /* Fast and good approximation to 1/sqrt(X), black magic */
525 v.f = X;
526 /*v.i = 0x5f3759df - (v.i >> 1);*/
527 v.i = 0x5f375a86 - (v.i >> 1); /* - this constant is slightly better */
528 invsqrt = v.f; /* better than 0.2% accuracy */
529
530 /* Refining it using Newton's method: x1 = x0 - f(x0)/f'(x0)
531 * f(x) = 1/(x*x) - X (f==0 when x = 1/sqrt(X))
532 * f'(x) = -2/(x*x*x)
533 * f(x)/f'(x) = (X - 1/(x*x)) / (2/(x*x*x)) = X*x*x*x/2 - x/2
534 * x1 = x0 - (X*x0*x0*x0/2 - x0/2) = 1.5*x0 - X*x0*x0*x0/2 = x0*(1.5 - (X/2)*x0*x0)
535 */
536 invsqrt = invsqrt * (1.5 - Xhalf * invsqrt * invsqrt); /* ~0.05% accuracy */
537 /* invsqrt = invsqrt * (1.5 - Xhalf * invsqrt * invsqrt); 2nd iter: ~0.0001% accuracy */
538 /* With 4 iterations, more than half results will be exact,
539 * at 6th iterations result stabilizes with about 72% results exact.
540 * We are well satisfied with 0.05% accuracy.
541 */
542
543 return X * invsqrt; /* X * 1/sqrt(X) ~= sqrt(X) */
544}
545static ALWAYS_INLINE double SQRT(double X)
546{
547 /* If this arch doesn't use IEEE 754 floats, fall back to using libm */
548 if (sizeof(float) != 4)
549 return sqrt(X);
550
Denys Vlasenko2d3253d2010-01-03 21:52:46 +0100551 /* This avoids needing libm, saves about 0.5k on x86-32 */
Denys Vlasenkod498ff02010-01-03 21:06:27 +0100552 return my_SQRT(X);
553}
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100554
555static double
556gettime1900d(void)
557{
558 struct timeval tv;
559 gettimeofday(&tv, NULL); /* never fails */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100560 G.cur_time = tv.tv_sec + (1.0e-6 * tv.tv_usec) + OFFSET_1900_1970;
561 return G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100562}
563
564static void
565d_to_tv(double d, struct timeval *tv)
566{
567 tv->tv_sec = (long)d;
568 tv->tv_usec = (d - tv->tv_sec) * 1000000;
569}
570
571static double
572lfp_to_d(l_fixedpt_t lfp)
573{
574 double ret;
575 lfp.int_partl = ntohl(lfp.int_partl);
576 lfp.fractionl = ntohl(lfp.fractionl);
577 ret = (double)lfp.int_partl + ((double)lfp.fractionl / UINT_MAX);
578 return ret;
579}
580static double
581sfp_to_d(s_fixedpt_t sfp)
582{
583 double ret;
584 sfp.int_parts = ntohs(sfp.int_parts);
585 sfp.fractions = ntohs(sfp.fractions);
586 ret = (double)sfp.int_parts + ((double)sfp.fractions / USHRT_MAX);
587 return ret;
588}
589#if ENABLE_FEATURE_NTPD_SERVER
590static l_fixedpt_t
591d_to_lfp(double d)
592{
593 l_fixedpt_t lfp;
594 lfp.int_partl = (uint32_t)d;
595 lfp.fractionl = (uint32_t)((d - lfp.int_partl) * UINT_MAX);
596 lfp.int_partl = htonl(lfp.int_partl);
597 lfp.fractionl = htonl(lfp.fractionl);
598 return lfp;
599}
600static s_fixedpt_t
601d_to_sfp(double d)
602{
603 s_fixedpt_t sfp;
604 sfp.int_parts = (uint16_t)d;
605 sfp.fractions = (uint16_t)((d - sfp.int_parts) * USHRT_MAX);
606 sfp.int_parts = htons(sfp.int_parts);
607 sfp.fractions = htons(sfp.fractions);
608 return sfp;
609}
610#endif
611
612static double
Denys Vlasenko0b002812010-01-03 08:59:59 +0100613dispersion(const datapoint_t *dp)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100614{
Denys Vlasenko0b002812010-01-03 08:59:59 +0100615 return dp->d_dispersion + FREQ_TOLERANCE * (G.cur_time - dp->d_recv_time);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100616}
617
618static double
Denys Vlasenko0b002812010-01-03 08:59:59 +0100619root_distance(peer_t *p)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100620{
621 /* The root synchronization distance is the maximum error due to
622 * all causes of the local clock relative to the primary server.
623 * It is defined as half the total delay plus total dispersion
624 * plus peer jitter.
625 */
626 return MAXD(MINDISP, p->lastpkt_rootdelay + p->lastpkt_delay) / 2
627 + p->lastpkt_rootdisp
628 + p->filter_dispersion
Denys Vlasenko0b002812010-01-03 08:59:59 +0100629 + FREQ_TOLERANCE * (G.cur_time - p->lastpkt_recv_time)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100630 + p->filter_jitter;
631}
632
633static void
634set_next(peer_t *p, unsigned t)
635{
Denys Vlasenko0b002812010-01-03 08:59:59 +0100636 p->next_action_time = G.cur_time + t;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100637}
638
639/*
640 * Peer clock filter and its helpers
641 */
642static void
Denys Vlasenko0b002812010-01-03 08:59:59 +0100643filter_datapoints(peer_t *p)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100644{
645 int i, idx;
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100646 double sum, wavg;
647 datapoint_t *fdp;
648
649#if 0
650/* Simulations have shown that use of *averaged* offset for p->filter_offset
651 * is in fact worse than simply using last received one: with large poll intervals
652 * (>= 2048) averaging code uses offset values which are outdated by hours,
653 * and time/frequency correction goes totally wrong when fed essentially bogus offsets.
654 */
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100655 int got_newest;
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100656 double minoff, maxoff, w;
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100657 double x = x; /* for compiler */
658 double oldest_off = oldest_off;
659 double oldest_age = oldest_age;
660 double newest_off = newest_off;
661 double newest_age = newest_age;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100662
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100663 fdp = p->filter_datapoint;
664
665 minoff = maxoff = fdp[0].d_offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100666 for (i = 1; i < NUM_DATAPOINTS; i++) {
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100667 if (minoff > fdp[i].d_offset)
668 minoff = fdp[i].d_offset;
669 if (maxoff < fdp[i].d_offset)
670 maxoff = fdp[i].d_offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100671 }
672
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100673 idx = p->datapoint_idx; /* most recent datapoint's index */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100674 /* Average offset:
675 * Drop two outliers and take weighted average of the rest:
676 * most_recent/2 + older1/4 + older2/8 ... + older5/32 + older6/32
677 * we use older6/32, not older6/64 since sum of weights should be 1:
678 * 1/2 + 1/4 + 1/8 + 1/16 + 1/32 + 1/32 = 1
679 */
680 wavg = 0;
681 w = 0.5;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100682 /* n-1
683 * --- dispersion(i)
684 * filter_dispersion = \ -------------
685 * / (i+1)
686 * --- 2
687 * i=0
688 */
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100689 got_newest = 0;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100690 sum = 0;
691 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100692 VERB5 {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100693 bb_error_msg("datapoint[%d]: off:%f disp:%f(%f) age:%f%s",
694 i,
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100695 fdp[idx].d_offset,
696 fdp[idx].d_dispersion, dispersion(&fdp[idx]),
697 G.cur_time - fdp[idx].d_recv_time,
698 (minoff == fdp[idx].d_offset || maxoff == fdp[idx].d_offset)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100699 ? " (outlier by offset)" : ""
700 );
701 }
702
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100703 sum += dispersion(&fdp[idx]) / (2 << i);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100704
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100705 if (minoff == fdp[idx].d_offset) {
Denys Vlasenkoe4844b82010-01-01 21:59:49 +0100706 minoff -= 1; /* so that we don't match it ever again */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100707 } else
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100708 if (maxoff == fdp[idx].d_offset) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100709 maxoff += 1;
710 } else {
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100711 oldest_off = fdp[idx].d_offset;
712 oldest_age = G.cur_time - fdp[idx].d_recv_time;
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100713 if (!got_newest) {
714 got_newest = 1;
715 newest_off = oldest_off;
716 newest_age = oldest_age;
717 }
718 x = oldest_off * w;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100719 wavg += x;
720 w /= 2;
721 }
722
723 idx = (idx - 1) & (NUM_DATAPOINTS - 1);
724 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100725 p->filter_dispersion = sum;
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100726 wavg += x; /* add another older6/64 to form older6/32 */
727 /* Fix systematic underestimation with large poll intervals.
728 * Imagine that we still have a bit of uncorrected drift,
729 * and poll interval is big (say, 100 sec). Offsets form a progression:
730 * 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 - 0.7 is most recent.
731 * The algorithm above drops 0.0 and 0.7 as outliers,
732 * and then we have this estimation, ~25% off from 0.7:
733 * 0.1/32 + 0.2/32 + 0.3/16 + 0.4/8 + 0.5/4 + 0.6/2 = 0.503125
734 */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100735 x = oldest_age - newest_age;
736 if (x != 0) {
737 x = newest_age / x; /* in above example, 100 / (600 - 100) */
738 if (x < 1) { /* paranoia check */
739 x = (newest_off - oldest_off) * x; /* 0.5 * 100/500 = 0.1 */
740 wavg += x;
741 }
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100742 }
743 p->filter_offset = wavg;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100744
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100745#else
746
747 fdp = p->filter_datapoint;
748 idx = p->datapoint_idx; /* most recent datapoint's index */
749
750 /* filter_offset: simply use the most recent value */
751 p->filter_offset = fdp[idx].d_offset;
752
753 /* n-1
754 * --- dispersion(i)
755 * filter_dispersion = \ -------------
756 * / (i+1)
757 * --- 2
758 * i=0
759 */
760 wavg = 0;
761 sum = 0;
762 for (i = 0; i < NUM_DATAPOINTS; i++) {
763 sum += dispersion(&fdp[idx]) / (2 << i);
764 wavg += fdp[idx].d_offset;
765 idx = (idx - 1) & (NUM_DATAPOINTS - 1);
766 }
767 wavg /= NUM_DATAPOINTS;
768 p->filter_dispersion = sum;
769#endif
770
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100771 /* +----- -----+ ^ 1/2
772 * | n-1 |
773 * | --- |
774 * | 1 \ 2 |
775 * filter_jitter = | --- * / (avg-offset_j) |
776 * | n --- |
777 * | j=0 |
778 * +----- -----+
779 * where n is the number of valid datapoints in the filter (n > 1);
780 * if filter_jitter < precision then filter_jitter = precision
781 */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100782 sum = 0;
783 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100784 sum += SQUARE(wavg - fdp[i].d_offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100785 }
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100786 sum = SQRT(sum / NUM_DATAPOINTS);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100787 p->filter_jitter = sum > G_precision_sec ? sum : G_precision_sec;
788
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100789 VERB4 bb_error_msg("filter offset:%+f disp:%f jitter:%f",
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100790 p->filter_offset,
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100791 p->filter_dispersion,
792 p->filter_jitter);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100793}
794
795static void
Denys Vlasenko0b002812010-01-03 08:59:59 +0100796reset_peer_stats(peer_t *p, double offset)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100797{
798 int i;
Denys Vlasenkofc47fce2016-02-10 06:55:07 +0100799 bool small_ofs = fabs(offset) < STEP_THRESHOLD;
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100800
Denys Vlasenko777be102013-12-07 17:29:03 +0100801 /* Used to set p->filter_datapoint[i].d_dispersion = MAXDISP
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200802 * and clear reachable bits, but this proved to be too aggressive:
Denys Vlasenkof37f2812016-03-04 07:06:53 +0100803 * after step (tested with suspending laptop for ~30 secs),
Denys Vlasenko777be102013-12-07 17:29:03 +0100804 * this caused all previous data to be considered invalid,
Denys Vlasenko1bfc4b82017-01-19 14:42:34 +0100805 * making us needing to collect full ~8 datapoints per peer
Denys Vlasenko777be102013-12-07 17:29:03 +0100806 * after step in order to start trusting them.
807 * In turn, this was making poll interval decrease even after
808 * step was done. (Poll interval decreases already before step
809 * in this scenario, because we see large offsets and end up with
810 * no good peer to select).
811 */
812
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100813 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100814 if (small_ofs) {
Denys Vlasenkoeff6d592010-06-24 20:23:40 +0200815 p->filter_datapoint[i].d_recv_time += offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100816 if (p->filter_datapoint[i].d_offset != 0) {
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100817 p->filter_datapoint[i].d_offset -= offset;
818 //bb_error_msg("p->filter_datapoint[%d].d_offset %f -> %f",
819 // i,
820 // p->filter_datapoint[i].d_offset + offset,
821 // p->filter_datapoint[i].d_offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100822 }
823 } else {
Denys Vlasenko0b002812010-01-03 08:59:59 +0100824 p->filter_datapoint[i].d_recv_time = G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100825 p->filter_datapoint[i].d_offset = 0;
Denys Vlasenko777be102013-12-07 17:29:03 +0100826 /*p->filter_datapoint[i].d_dispersion = MAXDISP;*/
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100827 }
828 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100829 if (small_ofs) {
Denys Vlasenkoeff6d592010-06-24 20:23:40 +0200830 p->lastpkt_recv_time += offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100831 } else {
Denys Vlasenko777be102013-12-07 17:29:03 +0100832 /*p->reachable_bits = 0;*/
Denys Vlasenko0b002812010-01-03 08:59:59 +0100833 p->lastpkt_recv_time = G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100834 }
Denys Vlasenko0b002812010-01-03 08:59:59 +0100835 filter_datapoints(p); /* recalc p->filter_xxx */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100836 VERB6 bb_error_msg("%s->lastpkt_recv_time=%f", p->p_dotted, p->lastpkt_recv_time);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100837}
838
Natanael Copab62ea342017-01-06 16:18:45 +0100839static len_and_sockaddr*
840resolve_peer_hostname(peer_t *p)
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +0200841{
Natanael Copab62ea342017-01-06 16:18:45 +0100842 len_and_sockaddr *lsa = host2sockaddr(p->p_hostname, 123);
843 if (lsa) {
844 free(p->p_lsa);
845 free(p->p_dotted);
846 p->p_lsa = lsa;
847 p->p_dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
Denys Vlasenko1bfc4b82017-01-19 14:42:34 +0100848 VERB1 if (strcmp(p->p_hostname, p->p_dotted) != 0)
849 bb_error_msg("'%s' is %s", p->p_hostname, p->p_dotted);
Denys Vlasenko6a4f2232017-10-31 12:44:37 +0100850 p->dns_errors = 0;
Denys Vlasenkod5c14822017-10-31 16:53:23 +0100851 return lsa;
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +0200852 }
Denys Vlasenko6a4f2232017-10-31 12:44:37 +0100853 p->dns_errors = ((p->dns_errors << 1) | 1) & DNS_ERRORS_CAP;
Natanael Copab62ea342017-01-06 16:18:45 +0100854 return lsa;
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +0200855}
856
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200857#if !ENABLE_FEATURE_NTP_AUTH
858#define add_peers(s, key_entry) \
859 add_peers(s)
860#endif
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +0200861static void
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200862add_peers(const char *s, key_entry_t *key_entry)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100863{
Denys Vlasenkof37f2812016-03-04 07:06:53 +0100864 llist_t *item;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100865 peer_t *p;
866
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +0200867 p = xzalloc(sizeof(*p) + strlen(s));
868 strcpy(p->p_hostname, s);
Natanael Copab62ea342017-01-06 16:18:45 +0100869 p->p_fd = -1;
870 p->p_xmt_msg.m_status = MODE_CLIENT | (NTP_VERSION << 3);
871 p->next_action_time = G.cur_time; /* = set_next(p, 0); */
872 reset_peer_stats(p, STEP_THRESHOLD);
Denys Vlasenkof37f2812016-03-04 07:06:53 +0100873
874 /* Names like N.<country2chars>.pool.ntp.org are randomly resolved
875 * to a pool of machines. Sometimes different N's resolve to the same IP.
876 * It is not useful to have two peers with same IP. We skip duplicates.
877 */
Natanael Copab62ea342017-01-06 16:18:45 +0100878 if (resolve_peer_hostname(p)) {
879 for (item = G.ntp_peers; item != NULL; item = item->link) {
880 peer_t *pp = (peer_t *) item->data;
881 if (pp->p_dotted && strcmp(p->p_dotted, pp->p_dotted) == 0) {
882 bb_error_msg("duplicate peer %s (%s)", s, p->p_dotted);
883 free(p->p_lsa);
884 free(p->p_dotted);
885 free(p);
886 return;
887 }
Denys Vlasenkof37f2812016-03-04 07:06:53 +0100888 }
889 }
890
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200891 IF_FEATURE_NTP_AUTH(p->key_entry = key_entry;)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100892 llist_add_to(&G.ntp_peers, p);
893 G.peer_cnt++;
894}
895
896static int
897do_sendto(int fd,
898 const struct sockaddr *from, const struct sockaddr *to, socklen_t addrlen,
899 msg_t *msg, ssize_t len)
900{
901 ssize_t ret;
902
903 errno = 0;
904 if (!from) {
905 ret = sendto(fd, msg, len, MSG_DONTWAIT, to, addrlen);
906 } else {
907 ret = send_to_from(fd, msg, len, MSG_DONTWAIT, to, from, addrlen);
908 }
909 if (ret != len) {
James Byrne69374872019-07-02 11:35:03 +0200910 bb_simple_perror_msg("send failed");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100911 return -1;
912 }
913 return 0;
914}
915
Brandon P. Enochsa5413142018-10-27 18:55:59 +0200916#if ENABLE_FEATURE_NTP_AUTH
917static void
918hash(key_entry_t *key_entry, const msg_t *msg, uint8_t *output)
919{
920 union {
921 md5_ctx_t m;
922 sha1_ctx_t s;
923 } ctx;
924 unsigned hash_size = sizeof(*msg) - sizeof(msg->m_keyid) - sizeof(msg->m_digest);
925
926 switch (key_entry->type) {
927 case HASH_MD5:
928 md5_begin(&ctx.m);
929 md5_hash(&ctx.m, key_entry->key, key_entry->key_length);
930 md5_hash(&ctx.m, msg, hash_size);
931 md5_end(&ctx.m, output);
932 break;
933 default: /* it's HASH_SHA1 */
934 sha1_begin(&ctx.s);
935 sha1_hash(&ctx.s, key_entry->key, key_entry->key_length);
936 sha1_hash(&ctx.s, msg, hash_size);
937 sha1_end(&ctx.s, output);
938 break;
939 }
940}
941
942static void
943hash_peer(peer_t *p)
944{
945 p->p_xmt_msg.m_keyid = htonl(p->key_entry->id);
946 hash(p->key_entry, &p->p_xmt_msg, p->p_xmt_msg.m_digest);
947}
948
949static int
950hashes_differ(peer_t *p, const msg_t *msg)
951{
952 uint8_t digest[NTP_SHA1_DIGESTSIZE];
953 hash(p->key_entry, msg, digest);
954 return memcmp(digest, msg->m_digest, p->key_entry->msg_size - NTP_MSGSIZE_NOAUTH - KEYID_SIZE);
955}
956#endif
957
Denys Vlasenko0b002812010-01-03 08:59:59 +0100958static void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100959send_query_to_peer(peer_t *p)
960{
Denys Vlasenkoa1e9bc62017-10-28 17:54:24 +0200961 if (!p->p_lsa)
962 return;
Natanael Copab62ea342017-01-06 16:18:45 +0100963
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100964 /* Why do we need to bind()?
965 * See what happens when we don't bind:
966 *
967 * socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
968 * setsockopt(3, SOL_IP, IP_TOS, [16], 4) = 0
969 * gettimeofday({1259071266, 327885}, NULL) = 0
970 * sendto(3, "xxx", 48, MSG_DONTWAIT, {sa_family=AF_INET, sin_port=htons(123), sin_addr=inet_addr("10.34.32.125")}, 16) = 48
971 * ^^^ we sent it from some source port picked by kernel.
972 * time(NULL) = 1259071266
973 * write(2, "ntpd: entering poll 15 secs\n", 28) = 28
974 * poll([{fd=3, events=POLLIN}], 1, 15000) = 1 ([{fd=3, revents=POLLIN}])
975 * recv(3, "yyy", 68, MSG_DONTWAIT) = 48
976 * ^^^ this recv will receive packets to any local port!
977 *
978 * Uncomment this and use strace to see it in action:
979 */
980#define PROBE_LOCAL_ADDR /* { len_and_sockaddr lsa; lsa.len = LSA_SIZEOF_SA; getsockname(p->query.fd, &lsa.u.sa, &lsa.len); } */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100981
982 if (p->p_fd == -1) {
983 int fd, family;
984 len_and_sockaddr *local_lsa;
985
986 family = p->p_lsa->u.sa.sa_family;
987 p->p_fd = fd = xsocket_type(&local_lsa, family, SOCK_DGRAM);
988 /* local_lsa has "null" address and port 0 now.
989 * bind() ensures we have a *particular port* selected by kernel
990 * and remembered in p->p_fd, thus later recv(p->p_fd)
991 * receives only packets sent to this port.
992 */
993 PROBE_LOCAL_ADDR
994 xbind(fd, &local_lsa->u.sa, local_lsa->len);
995 PROBE_LOCAL_ADDR
996#if ENABLE_FEATURE_IPV6
997 if (family == AF_INET)
998#endif
Codarren Velvindron7c43d432018-04-15 20:37:50 +0400999 setsockopt_int(fd, IPPROTO_IP, IP_TOS, IPTOS_DSCP_AF21);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001000 free(local_lsa);
1001 }
1002
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01001003 /* Emit message _before_ attempted send. Think of a very short
1004 * roundtrip networks: we need to go back to recv loop ASAP,
1005 * to reduce delay. Printing messages after send works against that.
1006 */
1007 VERB1 bb_error_msg("sending query to %s", p->p_dotted);
1008
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001009 /*
1010 * Send out a random 64-bit number as our transmit time. The NTP
1011 * server will copy said number into the originate field on the
1012 * response that it sends us. This is totally legal per the SNTP spec.
1013 *
1014 * The impact of this is two fold: we no longer send out the current
1015 * system time for the world to see (which may aid an attacker), and
1016 * it gives us a (not very secure) way of knowing that we're not
1017 * getting spoofed by an attacker that can't capture our traffic
1018 * but can spoof packets from the NTP server we're communicating with.
1019 *
1020 * Save the real transmit timestamp locally.
1021 */
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +01001022 p->p_xmt_msg.m_xmttime.int_partl = rand();
1023 p->p_xmt_msg.m_xmttime.fractionl = rand();
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001024 p->p_xmttime = gettime1900d();
1025
Denys Vlasenko5a7e3372013-05-23 16:06:59 +02001026 /* Were doing it only if sendto worked, but
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +02001027 * loss of sync detection needs reachable_bits updated
1028 * even if sending fails *locally*:
1029 * "network is unreachable" because cable was pulled?
1030 * We still need to declare "unsync" if this condition persists.
1031 */
1032 p->reachable_bits <<= 1;
1033
Brandon P. Enochsa5413142018-10-27 18:55:59 +02001034#if ENABLE_FEATURE_NTP_AUTH
1035 if (p->key_entry)
1036 hash_peer(p);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001037 if (do_sendto(p->p_fd, /*from:*/ NULL, /*to:*/ &p->p_lsa->u.sa, /*addrlen:*/ p->p_lsa->len,
Brandon P. Enochsa5413142018-10-27 18:55:59 +02001038 &p->p_xmt_msg, !p->key_entry ? NTP_MSGSIZE_NOAUTH : p->key_entry->msg_size) == -1
1039 )
1040#else
1041 if (do_sendto(p->p_fd, /*from:*/ NULL, /*to:*/ &p->p_lsa->u.sa, /*addrlen:*/ p->p_lsa->len,
1042 &p->p_xmt_msg, NTP_MSGSIZE_NOAUTH) == -1
1043 )
1044#endif
1045 {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001046 close(p->p_fd);
1047 p->p_fd = -1;
Denys Vlasenko5a7e3372013-05-23 16:06:59 +02001048 /*
1049 * We know that we sent nothing.
1050 * We can retry *soon* without fearing
1051 * that we are flooding the peer.
1052 */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001053 set_next(p, RETRY_INTERVAL);
Denys Vlasenko0b002812010-01-03 08:59:59 +01001054 return;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001055 }
1056
Denys Vlasenko0b002812010-01-03 08:59:59 +01001057 set_next(p, RESPONSE_INTERVAL);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001058}
1059
1060
Denys Vlasenko24928ff2010-01-25 19:30:16 +01001061/* Note that there is no provision to prevent several run_scripts
Denys Vlasenko5a7e3372013-05-23 16:06:59 +02001062 * to be started in quick succession. In fact, it happens rather often
Denys Vlasenko24928ff2010-01-25 19:30:16 +01001063 * if initial syncronization results in a step.
1064 * You will see "step" and then "stratum" script runs, sometimes
1065 * as close as only 0.002 seconds apart.
1066 * Script should be ready to deal with this.
1067 */
Denys Vlasenko12628b72010-01-11 01:31:59 +01001068static void run_script(const char *action, double offset)
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001069{
1070 char *argv[3];
Denys Vlasenko12628b72010-01-11 01:31:59 +01001071 char *env1, *env2, *env3, *env4;
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001072
Denys Vlasenko07c59872013-05-22 18:18:51 +02001073 G.last_script_run = G.cur_time;
1074
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001075 if (!G.script_name)
1076 return;
1077
1078 argv[0] = (char*) G.script_name;
1079 argv[1] = (char*) action;
1080 argv[2] = NULL;
1081
1082 VERB1 bb_error_msg("executing '%s %s'", G.script_name, action);
1083
Denys Vlasenkoae473352010-01-07 11:51:13 +01001084 env1 = xasprintf("%s=%u", "stratum", G.stratum);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001085 putenv(env1);
Denys Vlasenkoae473352010-01-07 11:51:13 +01001086 env2 = xasprintf("%s=%ld", "freq_drift_ppm", G.kernel_freq_drift);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001087 putenv(env2);
Denys Vlasenkoae473352010-01-07 11:51:13 +01001088 env3 = xasprintf("%s=%u", "poll_interval", 1 << G.poll_exp);
1089 putenv(env3);
Denys Vlasenko12628b72010-01-11 01:31:59 +01001090 env4 = xasprintf("%s=%f", "offset", offset);
1091 putenv(env4);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001092 /* Other items of potential interest: selected peer,
Denys Vlasenkoae473352010-01-07 11:51:13 +01001093 * rootdelay, reftime, rootdisp, refid, ntp_status,
Denys Vlasenko12628b72010-01-11 01:31:59 +01001094 * last_update_offset, last_update_recv_time, discipline_jitter,
1095 * how many peers have reachable_bits = 0?
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001096 */
1097
Denys Vlasenko6959f6b2010-01-07 08:31:46 +01001098 /* Don't want to wait: it may run hwclock --systohc, and that
1099 * may take some time (seconds): */
Denys Vlasenko8531d762010-03-18 22:44:00 +01001100 /*spawn_and_wait(argv);*/
Denys Vlasenko6959f6b2010-01-07 08:31:46 +01001101 spawn(argv);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001102
1103 unsetenv("stratum");
1104 unsetenv("freq_drift_ppm");
Denys Vlasenkoae473352010-01-07 11:51:13 +01001105 unsetenv("poll_interval");
Denys Vlasenko12628b72010-01-11 01:31:59 +01001106 unsetenv("offset");
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001107 free(env1);
1108 free(env2);
Denys Vlasenkoae473352010-01-07 11:51:13 +01001109 free(env3);
Denys Vlasenko12628b72010-01-11 01:31:59 +01001110 free(env4);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001111}
1112
Denys Vlasenko0b002812010-01-03 08:59:59 +01001113static NOINLINE void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001114step_time(double offset)
1115{
Denys Vlasenko0b002812010-01-03 08:59:59 +01001116 llist_t *item;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001117 double dtime;
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +01001118 struct timeval tvc, tvn;
1119 char buf[sizeof("yyyy-mm-dd hh:mm:ss") + /*paranoia:*/ 4];
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001120 time_t tval;
1121
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +01001122 gettimeofday(&tvc, NULL); /* never fails */
1123 dtime = tvc.tv_sec + (1.0e-6 * tvc.tv_usec) + offset;
1124 d_to_tv(dtime, &tvn);
1125 if (settimeofday(&tvn, NULL) == -1)
James Byrne69374872019-07-02 11:35:03 +02001126 bb_simple_perror_msg_and_die("settimeofday");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001127
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +01001128 VERB2 {
1129 tval = tvc.tv_sec;
Denys Vlasenko8f2cb7a2013-03-29 12:30:33 +01001130 strftime_YYYYMMDDHHMMSS(buf, sizeof(buf), &tval);
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +01001131 bb_error_msg("current time is %s.%06u", buf, (unsigned)tvc.tv_usec);
1132 }
1133 tval = tvn.tv_sec;
Denys Vlasenko8f2cb7a2013-03-29 12:30:33 +01001134 strftime_YYYYMMDDHHMMSS(buf, sizeof(buf), &tval);
James Byrne253c4e72019-04-12 17:01:51 +00001135 bb_info_msg("setting time to %s.%06u (offset %+fs)", buf, (unsigned)tvn.tv_usec, offset);
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +01001136 //maybe? G.FREQHOLD_cnt = 0;
Denys Vlasenko0b002812010-01-03 08:59:59 +01001137
1138 /* Correct various fields which contain time-relative values: */
1139
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001140 /* Globals: */
1141 G.cur_time += offset;
1142 G.last_update_recv_time += offset;
1143 G.last_script_run += offset;
1144
Denys Vlasenko0b002812010-01-03 08:59:59 +01001145 /* p->lastpkt_recv_time, p->next_action_time and such: */
1146 for (item = G.ntp_peers; item != NULL; item = item->link) {
1147 peer_t *pp = (peer_t *) item->data;
1148 reset_peer_stats(pp, offset);
Denys Vlasenko16c52a52012-02-23 14:28:47 +01001149 //bb_error_msg("offset:%+f pp->next_action_time:%f -> %f",
Denys Vlasenkoeff6d592010-06-24 20:23:40 +02001150 // offset, pp->next_action_time, pp->next_action_time + offset);
1151 pp->next_action_time += offset;
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001152 if (pp->p_fd >= 0) {
1153 /* We wait for reply from this peer too.
1154 * But due to step we are doing, reply's data is no longer
1155 * useful (in fact, it'll be bogus). Stop waiting for it.
1156 */
1157 close(pp->p_fd);
1158 pp->p_fd = -1;
1159 set_next(pp, RETRY_INTERVAL);
1160 }
Denys Vlasenko0b002812010-01-03 08:59:59 +01001161 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001162}
1163
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02001164static void clamp_pollexp_and_set_MAXSTRAT(void)
1165{
1166 if (G.poll_exp < MINPOLL)
1167 G.poll_exp = MINPOLL;
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02001168 if (G.poll_exp > BIGPOLL)
1169 G.poll_exp = BIGPOLL;
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02001170 G.polladj_count = 0;
1171 G.stratum = MAXSTRAT;
1172}
1173
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001174
1175/*
1176 * Selection and clustering, and their helpers
1177 */
1178typedef struct {
1179 peer_t *p;
1180 int type;
1181 double edge;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001182 double opt_rd; /* optimization */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001183} point_t;
1184static int
1185compare_point_edge(const void *aa, const void *bb)
1186{
1187 const point_t *a = aa;
1188 const point_t *b = bb;
1189 if (a->edge < b->edge) {
1190 return -1;
1191 }
1192 return (a->edge > b->edge);
1193}
1194typedef struct {
1195 peer_t *p;
1196 double metric;
1197} survivor_t;
1198static int
1199compare_survivor_metric(const void *aa, const void *bb)
1200{
1201 const survivor_t *a = aa;
1202 const survivor_t *b = bb;
Denys Vlasenko510f56a2010-01-03 12:00:26 +01001203 if (a->metric < b->metric) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001204 return -1;
Denys Vlasenko510f56a2010-01-03 12:00:26 +01001205 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001206 return (a->metric > b->metric);
1207}
1208static int
1209fit(peer_t *p, double rd)
1210{
Denys Vlasenko0b002812010-01-03 08:59:59 +01001211 if ((p->reachable_bits & (p->reachable_bits-1)) == 0) {
1212 /* One or zero bits in reachable_bits */
Denys Vlasenko13039622018-09-13 12:15:36 +02001213 VERB4 bb_error_msg("peer %s unfit for selection: "
1214 "unreachable", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001215 return 0;
1216 }
Denys Vlasenkofb132e42010-10-29 11:46:52 +02001217#if 0 /* we filter out such packets earlier */
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001218 if ((p->lastpkt_status & LI_ALARM) == LI_ALARM
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001219 || p->lastpkt_stratum >= MAXSTRAT
1220 ) {
Denys Vlasenko13039622018-09-13 12:15:36 +02001221 VERB4 bb_error_msg("peer %s unfit for selection: "
1222 "bad status/stratum", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001223 return 0;
1224 }
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001225#endif
Denys Vlasenko0b002812010-01-03 08:59:59 +01001226 /* rd is root_distance(p) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001227 if (rd > MAXDIST + FREQ_TOLERANCE * (1 << G.poll_exp)) {
Denys Vlasenko13039622018-09-13 12:15:36 +02001228 VERB3 bb_error_msg("peer %s unfit for selection: "
1229 "root distance %f too high, jitter:%f",
1230 p->p_dotted, rd, p->filter_jitter
1231 );
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001232 return 0;
1233 }
1234//TODO
1235// /* Do we have a loop? */
1236// if (p->refid == p->dstaddr || p->refid == s.refid)
1237// return 0;
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +01001238 return 1;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001239}
1240static peer_t*
Denys Vlasenko0b002812010-01-03 08:59:59 +01001241select_and_cluster(void)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001242{
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001243 peer_t *p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001244 llist_t *item;
1245 int i, j;
1246 int size = 3 * G.peer_cnt;
1247 /* for selection algorithm */
1248 point_t point[size];
1249 unsigned num_points, num_candidates;
1250 double low, high;
1251 unsigned num_falsetickers;
1252 /* for cluster algorithm */
1253 survivor_t survivor[size];
1254 unsigned num_survivors;
1255
1256 /* Selection */
1257
1258 num_points = 0;
1259 item = G.ntp_peers;
Denys Vlasenkoff3f3ac2015-01-29 16:31:36 +01001260 while (item != NULL) {
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001261 double rd, offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001262
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001263 p = (peer_t *) item->data;
1264 rd = root_distance(p);
1265 offset = p->filter_offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001266 if (!fit(p, rd)) {
1267 item = item->link;
1268 continue;
1269 }
1270
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001271 VERB5 bb_error_msg("interval: [%f %f %f] %s",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001272 offset - rd,
1273 offset,
1274 offset + rd,
1275 p->p_dotted
1276 );
1277 point[num_points].p = p;
1278 point[num_points].type = -1;
1279 point[num_points].edge = offset - rd;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001280 point[num_points].opt_rd = rd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001281 num_points++;
1282 point[num_points].p = p;
1283 point[num_points].type = 0;
1284 point[num_points].edge = offset;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001285 point[num_points].opt_rd = rd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001286 num_points++;
1287 point[num_points].p = p;
1288 point[num_points].type = 1;
1289 point[num_points].edge = offset + rd;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001290 point[num_points].opt_rd = rd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001291 num_points++;
1292 item = item->link;
1293 }
1294 num_candidates = num_points / 3;
1295 if (num_candidates == 0) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001296 VERB3 bb_error_msg("no valid datapoints%s", ", no peer selected");
Denys Vlasenko0b002812010-01-03 08:59:59 +01001297 return NULL;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001298 }
1299//TODO: sorting does not seem to be done in reference code
1300 qsort(point, num_points, sizeof(point[0]), compare_point_edge);
1301
1302 /* Start with the assumption that there are no falsetickers.
1303 * Attempt to find a nonempty intersection interval containing
1304 * the midpoints of all truechimers.
1305 * If a nonempty interval cannot be found, increase the number
1306 * of assumed falsetickers by one and try again.
1307 * If a nonempty interval is found and the number of falsetickers
1308 * is less than the number of truechimers, a majority has been found
1309 * and the midpoint of each truechimer represents
1310 * the candidates available to the cluster algorithm.
1311 */
1312 num_falsetickers = 0;
1313 while (1) {
1314 int c;
1315 unsigned num_midpoints = 0;
1316
1317 low = 1 << 9;
1318 high = - (1 << 9);
1319 c = 0;
1320 for (i = 0; i < num_points; i++) {
1321 /* We want to do:
1322 * if (point[i].type == -1) c++;
1323 * if (point[i].type == 1) c--;
1324 * and it's simpler to do it this way:
1325 */
1326 c -= point[i].type;
1327 if (c >= num_candidates - num_falsetickers) {
1328 /* If it was c++ and it got big enough... */
1329 low = point[i].edge;
1330 break;
1331 }
1332 if (point[i].type == 0)
1333 num_midpoints++;
1334 }
1335 c = 0;
1336 for (i = num_points-1; i >= 0; i--) {
1337 c += point[i].type;
1338 if (c >= num_candidates - num_falsetickers) {
1339 high = point[i].edge;
1340 break;
1341 }
1342 if (point[i].type == 0)
1343 num_midpoints++;
1344 }
1345 /* If the number of midpoints is greater than the number
1346 * of allowed falsetickers, the intersection contains at
1347 * least one truechimer with no midpoint - bad.
1348 * Also, interval should be nonempty.
1349 */
1350 if (num_midpoints <= num_falsetickers && low < high)
1351 break;
1352 num_falsetickers++;
1353 if (num_falsetickers * 2 >= num_candidates) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001354 VERB3 bb_error_msg("falsetickers:%d, candidates:%d%s",
1355 num_falsetickers, num_candidates,
1356 ", no peer selected");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001357 return NULL;
1358 }
1359 }
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001360 VERB4 bb_error_msg("selected interval: [%f, %f]; candidates:%d falsetickers:%d",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001361 low, high, num_candidates, num_falsetickers);
1362
1363 /* Clustering */
1364
1365 /* Construct a list of survivors (p, metric)
1366 * from the chime list, where metric is dominated
1367 * first by stratum and then by root distance.
1368 * All other things being equal, this is the order of preference.
1369 */
1370 num_survivors = 0;
1371 for (i = 0; i < num_points; i++) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001372 if (point[i].edge < low || point[i].edge > high)
1373 continue;
1374 p = point[i].p;
1375 survivor[num_survivors].p = p;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001376 /* x.opt_rd == root_distance(p); */
1377 survivor[num_survivors].metric = MAXDIST * p->lastpkt_stratum + point[i].opt_rd;
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001378 VERB5 bb_error_msg("survivor[%d] metric:%f peer:%s",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001379 num_survivors, survivor[num_survivors].metric, p->p_dotted);
1380 num_survivors++;
1381 }
1382 /* There must be at least MIN_SELECTED survivors to satisfy the
1383 * correctness assertions. Ordinarily, the Byzantine criteria
1384 * require four survivors, but for the demonstration here, one
1385 * is acceptable.
1386 */
1387 if (num_survivors < MIN_SELECTED) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001388 VERB3 bb_error_msg("survivors:%d%s",
1389 num_survivors,
1390 ", no peer selected");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001391 return NULL;
1392 }
1393
1394//looks like this is ONLY used by the fact that later we pick survivor[0].
1395//we can avoid sorting then, just find the minimum once!
1396 qsort(survivor, num_survivors, sizeof(survivor[0]), compare_survivor_metric);
1397
1398 /* For each association p in turn, calculate the selection
1399 * jitter p->sjitter as the square root of the sum of squares
1400 * (p->offset - q->offset) over all q associations. The idea is
1401 * to repeatedly discard the survivor with maximum selection
1402 * jitter until a termination condition is met.
1403 */
1404 while (1) {
1405 unsigned max_idx = max_idx;
1406 double max_selection_jitter = max_selection_jitter;
1407 double min_jitter = min_jitter;
1408
1409 if (num_survivors <= MIN_CLUSTERED) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001410 VERB4 bb_error_msg("num_survivors %d <= %d, not discarding more",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001411 num_survivors, MIN_CLUSTERED);
1412 break;
1413 }
1414
1415 /* To make sure a few survivors are left
1416 * for the clustering algorithm to chew on,
1417 * we stop if the number of survivors
1418 * is less than or equal to MIN_CLUSTERED (3).
1419 */
1420 for (i = 0; i < num_survivors; i++) {
1421 double selection_jitter_sq;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001422
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001423 p = survivor[i].p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001424 if (i == 0 || p->filter_jitter < min_jitter)
1425 min_jitter = p->filter_jitter;
1426
1427 selection_jitter_sq = 0;
1428 for (j = 0; j < num_survivors; j++) {
1429 peer_t *q = survivor[j].p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001430 selection_jitter_sq += SQUARE(p->filter_offset - q->filter_offset);
1431 }
1432 if (i == 0 || selection_jitter_sq > max_selection_jitter) {
1433 max_selection_jitter = selection_jitter_sq;
1434 max_idx = i;
1435 }
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001436 VERB6 bb_error_msg("survivor %d selection_jitter^2:%f",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001437 i, selection_jitter_sq);
1438 }
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001439 max_selection_jitter = SQRT(max_selection_jitter / num_survivors);
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001440 VERB5 bb_error_msg("max_selection_jitter (at %d):%f min_jitter:%f",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001441 max_idx, max_selection_jitter, min_jitter);
1442
1443 /* If the maximum selection jitter is less than the
1444 * minimum peer jitter, then tossing out more survivors
1445 * will not lower the minimum peer jitter, so we might
1446 * as well stop.
1447 */
1448 if (max_selection_jitter < min_jitter) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001449 VERB4 bb_error_msg("max_selection_jitter:%f < min_jitter:%f, num_survivors:%d, not discarding more",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001450 max_selection_jitter, min_jitter, num_survivors);
1451 break;
1452 }
1453
1454 /* Delete survivor[max_idx] from the list
1455 * and go around again.
1456 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001457 VERB6 bb_error_msg("dropping survivor %d", max_idx);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001458 num_survivors--;
1459 while (max_idx < num_survivors) {
1460 survivor[max_idx] = survivor[max_idx + 1];
1461 max_idx++;
1462 }
1463 }
1464
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001465 if (0) {
1466 /* Combine the offsets of the clustering algorithm survivors
1467 * using a weighted average with weight determined by the root
1468 * distance. Compute the selection jitter as the weighted RMS
1469 * difference between the first survivor and the remaining
1470 * survivors. In some cases the inherent clock jitter can be
1471 * reduced by not using this algorithm, especially when frequent
1472 * clockhopping is involved. bbox: thus we don't do it.
1473 */
1474 double x, y, z, w;
1475 y = z = w = 0;
1476 for (i = 0; i < num_survivors; i++) {
1477 p = survivor[i].p;
1478 x = root_distance(p);
1479 y += 1 / x;
1480 z += p->filter_offset / x;
1481 w += SQUARE(p->filter_offset - survivor[0].p->filter_offset) / x;
1482 }
1483 //G.cluster_offset = z / y;
1484 //G.cluster_jitter = SQRT(w / y);
1485 }
1486
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001487 /* Pick the best clock. If the old system peer is on the list
1488 * and at the same stratum as the first survivor on the list,
1489 * then don't do a clock hop. Otherwise, select the first
1490 * survivor on the list as the new system peer.
1491 */
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001492 p = survivor[0].p;
1493 if (G.last_update_peer
1494 && G.last_update_peer->lastpkt_stratum <= p->lastpkt_stratum
1495 ) {
1496 /* Starting from 1 is ok here */
1497 for (i = 1; i < num_survivors; i++) {
1498 if (G.last_update_peer == survivor[i].p) {
James Byrne69374872019-07-02 11:35:03 +02001499 VERB5 bb_simple_error_msg("keeping old synced peer");
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001500 p = G.last_update_peer;
1501 goto keep_old;
1502 }
1503 }
1504 }
1505 G.last_update_peer = p;
1506 keep_old:
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001507 VERB4 bb_error_msg("selected peer %s filter_offset:%+f age:%f",
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001508 p->p_dotted,
1509 p->filter_offset,
1510 G.cur_time - p->lastpkt_recv_time
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001511 );
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001512 return p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001513}
1514
1515
1516/*
1517 * Local clock discipline and its helpers
1518 */
1519static void
1520set_new_values(int disc_state, double offset, double recv_time)
1521{
1522 /* Enter new state and set state variables. Note we use the time
1523 * of the last clock filter sample, which must be earlier than
1524 * the current time.
1525 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001526 VERB4 bb_error_msg("disc_state=%d last update offset=%f recv_time=%f",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001527 disc_state, offset, recv_time);
1528 G.discipline_state = disc_state;
1529 G.last_update_offset = offset;
1530 G.last_update_recv_time = recv_time;
1531}
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001532/* Return: -1: decrease poll interval, 0: leave as is, 1: increase */
Denys Vlasenko0b002812010-01-03 08:59:59 +01001533static NOINLINE int
1534update_local_clock(peer_t *p)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001535{
1536 int rc;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001537 struct timex tmx;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001538 /* Note: can use G.cluster_offset instead: */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001539 double offset = p->filter_offset;
1540 double recv_time = p->lastpkt_recv_time;
1541 double abs_offset;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001542#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001543 double freq_drift;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001544#endif
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001545#if !USING_KERNEL_PLL_LOOP || USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001546 double since_last_update;
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001547#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001548 double etemp, dtemp;
1549
1550 abs_offset = fabs(offset);
1551
Denys Vlasenko12628b72010-01-11 01:31:59 +01001552#if 0
Denys Vlasenko24928ff2010-01-25 19:30:16 +01001553 /* If needed, -S script can do it by looking at $offset
1554 * env var and killing parent */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001555 /* If the offset is too large, give up and go home */
1556 if (abs_offset > PANIC_THRESHOLD) {
1557 bb_error_msg_and_die("offset %f far too big, exiting", offset);
1558 }
Denys Vlasenko12628b72010-01-11 01:31:59 +01001559#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001560
1561 /* If this is an old update, for instance as the result
1562 * of a system peer change, avoid it. We never use
1563 * an old sample or the same sample twice.
1564 */
1565 if (recv_time <= G.last_update_recv_time) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001566 VERB3 bb_error_msg("update from %s: same or older datapoint, not using it",
1567 p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001568 return 0; /* "leave poll interval as is" */
1569 }
1570
1571 /* Clock state machine transition function. This is where the
1572 * action is and defines how the system reacts to large time
1573 * and frequency errors.
1574 */
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001575#if !USING_KERNEL_PLL_LOOP || USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001576 since_last_update = recv_time - G.reftime;
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001577#endif
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001578#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001579 freq_drift = 0;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001580#endif
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001581#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001582 if (G.discipline_state == STATE_FREQ) {
1583 /* Ignore updates until the stepout threshold */
1584 if (since_last_update < WATCH_THRESHOLD) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001585 VERB4 bb_error_msg("measuring drift, datapoint ignored, %f sec remains",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001586 WATCH_THRESHOLD - since_last_update);
1587 return 0; /* "leave poll interval as is" */
1588 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001589# if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001590 freq_drift = (offset - G.last_update_offset) / since_last_update;
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001591# endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001592 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001593#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001594
1595 /* There are two main regimes: when the
1596 * offset exceeds the step threshold and when it does not.
1597 */
1598 if (abs_offset > STEP_THRESHOLD) {
Denys Vlasenko6c46eed2013-12-04 17:12:11 +01001599#if 0
Denys Vlasenkocb1dc1d2013-12-04 13:19:04 +01001600 double remains;
1601
Denys Vlasenko6c46eed2013-12-04 17:12:11 +01001602// This "spike state" seems to be useless, peer selection already drops
1603// occassional "bad" datapoints. If we are here, there were _many_
1604// large offsets. When a few first large offsets are seen,
1605// we end up in "no valid datapoints, no peer selected" state.
1606// Only when enough of them are seen (which means it's not a fluke),
1607// we end up here. Looks like _our_ clock is off.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001608 switch (G.discipline_state) {
1609 case STATE_SYNC:
1610 /* The first outlyer: ignore it, switch to SPIK state */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001611 VERB3 bb_error_msg("update from %s: offset:%+f, spike%s",
1612 p->p_dotted, offset,
1613 "");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001614 G.discipline_state = STATE_SPIK;
1615 return -1; /* "decrease poll interval" */
1616
1617 case STATE_SPIK:
1618 /* Ignore succeeding outlyers until either an inlyer
1619 * is found or the stepout threshold is exceeded.
1620 */
Denys Vlasenkocb1dc1d2013-12-04 13:19:04 +01001621 remains = WATCH_THRESHOLD - since_last_update;
1622 if (remains > 0) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001623 VERB3 bb_error_msg("update from %s: offset:%+f, spike%s",
1624 p->p_dotted, offset,
1625 ", datapoint ignored");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001626 return -1; /* "decrease poll interval" */
1627 }
1628 /* fall through: we need to step */
1629 } /* switch */
Denys Vlasenko6c46eed2013-12-04 17:12:11 +01001630#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001631
1632 /* Step the time and clamp down the poll interval.
1633 *
1634 * In NSET state an initial frequency correction is
1635 * not available, usually because the frequency file has
1636 * not yet been written. Since the time is outside the
1637 * capture range, the clock is stepped. The frequency
1638 * will be set directly following the stepout interval.
1639 *
1640 * In FSET state the initial frequency has been set
1641 * from the frequency file. Since the time is outside
1642 * the capture range, the clock is stepped immediately,
1643 * rather than after the stepout interval. Guys get
1644 * nervous if it takes 17 minutes to set the clock for
1645 * the first time.
1646 *
1647 * In SPIK state the stepout threshold has expired and
1648 * the phase is still above the step threshold. Note
1649 * that a single spike greater than the step threshold
1650 * is always suppressed, even at the longer poll
1651 * intervals.
1652 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001653 VERB4 bb_error_msg("stepping time by %+f; poll_exp=MINPOLL", offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001654 step_time(offset);
1655 if (option_mask32 & OPT_q) {
1656 /* We were only asked to set time once. Done. */
1657 exit(0);
1658 }
1659
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02001660 clamp_pollexp_and_set_MAXSTRAT();
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001661
Denys Vlasenko12628b72010-01-11 01:31:59 +01001662 run_script("step", offset);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001663
Denys Vlasenkocb761132014-01-08 17:17:52 +01001664 recv_time += offset;
1665
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001666#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001667 if (G.discipline_state == STATE_NSET) {
1668 set_new_values(STATE_FREQ, /*offset:*/ 0, recv_time);
1669 return 1; /* "ok to increase poll interval" */
1670 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001671#endif
Denys Vlasenko547ee792012-03-05 10:18:00 +01001672 abs_offset = offset = 0;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001673 set_new_values(STATE_SYNC, offset, recv_time);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001674 } else { /* abs_offset <= STEP_THRESHOLD */
1675
Miroslav Lichvar760d0352014-10-05 03:10:15 +02001676 /* The ratio is calculated before jitter is updated to make
1677 * poll adjust code more sensitive to large offsets.
1678 */
1679 G.offset_to_jitter_ratio = abs_offset / G.discipline_jitter;
1680
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001681 /* Compute the clock jitter as the RMS of exponentially
1682 * weighted offset differences. Used by the poll adjust code.
1683 */
1684 etemp = SQUARE(G.discipline_jitter);
Denys Vlasenko74584b82012-03-02 01:22:40 +01001685 dtemp = SQUARE(offset - G.last_update_offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001686 G.discipline_jitter = SQRT(etemp + (dtemp - etemp) / AVG);
Miroslav Lichvar760d0352014-10-05 03:10:15 +02001687 if (G.discipline_jitter < G_precision_sec)
1688 G.discipline_jitter = G_precision_sec;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001689
1690 switch (G.discipline_state) {
1691 case STATE_NSET:
1692 if (option_mask32 & OPT_q) {
1693 /* We were only asked to set time once.
1694 * The clock is precise enough, no need to step.
1695 */
1696 exit(0);
1697 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001698#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001699 /* This is the first update received and the frequency
1700 * has not been initialized. The first thing to do
1701 * is directly measure the oscillator frequency.
1702 */
1703 set_new_values(STATE_FREQ, offset, recv_time);
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001704#else
1705 set_new_values(STATE_SYNC, offset, recv_time);
1706#endif
James Byrne69374872019-07-02 11:35:03 +02001707 VERB4 bb_simple_error_msg("transitioning to FREQ, datapoint ignored");
Denys Vlasenko0b002812010-01-03 08:59:59 +01001708 return 0; /* "leave poll interval as is" */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001709
1710#if 0 /* this is dead code for now */
1711 case STATE_FSET:
1712 /* This is the first update and the frequency
1713 * has been initialized. Adjust the phase, but
1714 * don't adjust the frequency until the next update.
1715 */
1716 set_new_values(STATE_SYNC, offset, recv_time);
1717 /* freq_drift remains 0 */
1718 break;
1719#endif
1720
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001721#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001722 case STATE_FREQ:
1723 /* since_last_update >= WATCH_THRESHOLD, we waited enough.
1724 * Correct the phase and frequency and switch to SYNC state.
1725 * freq_drift was already estimated (see code above)
1726 */
1727 set_new_values(STATE_SYNC, offset, recv_time);
1728 break;
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001729#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001730
1731 default:
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001732#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001733 /* Compute freq_drift due to PLL and FLL contributions.
1734 *
1735 * The FLL and PLL frequency gain constants
1736 * depend on the poll interval and Allan
1737 * intercept. The FLL is not used below one-half
1738 * the Allan intercept. Above that the loop gain
1739 * increases in steps to 1 / AVG.
1740 */
1741 if ((1 << G.poll_exp) > ALLAN / 2) {
1742 etemp = FLL - G.poll_exp;
1743 if (etemp < AVG)
1744 etemp = AVG;
1745 freq_drift += (offset - G.last_update_offset) / (MAXD(since_last_update, ALLAN) * etemp);
1746 }
1747 /* For the PLL the integration interval
1748 * (numerator) is the minimum of the update
1749 * interval and poll interval. This allows
1750 * oversampling, but not undersampling.
1751 */
1752 etemp = MIND(since_last_update, (1 << G.poll_exp));
1753 dtemp = (4 * PLL) << G.poll_exp;
1754 freq_drift += offset * etemp / SQUARE(dtemp);
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001755#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001756 set_new_values(STATE_SYNC, offset, recv_time);
1757 break;
1758 }
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001759 if (G.stratum != p->lastpkt_stratum + 1) {
1760 G.stratum = p->lastpkt_stratum + 1;
Denys Vlasenko12628b72010-01-11 01:31:59 +01001761 run_script("stratum", offset);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001762 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001763 }
1764
Denys Vlasenko0b002812010-01-03 08:59:59 +01001765 G.reftime = G.cur_time;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001766 G.ntp_status = p->lastpkt_status;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001767 G.refid = p->lastpkt_refid;
1768 G.rootdelay = p->lastpkt_rootdelay + p->lastpkt_delay;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001769 dtemp = p->filter_jitter; // SQRT(SQUARE(p->filter_jitter) + SQUARE(G.cluster_jitter));
Denys Vlasenko0b002812010-01-03 08:59:59 +01001770 dtemp += MAXD(p->filter_dispersion + FREQ_TOLERANCE * (G.cur_time - p->lastpkt_recv_time) + abs_offset, MINDISP);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001771 G.rootdisp = p->lastpkt_rootdisp + dtemp;
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001772 VERB4 bb_error_msg("updating leap/refid/reftime/rootdisp from peer %s", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001773
1774 /* We are in STATE_SYNC now, but did not do adjtimex yet.
1775 * (Any other state does not reach this, they all return earlier)
Denys Vlasenko132b0442012-03-05 00:51:48 +01001776 * By this time, freq_drift and offset are set
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001777 * to values suitable for adjtimex.
Denys Vlasenko61313112010-01-01 19:56:16 +01001778 */
1779#if !USING_KERNEL_PLL_LOOP
1780 /* Calculate the new frequency drift and frequency stability (wander).
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001781 * Compute the clock wander as the RMS of exponentially weighted
1782 * frequency differences. This is not used directly, but can,
1783 * along with the jitter, be a highly useful monitoring and
1784 * debugging tool.
1785 */
1786 dtemp = G.discipline_freq_drift + freq_drift;
Denys Vlasenko61313112010-01-01 19:56:16 +01001787 G.discipline_freq_drift = MAXD(MIND(MAXDRIFT, dtemp), -MAXDRIFT);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001788 etemp = SQUARE(G.discipline_wander);
1789 dtemp = SQUARE(dtemp);
1790 G.discipline_wander = SQRT(etemp + (dtemp - etemp) / AVG);
1791
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001792 VERB4 bb_error_msg("discipline freq_drift=%.9f(int:%ld corr:%e) wander=%f",
Denys Vlasenko61313112010-01-01 19:56:16 +01001793 G.discipline_freq_drift,
1794 (long)(G.discipline_freq_drift * 65536e6),
1795 freq_drift,
1796 G.discipline_wander);
1797#endif
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001798 VERB4 {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001799 memset(&tmx, 0, sizeof(tmx));
1800 if (adjtimex(&tmx) < 0)
James Byrne69374872019-07-02 11:35:03 +02001801 bb_simple_perror_msg_and_die("adjtimex");
Denys Vlasenko8be49c32012-03-06 19:16:50 +01001802 bb_error_msg("p adjtimex freq:%ld offset:%+ld status:0x%x tc:%ld",
1803 tmx.freq, tmx.offset, tmx.status, tmx.constant);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001804 }
1805
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001806 memset(&tmx, 0, sizeof(tmx));
1807#if 0
Denys Vlasenko61313112010-01-01 19:56:16 +01001808//doesn't work, offset remains 0 (!) in kernel:
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001809//ntpd: set adjtimex freq:1786097 tmx.offset:77487
1810//ntpd: prev adjtimex freq:1786097 tmx.offset:0
1811//ntpd: cur adjtimex freq:1786097 tmx.offset:0
1812 tmx.modes = ADJ_FREQUENCY | ADJ_OFFSET;
1813 /* 65536 is one ppm */
1814 tmx.freq = G.discipline_freq_drift * 65536e6;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001815#endif
1816 tmx.modes = ADJ_OFFSET | ADJ_STATUS | ADJ_TIMECONST;// | ADJ_MAXERROR | ADJ_ESTERROR;
Denys Vlasenko448fdcc2018-03-11 17:08:02 +01001817
1818 tmx.offset = (long)(offset * 1000000); /* usec */
1819 if (SLEW_THRESHOLD < STEP_THRESHOLD) {
1820 if (tmx.offset > (long)(SLEW_THRESHOLD * 1000000)) {
1821 tmx.offset = (long)(SLEW_THRESHOLD * 1000000);
1822 }
1823 if (tmx.offset < -(long)(SLEW_THRESHOLD * 1000000)) {
1824 tmx.offset = -(long)(SLEW_THRESHOLD * 1000000);
1825 }
1826 }
1827
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +01001828 tmx.status = STA_PLL;
1829 if (G.FREQHOLD_cnt != 0) {
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +01001830 /* man adjtimex on STA_FREQHOLD:
1831 * "Normally adjustments made via ADJ_OFFSET result in dampened
1832 * frequency adjustments also being made.
1833 * This flag prevents the small frequency adjustment from being
1834 * made when correcting for an ADJ_OFFSET value."
1835 *
1836 * Use this flag for a few first adjustments at the beginning
1837 * of ntpd execution, otherwise even relatively small initial
1838 * offset tend to cause largish changes to in-kernel tmx.freq.
1839 * If ntpd was restarted due to e.g. switch to another network,
1840 * this destroys already well-established tmx.freq value.
1841 */
Denys Vlasenko448fdcc2018-03-11 17:08:02 +01001842 if (G.FREQHOLD_cnt < 0) {
1843 /* Initialize it */
1844// Example: a laptop whose clock runs slower when hibernated,
1845// after wake up it still has good tmx.freq, but accumulated ~0.5 sec offset:
1846// Run with code where initial G.FREQHOLD_cnt was always 8:
1847//15:17:52.947 no valid datapoints, no peer selected
1848//15:17:56.515 update from:<IP> offset:+0.485133 delay:0.157762 jitter:0.209310 clock drift:-1.393ppm tc:4
1849//15:17:57.719 update from:<IP> offset:+0.483825 delay:0.158070 jitter:0.181159 clock drift:-1.393ppm tc:4
1850//15:17:59.925 update from:<IP> offset:+0.479504 delay:0.158147 jitter:0.156657 clock drift:-1.393ppm tc:4
1851//15:18:33.322 update from:<IP> offset:+0.428119 delay:0.158317 jitter:0.138071 clock drift:-1.393ppm tc:4
1852//15:19:06.718 update from:<IP> offset:+0.376932 delay:0.158276 jitter:0.122075 clock drift:-1.393ppm tc:4
1853//15:19:39.114 update from:<IP> offset:+0.327022 delay:0.158384 jitter:0.108538 clock drift:-1.393ppm tc:4
1854//15:20:12.715 update from:<IP> offset:+0.275596 delay:0.158297 jitter:0.097292 clock drift:-1.393ppm tc:4
1855//15:20:45.111 update from:<IP> offset:+0.225715 delay:0.158271 jitter:0.087841 clock drift:-1.393ppm tc:4
Denys Vlasenko029bd182018-07-02 16:17:07 +02001856// If allowed to continue, it would start increasing tmx.freq now.
Denys Vlasenko448fdcc2018-03-11 17:08:02 +01001857// Instead, it was ^Ced, and started anew:
1858//15:21:15.043 no valid datapoints, no peer selected
1859//15:21:17.408 update from:<IP> offset:+0.175910 delay:0.158314 jitter:0.076683 clock drift:-1.393ppm tc:4
1860//15:21:19.774 update from:<IP> offset:+0.171784 delay:0.158401 jitter:0.066436 clock drift:-1.393ppm tc:4
1861//15:21:22.140 update from:<IP> offset:+0.171660 delay:0.158592 jitter:0.057536 clock drift:-1.393ppm tc:4
1862//15:21:22.140 update from:<IP> offset:+0.167126 delay:0.158507 jitter:0.049792 clock drift:-1.393ppm tc:4
1863//15:21:55.696 update from:<IP> offset:+0.115223 delay:0.158277 jitter:0.050240 clock drift:-1.393ppm tc:4
1864//15:22:29.093 update from:<IP> offset:+0.068051 delay:0.158243 jitter:0.049405 clock drift:-1.393ppm tc:5
1865//15:23:02.490 update from:<IP> offset:+0.051632 delay:0.158215 jitter:0.043545 clock drift:-1.393ppm tc:5
1866//15:23:34.726 update from:<IP> offset:+0.039984 delay:0.158157 jitter:0.038106 clock drift:-1.393ppm tc:5
1867// STA_FREQHOLD no longer set, started increasing tmx.freq now:
1868//15:24:06.961 update from:<IP> offset:+0.030968 delay:0.158190 jitter:0.033306 clock drift:+2.387ppm tc:5
1869//15:24:40.357 update from:<IP> offset:+0.023648 delay:0.158211 jitter:0.029072 clock drift:+5.454ppm tc:5
1870//15:25:13.774 update from:<IP> offset:+0.018068 delay:0.157660 jitter:0.025288 clock drift:+7.728ppm tc:5
1871//15:26:19.173 update from:<IP> offset:+0.010057 delay:0.157969 jitter:0.022255 clock drift:+8.361ppm tc:6
1872//15:27:26.602 update from:<IP> offset:+0.006737 delay:0.158103 jitter:0.019316 clock drift:+8.792ppm tc:6
1873//15:28:33.030 update from:<IP> offset:+0.004513 delay:0.158294 jitter:0.016765 clock drift:+9.080ppm tc:6
1874//15:29:40.617 update from:<IP> offset:+0.002787 delay:0.157745 jitter:0.014543 clock drift:+9.258ppm tc:6
1875//15:30:47.045 update from:<IP> offset:+0.001324 delay:0.157709 jitter:0.012594 clock drift:+9.342ppm tc:6
1876//15:31:53.473 update from:<IP> offset:+0.000007 delay:0.158142 jitter:0.010922 clock drift:+9.343ppm tc:6
1877//15:32:58.902 update from:<IP> offset:-0.000728 delay:0.158222 jitter:0.009454 clock drift:+9.298ppm tc:6
1878 /*
Denys Vlasenkoea096d62019-10-30 12:13:46 +01001879 * This expression would choose MIN_FREQHOLD + 14 in the above example
1880 * (off_032 is +1 for each 0.032768 seconds of offset).
Denys Vlasenko448fdcc2018-03-11 17:08:02 +01001881 */
Denys Vlasenkoea096d62019-10-30 12:13:46 +01001882 unsigned off_032 = abs((int)(tmx.offset >> 15));
1883 G.FREQHOLD_cnt = 1 + MIN_FREQHOLD + off_032;
Denys Vlasenko448fdcc2018-03-11 17:08:02 +01001884 }
1885 G.FREQHOLD_cnt--;
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +01001886 tmx.status |= STA_FREQHOLD;
1887 }
1888 if (G.ntp_status & LI_PLUSSEC)
1889 tmx.status |= STA_INS;
1890 if (G.ntp_status & LI_MINUSSEC)
1891 tmx.status |= STA_DEL;
1892
Denys Vlasenkofc47fce2016-02-10 06:55:07 +01001893 tmx.constant = (int)G.poll_exp - 4;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001894 /* EXPERIMENTAL.
1895 * The below if statement should be unnecessary, but...
1896 * It looks like Linux kernel's PLL is far too gentle in changing
1897 * tmx.freq in response to clock offset. Offset keeps growing
1898 * and eventually we fall back to smaller poll intervals.
Denys Vlasenko10ad6222017-04-17 16:13:32 +02001899 * We can make correction more aggressive (about x2) by supplying
Denys Vlasenko132b0442012-03-05 00:51:48 +01001900 * PLL time constant which is one less than the real one.
1901 * To be on a safe side, let's do it only if offset is significantly
1902 * larger than jitter.
1903 */
Denys Vlasenkofc47fce2016-02-10 06:55:07 +01001904 if (G.offset_to_jitter_ratio >= TIMECONST_HACK_GATE)
Denys Vlasenko132b0442012-03-05 00:51:48 +01001905 tmx.constant--;
Denys Vlasenko39dfb4d2018-03-10 21:25:53 +01001906 if (tmx.constant < 0)
1907 tmx.constant = 0;
1908
Denys Vlasenko132b0442012-03-05 00:51:48 +01001909 //tmx.esterror = (uint32_t)(clock_jitter * 1e6);
1910 //tmx.maxerror = (uint32_t)((sys_rootdelay / 2 + sys_rootdisp) * 1e6);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001911 rc = adjtimex(&tmx);
1912 if (rc < 0)
James Byrne69374872019-07-02 11:35:03 +02001913 bb_simple_perror_msg_and_die("adjtimex");
Denys Vlasenkod9109e32010-01-02 00:36:43 +01001914 /* NB: here kernel returns constant == G.poll_exp, not == G.poll_exp - 4.
1915 * Not sure why. Perhaps it is normal.
1916 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001917 VERB4 bb_error_msg("adjtimex:%d freq:%ld offset:%+ld status:0x%x",
Denys Vlasenko132b0442012-03-05 00:51:48 +01001918 rc, tmx.freq, tmx.offset, tmx.status);
Denys Vlasenko12628b72010-01-11 01:31:59 +01001919 G.kernel_freq_drift = tmx.freq / 65536;
Denys Vlasenko03718bb2016-02-24 01:22:45 +01001920 VERB2 bb_error_msg("update from:%s offset:%+f delay:%f jitter:%f clock drift:%+.3fppm tc:%d",
1921 p->p_dotted,
1922 offset,
Denys Vlasenko9b1c8bf2018-08-03 11:03:55 +02001923 p->p_raw_delay,
Denys Vlasenko03718bb2016-02-24 01:22:45 +01001924 G.discipline_jitter,
1925 (double)tmx.freq / 65536,
1926 (int)tmx.constant
1927 );
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001928
1929 return 1; /* "ok to increase poll interval" */
1930}
1931
1932
1933/*
1934 * We've got a new reply packet from a peer, process it
1935 * (helpers first)
1936 */
1937static unsigned
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02001938poll_interval(int upper_bound)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001939{
Denys Vlasenko3e78f6f2014-02-09 15:35:04 +01001940 unsigned interval, r, mask;
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02001941 interval = 1 << G.poll_exp;
1942 if (interval > upper_bound)
1943 interval = upper_bound;
Denys Vlasenko3e78f6f2014-02-09 15:35:04 +01001944 mask = ((interval-1) >> 4) | 1;
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +01001945 r = rand();
Denys Vlasenko3e78f6f2014-02-09 15:35:04 +01001946 interval += r & mask; /* ~ random(0..1) * interval/16 */
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02001947 VERB4 bb_error_msg("chose poll interval:%u (poll_exp:%d)", interval, G.poll_exp);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001948 return interval;
1949}
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02001950static void
Miroslav Lichvar590a22c2014-09-18 16:19:05 +02001951adjust_poll(int count)
1952{
1953 G.polladj_count += count;
1954 if (G.polladj_count > POLLADJ_LIMIT) {
1955 G.polladj_count = 0;
1956 if (G.poll_exp < MAXPOLL) {
1957 G.poll_exp++;
1958 VERB4 bb_error_msg("polladj: discipline_jitter:%f ++poll_exp=%d",
1959 G.discipline_jitter, G.poll_exp);
1960 }
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02001961 } else if (G.polladj_count < -POLLADJ_LIMIT || (count < 0 && G.poll_exp > BIGPOLL)) {
Miroslav Lichvar590a22c2014-09-18 16:19:05 +02001962 G.polladj_count = 0;
1963 if (G.poll_exp > MINPOLL) {
1964 llist_t *item;
1965
1966 G.poll_exp--;
1967 /* Correct p->next_action_time in each peer
1968 * which waits for sending, so that they send earlier.
1969 * Old pp->next_action_time are on the order
1970 * of t + (1 << old_poll_exp) + small_random,
1971 * we simply need to subtract ~half of that.
1972 */
1973 for (item = G.ntp_peers; item != NULL; item = item->link) {
1974 peer_t *pp = (peer_t *) item->data;
1975 if (pp->p_fd < 0)
1976 pp->next_action_time -= (1 << G.poll_exp);
1977 }
1978 VERB4 bb_error_msg("polladj: discipline_jitter:%f --poll_exp=%d",
1979 G.discipline_jitter, G.poll_exp);
1980 }
1981 } else {
1982 VERB4 bb_error_msg("polladj: count:%d", G.polladj_count);
1983 }
1984}
1985static NOINLINE void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001986recv_and_process_peer_pkt(peer_t *p)
1987{
1988 int rc;
1989 ssize_t size;
1990 msg_t msg;
1991 double T1, T2, T3, T4;
Denys Vlasenkod531f932014-04-19 19:00:16 +02001992 double offset;
1993 double prev_delay, delay;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001994 unsigned interval;
1995 datapoint_t *datapoint;
1996 peer_t *q;
1997
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001998 offset = 0;
1999
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002000 /* We can recvfrom here and check from.IP, but some multihomed
2001 * ntp servers reply from their *other IP*.
2002 * TODO: maybe we should check at least what we can: from.port == 123?
2003 */
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002004 recv_again:
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002005 size = recv(p->p_fd, &msg, sizeof(msg), MSG_DONTWAIT);
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002006 if (size < 0) {
2007 if (errno == EINTR)
2008 /* Signal caught */
2009 goto recv_again;
2010 if (errno == EAGAIN)
2011 /* There was no packet after all
2012 * (poll() returning POLLIN for a fd
2013 * is not a ironclad guarantee that data is there)
2014 */
2015 return;
2016 /*
2017 * If you need a different handling for a specific
2018 * errno, always explain it in comment.
2019 */
2020 bb_perror_msg_and_die("recv(%s) error", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002021 }
2022
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002023#if ENABLE_FEATURE_NTP_AUTH
2024 if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE_MD5_AUTH && size != NTP_MSGSIZE_SHA1_AUTH) {
Denys Vlasenkoc0961e02019-07-02 13:10:19 +02002025 bb_error_msg("malformed packet received from %s: size %u", p->p_dotted, (int)size);
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02002026 return;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002027 }
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002028 if (p->key_entry && hashes_differ(p, &msg)) {
2029 bb_error_msg("invalid cryptographic hash received from %s", p->p_dotted);
2030 return;
2031 }
2032#else
2033 if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE_MD5_AUTH) {
Denys Vlasenkoc0961e02019-07-02 13:10:19 +02002034 bb_error_msg("malformed packet received from %s: size %u", p->p_dotted, (int)size);
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002035 return;
2036 }
2037#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002038
2039 if (msg.m_orgtime.int_partl != p->p_xmt_msg.m_xmttime.int_partl
2040 || msg.m_orgtime.fractionl != p->p_xmt_msg.m_xmttime.fractionl
2041 ) {
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02002042 /* Somebody else's packet */
2043 return;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002044 }
2045
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02002046 /* We do not expect any more packets from this peer for now.
2047 * Closing the socket informs kernel about it.
2048 * We open a new socket when we send a new query.
2049 */
2050 close(p->p_fd);
2051 p->p_fd = -1;
2052
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002053 if ((msg.m_status & LI_ALARM) == LI_ALARM
2054 || msg.m_stratum == 0
2055 || msg.m_stratum > NTP_MAXSTRATUM
2056 ) {
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002057 bb_error_msg("reply from %s: peer is unsynced", p->p_dotted);
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002058 /*
2059 * Stratum 0 responses may have commands in 32-bit m_refid field:
2060 * "DENY", "RSTR" - peer does not like us at all,
2061 * "RATE" - peer is overloaded, reduce polling freq.
2062 * If poll interval is small, increase it.
2063 */
2064 if (G.poll_exp < BIGPOLL)
2065 goto increase_interval;
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002066 goto pick_normal_interval;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002067 }
2068
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002069// /* Verify valid root distance */
2070// if (msg.m_rootdelay / 2 + msg.m_rootdisp >= MAXDISP || p->lastpkt_reftime > msg.m_xmt)
2071// return; /* invalid header values */
2072
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002073 /*
2074 * From RFC 2030 (with a correction to the delay math):
2075 *
2076 * Timestamp Name ID When Generated
2077 * ------------------------------------------------------------
2078 * Originate Timestamp T1 time request sent by client
2079 * Receive Timestamp T2 time request received by server
2080 * Transmit Timestamp T3 time reply sent by server
2081 * Destination Timestamp T4 time reply received by client
2082 *
2083 * The roundtrip delay and local clock offset are defined as
2084 *
2085 * delay = (T4 - T1) - (T3 - T2); offset = ((T2 - T1) + (T3 - T4)) / 2
2086 */
2087 T1 = p->p_xmttime;
2088 T2 = lfp_to_d(msg.m_rectime);
2089 T3 = lfp_to_d(msg.m_xmttime);
Denys Vlasenko0b002812010-01-03 08:59:59 +01002090 T4 = G.cur_time;
Denys Vlasenko9b1c8bf2018-08-03 11:03:55 +02002091 delay = (T4 - T1) - (T3 - T2);
2092
2093 /*
2094 * If this packet's delay is much bigger than the last one,
2095 * it's better to just ignore it than use its much less precise value.
2096 */
2097 prev_delay = p->p_raw_delay;
2098 p->p_raw_delay = (delay < 0 ? 0.0 : delay);
2099 if (p->reachable_bits
2100 && delay > prev_delay * BAD_DELAY_GROWTH
2101 && delay > 1.0 / (8 * 1024) /* larger than ~0.000122 */
2102 ) {
2103 bb_error_msg("reply from %s: delay %f is too high, ignoring", p->p_dotted, delay);
2104 goto pick_normal_interval;
2105 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002106
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002107 /* The delay calculation is a special case. In cases where the
2108 * server and client clocks are running at different rates and
2109 * with very fast networks, the delay can appear negative. In
2110 * order to avoid violating the Principle of Least Astonishment,
2111 * the delay is clamped not less than the system precision.
2112 */
Denys Vlasenkod531f932014-04-19 19:00:16 +02002113 if (delay < G_precision_sec)
2114 delay = G_precision_sec;
Denys Vlasenkod531f932014-04-19 19:00:16 +02002115 p->lastpkt_delay = delay;
2116 p->lastpkt_recv_time = T4;
2117 VERB6 bb_error_msg("%s->lastpkt_recv_time=%f", p->p_dotted, p->lastpkt_recv_time);
2118 p->lastpkt_status = msg.m_status;
2119 p->lastpkt_stratum = msg.m_stratum;
2120 p->lastpkt_rootdelay = sfp_to_d(msg.m_rootdelay);
2121 p->lastpkt_rootdisp = sfp_to_d(msg.m_rootdisp);
2122 p->lastpkt_refid = msg.m_refid;
2123
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002124 p->datapoint_idx = p->reachable_bits ? (p->datapoint_idx + 1) % NUM_DATAPOINTS : 0;
2125 datapoint = &p->filter_datapoint[p->datapoint_idx];
2126 datapoint->d_recv_time = T4;
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01002127 datapoint->d_offset = offset = ((T2 - T1) + (T3 - T4)) / 2;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002128 datapoint->d_dispersion = LOG2D(msg.m_precision_exp) + G_precision_sec;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002129 if (!p->reachable_bits) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002130 /* 1st datapoint ever - replicate offset in every element */
2131 int i;
Denys Vlasenko132b0442012-03-05 00:51:48 +01002132 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01002133 p->filter_datapoint[i].d_offset = offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002134 }
2135 }
2136
Denys Vlasenko0b002812010-01-03 08:59:59 +01002137 p->reachable_bits |= 1;
Denys Vlasenko074e8dc2010-01-04 23:58:13 +01002138 if ((MAX_VERBOSE && G.verbose) || (option_mask32 & OPT_w)) {
James Byrne253c4e72019-04-12 17:01:51 +00002139 bb_info_msg("reply from %s: offset:%+f delay:%f status:0x%02x strat:%d refid:0x%08x rootdelay:%f reach:0x%02x",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002140 p->p_dotted,
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01002141 offset,
Denys Vlasenko9b1c8bf2018-08-03 11:03:55 +02002142 p->p_raw_delay,
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01002143 p->lastpkt_status,
2144 p->lastpkt_stratum,
2145 p->lastpkt_refid,
Denys Vlasenkod98dc922012-03-08 03:27:49 +01002146 p->lastpkt_rootdelay,
2147 p->reachable_bits
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01002148 /* not shown: m_ppoll, m_precision_exp, m_rootdisp,
2149 * m_reftime, m_orgtime, m_rectime, m_xmttime
2150 */
2151 );
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002152 }
2153
2154 /* Muck with statictics and update the clock */
Denys Vlasenko0b002812010-01-03 08:59:59 +01002155 filter_datapoints(p);
2156 q = select_and_cluster();
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002157 rc = 0;
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01002158 if (q) {
Denys Vlasenko12628b72010-01-11 01:31:59 +01002159 if (!(option_mask32 & OPT_w)) {
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01002160 rc = update_local_clock(q);
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002161#if 0
2162//Disabled this because there is a case where largish offsets
2163//are unavoidable: if network round-trip delay is, say, ~0.6s,
2164//error in offset estimation would be ~delay/2 ~= 0.3s.
2165//Thus, offsets will be usually in -0.3...0.3s range.
2166//In this case, this code would keep poll interval small,
2167//but it won't be helping.
2168//BIGOFF check below deals with a case of seeing multi-second offsets.
2169
Denys Vlasenko12628b72010-01-11 01:31:59 +01002170 /* If drift is dangerously large, immediately
2171 * drop poll interval one step down.
2172 */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01002173 if (fabs(q->filter_offset) >= POLLDOWN_OFFSET) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01002174 VERB4 bb_error_msg("offset:%+f > POLLDOWN_OFFSET", q->filter_offset);
Miroslav Lichvar590a22c2014-09-18 16:19:05 +02002175 adjust_poll(-POLLADJ_LIMIT * 3);
2176 rc = 0;
Denys Vlasenko12628b72010-01-11 01:31:59 +01002177 }
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002178#endif
Denys Vlasenko12628b72010-01-11 01:31:59 +01002179 }
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002180 } else {
2181 /* No peer selected.
2182 * If poll interval is small, increase it.
2183 */
2184 if (G.poll_exp < BIGPOLL)
2185 goto increase_interval;
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01002186 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002187
2188 if (rc != 0) {
2189 /* Adjust the poll interval by comparing the current offset
2190 * with the clock jitter. If the offset is less than
2191 * the clock jitter times a constant, then the averaging interval
2192 * is increased, otherwise it is decreased. A bit of hysteresis
2193 * helps calm the dance. Works best using burst mode.
2194 */
Denys Vlasenko547ee792012-03-05 10:18:00 +01002195 if (rc > 0 && G.offset_to_jitter_ratio <= POLLADJ_GATE) {
Denys Vlasenkobfc2a322010-01-01 18:12:06 +01002196 /* was += G.poll_exp but it is a bit
2197 * too optimistic for my taste at high poll_exp's */
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002198 increase_interval:
Miroslav Lichvar590a22c2014-09-18 16:19:05 +02002199 adjust_poll(MINPOLL);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002200 } else {
Denys Vlasenkofc47fce2016-02-10 06:55:07 +01002201 VERB3 if (rc > 0)
Denys Vlasenko4c48a642016-03-03 22:01:23 +01002202 bb_error_msg("want smaller interval: offset/jitter = %u",
2203 G.offset_to_jitter_ratio);
Miroslav Lichvar590a22c2014-09-18 16:19:05 +02002204 adjust_poll(-G.poll_exp * 2);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002205 }
2206 }
2207
2208 /* Decide when to send new query for this peer */
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002209 pick_normal_interval:
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02002210 interval = poll_interval(INT_MAX);
2211 if (fabs(offset) >= BIGOFF && interval > BIGOFF_INTERVAL) {
Denys Vlasenkofc47fce2016-02-10 06:55:07 +01002212 /* If we are synced, offsets are less than SLEW_THRESHOLD,
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01002213 * or at the very least not much larger than it.
2214 * Now we see a largish one.
2215 * Either this peer is feeling bad, or packet got corrupted,
2216 * or _our_ clock is wrong now and _all_ peers will show similar
2217 * largish offsets too.
2218 * I observed this with laptop suspend stopping clock.
2219 * In any case, it makes sense to make next request soonish:
2220 * cases 1 and 2: get a better datapoint,
2221 * case 3: allows to resync faster.
2222 */
2223 interval = BIGOFF_INTERVAL;
2224 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002225
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01002226 set_next(p, interval);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002227}
2228
2229#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko0b002812010-01-03 08:59:59 +01002230static NOINLINE void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002231recv_and_process_client_pkt(void /*int fd*/)
2232{
2233 ssize_t size;
Cristian Ionescu-Idbohrn662972a2011-05-16 03:53:00 +02002234 //uint8_t version;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002235 len_and_sockaddr *to;
2236 struct sockaddr *from;
2237 msg_t msg;
2238 uint8_t query_status;
2239 l_fixedpt_t query_xmttime;
2240
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002241 to = get_sock_lsa(G_listen_fd);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002242 from = xzalloc(to->len);
2243
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002244 size = recv_from_to(G_listen_fd, &msg, sizeof(msg), MSG_DONTWAIT, from, &to->u.sa, to->len);
Denys Vlasenkob6946082019-07-02 15:03:47 +02002245
2246 /* "ntpq -p" (4.2.8p13) sends a 12-byte NTPv2 request:
2247 * m_status is 0x16: leap:0 version:2 mode:6(reserved1)
2248 * https://docs.ntpsec.org/latest/mode6.html
2249 * We don't support this.
2250 */
2251
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002252#if ENABLE_FEATURE_NTP_AUTH
2253 if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE_MD5_AUTH && size != NTP_MSGSIZE_SHA1_AUTH)
2254#else
2255 if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE_MD5_AUTH)
2256#endif
2257 {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002258 char *addr;
2259 if (size < 0) {
2260 if (errno == EAGAIN)
2261 goto bail;
James Byrne69374872019-07-02 11:35:03 +02002262 bb_simple_perror_msg_and_die("recv");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002263 }
2264 addr = xmalloc_sockaddr2dotted_noport(from);
2265 bb_error_msg("malformed packet received from %s: size %u", addr, (int)size);
2266 free(addr);
2267 goto bail;
2268 }
2269
Miroslav Lichvar150dc7a2016-08-01 20:24:24 +02002270 /* Respond only to client and symmetric active packets */
2271 if ((msg.m_status & MODE_MASK) != MODE_CLIENT
2272 && (msg.m_status & MODE_MASK) != MODE_SYM_ACT
2273 ) {
2274 goto bail;
2275 }
2276
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002277 query_status = msg.m_status;
2278 query_xmttime = msg.m_xmttime;
2279
2280 /* Build a reply packet */
2281 memset(&msg, 0, sizeof(msg));
Paul Marksb7841cf2013-01-14 02:39:10 +01002282 msg.m_status = G.stratum < MAXSTRAT ? (G.ntp_status & LI_MASK) : LI_ALARM;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002283 msg.m_status |= (query_status & VERSION_MASK);
2284 msg.m_status |= ((query_status & MODE_MASK) == MODE_CLIENT) ?
Denys Vlasenko69675782013-01-14 01:34:48 +01002285 MODE_SERVER : MODE_SYM_PAS;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002286 msg.m_stratum = G.stratum;
2287 msg.m_ppoll = G.poll_exp;
2288 msg.m_precision_exp = G_precision_exp;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002289 /* this time was obtained between poll() and recv() */
2290 msg.m_rectime = d_to_lfp(G.cur_time);
2291 msg.m_xmttime = d_to_lfp(gettime1900d()); /* this instant */
Denys Vlasenkod6782572010-10-04 01:20:44 +02002292 if (G.peer_cnt == 0) {
2293 /* we have no peers: "stratum 1 server" mode. reftime = our own time */
2294 G.reftime = G.cur_time;
2295 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002296 msg.m_reftime = d_to_lfp(G.reftime);
2297 msg.m_orgtime = query_xmttime;
2298 msg.m_rootdelay = d_to_sfp(G.rootdelay);
2299//simple code does not do this, fix simple code!
2300 msg.m_rootdisp = d_to_sfp(G.rootdisp);
Cristian Ionescu-Idbohrn662972a2011-05-16 03:53:00 +02002301 //version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002302 msg.m_refid = G.refid; // (version > (3 << VERSION_SHIFT)) ? G.refid : G.refid3;
2303
2304 /* We reply from the local address packet was sent to,
2305 * this makes to/from look swapped here: */
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002306 do_sendto(G_listen_fd,
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002307 /*from:*/ &to->u.sa, /*to:*/ from, /*addrlen:*/ to->len,
2308 &msg, size);
2309
2310 bail:
2311 free(to);
2312 free(from);
2313}
2314#endif
2315
2316/* Upstream ntpd's options:
2317 *
2318 * -4 Force DNS resolution of host names to the IPv4 namespace.
2319 * -6 Force DNS resolution of host names to the IPv6 namespace.
2320 * -a Require cryptographic authentication for broadcast client,
2321 * multicast client and symmetric passive associations.
2322 * This is the default.
2323 * -A Do not require cryptographic authentication for broadcast client,
2324 * multicast client and symmetric passive associations.
2325 * This is almost never a good idea.
2326 * -b Enable the client to synchronize to broadcast servers.
2327 * -c conffile
2328 * Specify the name and path of the configuration file,
2329 * default /etc/ntp.conf
2330 * -d Specify debugging mode. This option may occur more than once,
2331 * with each occurrence indicating greater detail of display.
2332 * -D level
2333 * Specify debugging level directly.
2334 * -f driftfile
2335 * Specify the name and path of the frequency file.
2336 * This is the same operation as the "driftfile FILE"
2337 * configuration command.
2338 * -g Normally, ntpd exits with a message to the system log
2339 * if the offset exceeds the panic threshold, which is 1000 s
2340 * by default. This option allows the time to be set to any value
2341 * without restriction; however, this can happen only once.
2342 * If the threshold is exceeded after that, ntpd will exit
2343 * with a message to the system log. This option can be used
2344 * with the -q and -x options. See the tinker command for other options.
2345 * -i jaildir
2346 * Chroot the server to the directory jaildir. This option also implies
2347 * that the server attempts to drop root privileges at startup
2348 * (otherwise, chroot gives very little additional security).
2349 * You may need to also specify a -u option.
2350 * -k keyfile
2351 * Specify the name and path of the symmetric key file,
2352 * default /etc/ntp/keys. This is the same operation
2353 * as the "keys FILE" configuration command.
2354 * -l logfile
2355 * Specify the name and path of the log file. The default
2356 * is the system log file. This is the same operation as
2357 * the "logfile FILE" configuration command.
2358 * -L Do not listen to virtual IPs. The default is to listen.
2359 * -n Don't fork.
2360 * -N To the extent permitted by the operating system,
2361 * run the ntpd at the highest priority.
2362 * -p pidfile
2363 * Specify the name and path of the file used to record the ntpd
2364 * process ID. This is the same operation as the "pidfile FILE"
2365 * configuration command.
2366 * -P priority
2367 * To the extent permitted by the operating system,
2368 * run the ntpd at the specified priority.
2369 * -q Exit the ntpd just after the first time the clock is set.
2370 * This behavior mimics that of the ntpdate program, which is
2371 * to be retired. The -g and -x options can be used with this option.
2372 * Note: The kernel time discipline is disabled with this option.
2373 * -r broadcastdelay
2374 * Specify the default propagation delay from the broadcast/multicast
2375 * server to this client. This is necessary only if the delay
2376 * cannot be computed automatically by the protocol.
2377 * -s statsdir
2378 * Specify the directory path for files created by the statistics
2379 * facility. This is the same operation as the "statsdir DIR"
2380 * configuration command.
2381 * -t key
2382 * Add a key number to the trusted key list. This option can occur
2383 * more than once.
2384 * -u user[:group]
2385 * Specify a user, and optionally a group, to switch to.
2386 * -v variable
2387 * -V variable
2388 * Add a system variable listed by default.
2389 * -x Normally, the time is slewed if the offset is less than the step
2390 * threshold, which is 128 ms by default, and stepped if above
2391 * the threshold. This option sets the threshold to 600 s, which is
2392 * well within the accuracy window to set the clock manually.
2393 * Note: since the slew rate of typical Unix kernels is limited
2394 * to 0.5 ms/s, each second of adjustment requires an amortization
2395 * interval of 2000 s. Thus, an adjustment as much as 600 s
2396 * will take almost 14 days to complete. This option can be used
2397 * with the -g and -q options. See the tinker command for other options.
2398 * Note: The kernel time discipline is disabled with this option.
2399 */
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002400#if ENABLE_FEATURE_NTP_AUTH
2401static key_entry_t *
2402find_key_entry(llist_t *key_entries, unsigned id)
2403{
2404 while (key_entries) {
2405 key_entry_t *cur = (key_entry_t*) key_entries->data;
2406 if (cur->id == id)
2407 return cur;
2408 key_entries = key_entries->link;
2409 }
2410 bb_error_msg_and_die("key %u is not defined", id);
2411}
2412#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002413
2414/* By doing init in a separate function we decrease stack usage
2415 * in main loop.
2416 */
2417static NOINLINE void ntp_init(char **argv)
2418{
2419 unsigned opts;
2420 llist_t *peers;
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002421#if ENABLE_FEATURE_NTP_AUTH
2422 llist_t *key_entries;
2423 char *key_file_path;
2424#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002425
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +01002426 srand(getpid());
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002427
2428 if (getuid())
James Byrne69374872019-07-02 11:35:03 +02002429 bb_simple_error_msg_and_die(bb_msg_you_must_be_root);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002430
2431 /* Set some globals */
Miroslav Lichvar760d0352014-10-05 03:10:15 +02002432 G.discipline_jitter = G_precision_sec;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002433 G.stratum = MAXSTRAT;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002434 if (BURSTPOLL != 0)
2435 G.poll_exp = BURSTPOLL; /* speeds up initial sync */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002436 G.last_script_run = G.reftime = G.last_update_recv_time = gettime1900d(); /* sets G.cur_time too */
Denys Vlasenko448fdcc2018-03-11 17:08:02 +01002437 G.FREQHOLD_cnt = -1;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002438
2439 /* Parse options */
2440 peers = NULL;
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002441 IF_FEATURE_NTP_AUTH(key_entries = NULL;)
Denys Vlasenko22542ec2017-08-08 21:55:02 +02002442 opts = getopt32(argv, "^"
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002443 "nqNx" /* compat */
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002444 IF_FEATURE_NTP_AUTH("k:") /* compat */
Denys Vlasenko237bedd2016-07-06 21:58:02 +02002445 "wp:*S:"IF_FEATURE_NTPD_SERVER("l") /* NOT compat */
Denys Vlasenko278842d2014-07-15 15:06:54 +02002446 IF_FEATURE_NTPD_SERVER("I:") /* compat */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002447 "d" /* compat */
Denys Vlasenko8b77a9e2017-08-23 15:08:25 +02002448 "46aAbgL" /* compat, ignored */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02002449 "\0"
Denys Vlasenkocaecfdc2019-07-02 11:28:18 +02002450 "=0" /* should have no arguments */
2451 ":dd:wn" /* -d: counter; -p: list; -w implies -n */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02002452 IF_FEATURE_NTPD_SERVER(":Il") /* -I implies -l */
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002453 IF_FEATURE_NTP_AUTH(, &key_file_path)
2454 , &peers, &G.script_name
2455 IF_FEATURE_NTPD_SERVER(, &G.if_name)
2456 , &G.verbose
2457 );
Denys Vlasenko504fe452014-03-23 15:06:38 +01002458
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002459// if (opts & OPT_x) /* disable stepping, only slew is allowed */
2460// G.time_was_stepped = 1;
Denys Vlasenkoaabb0a92016-07-03 17:58:54 +02002461
2462#if ENABLE_FEATURE_NTPD_SERVER
2463 G_listen_fd = -1;
2464 if (opts & OPT_l) {
2465 G_listen_fd = create_and_bind_dgram_or_die(NULL, 123);
2466 if (G.if_name) {
2467 if (setsockopt_bindtodevice(G_listen_fd, G.if_name))
2468 xfunc_die();
2469 }
2470 socket_want_pktinfo(G_listen_fd);
Codarren Velvindron7c43d432018-04-15 20:37:50 +04002471 setsockopt_int(G_listen_fd, IPPROTO_IP, IP_TOS, IPTOS_DSCP_AF21);
Denys Vlasenkoaabb0a92016-07-03 17:58:54 +02002472 }
2473#endif
2474 /* I hesitate to set -20 prio. -15 should be high enough for timekeeping */
2475 if (opts & OPT_N)
2476 setpriority(PRIO_PROCESS, 0, -15);
2477
Denys Vlasenkoaabb0a92016-07-03 17:58:54 +02002478 if (!(opts & OPT_n)) {
2479 bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO, argv);
2480 logmode = LOGMODE_NONE;
2481 }
2482
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002483#if ENABLE_FEATURE_NTP_AUTH
2484 if (opts & OPT_k) {
2485 char *tokens[4];
2486 parser_t *parser;
2487
2488 parser = config_open(key_file_path);
2489 while (config_read(parser, tokens, 4, 3, "# \t", PARSE_NORMAL | PARSE_MIN_DIE) == 3) {
2490 key_entry_t *key_entry;
2491 char buffer[40];
2492 smalluint hash_type;
2493 smalluint msg_size;
2494 smalluint key_length;
2495 char *key;
2496
2497 if ((tokens[1][0] | 0x20) == 'm')
2498 /* supports 'M' and 'md5' formats */
2499 hash_type = HASH_MD5;
2500 else
2501 if (strncasecmp(tokens[1], "sha", 3) == 0)
2502 /* supports 'sha' and 'sha1' formats */
2503 hash_type = HASH_SHA1;
2504 else
James Byrne69374872019-07-02 11:35:03 +02002505 bb_simple_error_msg_and_die("only MD5 and SHA1 keys supported");
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002506/* man ntp.keys:
2507 * MD5 The key is 1 to 16 printable characters terminated by an EOL,
2508 * whitespace, or a # (which is the "start of comment" character).
2509 * SHA
2510 * SHA1
2511 * RMD160 The key is a hex-encoded ASCII string of 40 characters, which
2512 * is truncated as necessary.
2513 */
2514 key_length = strnlen(tokens[2], sizeof(buffer)+1);
2515 if (key_length >= sizeof(buffer)+1) {
2516 err:
2517 bb_error_msg_and_die("malformed key at line %u", parser->lineno);
2518 }
2519 if (hash_type == HASH_MD5) {
2520 key = tokens[2];
2521 msg_size = NTP_MSGSIZE_MD5_AUTH;
2522 } else /* it's hash_type == HASH_SHA1 */
2523 if (!(key_length & 1)) {
2524 key_length >>= 1;
2525 if (!hex2bin(buffer, tokens[2], key_length))
2526 goto err;
2527 key = buffer;
2528 msg_size = NTP_MSGSIZE_SHA1_AUTH;
2529 } else {
2530 goto err;
2531 }
2532 key_entry = xzalloc(sizeof(*key_entry) + key_length);
2533 key_entry->type = hash_type;
2534 key_entry->msg_size = msg_size;
2535 key_entry->key_length = key_length;
2536 memcpy(key_entry->key, key, key_length);
2537 key_entry->id = xatou_range(tokens[0], 1, MAX_KEY_NUMBER);
2538 llist_add_to(&key_entries, key_entry);
2539 }
2540 config_close(parser);
2541 }
2542#endif
Denys Vlasenkod6782572010-10-04 01:20:44 +02002543 if (peers) {
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002544#if ENABLE_FEATURE_NTP_AUTH
2545 while (peers) {
2546 char *peer = llist_pop(&peers);
2547 key_entry_t *key_entry = NULL;
2548 if (strncmp(peer, "keyno:", 6) == 0) {
2549 char *end;
2550 int key_id;
2551 peer += 6;
2552 end = strchr(peer, ':');
Denys Vlasenko0d18e5c2018-11-25 00:42:56 +01002553 if (!end) bb_show_usage();
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002554 *end = '\0';
2555 key_id = xatou_range(peer, 1, MAX_KEY_NUMBER);
2556 *end = ':';
2557 key_entry = find_key_entry(key_entries, key_id);
2558 peer = end + 1;
2559 }
2560 add_peers(peer, key_entry);
2561 }
2562#else
Denys Vlasenkod6782572010-10-04 01:20:44 +02002563 while (peers)
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002564 add_peers(llist_pop(&peers), NULL);
2565#endif
Denys Vlasenko504fe452014-03-23 15:06:38 +01002566 }
2567#if ENABLE_FEATURE_NTPD_CONF
2568 else {
2569 parser_t *parser;
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002570 char *token[3 + 2*ENABLE_FEATURE_NTP_AUTH];
Denys Vlasenko504fe452014-03-23 15:06:38 +01002571
2572 parser = config_open("/etc/ntp.conf");
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002573 while (config_read(parser, token, 3 + 2*ENABLE_FEATURE_NTP_AUTH, 1, "# \t", PARSE_NORMAL)) {
Denys Vlasenko504fe452014-03-23 15:06:38 +01002574 if (strcmp(token[0], "server") == 0 && token[1]) {
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002575# if ENABLE_FEATURE_NTP_AUTH
2576 key_entry_t *key_entry = NULL;
2577 if (token[2] && token[3] && strcmp(token[2], "key") == 0) {
2578 unsigned key_id = xatou_range(token[3], 1, MAX_KEY_NUMBER);
2579 key_entry = find_key_entry(key_entries, key_id);
2580 }
2581 add_peers(token[1], key_entry);
2582# else
2583 add_peers(token[1], NULL);
2584# endif
Denys Vlasenko504fe452014-03-23 15:06:38 +01002585 continue;
2586 }
2587 bb_error_msg("skipping %s:%u: unimplemented command '%s'",
2588 "/etc/ntp.conf", parser->lineno, token[0]
2589 );
2590 }
2591 config_close(parser);
2592 }
2593#endif
2594 if (G.peer_cnt == 0) {
2595 if (!(opts & OPT_l))
2596 bb_show_usage();
Denys Vlasenkod6782572010-10-04 01:20:44 +02002597 /* -l but no peers: "stratum 1 server" mode */
2598 G.stratum = 1;
2599 }
Denys Vlasenkoda996c52019-03-27 13:37:40 +01002600
2601 if (!(opts & OPT_n)) /* only if backgrounded: */
2602 write_pidfile_std_path_and_ext("ntpd");
2603
Denys Vlasenko74c992a2010-08-27 02:15:01 +02002604 /* If network is up, syncronization occurs in ~10 seconds.
Denys Vlasenko8e23faf2011-04-07 01:45:20 +02002605 * We give "ntpd -q" 10 seconds to get first reply,
2606 * then another 50 seconds to finish syncing.
Denys Vlasenko74c992a2010-08-27 02:15:01 +02002607 *
2608 * I tested ntpd 4.2.6p1 and apparently it never exits
2609 * (will try forever), but it does not feel right.
2610 * The goal of -q is to act like ntpdate: set time
2611 * after a reasonably small period of polling, or fail.
2612 */
Denys Vlasenko8e23faf2011-04-07 01:45:20 +02002613 if (opts & OPT_q) {
2614 option_mask32 |= OPT_qq;
2615 alarm(10);
2616 }
Denys Vlasenko74c992a2010-08-27 02:15:01 +02002617
2618 bb_signals(0
2619 | (1 << SIGTERM)
2620 | (1 << SIGINT)
2621 | (1 << SIGALRM)
2622 , record_signo
2623 );
2624 bb_signals(0
2625 | (1 << SIGPIPE)
2626 | (1 << SIGCHLD)
2627 , SIG_IGN
2628 );
Brandon P. Enochsa5413142018-10-27 18:55:59 +02002629//TODO: free unused elements of key_entries?
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002630}
2631
2632int ntpd_main(int argc UNUSED_PARAM, char **argv) MAIN_EXTERNALLY_VISIBLE;
2633int ntpd_main(int argc UNUSED_PARAM, char **argv)
2634{
Denys Vlasenko0b002812010-01-03 08:59:59 +01002635#undef G
2636 struct globals G;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002637 struct pollfd *pfd;
2638 peer_t **idx2peer;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002639 unsigned cnt;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002640
Denys Vlasenko0b002812010-01-03 08:59:59 +01002641 memset(&G, 0, sizeof(G));
2642 SET_PTR_TO_GLOBALS(&G);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002643
2644 ntp_init(argv);
2645
Denys Vlasenko0b002812010-01-03 08:59:59 +01002646 /* If ENABLE_FEATURE_NTPD_SERVER, + 1 for listen_fd: */
2647 cnt = G.peer_cnt + ENABLE_FEATURE_NTPD_SERVER;
2648 idx2peer = xzalloc(sizeof(idx2peer[0]) * cnt);
2649 pfd = xzalloc(sizeof(pfd[0]) * cnt);
2650
Leonid Lisovskiy894ef602010-10-20 22:36:51 +02002651 /* Countdown: we never sync before we sent INITIAL_SAMPLES+1
Denys Vlasenko65d722b2010-01-11 02:14:04 +01002652 * packets to each peer.
Denys Vlasenko0b002812010-01-03 08:59:59 +01002653 * NB: if some peer is not responding, we may end up sending
2654 * fewer packets to it and more to other peers.
Leonid Lisovskiy894ef602010-10-20 22:36:51 +02002655 * NB2: sync usually happens using INITIAL_SAMPLES packets,
Denys Vlasenko65d722b2010-01-11 02:14:04 +01002656 * since last reply does not come back instantaneously.
Denys Vlasenko0b002812010-01-03 08:59:59 +01002657 */
Leonid Lisovskiy894ef602010-10-20 22:36:51 +02002658 cnt = G.peer_cnt * (INITIAL_SAMPLES + 1);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002659
2660 while (!bb_got_signal) {
2661 llist_t *item;
2662 unsigned i, j;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002663 int nfds, timeout;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002664 double nextaction;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002665
2666 /* Nothing between here and poll() blocks for any significant time */
2667
Denys Vlasenko36acc462017-12-26 20:19:37 +01002668 nextaction = G.last_script_run + (11*60);
2669 if (nextaction < G.cur_time + 1)
2670 nextaction = G.cur_time + 1;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002671
2672 i = 0;
2673#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002674 if (G_listen_fd != -1) {
2675 pfd[0].fd = G_listen_fd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002676 pfd[0].events = POLLIN;
2677 i++;
2678 }
2679#endif
2680 /* Pass over peer list, send requests, time out on receives */
Denys Vlasenko0b002812010-01-03 08:59:59 +01002681 for (item = G.ntp_peers; item != NULL; item = item->link) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002682 peer_t *p = (peer_t *) item->data;
2683
Denys Vlasenko0b002812010-01-03 08:59:59 +01002684 if (p->next_action_time <= G.cur_time) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002685 if (p->p_fd == -1) {
2686 /* Time to send new req */
Denys Vlasenko0b002812010-01-03 08:59:59 +01002687 if (--cnt == 0) {
James Byrne69374872019-07-02 11:35:03 +02002688 VERB4 bb_simple_error_msg("disabling burst mode");
Miroslav Lichvarfb143f72014-09-18 16:19:03 +02002689 G.polladj_count = 0;
2690 G.poll_exp = MINPOLL;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002691 }
2692 send_query_to_peer(p);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002693 } else {
2694 /* Timed out waiting for reply */
2695 close(p->p_fd);
2696 p->p_fd = -1;
Miroslav Lichvarb434ce72014-10-02 17:18:43 +02002697 /* If poll interval is small, increase it */
2698 if (G.poll_exp < BIGPOLL)
2699 adjust_poll(MINPOLL);
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02002700 timeout = poll_interval(NOREPLY_INTERVAL);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002701 bb_error_msg("timed out waiting for %s, reach 0x%02x, next query in %us",
Denys Vlasenko0b002812010-01-03 08:59:59 +01002702 p->p_dotted, p->reachable_bits, timeout);
Denys Vlasenkoc8641962016-03-04 07:26:08 +01002703
2704 /* What if don't see it because it changed its IP? */
Denys Vlasenkoe4caf1d2016-06-06 02:26:49 +02002705 if (p->reachable_bits == 0)
Natanael Copab62ea342017-01-06 16:18:45 +01002706 resolve_peer_hostname(p);
Denys Vlasenkoc8641962016-03-04 07:26:08 +01002707
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002708 set_next(p, timeout);
2709 }
2710 }
2711
2712 if (p->next_action_time < nextaction)
2713 nextaction = p->next_action_time;
2714
2715 if (p->p_fd >= 0) {
2716 /* Wait for reply from this peer */
2717 pfd[i].fd = p->p_fd;
2718 pfd[i].events = POLLIN;
2719 idx2peer[i] = p;
2720 i++;
2721 }
2722 }
2723
Denys Vlasenko0b002812010-01-03 08:59:59 +01002724 timeout = nextaction - G.cur_time;
2725 if (timeout < 0)
2726 timeout = 0;
2727 timeout++; /* (nextaction - G.cur_time) rounds down, compensating */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002728
2729 /* Here we may block */
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002730 VERB2 {
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002731 if (i > (ENABLE_FEATURE_NTPD_SERVER && G_listen_fd != -1)) {
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002732 /* We wait for at least one reply.
2733 * Poll for it, without wasting time for message.
2734 * Since replies often come under 1 second, this also
2735 * reduces clutter in logs.
2736 */
2737 nfds = poll(pfd, i, 1000);
2738 if (nfds != 0)
2739 goto did_poll;
2740 if (--timeout <= 0)
2741 goto did_poll;
2742 }
Denys Vlasenko8be49c32012-03-06 19:16:50 +01002743 bb_error_msg("poll:%us sockets:%u interval:%us", timeout, i, 1 << G.poll_exp);
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002744 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002745 nfds = poll(pfd, i, timeout * 1000);
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002746 did_poll:
Denys Vlasenko0b002812010-01-03 08:59:59 +01002747 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002748 if (nfds <= 0) {
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002749 double ct;
Denys Vlasenkod5c14822017-10-31 16:53:23 +01002750 int dns_error;
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002751
2752 if (bb_got_signal)
2753 break; /* poll was interrupted by a signal */
2754
2755 if (G.cur_time - G.last_script_run > 11*60) {
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002756 /* Useful for updating battery-backed RTC and such */
Denys Vlasenko12628b72010-01-11 01:31:59 +01002757 run_script("periodic", G.last_update_offset);
Denys Vlasenko06667f22010-01-06 13:05:08 +01002758 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002759 }
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002760
2761 /* Resolve peer names to IPs, if not resolved yet.
2762 * We do it only when poll timed out:
2763 * this way, we almost never overlap DNS resolution with
2764 * "request-reply" packet round trip.
2765 */
Denys Vlasenkod5c14822017-10-31 16:53:23 +01002766 dns_error = 0;
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002767 ct = G.cur_time;
2768 for (item = G.ntp_peers; item != NULL; item = item->link) {
2769 peer_t *p = (peer_t *) item->data;
2770 if (p->next_action_time <= ct && !p->p_lsa) {
2771 /* This can take up to ~10 sec per each DNS query */
Denys Vlasenkod5c14822017-10-31 16:53:23 +01002772 dns_error |= (!resolve_peer_hostname(p));
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002773 }
2774 }
Denys Vlasenkod5c14822017-10-31 16:53:23 +01002775 if (!dns_error)
2776 goto check_unsync;
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002777 /* Set next time for those which are still not resolved */
Denys Vlasenkod5c14822017-10-31 16:53:23 +01002778 gettime1900d(); /* sets G.cur_time (needed for set_next()) */
Denys Vlasenko6a4f2232017-10-31 12:44:37 +01002779 for (item = G.ntp_peers; item != NULL; item = item->link) {
2780 peer_t *p = (peer_t *) item->data;
2781 if (p->next_action_time <= ct && !p->p_lsa) {
2782 set_next(p, HOSTNAME_INTERVAL * p->dns_errors);
2783 }
2784 }
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +02002785 goto check_unsync;
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002786 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002787
2788 /* Process any received packets */
2789 j = 0;
2790#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko0b002812010-01-03 08:59:59 +01002791 if (G.listen_fd != -1) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002792 if (pfd[0].revents /* & (POLLIN|POLLERR)*/) {
2793 nfds--;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002794 recv_and_process_client_pkt(/*G.listen_fd*/);
2795 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002796 }
2797 j = 1;
2798 }
2799#endif
2800 for (; nfds != 0 && j < i; j++) {
2801 if (pfd[j].revents /* & (POLLIN|POLLERR)*/) {
Denys Vlasenko8e23faf2011-04-07 01:45:20 +02002802 /*
2803 * At init, alarm was set to 10 sec.
2804 * Now we did get a reply.
2805 * Increase timeout to 50 seconds to finish syncing.
2806 */
2807 if (option_mask32 & OPT_qq) {
2808 option_mask32 &= ~OPT_qq;
2809 alarm(50);
2810 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002811 nfds--;
2812 recv_and_process_peer_pkt(idx2peer[j]);
Denys Vlasenko0b002812010-01-03 08:59:59 +01002813 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002814 }
2815 }
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002816
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +02002817 check_unsync:
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002818 if (G.ntp_peers && G.stratum != MAXSTRAT) {
2819 for (item = G.ntp_peers; item != NULL; item = item->link) {
2820 peer_t *p = (peer_t *) item->data;
2821 if (p->reachable_bits)
2822 goto have_reachable_peer;
2823 }
2824 /* No peer responded for last 8 packets, panic */
Denys Vlasenkod3fe9602014-09-27 22:56:09 +02002825 clamp_pollexp_and_set_MAXSTRAT();
Denys Vlasenko5a7e3372013-05-23 16:06:59 +02002826 run_script("unsync", 0.0);
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002827 have_reachable_peer: ;
2828 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002829 } /* while (!bb_got_signal) */
2830
Denys Vlasenko50596532019-03-17 19:47:52 +01002831 remove_pidfile_std_path_and_ext("ntpd");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002832 kill_myself_with_sig(bb_got_signal);
2833}
2834
2835
2836
2837
2838
2839
2840/*** openntpd-4.6 uses only adjtime, not adjtimex ***/
2841
2842/*** ntp-4.2.6/ntpd/ntp_loopfilter.c - adjtimex usage ***/
2843
2844#if 0
2845static double
2846direct_freq(double fp_offset)
2847{
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002848#ifdef KERNEL_PLL
2849 /*
2850 * If the kernel is enabled, we need the residual offset to
2851 * calculate the frequency correction.
2852 */
2853 if (pll_control && kern_enable) {
2854 memset(&ntv, 0, sizeof(ntv));
2855 ntp_adjtime(&ntv);
2856#ifdef STA_NANO
2857 clock_offset = ntv.offset / 1e9;
2858#else /* STA_NANO */
2859 clock_offset = ntv.offset / 1e6;
2860#endif /* STA_NANO */
2861 drift_comp = FREQTOD(ntv.freq);
2862 }
2863#endif /* KERNEL_PLL */
2864 set_freq((fp_offset - clock_offset) / (current_time - clock_epoch) + drift_comp);
2865 wander_resid = 0;
2866 return drift_comp;
2867}
2868
2869static void
Denys Vlasenkofb132e42010-10-29 11:46:52 +02002870set_freq(double freq) /* frequency update */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002871{
2872 char tbuf[80];
2873
2874 drift_comp = freq;
2875
2876#ifdef KERNEL_PLL
2877 /*
2878 * If the kernel is enabled, update the kernel frequency.
2879 */
2880 if (pll_control && kern_enable) {
2881 memset(&ntv, 0, sizeof(ntv));
2882 ntv.modes = MOD_FREQUENCY;
2883 ntv.freq = DTOFREQ(drift_comp);
2884 ntp_adjtime(&ntv);
2885 snprintf(tbuf, sizeof(tbuf), "kernel %.3f PPM", drift_comp * 1e6);
2886 report_event(EVNT_FSET, NULL, tbuf);
2887 } else {
2888 snprintf(tbuf, sizeof(tbuf), "ntpd %.3f PPM", drift_comp * 1e6);
2889 report_event(EVNT_FSET, NULL, tbuf);
2890 }
2891#else /* KERNEL_PLL */
2892 snprintf(tbuf, sizeof(tbuf), "ntpd %.3f PPM", drift_comp * 1e6);
2893 report_event(EVNT_FSET, NULL, tbuf);
2894#endif /* KERNEL_PLL */
2895}
2896
2897...
2898...
2899...
2900
2901#ifdef KERNEL_PLL
2902 /*
2903 * This code segment works when clock adjustments are made using
2904 * precision time kernel support and the ntp_adjtime() system
2905 * call. This support is available in Solaris 2.6 and later,
2906 * Digital Unix 4.0 and later, FreeBSD, Linux and specially
2907 * modified kernels for HP-UX 9 and Ultrix 4. In the case of the
2908 * DECstation 5000/240 and Alpha AXP, additional kernel
2909 * modifications provide a true microsecond clock and nanosecond
2910 * clock, respectively.
2911 *
2912 * Important note: The kernel discipline is used only if the
2913 * step threshold is less than 0.5 s, as anything higher can
2914 * lead to overflow problems. This might occur if some misguided
2915 * lad set the step threshold to something ridiculous.
2916 */
2917 if (pll_control && kern_enable) {
2918
2919#define MOD_BITS (MOD_OFFSET | MOD_MAXERROR | MOD_ESTERROR | MOD_STATUS | MOD_TIMECONST)
2920
2921 /*
2922 * We initialize the structure for the ntp_adjtime()
2923 * system call. We have to convert everything to
2924 * microseconds or nanoseconds first. Do not update the
2925 * system variables if the ext_enable flag is set. In
2926 * this case, the external clock driver will update the
2927 * variables, which will be read later by the local
2928 * clock driver. Afterwards, remember the time and
2929 * frequency offsets for jitter and stability values and
2930 * to update the frequency file.
2931 */
2932 memset(&ntv, 0, sizeof(ntv));
2933 if (ext_enable) {
2934 ntv.modes = MOD_STATUS;
2935 } else {
2936#ifdef STA_NANO
2937 ntv.modes = MOD_BITS | MOD_NANO;
2938#else /* STA_NANO */
2939 ntv.modes = MOD_BITS;
2940#endif /* STA_NANO */
2941 if (clock_offset < 0)
2942 dtemp = -.5;
2943 else
2944 dtemp = .5;
2945#ifdef STA_NANO
2946 ntv.offset = (int32)(clock_offset * 1e9 + dtemp);
2947 ntv.constant = sys_poll;
2948#else /* STA_NANO */
2949 ntv.offset = (int32)(clock_offset * 1e6 + dtemp);
2950 ntv.constant = sys_poll - 4;
2951#endif /* STA_NANO */
2952 ntv.esterror = (u_int32)(clock_jitter * 1e6);
2953 ntv.maxerror = (u_int32)((sys_rootdelay / 2 + sys_rootdisp) * 1e6);
2954 ntv.status = STA_PLL;
2955
2956 /*
2957 * Enable/disable the PPS if requested.
2958 */
2959 if (pps_enable) {
2960 if (!(pll_status & STA_PPSTIME))
2961 report_event(EVNT_KERN,
Denys Vlasenko69675782013-01-14 01:34:48 +01002962 NULL, "PPS enabled");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002963 ntv.status |= STA_PPSTIME | STA_PPSFREQ;
2964 } else {
2965 if (pll_status & STA_PPSTIME)
2966 report_event(EVNT_KERN,
Denys Vlasenko69675782013-01-14 01:34:48 +01002967 NULL, "PPS disabled");
2968 ntv.status &= ~(STA_PPSTIME | STA_PPSFREQ);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002969 }
2970 if (sys_leap == LEAP_ADDSECOND)
2971 ntv.status |= STA_INS;
2972 else if (sys_leap == LEAP_DELSECOND)
2973 ntv.status |= STA_DEL;
2974 }
2975
2976 /*
2977 * Pass the stuff to the kernel. If it squeals, turn off
2978 * the pps. In any case, fetch the kernel offset,
2979 * frequency and jitter.
2980 */
2981 if (ntp_adjtime(&ntv) == TIME_ERROR) {
2982 if (!(ntv.status & STA_PPSSIGNAL))
2983 report_event(EVNT_KERN, NULL,
Denys Vlasenko69675782013-01-14 01:34:48 +01002984 "PPS no signal");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002985 }
2986 pll_status = ntv.status;
2987#ifdef STA_NANO
2988 clock_offset = ntv.offset / 1e9;
2989#else /* STA_NANO */
2990 clock_offset = ntv.offset / 1e6;
2991#endif /* STA_NANO */
2992 clock_frequency = FREQTOD(ntv.freq);
2993
2994 /*
2995 * If the kernel PPS is lit, monitor its performance.
2996 */
2997 if (ntv.status & STA_PPSTIME) {
2998#ifdef STA_NANO
2999 clock_jitter = ntv.jitter / 1e9;
3000#else /* STA_NANO */
3001 clock_jitter = ntv.jitter / 1e6;
3002#endif /* STA_NANO */
3003 }
3004
3005#if defined(STA_NANO) && NTP_API == 4
3006 /*
3007 * If the TAI changes, update the kernel TAI.
3008 */
3009 if (loop_tai != sys_tai) {
3010 loop_tai = sys_tai;
3011 ntv.modes = MOD_TAI;
3012 ntv.constant = sys_tai;
3013 ntp_adjtime(&ntv);
3014 }
3015#endif /* STA_NANO */
3016 }
3017#endif /* KERNEL_PLL */
3018#endif