blob: 44592ce548c130447e2bdc07f7dc05726ec9a0b5 [file] [log] [blame]
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001/*
2 * NTP client/server, based on OpenNTPD 3.9p1
3 *
4 * Author: Adam Tkac <vonsch@gmail.com>
5 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02006 * Licensed under GPLv2, see file LICENSE in this source tree.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01007 *
8 * Parts of OpenNTPD clock syncronization code is replaced by
Denys Vlasenkobfc2a322010-01-01 18:12:06 +01009 * code which is based on ntp-4.2.6, whuch carries the following
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010010 * copyright notice:
11 *
12 ***********************************************************************
13 * *
14 * Copyright (c) University of Delaware 1992-2009 *
15 * *
16 * Permission to use, copy, modify, and distribute this software and *
17 * its documentation for any purpose with or without fee is hereby *
18 * granted, provided that the above copyright notice appears in all *
19 * copies and that both the copyright notice and this permission *
20 * notice appear in supporting documentation, and that the name *
21 * University of Delaware not be used in advertising or publicity *
22 * pertaining to distribution of the software without specific, *
23 * written prior permission. The University of Delaware makes no *
24 * representations about the suitability this software for any *
25 * purpose. It is provided "as is" without express or implied *
26 * warranty. *
27 * *
28 ***********************************************************************
29 */
Pere Orga5bc8c002011-04-11 03:29:49 +020030
31//usage:#define ntpd_trivial_usage
32//usage: "[-dnqNw"IF_FEATURE_NTPD_SERVER("l")"] [-S PROG] [-p PEER]..."
33//usage:#define ntpd_full_usage "\n\n"
34//usage: "NTP client/server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020035//usage: "\n -d Verbose"
36//usage: "\n -n Do not daemonize"
37//usage: "\n -q Quit after clock is set"
38//usage: "\n -N Run at high priority"
39//usage: "\n -w Do not set time (only query peers), implies -n"
40//usage: IF_FEATURE_NTPD_SERVER(
41//usage: "\n -l Run as server on port 123"
42//usage: )
43//usage: "\n -S PROG Run PROG after stepping time, stratum change, and every 11 mins"
44//usage: "\n -p PEER Obtain time from PEER (may be repeated)"
45
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010046#include "libbb.h"
47#include <math.h>
48#include <netinet/ip.h> /* For IPTOS_LOWDELAY definition */
Mike Frysingerc5fe9f72012-07-05 23:19:09 -040049#include <sys/resource.h> /* setpriority */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010050#include <sys/timex.h>
51#ifndef IPTOS_LOWDELAY
52# define IPTOS_LOWDELAY 0x10
53#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +010054
55
Denys Vlasenkobfc2a322010-01-01 18:12:06 +010056/* Verbosity control (max level of -dddd options accepted).
Denys Vlasenkoa14958c2013-12-04 16:32:09 +010057 * max 6 is very talkative (and bloated). 3 is non-bloated,
Denys Vlasenkobfc2a322010-01-01 18:12:06 +010058 * production level setting.
59 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +010060#define MAX_VERBOSE 3
Denys Vlasenkobfc2a322010-01-01 18:12:06 +010061
62
Denys Vlasenko65d722b2010-01-11 02:14:04 +010063/* High-level description of the algorithm:
64 *
65 * We start running with very small poll_exp, BURSTPOLL,
Leonid Lisovskiy894ef602010-10-20 22:36:51 +020066 * in order to quickly accumulate INITIAL_SAMPLES datapoints
Denys Vlasenko65d722b2010-01-11 02:14:04 +010067 * for each peer. Then, time is stepped if the offset is larger
68 * than STEP_THRESHOLD, otherwise it isn't; anyway, we enlarge
69 * poll_exp to MINPOLL and enter frequency measurement step:
70 * we collect new datapoints but ignore them for WATCH_THRESHOLD
71 * seconds. After WATCH_THRESHOLD seconds we look at accumulated
72 * offset and estimate frequency drift.
73 *
Denys Vlasenko5b9a9102010-01-17 01:05:58 +010074 * (frequency measurement step seems to not be strictly needed,
75 * it is conditionally disabled with USING_INITIAL_FREQ_ESTIMATION
76 * define set to 0)
77 *
Denys Vlasenko65d722b2010-01-11 02:14:04 +010078 * After this, we enter "steady state": we collect a datapoint,
79 * we select the best peer, if this datapoint is not a new one
80 * (IOW: if this datapoint isn't for selected peer), sleep
81 * and collect another one; otherwise, use its offset to update
82 * frequency drift, if offset is somewhat large, reduce poll_exp,
83 * otherwise increase poll_exp.
84 *
85 * If offset is larger than STEP_THRESHOLD, which shouldn't normally
86 * happen, we assume that something "bad" happened (computer
87 * was hibernated, someone set totally wrong date, etc),
88 * then the time is stepped, all datapoints are discarded,
89 * and we go back to steady state.
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +010090 *
91 * Made some changes to speed up re-syncing after our clock goes bad
92 * (tested with suspending my laptop):
93 * - if largish offset (>= STEP_THRESHOLD * 8 == 1 sec) is seen
94 * from a peer, schedule next query for this peer soon
95 * without drastically lowering poll interval for everybody.
96 * This makes us collect enough data for step much faster:
97 * e.g. at poll = 10 (1024 secs), step was done within 5 minutes
98 * after first reply which indicated that our clock is 14 seconds off.
99 * - on step, do not discard d_dispersion data of the existing datapoints,
100 * do not clear reachable_bits. This prevents discarding first ~8
101 * datapoints after the step.
Denys Vlasenko65d722b2010-01-11 02:14:04 +0100102 */
103
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +0100104#define RETRY_INTERVAL 5 /* on error, retry in N secs */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100105#define RESPONSE_INTERVAL 15 /* wait for reply up to N secs */
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +0100106#define INITIAL_SAMPLES 4 /* how many samples do we want for init */
107#define BAD_DELAY_GROWTH 4 /* drop packet if its delay grew by more than this */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100108
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100109/* Clock discipline parameters and constants */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100110
111/* Step threshold (sec). std ntpd uses 0.128.
112 * Using exact power of 2 (1/8) results in smaller code */
113#define STEP_THRESHOLD 0.125
114#define WATCH_THRESHOLD 128 /* stepout threshold (sec). std ntpd uses 900 (11 mins (!)) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100115/* NB: set WATCH_THRESHOLD to ~60 when debugging to save time) */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100116//UNUSED: #define PANIC_THRESHOLD 1000 /* panic threshold (sec) */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100117
118#define FREQ_TOLERANCE 0.000015 /* frequency tolerance (15 PPM) */
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200119#define BURSTPOLL 0 /* initial poll */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100120#define MINPOLL 5 /* minimum poll interval. std ntpd uses 6 (6: 64 sec) */
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +0100121/* If we got largish offset from a peer, cap next query interval
122 * for this peer by this many seconds:
123 */
124#define BIGOFF_INTERVAL (1 << 6)
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100125/* If offset > discipline_jitter * POLLADJ_GATE, and poll interval is >= 2^BIGPOLL,
126 * then it is decreased _at once_. (If < 2^BIGPOLL, it will be decreased _eventually_).
127 */
128#define BIGPOLL 10 /* 2^10 sec ~= 17 min */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100129#define MAXPOLL 12 /* maximum poll interval (12: 1.1h, 17: 36.4h). std ntpd uses 17 */
130/* Actively lower poll when we see such big offsets.
131 * With STEP_THRESHOLD = 0.125, it means we try to sync more aggressively
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100132 * if offset increases over ~0.04 sec */
133#define POLLDOWN_OFFSET (STEP_THRESHOLD / 3)
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100134#define MINDISP 0.01 /* minimum dispersion (sec) */
135#define MAXDISP 16 /* maximum dispersion (sec) */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100136#define MAXSTRAT 16 /* maximum stratum (infinity metric) */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100137#define MAXDIST 1 /* distance threshold (sec) */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100138#define MIN_SELECTED 1 /* minimum intersection survivors */
139#define MIN_CLUSTERED 3 /* minimum cluster survivors */
140
141#define MAXDRIFT 0.000500 /* frequency drift we can correct (500 PPM) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100142
143/* Poll-adjust threshold.
144 * When we see that offset is small enough compared to discipline jitter,
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100145 * we grow a counter: += MINPOLL. When counter goes over POLLADJ_LIMIT,
Denys Vlasenko61313112010-01-01 19:56:16 +0100146 * we poll_exp++. If offset isn't small, counter -= poll_exp*2,
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100147 * and when it goes below -POLLADJ_LIMIT, we poll_exp--.
148 * (Bumped from 30 to 40 since otherwise I often see poll_exp going *2* steps down)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100149 */
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100150#define POLLADJ_LIMIT 40
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100151/* If offset < discipline_jitter * POLLADJ_GATE, then we decide to increase
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100152 * poll interval (we think we can't improve timekeeping
153 * by staying at smaller poll).
154 */
Denys Vlasenko61313112010-01-01 19:56:16 +0100155#define POLLADJ_GATE 4
Denys Vlasenko132b0442012-03-05 00:51:48 +0100156#define TIMECONST_HACK_GATE 2
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100157/* Compromise Allan intercept (sec). doc uses 1500, std ntpd uses 512 */
Denys Vlasenko61313112010-01-01 19:56:16 +0100158#define ALLAN 512
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100159/* PLL loop gain */
Denys Vlasenko61313112010-01-01 19:56:16 +0100160#define PLL 65536
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100161/* FLL loop gain [why it depends on MAXPOLL??] */
Denys Vlasenko61313112010-01-01 19:56:16 +0100162#define FLL (MAXPOLL + 1)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100163/* Parameter averaging constant */
Denys Vlasenko61313112010-01-01 19:56:16 +0100164#define AVG 4
165
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100166
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100167enum {
168 NTP_VERSION = 4,
169 NTP_MAXSTRATUM = 15,
170
171 NTP_DIGESTSIZE = 16,
172 NTP_MSGSIZE_NOAUTH = 48,
173 NTP_MSGSIZE = (NTP_MSGSIZE_NOAUTH + 4 + NTP_DIGESTSIZE),
174
175 /* Status Masks */
176 MODE_MASK = (7 << 0),
177 VERSION_MASK = (7 << 3),
178 VERSION_SHIFT = 3,
179 LI_MASK = (3 << 6),
180
181 /* Leap Second Codes (high order two bits of m_status) */
182 LI_NOWARNING = (0 << 6), /* no warning */
183 LI_PLUSSEC = (1 << 6), /* add a second (61 seconds) */
184 LI_MINUSSEC = (2 << 6), /* minus a second (59 seconds) */
185 LI_ALARM = (3 << 6), /* alarm condition */
186
187 /* Mode values */
188 MODE_RES0 = 0, /* reserved */
189 MODE_SYM_ACT = 1, /* symmetric active */
190 MODE_SYM_PAS = 2, /* symmetric passive */
191 MODE_CLIENT = 3, /* client */
192 MODE_SERVER = 4, /* server */
193 MODE_BROADCAST = 5, /* broadcast */
194 MODE_RES1 = 6, /* reserved for NTP control message */
195 MODE_RES2 = 7, /* reserved for private use */
196};
197
198//TODO: better base selection
199#define OFFSET_1900_1970 2208988800UL /* 1970 - 1900 in seconds */
200
201#define NUM_DATAPOINTS 8
202
203typedef struct {
204 uint32_t int_partl;
205 uint32_t fractionl;
206} l_fixedpt_t;
207
208typedef struct {
209 uint16_t int_parts;
210 uint16_t fractions;
211} s_fixedpt_t;
212
213typedef struct {
214 uint8_t m_status; /* status of local clock and leap info */
215 uint8_t m_stratum;
216 uint8_t m_ppoll; /* poll value */
217 int8_t m_precision_exp;
218 s_fixedpt_t m_rootdelay;
219 s_fixedpt_t m_rootdisp;
220 uint32_t m_refid;
221 l_fixedpt_t m_reftime;
222 l_fixedpt_t m_orgtime;
223 l_fixedpt_t m_rectime;
224 l_fixedpt_t m_xmttime;
225 uint32_t m_keyid;
226 uint8_t m_digest[NTP_DIGESTSIZE];
227} msg_t;
228
229typedef struct {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100230 double d_offset;
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100231 double d_recv_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100232 double d_dispersion;
233} datapoint_t;
234
235typedef struct {
236 len_and_sockaddr *p_lsa;
237 char *p_dotted;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100238 int p_fd;
239 int datapoint_idx;
240 uint32_t lastpkt_refid;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100241 uint8_t lastpkt_status;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100242 uint8_t lastpkt_stratum;
Denys Vlasenko0b002812010-01-03 08:59:59 +0100243 uint8_t reachable_bits;
Denys Vlasenko982e87f2013-07-30 11:52:58 +0200244 /* when to send new query (if p_fd == -1)
245 * or when receive times out (if p_fd >= 0): */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100246 double next_action_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100247 double p_xmttime;
248 double lastpkt_recv_time;
249 double lastpkt_delay;
250 double lastpkt_rootdelay;
251 double lastpkt_rootdisp;
252 /* produced by filter algorithm: */
253 double filter_offset;
254 double filter_dispersion;
255 double filter_jitter;
256 datapoint_t filter_datapoint[NUM_DATAPOINTS];
257 /* last sent packet: */
258 msg_t p_xmt_msg;
259} peer_t;
260
261
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100262#define USING_KERNEL_PLL_LOOP 1
263#define USING_INITIAL_FREQ_ESTIMATION 0
264
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100265enum {
266 OPT_n = (1 << 0),
267 OPT_q = (1 << 1),
268 OPT_N = (1 << 2),
269 OPT_x = (1 << 3),
270 /* Insert new options above this line. */
271 /* Non-compat options: */
Denys Vlasenko4168fdd2010-01-04 00:19:13 +0100272 OPT_w = (1 << 4),
273 OPT_p = (1 << 5),
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100274 OPT_S = (1 << 6),
275 OPT_l = (1 << 7) * ENABLE_FEATURE_NTPD_SERVER,
Denys Vlasenko8e23faf2011-04-07 01:45:20 +0200276 /* We hijack some bits for other purposes */
Denys Vlasenko16c52a52012-02-23 14:28:47 +0100277 OPT_qq = (1 << 31),
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100278};
279
280struct globals {
Denys Vlasenko0b002812010-01-03 08:59:59 +0100281 double cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100282 /* total round trip delay to currently selected reference clock */
283 double rootdelay;
284 /* reference timestamp: time when the system clock was last set or corrected */
285 double reftime;
286 /* total dispersion to currently selected reference clock */
287 double rootdisp;
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100288
289 double last_script_run;
290 char *script_name;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100291 llist_t *ntp_peers;
292#if ENABLE_FEATURE_NTPD_SERVER
293 int listen_fd;
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +0200294# define G_listen_fd (G.listen_fd)
295#else
296# define G_listen_fd (-1)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100297#endif
298 unsigned verbose;
299 unsigned peer_cnt;
300 /* refid: 32-bit code identifying the particular server or reference clock
Denys Vlasenko74584b82012-03-02 01:22:40 +0100301 * in stratum 0 packets this is a four-character ASCII string,
302 * called the kiss code, used for debugging and monitoring
303 * in stratum 1 packets this is a four-character ASCII string
304 * assigned to the reference clock by IANA. Example: "GPS "
305 * in stratum 2+ packets, it's IPv4 address or 4 first bytes
306 * of MD5 hash of IPv6
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100307 */
308 uint32_t refid;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100309 uint8_t ntp_status;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100310 /* precision is defined as the larger of the resolution and time to
311 * read the clock, in log2 units. For instance, the precision of a
312 * mains-frequency clock incrementing at 60 Hz is 16 ms, even when the
313 * system clock hardware representation is to the nanosecond.
314 *
Denys Vlasenko74584b82012-03-02 01:22:40 +0100315 * Delays, jitters of various kinds are clamped down to precision.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100316 *
317 * If precision_sec is too large, discipline_jitter gets clamped to it
Denys Vlasenko74584b82012-03-02 01:22:40 +0100318 * and if offset is smaller than discipline_jitter * POLLADJ_GATE, poll
319 * interval grows even though we really can benefit from staying at
320 * smaller one, collecting non-lagged datapoits and correcting offset.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100321 * (Lagged datapoits exist when poll_exp is large but we still have
322 * systematic offset error - the time distance between datapoints
Denys Vlasenko74584b82012-03-02 01:22:40 +0100323 * is significant and older datapoints have smaller offsets.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100324 * This makes our offset estimation a bit smaller than reality)
325 * Due to this effect, setting G_precision_sec close to
326 * STEP_THRESHOLD isn't such a good idea - offsets may grow
327 * too big and we will step. I observed it with -6.
328 *
Denys Vlasenko74584b82012-03-02 01:22:40 +0100329 * OTOH, setting precision_sec far too small would result in futile
330 * attempts to syncronize to an unachievable precision.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100331 *
332 * -6 is 1/64 sec, -7 is 1/128 sec and so on.
Denys Vlasenko74584b82012-03-02 01:22:40 +0100333 * -8 is 1/256 ~= 0.003906 (worked well for me --vda)
334 * -9 is 1/512 ~= 0.001953 (let's try this for some time)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100335 */
Denys Vlasenko74584b82012-03-02 01:22:40 +0100336#define G_precision_exp -9
337 /*
338 * G_precision_exp is used only for construction outgoing packets.
339 * It's ok to set G_precision_sec to a slightly different value
340 * (One which is "nicer looking" in logs).
341 * Exact value would be (1.0 / (1 << (- G_precision_exp))):
342 */
343#define G_precision_sec 0.002
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100344 uint8_t stratum;
345 /* Bool. After set to 1, never goes back to 0: */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100346 smallint initial_poll_complete;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100347
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100348#define STATE_NSET 0 /* initial state, "nothing is set" */
349//#define STATE_FSET 1 /* frequency set from file */
Denys Vlasenko6c46eed2013-12-04 17:12:11 +0100350//#define STATE_SPIK 2 /* spike detected */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100351//#define STATE_FREQ 3 /* initial frequency */
352#define STATE_SYNC 4 /* clock synchronized (normal operation) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100353 uint8_t discipline_state; // doc calls it c.state
354 uint8_t poll_exp; // s.poll
355 int polladj_count; // c.count
Denys Vlasenko61313112010-01-01 19:56:16 +0100356 long kernel_freq_drift;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100357 peer_t *last_update_peer;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100358 double last_update_offset; // c.last
Denys Vlasenko61313112010-01-01 19:56:16 +0100359 double last_update_recv_time; // s.t
360 double discipline_jitter; // c.jitter
Denys Vlasenko547ee792012-03-05 10:18:00 +0100361 /* Since we only compare it with ints, can simplify code
362 * by not making this variable floating point:
363 */
364 unsigned offset_to_jitter_ratio;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100365 //double cluster_offset; // s.offset
366 //double cluster_jitter; // s.jitter
Denys Vlasenko61313112010-01-01 19:56:16 +0100367#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100368 double discipline_freq_drift; // c.freq
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100369 /* Maybe conditionally calculate wander? it's used only for logging */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100370 double discipline_wander; // c.wander
Denys Vlasenko61313112010-01-01 19:56:16 +0100371#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100372};
373#define G (*ptr_to_globals)
374
375static const int const_IPTOS_LOWDELAY = IPTOS_LOWDELAY;
376
377
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100378#define VERB1 if (MAX_VERBOSE && G.verbose)
379#define VERB2 if (MAX_VERBOSE >= 2 && G.verbose >= 2)
380#define VERB3 if (MAX_VERBOSE >= 3 && G.verbose >= 3)
381#define VERB4 if (MAX_VERBOSE >= 4 && G.verbose >= 4)
382#define VERB5 if (MAX_VERBOSE >= 5 && G.verbose >= 5)
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100383#define VERB6 if (MAX_VERBOSE >= 6 && G.verbose >= 6)
Denys Vlasenkobfc2a322010-01-01 18:12:06 +0100384
385
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100386static double LOG2D(int a)
387{
388 if (a < 0)
389 return 1.0 / (1UL << -a);
390 return 1UL << a;
391}
392static ALWAYS_INLINE double SQUARE(double x)
393{
394 return x * x;
395}
396static ALWAYS_INLINE double MAXD(double a, double b)
397{
398 if (a > b)
399 return a;
400 return b;
401}
402static ALWAYS_INLINE double MIND(double a, double b)
403{
404 if (a < b)
405 return a;
406 return b;
407}
Denys Vlasenkod498ff02010-01-03 21:06:27 +0100408static NOINLINE double my_SQRT(double X)
409{
410 union {
411 float f;
412 int32_t i;
413 } v;
414 double invsqrt;
415 double Xhalf = X * 0.5;
416
417 /* Fast and good approximation to 1/sqrt(X), black magic */
418 v.f = X;
419 /*v.i = 0x5f3759df - (v.i >> 1);*/
420 v.i = 0x5f375a86 - (v.i >> 1); /* - this constant is slightly better */
421 invsqrt = v.f; /* better than 0.2% accuracy */
422
423 /* Refining it using Newton's method: x1 = x0 - f(x0)/f'(x0)
424 * f(x) = 1/(x*x) - X (f==0 when x = 1/sqrt(X))
425 * f'(x) = -2/(x*x*x)
426 * f(x)/f'(x) = (X - 1/(x*x)) / (2/(x*x*x)) = X*x*x*x/2 - x/2
427 * x1 = x0 - (X*x0*x0*x0/2 - x0/2) = 1.5*x0 - X*x0*x0*x0/2 = x0*(1.5 - (X/2)*x0*x0)
428 */
429 invsqrt = invsqrt * (1.5 - Xhalf * invsqrt * invsqrt); /* ~0.05% accuracy */
430 /* invsqrt = invsqrt * (1.5 - Xhalf * invsqrt * invsqrt); 2nd iter: ~0.0001% accuracy */
431 /* With 4 iterations, more than half results will be exact,
432 * at 6th iterations result stabilizes with about 72% results exact.
433 * We are well satisfied with 0.05% accuracy.
434 */
435
436 return X * invsqrt; /* X * 1/sqrt(X) ~= sqrt(X) */
437}
438static ALWAYS_INLINE double SQRT(double X)
439{
440 /* If this arch doesn't use IEEE 754 floats, fall back to using libm */
441 if (sizeof(float) != 4)
442 return sqrt(X);
443
Denys Vlasenko2d3253d2010-01-03 21:52:46 +0100444 /* This avoids needing libm, saves about 0.5k on x86-32 */
Denys Vlasenkod498ff02010-01-03 21:06:27 +0100445 return my_SQRT(X);
446}
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100447
448static double
449gettime1900d(void)
450{
451 struct timeval tv;
452 gettimeofday(&tv, NULL); /* never fails */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100453 G.cur_time = tv.tv_sec + (1.0e-6 * tv.tv_usec) + OFFSET_1900_1970;
454 return G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100455}
456
457static void
458d_to_tv(double d, struct timeval *tv)
459{
460 tv->tv_sec = (long)d;
461 tv->tv_usec = (d - tv->tv_sec) * 1000000;
462}
463
464static double
465lfp_to_d(l_fixedpt_t lfp)
466{
467 double ret;
468 lfp.int_partl = ntohl(lfp.int_partl);
469 lfp.fractionl = ntohl(lfp.fractionl);
470 ret = (double)lfp.int_partl + ((double)lfp.fractionl / UINT_MAX);
471 return ret;
472}
473static double
474sfp_to_d(s_fixedpt_t sfp)
475{
476 double ret;
477 sfp.int_parts = ntohs(sfp.int_parts);
478 sfp.fractions = ntohs(sfp.fractions);
479 ret = (double)sfp.int_parts + ((double)sfp.fractions / USHRT_MAX);
480 return ret;
481}
482#if ENABLE_FEATURE_NTPD_SERVER
483static l_fixedpt_t
484d_to_lfp(double d)
485{
486 l_fixedpt_t lfp;
487 lfp.int_partl = (uint32_t)d;
488 lfp.fractionl = (uint32_t)((d - lfp.int_partl) * UINT_MAX);
489 lfp.int_partl = htonl(lfp.int_partl);
490 lfp.fractionl = htonl(lfp.fractionl);
491 return lfp;
492}
493static s_fixedpt_t
494d_to_sfp(double d)
495{
496 s_fixedpt_t sfp;
497 sfp.int_parts = (uint16_t)d;
498 sfp.fractions = (uint16_t)((d - sfp.int_parts) * USHRT_MAX);
499 sfp.int_parts = htons(sfp.int_parts);
500 sfp.fractions = htons(sfp.fractions);
501 return sfp;
502}
503#endif
504
505static double
Denys Vlasenko0b002812010-01-03 08:59:59 +0100506dispersion(const datapoint_t *dp)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100507{
Denys Vlasenko0b002812010-01-03 08:59:59 +0100508 return dp->d_dispersion + FREQ_TOLERANCE * (G.cur_time - dp->d_recv_time);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100509}
510
511static double
Denys Vlasenko0b002812010-01-03 08:59:59 +0100512root_distance(peer_t *p)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100513{
514 /* The root synchronization distance is the maximum error due to
515 * all causes of the local clock relative to the primary server.
516 * It is defined as half the total delay plus total dispersion
517 * plus peer jitter.
518 */
519 return MAXD(MINDISP, p->lastpkt_rootdelay + p->lastpkt_delay) / 2
520 + p->lastpkt_rootdisp
521 + p->filter_dispersion
Denys Vlasenko0b002812010-01-03 08:59:59 +0100522 + FREQ_TOLERANCE * (G.cur_time - p->lastpkt_recv_time)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100523 + p->filter_jitter;
524}
525
526static void
527set_next(peer_t *p, unsigned t)
528{
Denys Vlasenko0b002812010-01-03 08:59:59 +0100529 p->next_action_time = G.cur_time + t;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100530}
531
532/*
533 * Peer clock filter and its helpers
534 */
535static void
Denys Vlasenko0b002812010-01-03 08:59:59 +0100536filter_datapoints(peer_t *p)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100537{
538 int i, idx;
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100539 double sum, wavg;
540 datapoint_t *fdp;
541
542#if 0
543/* Simulations have shown that use of *averaged* offset for p->filter_offset
544 * is in fact worse than simply using last received one: with large poll intervals
545 * (>= 2048) averaging code uses offset values which are outdated by hours,
546 * and time/frequency correction goes totally wrong when fed essentially bogus offsets.
547 */
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100548 int got_newest;
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100549 double minoff, maxoff, w;
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100550 double x = x; /* for compiler */
551 double oldest_off = oldest_off;
552 double oldest_age = oldest_age;
553 double newest_off = newest_off;
554 double newest_age = newest_age;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100555
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100556 fdp = p->filter_datapoint;
557
558 minoff = maxoff = fdp[0].d_offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100559 for (i = 1; i < NUM_DATAPOINTS; i++) {
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100560 if (minoff > fdp[i].d_offset)
561 minoff = fdp[i].d_offset;
562 if (maxoff < fdp[i].d_offset)
563 maxoff = fdp[i].d_offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100564 }
565
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100566 idx = p->datapoint_idx; /* most recent datapoint's index */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100567 /* Average offset:
568 * Drop two outliers and take weighted average of the rest:
569 * most_recent/2 + older1/4 + older2/8 ... + older5/32 + older6/32
570 * we use older6/32, not older6/64 since sum of weights should be 1:
571 * 1/2 + 1/4 + 1/8 + 1/16 + 1/32 + 1/32 = 1
572 */
573 wavg = 0;
574 w = 0.5;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100575 /* n-1
576 * --- dispersion(i)
577 * filter_dispersion = \ -------------
578 * / (i+1)
579 * --- 2
580 * i=0
581 */
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100582 got_newest = 0;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100583 sum = 0;
584 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100585 VERB5 {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100586 bb_error_msg("datapoint[%d]: off:%f disp:%f(%f) age:%f%s",
587 i,
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100588 fdp[idx].d_offset,
589 fdp[idx].d_dispersion, dispersion(&fdp[idx]),
590 G.cur_time - fdp[idx].d_recv_time,
591 (minoff == fdp[idx].d_offset || maxoff == fdp[idx].d_offset)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100592 ? " (outlier by offset)" : ""
593 );
594 }
595
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100596 sum += dispersion(&fdp[idx]) / (2 << i);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100597
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100598 if (minoff == fdp[idx].d_offset) {
Denys Vlasenkoe4844b82010-01-01 21:59:49 +0100599 minoff -= 1; /* so that we don't match it ever again */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100600 } else
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100601 if (maxoff == fdp[idx].d_offset) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100602 maxoff += 1;
603 } else {
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100604 oldest_off = fdp[idx].d_offset;
605 oldest_age = G.cur_time - fdp[idx].d_recv_time;
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100606 if (!got_newest) {
607 got_newest = 1;
608 newest_off = oldest_off;
609 newest_age = oldest_age;
610 }
611 x = oldest_off * w;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100612 wavg += x;
613 w /= 2;
614 }
615
616 idx = (idx - 1) & (NUM_DATAPOINTS - 1);
617 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100618 p->filter_dispersion = sum;
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100619 wavg += x; /* add another older6/64 to form older6/32 */
620 /* Fix systematic underestimation with large poll intervals.
621 * Imagine that we still have a bit of uncorrected drift,
622 * and poll interval is big (say, 100 sec). Offsets form a progression:
623 * 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 - 0.7 is most recent.
624 * The algorithm above drops 0.0 and 0.7 as outliers,
625 * and then we have this estimation, ~25% off from 0.7:
626 * 0.1/32 + 0.2/32 + 0.3/16 + 0.4/8 + 0.5/4 + 0.6/2 = 0.503125
627 */
Denys Vlasenko0b002812010-01-03 08:59:59 +0100628 x = oldest_age - newest_age;
629 if (x != 0) {
630 x = newest_age / x; /* in above example, 100 / (600 - 100) */
631 if (x < 1) { /* paranoia check */
632 x = (newest_off - oldest_off) * x; /* 0.5 * 100/500 = 0.1 */
633 wavg += x;
634 }
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100635 }
636 p->filter_offset = wavg;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100637
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100638#else
639
640 fdp = p->filter_datapoint;
641 idx = p->datapoint_idx; /* most recent datapoint's index */
642
643 /* filter_offset: simply use the most recent value */
644 p->filter_offset = fdp[idx].d_offset;
645
646 /* n-1
647 * --- dispersion(i)
648 * filter_dispersion = \ -------------
649 * / (i+1)
650 * --- 2
651 * i=0
652 */
653 wavg = 0;
654 sum = 0;
655 for (i = 0; i < NUM_DATAPOINTS; i++) {
656 sum += dispersion(&fdp[idx]) / (2 << i);
657 wavg += fdp[idx].d_offset;
658 idx = (idx - 1) & (NUM_DATAPOINTS - 1);
659 }
660 wavg /= NUM_DATAPOINTS;
661 p->filter_dispersion = sum;
662#endif
663
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100664 /* +----- -----+ ^ 1/2
665 * | n-1 |
666 * | --- |
667 * | 1 \ 2 |
668 * filter_jitter = | --- * / (avg-offset_j) |
669 * | n --- |
670 * | j=0 |
671 * +----- -----+
672 * where n is the number of valid datapoints in the filter (n > 1);
673 * if filter_jitter < precision then filter_jitter = precision
674 */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100675 sum = 0;
676 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100677 sum += SQUARE(wavg - fdp[i].d_offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100678 }
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100679 sum = SQRT(sum / NUM_DATAPOINTS);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100680 p->filter_jitter = sum > G_precision_sec ? sum : G_precision_sec;
681
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100682 VERB4 bb_error_msg("filter offset:%+f disp:%f jitter:%f",
Denys Vlasenkod98dc922012-03-08 03:27:49 +0100683 p->filter_offset,
Denys Vlasenkod9109e32010-01-02 00:36:43 +0100684 p->filter_dispersion,
685 p->filter_jitter);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100686}
687
688static void
Denys Vlasenko0b002812010-01-03 08:59:59 +0100689reset_peer_stats(peer_t *p, double offset)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100690{
691 int i;
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100692 bool small_ofs = fabs(offset) < 16 * STEP_THRESHOLD;
693
Denys Vlasenko777be102013-12-07 17:29:03 +0100694 /* Used to set p->filter_datapoint[i].d_dispersion = MAXDISP
695 * and clear reachable bits, but this proved to be too agressive:
696 * after step (tested with suspinding laptop for ~30 secs),
697 * this caused all previous data to be considered invalid,
698 * making us needing to collect full ~8 datapoins per peer
699 * after step in order to start trusting them.
700 * In turn, this was making poll interval decrease even after
701 * step was done. (Poll interval decreases already before step
702 * in this scenario, because we see large offsets and end up with
703 * no good peer to select).
704 */
705
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100706 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100707 if (small_ofs) {
Denys Vlasenkoeff6d592010-06-24 20:23:40 +0200708 p->filter_datapoint[i].d_recv_time += offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100709 if (p->filter_datapoint[i].d_offset != 0) {
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100710 p->filter_datapoint[i].d_offset -= offset;
711 //bb_error_msg("p->filter_datapoint[%d].d_offset %f -> %f",
712 // i,
713 // p->filter_datapoint[i].d_offset + offset,
714 // p->filter_datapoint[i].d_offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100715 }
716 } else {
Denys Vlasenko0b002812010-01-03 08:59:59 +0100717 p->filter_datapoint[i].d_recv_time = G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100718 p->filter_datapoint[i].d_offset = 0;
Denys Vlasenko777be102013-12-07 17:29:03 +0100719 /*p->filter_datapoint[i].d_dispersion = MAXDISP;*/
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100720 }
721 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +0100722 if (small_ofs) {
Denys Vlasenkoeff6d592010-06-24 20:23:40 +0200723 p->lastpkt_recv_time += offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100724 } else {
Denys Vlasenko777be102013-12-07 17:29:03 +0100725 /*p->reachable_bits = 0;*/
Denys Vlasenko0b002812010-01-03 08:59:59 +0100726 p->lastpkt_recv_time = G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100727 }
Denys Vlasenko0b002812010-01-03 08:59:59 +0100728 filter_datapoints(p); /* recalc p->filter_xxx */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +0100729 VERB6 bb_error_msg("%s->lastpkt_recv_time=%f", p->p_dotted, p->lastpkt_recv_time);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100730}
731
732static void
733add_peers(char *s)
734{
735 peer_t *p;
736
737 p = xzalloc(sizeof(*p));
738 p->p_lsa = xhost2sockaddr(s, 123);
739 p->p_dotted = xmalloc_sockaddr2dotted_noport(&p->p_lsa->u.sa);
740 p->p_fd = -1;
741 p->p_xmt_msg.m_status = MODE_CLIENT | (NTP_VERSION << 3);
Denys Vlasenko0b002812010-01-03 08:59:59 +0100742 p->next_action_time = G.cur_time; /* = set_next(p, 0); */
743 reset_peer_stats(p, 16 * STEP_THRESHOLD);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100744
745 llist_add_to(&G.ntp_peers, p);
746 G.peer_cnt++;
747}
748
749static int
750do_sendto(int fd,
751 const struct sockaddr *from, const struct sockaddr *to, socklen_t addrlen,
752 msg_t *msg, ssize_t len)
753{
754 ssize_t ret;
755
756 errno = 0;
757 if (!from) {
758 ret = sendto(fd, msg, len, MSG_DONTWAIT, to, addrlen);
759 } else {
760 ret = send_to_from(fd, msg, len, MSG_DONTWAIT, to, from, addrlen);
761 }
762 if (ret != len) {
763 bb_perror_msg("send failed");
764 return -1;
765 }
766 return 0;
767}
768
Denys Vlasenko0b002812010-01-03 08:59:59 +0100769static void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100770send_query_to_peer(peer_t *p)
771{
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +0100772 /* Why do we need to bind()?
773 * See what happens when we don't bind:
774 *
775 * socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
776 * setsockopt(3, SOL_IP, IP_TOS, [16], 4) = 0
777 * gettimeofday({1259071266, 327885}, NULL) = 0
778 * sendto(3, "xxx", 48, MSG_DONTWAIT, {sa_family=AF_INET, sin_port=htons(123), sin_addr=inet_addr("10.34.32.125")}, 16) = 48
779 * ^^^ we sent it from some source port picked by kernel.
780 * time(NULL) = 1259071266
781 * write(2, "ntpd: entering poll 15 secs\n", 28) = 28
782 * poll([{fd=3, events=POLLIN}], 1, 15000) = 1 ([{fd=3, revents=POLLIN}])
783 * recv(3, "yyy", 68, MSG_DONTWAIT) = 48
784 * ^^^ this recv will receive packets to any local port!
785 *
786 * Uncomment this and use strace to see it in action:
787 */
788#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 +0100789
790 if (p->p_fd == -1) {
791 int fd, family;
792 len_and_sockaddr *local_lsa;
793
794 family = p->p_lsa->u.sa.sa_family;
795 p->p_fd = fd = xsocket_type(&local_lsa, family, SOCK_DGRAM);
796 /* local_lsa has "null" address and port 0 now.
797 * bind() ensures we have a *particular port* selected by kernel
798 * and remembered in p->p_fd, thus later recv(p->p_fd)
799 * receives only packets sent to this port.
800 */
801 PROBE_LOCAL_ADDR
802 xbind(fd, &local_lsa->u.sa, local_lsa->len);
803 PROBE_LOCAL_ADDR
804#if ENABLE_FEATURE_IPV6
805 if (family == AF_INET)
806#endif
807 setsockopt(fd, IPPROTO_IP, IP_TOS, &const_IPTOS_LOWDELAY, sizeof(const_IPTOS_LOWDELAY));
808 free(local_lsa);
809 }
810
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +0100811 /* Emit message _before_ attempted send. Think of a very short
812 * roundtrip networks: we need to go back to recv loop ASAP,
813 * to reduce delay. Printing messages after send works against that.
814 */
815 VERB1 bb_error_msg("sending query to %s", p->p_dotted);
816
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100817 /*
818 * Send out a random 64-bit number as our transmit time. The NTP
819 * server will copy said number into the originate field on the
820 * response that it sends us. This is totally legal per the SNTP spec.
821 *
822 * The impact of this is two fold: we no longer send out the current
823 * system time for the world to see (which may aid an attacker), and
824 * it gives us a (not very secure) way of knowing that we're not
825 * getting spoofed by an attacker that can't capture our traffic
826 * but can spoof packets from the NTP server we're communicating with.
827 *
828 * Save the real transmit timestamp locally.
829 */
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +0100830 p->p_xmt_msg.m_xmttime.int_partl = rand();
831 p->p_xmt_msg.m_xmttime.fractionl = rand();
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100832 p->p_xmttime = gettime1900d();
833
Denys Vlasenko5a7e3372013-05-23 16:06:59 +0200834 /* Were doing it only if sendto worked, but
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +0200835 * loss of sync detection needs reachable_bits updated
836 * even if sending fails *locally*:
837 * "network is unreachable" because cable was pulled?
838 * We still need to declare "unsync" if this condition persists.
839 */
840 p->reachable_bits <<= 1;
841
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100842 if (do_sendto(p->p_fd, /*from:*/ NULL, /*to:*/ &p->p_lsa->u.sa, /*addrlen:*/ p->p_lsa->len,
843 &p->p_xmt_msg, NTP_MSGSIZE_NOAUTH) == -1
844 ) {
845 close(p->p_fd);
846 p->p_fd = -1;
Denys Vlasenko5a7e3372013-05-23 16:06:59 +0200847 /*
848 * We know that we sent nothing.
849 * We can retry *soon* without fearing
850 * that we are flooding the peer.
851 */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100852 set_next(p, RETRY_INTERVAL);
Denys Vlasenko0b002812010-01-03 08:59:59 +0100853 return;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100854 }
855
Denys Vlasenko0b002812010-01-03 08:59:59 +0100856 set_next(p, RESPONSE_INTERVAL);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100857}
858
859
Denys Vlasenko24928ff2010-01-25 19:30:16 +0100860/* Note that there is no provision to prevent several run_scripts
Denys Vlasenko5a7e3372013-05-23 16:06:59 +0200861 * to be started in quick succession. In fact, it happens rather often
Denys Vlasenko24928ff2010-01-25 19:30:16 +0100862 * if initial syncronization results in a step.
863 * You will see "step" and then "stratum" script runs, sometimes
864 * as close as only 0.002 seconds apart.
865 * Script should be ready to deal with this.
866 */
Denys Vlasenko12628b72010-01-11 01:31:59 +0100867static void run_script(const char *action, double offset)
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100868{
869 char *argv[3];
Denys Vlasenko12628b72010-01-11 01:31:59 +0100870 char *env1, *env2, *env3, *env4;
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100871
Denys Vlasenko07c59872013-05-22 18:18:51 +0200872 G.last_script_run = G.cur_time;
873
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100874 if (!G.script_name)
875 return;
876
877 argv[0] = (char*) G.script_name;
878 argv[1] = (char*) action;
879 argv[2] = NULL;
880
881 VERB1 bb_error_msg("executing '%s %s'", G.script_name, action);
882
Denys Vlasenkoae473352010-01-07 11:51:13 +0100883 env1 = xasprintf("%s=%u", "stratum", G.stratum);
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100884 putenv(env1);
Denys Vlasenkoae473352010-01-07 11:51:13 +0100885 env2 = xasprintf("%s=%ld", "freq_drift_ppm", G.kernel_freq_drift);
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100886 putenv(env2);
Denys Vlasenkoae473352010-01-07 11:51:13 +0100887 env3 = xasprintf("%s=%u", "poll_interval", 1 << G.poll_exp);
888 putenv(env3);
Denys Vlasenko12628b72010-01-11 01:31:59 +0100889 env4 = xasprintf("%s=%f", "offset", offset);
890 putenv(env4);
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100891 /* Other items of potential interest: selected peer,
Denys Vlasenkoae473352010-01-07 11:51:13 +0100892 * rootdelay, reftime, rootdisp, refid, ntp_status,
Denys Vlasenko12628b72010-01-11 01:31:59 +0100893 * last_update_offset, last_update_recv_time, discipline_jitter,
894 * how many peers have reachable_bits = 0?
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100895 */
896
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100897 /* Don't want to wait: it may run hwclock --systohc, and that
898 * may take some time (seconds): */
Denys Vlasenko8531d762010-03-18 22:44:00 +0100899 /*spawn_and_wait(argv);*/
Denys Vlasenko6959f6b2010-01-07 08:31:46 +0100900 spawn(argv);
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100901
902 unsetenv("stratum");
903 unsetenv("freq_drift_ppm");
Denys Vlasenkoae473352010-01-07 11:51:13 +0100904 unsetenv("poll_interval");
Denys Vlasenko12628b72010-01-11 01:31:59 +0100905 unsetenv("offset");
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100906 free(env1);
907 free(env2);
Denys Vlasenkoae473352010-01-07 11:51:13 +0100908 free(env3);
Denys Vlasenko12628b72010-01-11 01:31:59 +0100909 free(env4);
Denys Vlasenkoede737b2010-01-06 12:27:47 +0100910}
911
Denys Vlasenko0b002812010-01-03 08:59:59 +0100912static NOINLINE void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100913step_time(double offset)
914{
Denys Vlasenko0b002812010-01-03 08:59:59 +0100915 llist_t *item;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100916 double dtime;
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100917 struct timeval tvc, tvn;
918 char buf[sizeof("yyyy-mm-dd hh:mm:ss") + /*paranoia:*/ 4];
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100919 time_t tval;
920
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100921 gettimeofday(&tvc, NULL); /* never fails */
922 dtime = tvc.tv_sec + (1.0e-6 * tvc.tv_usec) + offset;
923 d_to_tv(dtime, &tvn);
924 if (settimeofday(&tvn, NULL) == -1)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100925 bb_perror_msg_and_die("settimeofday");
926
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100927 VERB2 {
928 tval = tvc.tv_sec;
Denys Vlasenko8f2cb7a2013-03-29 12:30:33 +0100929 strftime_YYYYMMDDHHMMSS(buf, sizeof(buf), &tval);
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100930 bb_error_msg("current time is %s.%06u", buf, (unsigned)tvc.tv_usec);
931 }
932 tval = tvn.tv_sec;
Denys Vlasenko8f2cb7a2013-03-29 12:30:33 +0100933 strftime_YYYYMMDDHHMMSS(buf, sizeof(buf), &tval);
Denys Vlasenkofc4ebd02012-02-28 02:45:00 +0100934 bb_error_msg("setting time to %s.%06u (offset %+fs)", buf, (unsigned)tvn.tv_usec, offset);
Denys Vlasenko0b002812010-01-03 08:59:59 +0100935
936 /* Correct various fields which contain time-relative values: */
937
Denys Vlasenko4125a6b2012-06-11 11:41:46 +0200938 /* Globals: */
939 G.cur_time += offset;
940 G.last_update_recv_time += offset;
941 G.last_script_run += offset;
942
Denys Vlasenko0b002812010-01-03 08:59:59 +0100943 /* p->lastpkt_recv_time, p->next_action_time and such: */
944 for (item = G.ntp_peers; item != NULL; item = item->link) {
945 peer_t *pp = (peer_t *) item->data;
946 reset_peer_stats(pp, offset);
Denys Vlasenko16c52a52012-02-23 14:28:47 +0100947 //bb_error_msg("offset:%+f pp->next_action_time:%f -> %f",
Denys Vlasenkoeff6d592010-06-24 20:23:40 +0200948 // offset, pp->next_action_time, pp->next_action_time + offset);
949 pp->next_action_time += offset;
Denys Vlasenko4125a6b2012-06-11 11:41:46 +0200950 if (pp->p_fd >= 0) {
951 /* We wait for reply from this peer too.
952 * But due to step we are doing, reply's data is no longer
953 * useful (in fact, it'll be bogus). Stop waiting for it.
954 */
955 close(pp->p_fd);
956 pp->p_fd = -1;
957 set_next(pp, RETRY_INTERVAL);
958 }
Denys Vlasenko0b002812010-01-03 08:59:59 +0100959 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100960}
961
962
963/*
964 * Selection and clustering, and their helpers
965 */
966typedef struct {
967 peer_t *p;
968 int type;
969 double edge;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +0100970 double opt_rd; /* optimization */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100971} point_t;
972static int
973compare_point_edge(const void *aa, const void *bb)
974{
975 const point_t *a = aa;
976 const point_t *b = bb;
977 if (a->edge < b->edge) {
978 return -1;
979 }
980 return (a->edge > b->edge);
981}
982typedef struct {
983 peer_t *p;
984 double metric;
985} survivor_t;
986static int
987compare_survivor_metric(const void *aa, const void *bb)
988{
989 const survivor_t *a = aa;
990 const survivor_t *b = bb;
Denys Vlasenko510f56a2010-01-03 12:00:26 +0100991 if (a->metric < b->metric) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100992 return -1;
Denys Vlasenko510f56a2010-01-03 12:00:26 +0100993 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +0100994 return (a->metric > b->metric);
995}
996static int
997fit(peer_t *p, double rd)
998{
Denys Vlasenko0b002812010-01-03 08:59:59 +0100999 if ((p->reachable_bits & (p->reachable_bits-1)) == 0) {
1000 /* One or zero bits in reachable_bits */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001001 VERB4 bb_error_msg("peer %s unfit for selection: unreachable", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001002 return 0;
1003 }
Denys Vlasenkofb132e42010-10-29 11:46:52 +02001004#if 0 /* we filter out such packets earlier */
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001005 if ((p->lastpkt_status & LI_ALARM) == LI_ALARM
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001006 || p->lastpkt_stratum >= MAXSTRAT
1007 ) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001008 VERB4 bb_error_msg("peer %s unfit for selection: bad status/stratum", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001009 return 0;
1010 }
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001011#endif
Denys Vlasenko0b002812010-01-03 08:59:59 +01001012 /* rd is root_distance(p) */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001013 if (rd > MAXDIST + FREQ_TOLERANCE * (1 << G.poll_exp)) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001014 VERB4 bb_error_msg("peer %s unfit for selection: root distance too high", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001015 return 0;
1016 }
1017//TODO
1018// /* Do we have a loop? */
1019// if (p->refid == p->dstaddr || p->refid == s.refid)
1020// return 0;
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +01001021 return 1;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001022}
1023static peer_t*
Denys Vlasenko0b002812010-01-03 08:59:59 +01001024select_and_cluster(void)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001025{
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001026 peer_t *p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001027 llist_t *item;
1028 int i, j;
1029 int size = 3 * G.peer_cnt;
1030 /* for selection algorithm */
1031 point_t point[size];
1032 unsigned num_points, num_candidates;
1033 double low, high;
1034 unsigned num_falsetickers;
1035 /* for cluster algorithm */
1036 survivor_t survivor[size];
1037 unsigned num_survivors;
1038
1039 /* Selection */
1040
1041 num_points = 0;
1042 item = G.ntp_peers;
Denys Vlasenko0b002812010-01-03 08:59:59 +01001043 if (G.initial_poll_complete) while (item != NULL) {
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001044 double rd, offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001045
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001046 p = (peer_t *) item->data;
1047 rd = root_distance(p);
1048 offset = p->filter_offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001049 if (!fit(p, rd)) {
1050 item = item->link;
1051 continue;
1052 }
1053
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001054 VERB5 bb_error_msg("interval: [%f %f %f] %s",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001055 offset - rd,
1056 offset,
1057 offset + rd,
1058 p->p_dotted
1059 );
1060 point[num_points].p = p;
1061 point[num_points].type = -1;
1062 point[num_points].edge = offset - rd;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001063 point[num_points].opt_rd = rd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001064 num_points++;
1065 point[num_points].p = p;
1066 point[num_points].type = 0;
1067 point[num_points].edge = offset;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001068 point[num_points].opt_rd = rd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001069 num_points++;
1070 point[num_points].p = p;
1071 point[num_points].type = 1;
1072 point[num_points].edge = offset + rd;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001073 point[num_points].opt_rd = rd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001074 num_points++;
1075 item = item->link;
1076 }
1077 num_candidates = num_points / 3;
1078 if (num_candidates == 0) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001079 VERB3 bb_error_msg("no valid datapoints%s", ", no peer selected");
Denys Vlasenko0b002812010-01-03 08:59:59 +01001080 return NULL;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001081 }
1082//TODO: sorting does not seem to be done in reference code
1083 qsort(point, num_points, sizeof(point[0]), compare_point_edge);
1084
1085 /* Start with the assumption that there are no falsetickers.
1086 * Attempt to find a nonempty intersection interval containing
1087 * the midpoints of all truechimers.
1088 * If a nonempty interval cannot be found, increase the number
1089 * of assumed falsetickers by one and try again.
1090 * If a nonempty interval is found and the number of falsetickers
1091 * is less than the number of truechimers, a majority has been found
1092 * and the midpoint of each truechimer represents
1093 * the candidates available to the cluster algorithm.
1094 */
1095 num_falsetickers = 0;
1096 while (1) {
1097 int c;
1098 unsigned num_midpoints = 0;
1099
1100 low = 1 << 9;
1101 high = - (1 << 9);
1102 c = 0;
1103 for (i = 0; i < num_points; i++) {
1104 /* We want to do:
1105 * if (point[i].type == -1) c++;
1106 * if (point[i].type == 1) c--;
1107 * and it's simpler to do it this way:
1108 */
1109 c -= point[i].type;
1110 if (c >= num_candidates - num_falsetickers) {
1111 /* If it was c++ and it got big enough... */
1112 low = point[i].edge;
1113 break;
1114 }
1115 if (point[i].type == 0)
1116 num_midpoints++;
1117 }
1118 c = 0;
1119 for (i = num_points-1; i >= 0; i--) {
1120 c += point[i].type;
1121 if (c >= num_candidates - num_falsetickers) {
1122 high = point[i].edge;
1123 break;
1124 }
1125 if (point[i].type == 0)
1126 num_midpoints++;
1127 }
1128 /* If the number of midpoints is greater than the number
1129 * of allowed falsetickers, the intersection contains at
1130 * least one truechimer with no midpoint - bad.
1131 * Also, interval should be nonempty.
1132 */
1133 if (num_midpoints <= num_falsetickers && low < high)
1134 break;
1135 num_falsetickers++;
1136 if (num_falsetickers * 2 >= num_candidates) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001137 VERB3 bb_error_msg("falsetickers:%d, candidates:%d%s",
1138 num_falsetickers, num_candidates,
1139 ", no peer selected");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001140 return NULL;
1141 }
1142 }
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001143 VERB4 bb_error_msg("selected interval: [%f, %f]; candidates:%d falsetickers:%d",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001144 low, high, num_candidates, num_falsetickers);
1145
1146 /* Clustering */
1147
1148 /* Construct a list of survivors (p, metric)
1149 * from the chime list, where metric is dominated
1150 * first by stratum and then by root distance.
1151 * All other things being equal, this is the order of preference.
1152 */
1153 num_survivors = 0;
1154 for (i = 0; i < num_points; i++) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001155 if (point[i].edge < low || point[i].edge > high)
1156 continue;
1157 p = point[i].p;
1158 survivor[num_survivors].p = p;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001159 /* x.opt_rd == root_distance(p); */
1160 survivor[num_survivors].metric = MAXDIST * p->lastpkt_stratum + point[i].opt_rd;
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001161 VERB5 bb_error_msg("survivor[%d] metric:%f peer:%s",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001162 num_survivors, survivor[num_survivors].metric, p->p_dotted);
1163 num_survivors++;
1164 }
1165 /* There must be at least MIN_SELECTED survivors to satisfy the
1166 * correctness assertions. Ordinarily, the Byzantine criteria
1167 * require four survivors, but for the demonstration here, one
1168 * is acceptable.
1169 */
1170 if (num_survivors < MIN_SELECTED) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001171 VERB3 bb_error_msg("survivors:%d%s",
1172 num_survivors,
1173 ", no peer selected");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001174 return NULL;
1175 }
1176
1177//looks like this is ONLY used by the fact that later we pick survivor[0].
1178//we can avoid sorting then, just find the minimum once!
1179 qsort(survivor, num_survivors, sizeof(survivor[0]), compare_survivor_metric);
1180
1181 /* For each association p in turn, calculate the selection
1182 * jitter p->sjitter as the square root of the sum of squares
1183 * (p->offset - q->offset) over all q associations. The idea is
1184 * to repeatedly discard the survivor with maximum selection
1185 * jitter until a termination condition is met.
1186 */
1187 while (1) {
1188 unsigned max_idx = max_idx;
1189 double max_selection_jitter = max_selection_jitter;
1190 double min_jitter = min_jitter;
1191
1192 if (num_survivors <= MIN_CLUSTERED) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001193 VERB4 bb_error_msg("num_survivors %d <= %d, not discarding more",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001194 num_survivors, MIN_CLUSTERED);
1195 break;
1196 }
1197
1198 /* To make sure a few survivors are left
1199 * for the clustering algorithm to chew on,
1200 * we stop if the number of survivors
1201 * is less than or equal to MIN_CLUSTERED (3).
1202 */
1203 for (i = 0; i < num_survivors; i++) {
1204 double selection_jitter_sq;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001205
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001206 p = survivor[i].p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001207 if (i == 0 || p->filter_jitter < min_jitter)
1208 min_jitter = p->filter_jitter;
1209
1210 selection_jitter_sq = 0;
1211 for (j = 0; j < num_survivors; j++) {
1212 peer_t *q = survivor[j].p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001213 selection_jitter_sq += SQUARE(p->filter_offset - q->filter_offset);
1214 }
1215 if (i == 0 || selection_jitter_sq > max_selection_jitter) {
1216 max_selection_jitter = selection_jitter_sq;
1217 max_idx = i;
1218 }
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001219 VERB6 bb_error_msg("survivor %d selection_jitter^2:%f",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001220 i, selection_jitter_sq);
1221 }
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001222 max_selection_jitter = SQRT(max_selection_jitter / num_survivors);
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001223 VERB5 bb_error_msg("max_selection_jitter (at %d):%f min_jitter:%f",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001224 max_idx, max_selection_jitter, min_jitter);
1225
1226 /* If the maximum selection jitter is less than the
1227 * minimum peer jitter, then tossing out more survivors
1228 * will not lower the minimum peer jitter, so we might
1229 * as well stop.
1230 */
1231 if (max_selection_jitter < min_jitter) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001232 VERB4 bb_error_msg("max_selection_jitter:%f < min_jitter:%f, num_survivors:%d, not discarding more",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001233 max_selection_jitter, min_jitter, num_survivors);
1234 break;
1235 }
1236
1237 /* Delete survivor[max_idx] from the list
1238 * and go around again.
1239 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001240 VERB6 bb_error_msg("dropping survivor %d", max_idx);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001241 num_survivors--;
1242 while (max_idx < num_survivors) {
1243 survivor[max_idx] = survivor[max_idx + 1];
1244 max_idx++;
1245 }
1246 }
1247
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001248 if (0) {
1249 /* Combine the offsets of the clustering algorithm survivors
1250 * using a weighted average with weight determined by the root
1251 * distance. Compute the selection jitter as the weighted RMS
1252 * difference between the first survivor and the remaining
1253 * survivors. In some cases the inherent clock jitter can be
1254 * reduced by not using this algorithm, especially when frequent
1255 * clockhopping is involved. bbox: thus we don't do it.
1256 */
1257 double x, y, z, w;
1258 y = z = w = 0;
1259 for (i = 0; i < num_survivors; i++) {
1260 p = survivor[i].p;
1261 x = root_distance(p);
1262 y += 1 / x;
1263 z += p->filter_offset / x;
1264 w += SQUARE(p->filter_offset - survivor[0].p->filter_offset) / x;
1265 }
1266 //G.cluster_offset = z / y;
1267 //G.cluster_jitter = SQRT(w / y);
1268 }
1269
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001270 /* Pick the best clock. If the old system peer is on the list
1271 * and at the same stratum as the first survivor on the list,
1272 * then don't do a clock hop. Otherwise, select the first
1273 * survivor on the list as the new system peer.
1274 */
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001275 p = survivor[0].p;
1276 if (G.last_update_peer
1277 && G.last_update_peer->lastpkt_stratum <= p->lastpkt_stratum
1278 ) {
1279 /* Starting from 1 is ok here */
1280 for (i = 1; i < num_survivors; i++) {
1281 if (G.last_update_peer == survivor[i].p) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001282 VERB5 bb_error_msg("keeping old synced peer");
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001283 p = G.last_update_peer;
1284 goto keep_old;
1285 }
1286 }
1287 }
1288 G.last_update_peer = p;
1289 keep_old:
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001290 VERB4 bb_error_msg("selected peer %s filter_offset:%+f age:%f",
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001291 p->p_dotted,
1292 p->filter_offset,
1293 G.cur_time - p->lastpkt_recv_time
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001294 );
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001295 return p;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001296}
1297
1298
1299/*
1300 * Local clock discipline and its helpers
1301 */
1302static void
1303set_new_values(int disc_state, double offset, double recv_time)
1304{
1305 /* Enter new state and set state variables. Note we use the time
1306 * of the last clock filter sample, which must be earlier than
1307 * the current time.
1308 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001309 VERB4 bb_error_msg("disc_state=%d last update offset=%f recv_time=%f",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001310 disc_state, offset, recv_time);
1311 G.discipline_state = disc_state;
1312 G.last_update_offset = offset;
1313 G.last_update_recv_time = recv_time;
1314}
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001315/* Return: -1: decrease poll interval, 0: leave as is, 1: increase */
Denys Vlasenko0b002812010-01-03 08:59:59 +01001316static NOINLINE int
1317update_local_clock(peer_t *p)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001318{
1319 int rc;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001320 struct timex tmx;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001321 /* Note: can use G.cluster_offset instead: */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001322 double offset = p->filter_offset;
1323 double recv_time = p->lastpkt_recv_time;
1324 double abs_offset;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001325#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001326 double freq_drift;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001327#endif
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001328#if !USING_KERNEL_PLL_LOOP || USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001329 double since_last_update;
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001330#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001331 double etemp, dtemp;
1332
1333 abs_offset = fabs(offset);
1334
Denys Vlasenko12628b72010-01-11 01:31:59 +01001335#if 0
Denys Vlasenko24928ff2010-01-25 19:30:16 +01001336 /* If needed, -S script can do it by looking at $offset
1337 * env var and killing parent */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001338 /* If the offset is too large, give up and go home */
1339 if (abs_offset > PANIC_THRESHOLD) {
1340 bb_error_msg_and_die("offset %f far too big, exiting", offset);
1341 }
Denys Vlasenko12628b72010-01-11 01:31:59 +01001342#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001343
1344 /* If this is an old update, for instance as the result
1345 * of a system peer change, avoid it. We never use
1346 * an old sample or the same sample twice.
1347 */
1348 if (recv_time <= G.last_update_recv_time) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001349 VERB3 bb_error_msg("update from %s: same or older datapoint, not using it",
1350 p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001351 return 0; /* "leave poll interval as is" */
1352 }
1353
1354 /* Clock state machine transition function. This is where the
1355 * action is and defines how the system reacts to large time
1356 * and frequency errors.
1357 */
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001358#if !USING_KERNEL_PLL_LOOP || USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001359 since_last_update = recv_time - G.reftime;
Bartosz Golaszewski76ad7482014-01-18 15:36:27 +01001360#endif
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001361#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001362 freq_drift = 0;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001363#endif
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001364#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001365 if (G.discipline_state == STATE_FREQ) {
1366 /* Ignore updates until the stepout threshold */
1367 if (since_last_update < WATCH_THRESHOLD) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001368 VERB4 bb_error_msg("measuring drift, datapoint ignored, %f sec remains",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001369 WATCH_THRESHOLD - since_last_update);
1370 return 0; /* "leave poll interval as is" */
1371 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001372# if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001373 freq_drift = (offset - G.last_update_offset) / since_last_update;
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001374# endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001375 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001376#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001377
1378 /* There are two main regimes: when the
1379 * offset exceeds the step threshold and when it does not.
1380 */
1381 if (abs_offset > STEP_THRESHOLD) {
Denys Vlasenko6c46eed2013-12-04 17:12:11 +01001382#if 0
Denys Vlasenkocb1dc1d2013-12-04 13:19:04 +01001383 double remains;
1384
Denys Vlasenko6c46eed2013-12-04 17:12:11 +01001385// This "spike state" seems to be useless, peer selection already drops
1386// occassional "bad" datapoints. If we are here, there were _many_
1387// large offsets. When a few first large offsets are seen,
1388// we end up in "no valid datapoints, no peer selected" state.
1389// Only when enough of them are seen (which means it's not a fluke),
1390// we end up here. Looks like _our_ clock is off.
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001391 switch (G.discipline_state) {
1392 case STATE_SYNC:
1393 /* The first outlyer: ignore it, switch to SPIK state */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001394 VERB3 bb_error_msg("update from %s: offset:%+f, spike%s",
1395 p->p_dotted, offset,
1396 "");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001397 G.discipline_state = STATE_SPIK;
1398 return -1; /* "decrease poll interval" */
1399
1400 case STATE_SPIK:
1401 /* Ignore succeeding outlyers until either an inlyer
1402 * is found or the stepout threshold is exceeded.
1403 */
Denys Vlasenkocb1dc1d2013-12-04 13:19:04 +01001404 remains = WATCH_THRESHOLD - since_last_update;
1405 if (remains > 0) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001406 VERB3 bb_error_msg("update from %s: offset:%+f, spike%s",
1407 p->p_dotted, offset,
1408 ", datapoint ignored");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001409 return -1; /* "decrease poll interval" */
1410 }
1411 /* fall through: we need to step */
1412 } /* switch */
Denys Vlasenko6c46eed2013-12-04 17:12:11 +01001413#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001414
1415 /* Step the time and clamp down the poll interval.
1416 *
1417 * In NSET state an initial frequency correction is
1418 * not available, usually because the frequency file has
1419 * not yet been written. Since the time is outside the
1420 * capture range, the clock is stepped. The frequency
1421 * will be set directly following the stepout interval.
1422 *
1423 * In FSET state the initial frequency has been set
1424 * from the frequency file. Since the time is outside
1425 * the capture range, the clock is stepped immediately,
1426 * rather than after the stepout interval. Guys get
1427 * nervous if it takes 17 minutes to set the clock for
1428 * the first time.
1429 *
1430 * In SPIK state the stepout threshold has expired and
1431 * the phase is still above the step threshold. Note
1432 * that a single spike greater than the step threshold
1433 * is always suppressed, even at the longer poll
1434 * intervals.
1435 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001436 VERB4 bb_error_msg("stepping time by %+f; poll_exp=MINPOLL", offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001437 step_time(offset);
1438 if (option_mask32 & OPT_q) {
1439 /* We were only asked to set time once. Done. */
1440 exit(0);
1441 }
1442
1443 G.polladj_count = 0;
1444 G.poll_exp = MINPOLL;
1445 G.stratum = MAXSTRAT;
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001446
Denys Vlasenko12628b72010-01-11 01:31:59 +01001447 run_script("step", offset);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001448
Denys Vlasenkocb761132014-01-08 17:17:52 +01001449 recv_time += offset;
1450
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001451#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001452 if (G.discipline_state == STATE_NSET) {
1453 set_new_values(STATE_FREQ, /*offset:*/ 0, recv_time);
1454 return 1; /* "ok to increase poll interval" */
1455 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001456#endif
Denys Vlasenko547ee792012-03-05 10:18:00 +01001457 abs_offset = offset = 0;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001458 set_new_values(STATE_SYNC, offset, recv_time);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001459
1460 } else { /* abs_offset <= STEP_THRESHOLD */
1461
Denys Vlasenko0b002812010-01-03 08:59:59 +01001462 if (G.poll_exp < MINPOLL && G.initial_poll_complete) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001463 VERB4 bb_error_msg("small offset:%+f, disabling burst mode", offset);
Denys Vlasenko0b002812010-01-03 08:59:59 +01001464 G.polladj_count = 0;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001465 G.poll_exp = MINPOLL;
1466 }
1467
1468 /* Compute the clock jitter as the RMS of exponentially
1469 * weighted offset differences. Used by the poll adjust code.
1470 */
1471 etemp = SQUARE(G.discipline_jitter);
Denys Vlasenko74584b82012-03-02 01:22:40 +01001472 dtemp = SQUARE(offset - G.last_update_offset);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001473 G.discipline_jitter = SQRT(etemp + (dtemp - etemp) / AVG);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001474
1475 switch (G.discipline_state) {
1476 case STATE_NSET:
1477 if (option_mask32 & OPT_q) {
1478 /* We were only asked to set time once.
1479 * The clock is precise enough, no need to step.
1480 */
1481 exit(0);
1482 }
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001483#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001484 /* This is the first update received and the frequency
1485 * has not been initialized. The first thing to do
1486 * is directly measure the oscillator frequency.
1487 */
1488 set_new_values(STATE_FREQ, offset, recv_time);
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001489#else
1490 set_new_values(STATE_SYNC, offset, recv_time);
1491#endif
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001492 VERB4 bb_error_msg("transitioning to FREQ, datapoint ignored");
Denys Vlasenko0b002812010-01-03 08:59:59 +01001493 return 0; /* "leave poll interval as is" */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001494
1495#if 0 /* this is dead code for now */
1496 case STATE_FSET:
1497 /* This is the first update and the frequency
1498 * has been initialized. Adjust the phase, but
1499 * don't adjust the frequency until the next update.
1500 */
1501 set_new_values(STATE_SYNC, offset, recv_time);
1502 /* freq_drift remains 0 */
1503 break;
1504#endif
1505
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001506#if USING_INITIAL_FREQ_ESTIMATION
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001507 case STATE_FREQ:
1508 /* since_last_update >= WATCH_THRESHOLD, we waited enough.
1509 * Correct the phase and frequency and switch to SYNC state.
1510 * freq_drift was already estimated (see code above)
1511 */
1512 set_new_values(STATE_SYNC, offset, recv_time);
1513 break;
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001514#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001515
1516 default:
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001517#if !USING_KERNEL_PLL_LOOP
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001518 /* Compute freq_drift due to PLL and FLL contributions.
1519 *
1520 * The FLL and PLL frequency gain constants
1521 * depend on the poll interval and Allan
1522 * intercept. The FLL is not used below one-half
1523 * the Allan intercept. Above that the loop gain
1524 * increases in steps to 1 / AVG.
1525 */
1526 if ((1 << G.poll_exp) > ALLAN / 2) {
1527 etemp = FLL - G.poll_exp;
1528 if (etemp < AVG)
1529 etemp = AVG;
1530 freq_drift += (offset - G.last_update_offset) / (MAXD(since_last_update, ALLAN) * etemp);
1531 }
1532 /* For the PLL the integration interval
1533 * (numerator) is the minimum of the update
1534 * interval and poll interval. This allows
1535 * oversampling, but not undersampling.
1536 */
1537 etemp = MIND(since_last_update, (1 << G.poll_exp));
1538 dtemp = (4 * PLL) << G.poll_exp;
1539 freq_drift += offset * etemp / SQUARE(dtemp);
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001540#endif
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001541 set_new_values(STATE_SYNC, offset, recv_time);
1542 break;
1543 }
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001544 if (G.stratum != p->lastpkt_stratum + 1) {
1545 G.stratum = p->lastpkt_stratum + 1;
Denys Vlasenko12628b72010-01-11 01:31:59 +01001546 run_script("stratum", offset);
Denys Vlasenkoede737b2010-01-06 12:27:47 +01001547 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001548 }
1549
Denys Vlasenko547ee792012-03-05 10:18:00 +01001550 if (G.discipline_jitter < G_precision_sec)
1551 G.discipline_jitter = G_precision_sec;
1552 G.offset_to_jitter_ratio = abs_offset / G.discipline_jitter;
1553
Denys Vlasenko0b002812010-01-03 08:59:59 +01001554 G.reftime = G.cur_time;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001555 G.ntp_status = p->lastpkt_status;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001556 G.refid = p->lastpkt_refid;
1557 G.rootdelay = p->lastpkt_rootdelay + p->lastpkt_delay;
Denys Vlasenko9b20adc2010-01-17 02:51:33 +01001558 dtemp = p->filter_jitter; // SQRT(SQUARE(p->filter_jitter) + SQUARE(G.cluster_jitter));
Denys Vlasenko0b002812010-01-03 08:59:59 +01001559 dtemp += MAXD(p->filter_dispersion + FREQ_TOLERANCE * (G.cur_time - p->lastpkt_recv_time) + abs_offset, MINDISP);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001560 G.rootdisp = p->lastpkt_rootdisp + dtemp;
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001561 VERB4 bb_error_msg("updating leap/refid/reftime/rootdisp from peer %s", p->p_dotted);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001562
1563 /* We are in STATE_SYNC now, but did not do adjtimex yet.
1564 * (Any other state does not reach this, they all return earlier)
Denys Vlasenko132b0442012-03-05 00:51:48 +01001565 * By this time, freq_drift and offset are set
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001566 * to values suitable for adjtimex.
Denys Vlasenko61313112010-01-01 19:56:16 +01001567 */
1568#if !USING_KERNEL_PLL_LOOP
1569 /* Calculate the new frequency drift and frequency stability (wander).
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001570 * Compute the clock wander as the RMS of exponentially weighted
1571 * frequency differences. This is not used directly, but can,
1572 * along with the jitter, be a highly useful monitoring and
1573 * debugging tool.
1574 */
1575 dtemp = G.discipline_freq_drift + freq_drift;
Denys Vlasenko61313112010-01-01 19:56:16 +01001576 G.discipline_freq_drift = MAXD(MIND(MAXDRIFT, dtemp), -MAXDRIFT);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001577 etemp = SQUARE(G.discipline_wander);
1578 dtemp = SQUARE(dtemp);
1579 G.discipline_wander = SQRT(etemp + (dtemp - etemp) / AVG);
1580
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001581 VERB4 bb_error_msg("discipline freq_drift=%.9f(int:%ld corr:%e) wander=%f",
Denys Vlasenko61313112010-01-01 19:56:16 +01001582 G.discipline_freq_drift,
1583 (long)(G.discipline_freq_drift * 65536e6),
1584 freq_drift,
1585 G.discipline_wander);
1586#endif
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001587 VERB4 {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001588 memset(&tmx, 0, sizeof(tmx));
1589 if (adjtimex(&tmx) < 0)
1590 bb_perror_msg_and_die("adjtimex");
Denys Vlasenko8be49c32012-03-06 19:16:50 +01001591 bb_error_msg("p adjtimex freq:%ld offset:%+ld status:0x%x tc:%ld",
1592 tmx.freq, tmx.offset, tmx.status, tmx.constant);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001593 }
1594
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001595 memset(&tmx, 0, sizeof(tmx));
1596#if 0
Denys Vlasenko61313112010-01-01 19:56:16 +01001597//doesn't work, offset remains 0 (!) in kernel:
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001598//ntpd: set adjtimex freq:1786097 tmx.offset:77487
1599//ntpd: prev adjtimex freq:1786097 tmx.offset:0
1600//ntpd: cur adjtimex freq:1786097 tmx.offset:0
1601 tmx.modes = ADJ_FREQUENCY | ADJ_OFFSET;
1602 /* 65536 is one ppm */
1603 tmx.freq = G.discipline_freq_drift * 65536e6;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001604#endif
1605 tmx.modes = ADJ_OFFSET | ADJ_STATUS | ADJ_TIMECONST;// | ADJ_MAXERROR | ADJ_ESTERROR;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001606 tmx.offset = (offset * 1000000); /* usec */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001607 tmx.status = STA_PLL;
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001608 if (G.ntp_status & LI_PLUSSEC)
1609 tmx.status |= STA_INS;
1610 if (G.ntp_status & LI_MINUSSEC)
1611 tmx.status |= STA_DEL;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001612
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001613 tmx.constant = G.poll_exp - 4;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001614 /* EXPERIMENTAL.
1615 * The below if statement should be unnecessary, but...
1616 * It looks like Linux kernel's PLL is far too gentle in changing
1617 * tmx.freq in response to clock offset. Offset keeps growing
1618 * and eventually we fall back to smaller poll intervals.
1619 * We can make correction more agressive (about x2) by supplying
1620 * PLL time constant which is one less than the real one.
1621 * To be on a safe side, let's do it only if offset is significantly
1622 * larger than jitter.
1623 */
Denys Vlasenko547ee792012-03-05 10:18:00 +01001624 if (tmx.constant > 0 && G.offset_to_jitter_ratio >= TIMECONST_HACK_GATE)
Denys Vlasenko132b0442012-03-05 00:51:48 +01001625 tmx.constant--;
1626
1627 //tmx.esterror = (uint32_t)(clock_jitter * 1e6);
1628 //tmx.maxerror = (uint32_t)((sys_rootdelay / 2 + sys_rootdisp) * 1e6);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001629 rc = adjtimex(&tmx);
1630 if (rc < 0)
1631 bb_perror_msg_and_die("adjtimex");
Denys Vlasenkod9109e32010-01-02 00:36:43 +01001632 /* NB: here kernel returns constant == G.poll_exp, not == G.poll_exp - 4.
1633 * Not sure why. Perhaps it is normal.
1634 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001635 VERB4 bb_error_msg("adjtimex:%d freq:%ld offset:%+ld status:0x%x",
Denys Vlasenko132b0442012-03-05 00:51:48 +01001636 rc, tmx.freq, tmx.offset, tmx.status);
Denys Vlasenko12628b72010-01-11 01:31:59 +01001637 G.kernel_freq_drift = tmx.freq / 65536;
Denys Vlasenko547ee792012-03-05 10:18:00 +01001638 VERB2 bb_error_msg("update from:%s offset:%+f jitter:%f clock drift:%+.3fppm tc:%d",
Denys Vlasenko132b0442012-03-05 00:51:48 +01001639 p->p_dotted, offset, G.discipline_jitter, (double)tmx.freq / 65536, (int)tmx.constant);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001640
1641 return 1; /* "ok to increase poll interval" */
1642}
1643
1644
1645/*
1646 * We've got a new reply packet from a peer, process it
1647 * (helpers first)
1648 */
1649static unsigned
1650retry_interval(void)
1651{
1652 /* Local problem, want to retry soon */
1653 unsigned interval, r;
1654 interval = RETRY_INTERVAL;
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +01001655 r = rand();
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001656 interval += r % (unsigned)(RETRY_INTERVAL / 4);
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001657 VERB4 bb_error_msg("chose retry interval:%u", interval);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001658 return interval;
1659}
1660static unsigned
Denys Vlasenko0b002812010-01-03 08:59:59 +01001661poll_interval(int exponent)
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001662{
Denys Vlasenko3e78f6f2014-02-09 15:35:04 +01001663 unsigned interval, r, mask;
Denys Vlasenko0b002812010-01-03 08:59:59 +01001664 exponent = G.poll_exp + exponent;
1665 if (exponent < 0)
1666 exponent = 0;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001667 interval = 1 << exponent;
Denys Vlasenko3e78f6f2014-02-09 15:35:04 +01001668 mask = ((interval-1) >> 4) | 1;
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +01001669 r = rand();
Denys Vlasenko3e78f6f2014-02-09 15:35:04 +01001670 interval += r & mask; /* ~ random(0..1) * interval/16 */
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001671 VERB4 bb_error_msg("chose poll interval:%u (poll_exp:%d exp:%d)", interval, G.poll_exp, exponent);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001672 return interval;
1673}
Denys Vlasenko0b002812010-01-03 08:59:59 +01001674static NOINLINE void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001675recv_and_process_peer_pkt(peer_t *p)
1676{
1677 int rc;
1678 ssize_t size;
1679 msg_t msg;
1680 double T1, T2, T3, T4;
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001681 double dv, offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001682 unsigned interval;
1683 datapoint_t *datapoint;
1684 peer_t *q;
1685
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001686 offset = 0;
1687
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001688 /* We can recvfrom here and check from.IP, but some multihomed
1689 * ntp servers reply from their *other IP*.
1690 * TODO: maybe we should check at least what we can: from.port == 123?
1691 */
1692 size = recv(p->p_fd, &msg, sizeof(msg), MSG_DONTWAIT);
1693 if (size == -1) {
1694 bb_perror_msg("recv(%s) error", p->p_dotted);
1695 if (errno == EHOSTUNREACH || errno == EHOSTDOWN
1696 || errno == ENETUNREACH || errno == ENETDOWN
1697 || errno == ECONNREFUSED || errno == EADDRNOTAVAIL
1698 || errno == EAGAIN
1699 ) {
1700//TODO: always do this?
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001701 interval = retry_interval();
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001702 goto set_next_and_ret;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001703 }
1704 xfunc_die();
1705 }
1706
1707 if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE) {
1708 bb_error_msg("malformed packet received from %s", p->p_dotted);
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001709 return;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001710 }
1711
1712 if (msg.m_orgtime.int_partl != p->p_xmt_msg.m_xmttime.int_partl
1713 || msg.m_orgtime.fractionl != p->p_xmt_msg.m_xmttime.fractionl
1714 ) {
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001715 /* Somebody else's packet */
1716 return;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001717 }
1718
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001719 /* We do not expect any more packets from this peer for now.
1720 * Closing the socket informs kernel about it.
1721 * We open a new socket when we send a new query.
1722 */
1723 close(p->p_fd);
1724 p->p_fd = -1;
1725
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001726 if ((msg.m_status & LI_ALARM) == LI_ALARM
1727 || msg.m_stratum == 0
1728 || msg.m_stratum > NTP_MAXSTRATUM
1729 ) {
1730// TODO: stratum 0 responses may have commands in 32-bit m_refid field:
1731// "DENY", "RSTR" - peer does not like us at all
1732// "RATE" - peer is overloaded, reduce polling freq
Denys Vlasenkod99ef632013-05-22 17:48:19 +02001733 bb_error_msg("reply from %s: peer is unsynced", p->p_dotted);
1734 goto pick_normal_interval;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001735 }
1736
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001737// /* Verify valid root distance */
1738// if (msg.m_rootdelay / 2 + msg.m_rootdisp >= MAXDISP || p->lastpkt_reftime > msg.m_xmt)
1739// return; /* invalid header values */
1740
Denys Vlasenko1ee5afd2010-01-02 15:57:07 +01001741 p->lastpkt_status = msg.m_status;
1742 p->lastpkt_stratum = msg.m_stratum;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001743 p->lastpkt_rootdelay = sfp_to_d(msg.m_rootdelay);
1744 p->lastpkt_rootdisp = sfp_to_d(msg.m_rootdisp);
1745 p->lastpkt_refid = msg.m_refid;
1746
1747 /*
1748 * From RFC 2030 (with a correction to the delay math):
1749 *
1750 * Timestamp Name ID When Generated
1751 * ------------------------------------------------------------
1752 * Originate Timestamp T1 time request sent by client
1753 * Receive Timestamp T2 time request received by server
1754 * Transmit Timestamp T3 time reply sent by server
1755 * Destination Timestamp T4 time reply received by client
1756 *
1757 * The roundtrip delay and local clock offset are defined as
1758 *
1759 * delay = (T4 - T1) - (T3 - T2); offset = ((T2 - T1) + (T3 - T4)) / 2
1760 */
1761 T1 = p->p_xmttime;
1762 T2 = lfp_to_d(msg.m_rectime);
1763 T3 = lfp_to_d(msg.m_xmttime);
Denys Vlasenko0b002812010-01-03 08:59:59 +01001764 T4 = G.cur_time;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001765
1766 p->lastpkt_recv_time = T4;
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001767 VERB6 bb_error_msg("%s->lastpkt_recv_time=%f", p->p_dotted, p->lastpkt_recv_time);
Denys Vlasenkod99ef632013-05-22 17:48:19 +02001768
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001769 /* The delay calculation is a special case. In cases where the
1770 * server and client clocks are running at different rates and
1771 * with very fast networks, the delay can appear negative. In
1772 * order to avoid violating the Principle of Least Astonishment,
1773 * the delay is clamped not less than the system precision.
1774 */
Denys Vlasenkod99ef632013-05-22 17:48:19 +02001775 dv = p->lastpkt_delay;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001776 p->lastpkt_delay = (T4 - T1) - (T3 - T2);
Denys Vlasenkoa9aaeda2010-01-01 22:23:27 +01001777 if (p->lastpkt_delay < G_precision_sec)
1778 p->lastpkt_delay = G_precision_sec;
Denys Vlasenkod99ef632013-05-22 17:48:19 +02001779 /*
1780 * If this packet's delay is much bigger than the last one,
1781 * it's better to just ignore it than use its much less precise value.
1782 */
1783 if (p->reachable_bits && p->lastpkt_delay > dv * BAD_DELAY_GROWTH) {
1784 bb_error_msg("reply from %s: delay %f is too high, ignoring", p->p_dotted, p->lastpkt_delay);
1785 goto pick_normal_interval;
1786 }
1787
1788 p->datapoint_idx = p->reachable_bits ? (p->datapoint_idx + 1) % NUM_DATAPOINTS : 0;
1789 datapoint = &p->filter_datapoint[p->datapoint_idx];
1790 datapoint->d_recv_time = T4;
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001791 datapoint->d_offset = offset = ((T2 - T1) + (T3 - T4)) / 2;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001792 datapoint->d_dispersion = LOG2D(msg.m_precision_exp) + G_precision_sec;
Denys Vlasenko0b002812010-01-03 08:59:59 +01001793 if (!p->reachable_bits) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001794 /* 1st datapoint ever - replicate offset in every element */
1795 int i;
Denys Vlasenko132b0442012-03-05 00:51:48 +01001796 for (i = 0; i < NUM_DATAPOINTS; i++) {
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001797 p->filter_datapoint[i].d_offset = offset;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001798 }
1799 }
1800
Denys Vlasenko0b002812010-01-03 08:59:59 +01001801 p->reachable_bits |= 1;
Denys Vlasenko074e8dc2010-01-04 23:58:13 +01001802 if ((MAX_VERBOSE && G.verbose) || (option_mask32 & OPT_w)) {
Denys Vlasenko79bec062012-03-08 13:02:52 +01001803 bb_error_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 +01001804 p->p_dotted,
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001805 offset,
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001806 p->lastpkt_delay,
1807 p->lastpkt_status,
1808 p->lastpkt_stratum,
1809 p->lastpkt_refid,
Denys Vlasenkod98dc922012-03-08 03:27:49 +01001810 p->lastpkt_rootdelay,
1811 p->reachable_bits
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001812 /* not shown: m_ppoll, m_precision_exp, m_rootdisp,
1813 * m_reftime, m_orgtime, m_rectime, m_xmttime
1814 */
1815 );
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001816 }
1817
1818 /* Muck with statictics and update the clock */
Denys Vlasenko0b002812010-01-03 08:59:59 +01001819 filter_datapoints(p);
1820 q = select_and_cluster();
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001821 rc = -1;
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001822 if (q) {
1823 rc = 0;
Denys Vlasenko12628b72010-01-11 01:31:59 +01001824 if (!(option_mask32 & OPT_w)) {
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001825 rc = update_local_clock(q);
Denys Vlasenko12628b72010-01-11 01:31:59 +01001826 /* If drift is dangerously large, immediately
1827 * drop poll interval one step down.
1828 */
Denys Vlasenko5b9a9102010-01-17 01:05:58 +01001829 if (fabs(q->filter_offset) >= POLLDOWN_OFFSET) {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001830 VERB4 bb_error_msg("offset:%+f > POLLDOWN_OFFSET", q->filter_offset);
Denys Vlasenko12628b72010-01-11 01:31:59 +01001831 goto poll_down;
1832 }
1833 }
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001834 }
Denys Vlasenko12628b72010-01-11 01:31:59 +01001835 /* else: no peer selected, rc = -1: we want to poll more often */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001836
1837 if (rc != 0) {
1838 /* Adjust the poll interval by comparing the current offset
1839 * with the clock jitter. If the offset is less than
1840 * the clock jitter times a constant, then the averaging interval
1841 * is increased, otherwise it is decreased. A bit of hysteresis
1842 * helps calm the dance. Works best using burst mode.
1843 */
Denys Vlasenko547ee792012-03-05 10:18:00 +01001844 if (rc > 0 && G.offset_to_jitter_ratio <= POLLADJ_GATE) {
Denys Vlasenkobfc2a322010-01-01 18:12:06 +01001845 /* was += G.poll_exp but it is a bit
1846 * too optimistic for my taste at high poll_exp's */
1847 G.polladj_count += MINPOLL;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001848 if (G.polladj_count > POLLADJ_LIMIT) {
1849 G.polladj_count = 0;
1850 if (G.poll_exp < MAXPOLL) {
1851 G.poll_exp++;
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001852 VERB4 bb_error_msg("polladj: discipline_jitter:%f ++poll_exp=%d",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001853 G.discipline_jitter, G.poll_exp);
1854 }
1855 } else {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001856 VERB4 bb_error_msg("polladj: incr:%d", G.polladj_count);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001857 }
1858 } else {
1859 G.polladj_count -= G.poll_exp * 2;
Denys Vlasenko12628b72010-01-11 01:31:59 +01001860 if (G.polladj_count < -POLLADJ_LIMIT || G.poll_exp >= BIGPOLL) {
1861 poll_down:
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001862 G.polladj_count = 0;
1863 if (G.poll_exp > MINPOLL) {
Denys Vlasenko2e36eb82010-01-02 01:50:16 +01001864 llist_t *item;
1865
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001866 G.poll_exp--;
Denys Vlasenko2e36eb82010-01-02 01:50:16 +01001867 /* Correct p->next_action_time in each peer
1868 * which waits for sending, so that they send earlier.
1869 * Old pp->next_action_time are on the order
1870 * of t + (1 << old_poll_exp) + small_random,
1871 * we simply need to subtract ~half of that.
1872 */
1873 for (item = G.ntp_peers; item != NULL; item = item->link) {
1874 peer_t *pp = (peer_t *) item->data;
1875 if (pp->p_fd < 0)
1876 pp->next_action_time -= (1 << G.poll_exp);
1877 }
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001878 VERB4 bb_error_msg("polladj: discipline_jitter:%f --poll_exp=%d",
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001879 G.discipline_jitter, G.poll_exp);
1880 }
1881 } else {
Denys Vlasenkoa14958c2013-12-04 16:32:09 +01001882 VERB4 bb_error_msg("polladj: decr:%d", G.polladj_count);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001883 }
1884 }
1885 }
1886
1887 /* Decide when to send new query for this peer */
Denys Vlasenkod99ef632013-05-22 17:48:19 +02001888 pick_normal_interval:
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001889 interval = poll_interval(0);
Denys Vlasenko0b3a38b2013-12-08 16:11:04 +01001890 if (fabs(offset) >= STEP_THRESHOLD * 8 && interval > BIGOFF_INTERVAL) {
1891 /* If we are synced, offsets are less than STEP_THRESHOLD,
1892 * or at the very least not much larger than it.
1893 * Now we see a largish one.
1894 * Either this peer is feeling bad, or packet got corrupted,
1895 * or _our_ clock is wrong now and _all_ peers will show similar
1896 * largish offsets too.
1897 * I observed this with laptop suspend stopping clock.
1898 * In any case, it makes sense to make next request soonish:
1899 * cases 1 and 2: get a better datapoint,
1900 * case 3: allows to resync faster.
1901 */
1902 interval = BIGOFF_INTERVAL;
1903 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001904
Denys Vlasenko4125a6b2012-06-11 11:41:46 +02001905 set_next_and_ret:
Denys Vlasenko4168fdd2010-01-04 00:19:13 +01001906 set_next(p, interval);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001907}
1908
1909#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko0b002812010-01-03 08:59:59 +01001910static NOINLINE void
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001911recv_and_process_client_pkt(void /*int fd*/)
1912{
1913 ssize_t size;
Cristian Ionescu-Idbohrn662972a2011-05-16 03:53:00 +02001914 //uint8_t version;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001915 len_and_sockaddr *to;
1916 struct sockaddr *from;
1917 msg_t msg;
1918 uint8_t query_status;
1919 l_fixedpt_t query_xmttime;
1920
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02001921 to = get_sock_lsa(G_listen_fd);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001922 from = xzalloc(to->len);
1923
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02001924 size = recv_from_to(G_listen_fd, &msg, sizeof(msg), MSG_DONTWAIT, from, &to->u.sa, to->len);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001925 if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE) {
1926 char *addr;
1927 if (size < 0) {
1928 if (errno == EAGAIN)
1929 goto bail;
1930 bb_perror_msg_and_die("recv");
1931 }
1932 addr = xmalloc_sockaddr2dotted_noport(from);
1933 bb_error_msg("malformed packet received from %s: size %u", addr, (int)size);
1934 free(addr);
1935 goto bail;
1936 }
1937
1938 query_status = msg.m_status;
1939 query_xmttime = msg.m_xmttime;
1940
1941 /* Build a reply packet */
1942 memset(&msg, 0, sizeof(msg));
Paul Marksb7841cf2013-01-14 02:39:10 +01001943 msg.m_status = G.stratum < MAXSTRAT ? (G.ntp_status & LI_MASK) : LI_ALARM;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001944 msg.m_status |= (query_status & VERSION_MASK);
1945 msg.m_status |= ((query_status & MODE_MASK) == MODE_CLIENT) ?
Denys Vlasenko69675782013-01-14 01:34:48 +01001946 MODE_SERVER : MODE_SYM_PAS;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001947 msg.m_stratum = G.stratum;
1948 msg.m_ppoll = G.poll_exp;
1949 msg.m_precision_exp = G_precision_exp;
Denys Vlasenko0b002812010-01-03 08:59:59 +01001950 /* this time was obtained between poll() and recv() */
1951 msg.m_rectime = d_to_lfp(G.cur_time);
1952 msg.m_xmttime = d_to_lfp(gettime1900d()); /* this instant */
Denys Vlasenkod6782572010-10-04 01:20:44 +02001953 if (G.peer_cnt == 0) {
1954 /* we have no peers: "stratum 1 server" mode. reftime = our own time */
1955 G.reftime = G.cur_time;
1956 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001957 msg.m_reftime = d_to_lfp(G.reftime);
1958 msg.m_orgtime = query_xmttime;
1959 msg.m_rootdelay = d_to_sfp(G.rootdelay);
1960//simple code does not do this, fix simple code!
1961 msg.m_rootdisp = d_to_sfp(G.rootdisp);
Cristian Ionescu-Idbohrn662972a2011-05-16 03:53:00 +02001962 //version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001963 msg.m_refid = G.refid; // (version > (3 << VERSION_SHIFT)) ? G.refid : G.refid3;
1964
1965 /* We reply from the local address packet was sent to,
1966 * this makes to/from look swapped here: */
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02001967 do_sendto(G_listen_fd,
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01001968 /*from:*/ &to->u.sa, /*to:*/ from, /*addrlen:*/ to->len,
1969 &msg, size);
1970
1971 bail:
1972 free(to);
1973 free(from);
1974}
1975#endif
1976
1977/* Upstream ntpd's options:
1978 *
1979 * -4 Force DNS resolution of host names to the IPv4 namespace.
1980 * -6 Force DNS resolution of host names to the IPv6 namespace.
1981 * -a Require cryptographic authentication for broadcast client,
1982 * multicast client and symmetric passive associations.
1983 * This is the default.
1984 * -A Do not require cryptographic authentication for broadcast client,
1985 * multicast client and symmetric passive associations.
1986 * This is almost never a good idea.
1987 * -b Enable the client to synchronize to broadcast servers.
1988 * -c conffile
1989 * Specify the name and path of the configuration file,
1990 * default /etc/ntp.conf
1991 * -d Specify debugging mode. This option may occur more than once,
1992 * with each occurrence indicating greater detail of display.
1993 * -D level
1994 * Specify debugging level directly.
1995 * -f driftfile
1996 * Specify the name and path of the frequency file.
1997 * This is the same operation as the "driftfile FILE"
1998 * configuration command.
1999 * -g Normally, ntpd exits with a message to the system log
2000 * if the offset exceeds the panic threshold, which is 1000 s
2001 * by default. This option allows the time to be set to any value
2002 * without restriction; however, this can happen only once.
2003 * If the threshold is exceeded after that, ntpd will exit
2004 * with a message to the system log. This option can be used
2005 * with the -q and -x options. See the tinker command for other options.
2006 * -i jaildir
2007 * Chroot the server to the directory jaildir. This option also implies
2008 * that the server attempts to drop root privileges at startup
2009 * (otherwise, chroot gives very little additional security).
2010 * You may need to also specify a -u option.
2011 * -k keyfile
2012 * Specify the name and path of the symmetric key file,
2013 * default /etc/ntp/keys. This is the same operation
2014 * as the "keys FILE" configuration command.
2015 * -l logfile
2016 * Specify the name and path of the log file. The default
2017 * is the system log file. This is the same operation as
2018 * the "logfile FILE" configuration command.
2019 * -L Do not listen to virtual IPs. The default is to listen.
2020 * -n Don't fork.
2021 * -N To the extent permitted by the operating system,
2022 * run the ntpd at the highest priority.
2023 * -p pidfile
2024 * Specify the name and path of the file used to record the ntpd
2025 * process ID. This is the same operation as the "pidfile FILE"
2026 * configuration command.
2027 * -P priority
2028 * To the extent permitted by the operating system,
2029 * run the ntpd at the specified priority.
2030 * -q Exit the ntpd just after the first time the clock is set.
2031 * This behavior mimics that of the ntpdate program, which is
2032 * to be retired. The -g and -x options can be used with this option.
2033 * Note: The kernel time discipline is disabled with this option.
2034 * -r broadcastdelay
2035 * Specify the default propagation delay from the broadcast/multicast
2036 * server to this client. This is necessary only if the delay
2037 * cannot be computed automatically by the protocol.
2038 * -s statsdir
2039 * Specify the directory path for files created by the statistics
2040 * facility. This is the same operation as the "statsdir DIR"
2041 * configuration command.
2042 * -t key
2043 * Add a key number to the trusted key list. This option can occur
2044 * more than once.
2045 * -u user[:group]
2046 * Specify a user, and optionally a group, to switch to.
2047 * -v variable
2048 * -V variable
2049 * Add a system variable listed by default.
2050 * -x Normally, the time is slewed if the offset is less than the step
2051 * threshold, which is 128 ms by default, and stepped if above
2052 * the threshold. This option sets the threshold to 600 s, which is
2053 * well within the accuracy window to set the clock manually.
2054 * Note: since the slew rate of typical Unix kernels is limited
2055 * to 0.5 ms/s, each second of adjustment requires an amortization
2056 * interval of 2000 s. Thus, an adjustment as much as 600 s
2057 * will take almost 14 days to complete. This option can be used
2058 * with the -g and -q options. See the tinker command for other options.
2059 * Note: The kernel time discipline is disabled with this option.
2060 */
2061
2062/* By doing init in a separate function we decrease stack usage
2063 * in main loop.
2064 */
2065static NOINLINE void ntp_init(char **argv)
2066{
2067 unsigned opts;
2068 llist_t *peers;
2069
Denys Vlasenko0ed5f7a2014-03-05 18:58:15 +01002070 srand(getpid());
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002071
2072 if (getuid())
2073 bb_error_msg_and_die(bb_msg_you_must_be_root);
2074
2075 /* Set some globals */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002076 G.stratum = MAXSTRAT;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002077 if (BURSTPOLL != 0)
2078 G.poll_exp = BURSTPOLL; /* speeds up initial sync */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002079 G.last_script_run = G.reftime = G.last_update_recv_time = gettime1900d(); /* sets G.cur_time too */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002080
2081 /* Parse options */
2082 peers = NULL;
Denys Vlasenko074e8dc2010-01-04 23:58:13 +01002083 opt_complementary = "dd:p::wn"; /* d: counter; p: list; -w implies -n */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002084 opts = getopt32(argv,
2085 "nqNx" /* compat */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002086 "wp:S:"IF_FEATURE_NTPD_SERVER("l") /* NOT compat */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002087 "d" /* compat */
2088 "46aAbgL", /* compat, ignored */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002089 &peers, &G.script_name, &G.verbose);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002090 if (!(opts & (OPT_p|OPT_l)))
2091 bb_show_usage();
2092// if (opts & OPT_x) /* disable stepping, only slew is allowed */
2093// G.time_was_stepped = 1;
Denys Vlasenkod6782572010-10-04 01:20:44 +02002094 if (peers) {
2095 while (peers)
2096 add_peers(llist_pop(&peers));
2097 } else {
2098 /* -l but no peers: "stratum 1 server" mode */
2099 G.stratum = 1;
2100 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002101 if (!(opts & OPT_n)) {
2102 bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO, argv);
2103 logmode = LOGMODE_NONE;
2104 }
2105#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002106 G_listen_fd = -1;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002107 if (opts & OPT_l) {
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002108 G_listen_fd = create_and_bind_dgram_or_die(NULL, 123);
2109 socket_want_pktinfo(G_listen_fd);
2110 setsockopt(G_listen_fd, IPPROTO_IP, IP_TOS, &const_IPTOS_LOWDELAY, sizeof(const_IPTOS_LOWDELAY));
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002111 }
2112#endif
2113 /* I hesitate to set -20 prio. -15 should be high enough for timekeeping */
2114 if (opts & OPT_N)
2115 setpriority(PRIO_PROCESS, 0, -15);
2116
Denys Vlasenko74c992a2010-08-27 02:15:01 +02002117 /* If network is up, syncronization occurs in ~10 seconds.
Denys Vlasenko8e23faf2011-04-07 01:45:20 +02002118 * We give "ntpd -q" 10 seconds to get first reply,
2119 * then another 50 seconds to finish syncing.
Denys Vlasenko74c992a2010-08-27 02:15:01 +02002120 *
2121 * I tested ntpd 4.2.6p1 and apparently it never exits
2122 * (will try forever), but it does not feel right.
2123 * The goal of -q is to act like ntpdate: set time
2124 * after a reasonably small period of polling, or fail.
2125 */
Denys Vlasenko8e23faf2011-04-07 01:45:20 +02002126 if (opts & OPT_q) {
2127 option_mask32 |= OPT_qq;
2128 alarm(10);
2129 }
Denys Vlasenko74c992a2010-08-27 02:15:01 +02002130
2131 bb_signals(0
2132 | (1 << SIGTERM)
2133 | (1 << SIGINT)
2134 | (1 << SIGALRM)
2135 , record_signo
2136 );
2137 bb_signals(0
2138 | (1 << SIGPIPE)
2139 | (1 << SIGCHLD)
2140 , SIG_IGN
2141 );
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002142}
2143
2144int ntpd_main(int argc UNUSED_PARAM, char **argv) MAIN_EXTERNALLY_VISIBLE;
2145int ntpd_main(int argc UNUSED_PARAM, char **argv)
2146{
Denys Vlasenko0b002812010-01-03 08:59:59 +01002147#undef G
2148 struct globals G;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002149 struct pollfd *pfd;
2150 peer_t **idx2peer;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002151 unsigned cnt;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002152
Denys Vlasenko0b002812010-01-03 08:59:59 +01002153 memset(&G, 0, sizeof(G));
2154 SET_PTR_TO_GLOBALS(&G);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002155
2156 ntp_init(argv);
2157
Denys Vlasenko0b002812010-01-03 08:59:59 +01002158 /* If ENABLE_FEATURE_NTPD_SERVER, + 1 for listen_fd: */
2159 cnt = G.peer_cnt + ENABLE_FEATURE_NTPD_SERVER;
2160 idx2peer = xzalloc(sizeof(idx2peer[0]) * cnt);
2161 pfd = xzalloc(sizeof(pfd[0]) * cnt);
2162
Leonid Lisovskiy894ef602010-10-20 22:36:51 +02002163 /* Countdown: we never sync before we sent INITIAL_SAMPLES+1
Denys Vlasenko65d722b2010-01-11 02:14:04 +01002164 * packets to each peer.
Denys Vlasenko0b002812010-01-03 08:59:59 +01002165 * NB: if some peer is not responding, we may end up sending
2166 * fewer packets to it and more to other peers.
Leonid Lisovskiy894ef602010-10-20 22:36:51 +02002167 * NB2: sync usually happens using INITIAL_SAMPLES packets,
Denys Vlasenko65d722b2010-01-11 02:14:04 +01002168 * since last reply does not come back instantaneously.
Denys Vlasenko0b002812010-01-03 08:59:59 +01002169 */
Leonid Lisovskiy894ef602010-10-20 22:36:51 +02002170 cnt = G.peer_cnt * (INITIAL_SAMPLES + 1);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002171
Anthony G. Basile12677ac2012-12-10 14:49:39 -05002172 write_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid");
2173
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002174 while (!bb_got_signal) {
2175 llist_t *item;
2176 unsigned i, j;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002177 int nfds, timeout;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002178 double nextaction;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002179
2180 /* Nothing between here and poll() blocks for any significant time */
2181
Denys Vlasenko0b002812010-01-03 08:59:59 +01002182 nextaction = G.cur_time + 3600;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002183
2184 i = 0;
2185#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002186 if (G_listen_fd != -1) {
2187 pfd[0].fd = G_listen_fd;
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002188 pfd[0].events = POLLIN;
2189 i++;
2190 }
2191#endif
2192 /* Pass over peer list, send requests, time out on receives */
Denys Vlasenko0b002812010-01-03 08:59:59 +01002193 for (item = G.ntp_peers; item != NULL; item = item->link) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002194 peer_t *p = (peer_t *) item->data;
2195
Denys Vlasenko0b002812010-01-03 08:59:59 +01002196 if (p->next_action_time <= G.cur_time) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002197 if (p->p_fd == -1) {
2198 /* Time to send new req */
Denys Vlasenko0b002812010-01-03 08:59:59 +01002199 if (--cnt == 0) {
2200 G.initial_poll_complete = 1;
2201 }
2202 send_query_to_peer(p);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002203 } else {
2204 /* Timed out waiting for reply */
2205 close(p->p_fd);
2206 p->p_fd = -1;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002207 timeout = poll_interval(-2); /* -2: try a bit sooner */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002208 bb_error_msg("timed out waiting for %s, reach 0x%02x, next query in %us",
Denys Vlasenko0b002812010-01-03 08:59:59 +01002209 p->p_dotted, p->reachable_bits, timeout);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002210 set_next(p, timeout);
2211 }
2212 }
2213
2214 if (p->next_action_time < nextaction)
2215 nextaction = p->next_action_time;
2216
2217 if (p->p_fd >= 0) {
2218 /* Wait for reply from this peer */
2219 pfd[i].fd = p->p_fd;
2220 pfd[i].events = POLLIN;
2221 idx2peer[i] = p;
2222 i++;
2223 }
2224 }
2225
Denys Vlasenko0b002812010-01-03 08:59:59 +01002226 timeout = nextaction - G.cur_time;
2227 if (timeout < 0)
2228 timeout = 0;
2229 timeout++; /* (nextaction - G.cur_time) rounds down, compensating */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002230
2231 /* Here we may block */
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002232 VERB2 {
Denys Vlasenko3e3a8d52012-04-01 16:31:04 +02002233 if (i > (ENABLE_FEATURE_NTPD_SERVER && G_listen_fd != -1)) {
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002234 /* We wait for at least one reply.
2235 * Poll for it, without wasting time for message.
2236 * Since replies often come under 1 second, this also
2237 * reduces clutter in logs.
2238 */
2239 nfds = poll(pfd, i, 1000);
2240 if (nfds != 0)
2241 goto did_poll;
2242 if (--timeout <= 0)
2243 goto did_poll;
2244 }
Denys Vlasenko8be49c32012-03-06 19:16:50 +01002245 bb_error_msg("poll:%us sockets:%u interval:%us", timeout, i, 1 << G.poll_exp);
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002246 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002247 nfds = poll(pfd, i, timeout * 1000);
Denys Vlasenkoe8ce2852012-03-03 12:15:46 +01002248 did_poll:
Denys Vlasenko0b002812010-01-03 08:59:59 +01002249 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002250 if (nfds <= 0) {
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +02002251 if (!bb_got_signal /* poll wasn't interrupted by a signal */
2252 && G.cur_time - G.last_script_run > 11*60
2253 ) {
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002254 /* Useful for updating battery-backed RTC and such */
Denys Vlasenko12628b72010-01-11 01:31:59 +01002255 run_script("periodic", G.last_update_offset);
Denys Vlasenko06667f22010-01-06 13:05:08 +01002256 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002257 }
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +02002258 goto check_unsync;
Denys Vlasenkoede737b2010-01-06 12:27:47 +01002259 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002260
2261 /* Process any received packets */
2262 j = 0;
2263#if ENABLE_FEATURE_NTPD_SERVER
Denys Vlasenko0b002812010-01-03 08:59:59 +01002264 if (G.listen_fd != -1) {
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002265 if (pfd[0].revents /* & (POLLIN|POLLERR)*/) {
2266 nfds--;
Denys Vlasenko0b002812010-01-03 08:59:59 +01002267 recv_and_process_client_pkt(/*G.listen_fd*/);
2268 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002269 }
2270 j = 1;
2271 }
2272#endif
2273 for (; nfds != 0 && j < i; j++) {
2274 if (pfd[j].revents /* & (POLLIN|POLLERR)*/) {
Denys Vlasenko8e23faf2011-04-07 01:45:20 +02002275 /*
2276 * At init, alarm was set to 10 sec.
2277 * Now we did get a reply.
2278 * Increase timeout to 50 seconds to finish syncing.
2279 */
2280 if (option_mask32 & OPT_qq) {
2281 option_mask32 &= ~OPT_qq;
2282 alarm(50);
2283 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002284 nfds--;
2285 recv_and_process_peer_pkt(idx2peer[j]);
Denys Vlasenko0b002812010-01-03 08:59:59 +01002286 gettime1900d(); /* sets G.cur_time */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002287 }
2288 }
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002289
Denys Vlasenko5ffdd1d2013-05-22 18:16:34 +02002290 check_unsync:
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002291 if (G.ntp_peers && G.stratum != MAXSTRAT) {
2292 for (item = G.ntp_peers; item != NULL; item = item->link) {
2293 peer_t *p = (peer_t *) item->data;
2294 if (p->reachable_bits)
2295 goto have_reachable_peer;
2296 }
2297 /* No peer responded for last 8 packets, panic */
2298 G.polladj_count = 0;
2299 G.poll_exp = MINPOLL;
2300 G.stratum = MAXSTRAT;
Denys Vlasenko5a7e3372013-05-23 16:06:59 +02002301 run_script("unsync", 0.0);
Denys Vlasenkod99ef632013-05-22 17:48:19 +02002302 have_reachable_peer: ;
2303 }
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002304 } /* while (!bb_got_signal) */
2305
Anthony G. Basile12677ac2012-12-10 14:49:39 -05002306 remove_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002307 kill_myself_with_sig(bb_got_signal);
2308}
2309
2310
2311
2312
2313
2314
2315/*** openntpd-4.6 uses only adjtime, not adjtimex ***/
2316
2317/*** ntp-4.2.6/ntpd/ntp_loopfilter.c - adjtimex usage ***/
2318
2319#if 0
2320static double
2321direct_freq(double fp_offset)
2322{
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002323#ifdef KERNEL_PLL
2324 /*
2325 * If the kernel is enabled, we need the residual offset to
2326 * calculate the frequency correction.
2327 */
2328 if (pll_control && kern_enable) {
2329 memset(&ntv, 0, sizeof(ntv));
2330 ntp_adjtime(&ntv);
2331#ifdef STA_NANO
2332 clock_offset = ntv.offset / 1e9;
2333#else /* STA_NANO */
2334 clock_offset = ntv.offset / 1e6;
2335#endif /* STA_NANO */
2336 drift_comp = FREQTOD(ntv.freq);
2337 }
2338#endif /* KERNEL_PLL */
2339 set_freq((fp_offset - clock_offset) / (current_time - clock_epoch) + drift_comp);
2340 wander_resid = 0;
2341 return drift_comp;
2342}
2343
2344static void
Denys Vlasenkofb132e42010-10-29 11:46:52 +02002345set_freq(double freq) /* frequency update */
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002346{
2347 char tbuf[80];
2348
2349 drift_comp = freq;
2350
2351#ifdef KERNEL_PLL
2352 /*
2353 * If the kernel is enabled, update the kernel frequency.
2354 */
2355 if (pll_control && kern_enable) {
2356 memset(&ntv, 0, sizeof(ntv));
2357 ntv.modes = MOD_FREQUENCY;
2358 ntv.freq = DTOFREQ(drift_comp);
2359 ntp_adjtime(&ntv);
2360 snprintf(tbuf, sizeof(tbuf), "kernel %.3f PPM", drift_comp * 1e6);
2361 report_event(EVNT_FSET, NULL, tbuf);
2362 } else {
2363 snprintf(tbuf, sizeof(tbuf), "ntpd %.3f PPM", drift_comp * 1e6);
2364 report_event(EVNT_FSET, NULL, tbuf);
2365 }
2366#else /* KERNEL_PLL */
2367 snprintf(tbuf, sizeof(tbuf), "ntpd %.3f PPM", drift_comp * 1e6);
2368 report_event(EVNT_FSET, NULL, tbuf);
2369#endif /* KERNEL_PLL */
2370}
2371
2372...
2373...
2374...
2375
2376#ifdef KERNEL_PLL
2377 /*
2378 * This code segment works when clock adjustments are made using
2379 * precision time kernel support and the ntp_adjtime() system
2380 * call. This support is available in Solaris 2.6 and later,
2381 * Digital Unix 4.0 and later, FreeBSD, Linux and specially
2382 * modified kernels for HP-UX 9 and Ultrix 4. In the case of the
2383 * DECstation 5000/240 and Alpha AXP, additional kernel
2384 * modifications provide a true microsecond clock and nanosecond
2385 * clock, respectively.
2386 *
2387 * Important note: The kernel discipline is used only if the
2388 * step threshold is less than 0.5 s, as anything higher can
2389 * lead to overflow problems. This might occur if some misguided
2390 * lad set the step threshold to something ridiculous.
2391 */
2392 if (pll_control && kern_enable) {
2393
2394#define MOD_BITS (MOD_OFFSET | MOD_MAXERROR | MOD_ESTERROR | MOD_STATUS | MOD_TIMECONST)
2395
2396 /*
2397 * We initialize the structure for the ntp_adjtime()
2398 * system call. We have to convert everything to
2399 * microseconds or nanoseconds first. Do not update the
2400 * system variables if the ext_enable flag is set. In
2401 * this case, the external clock driver will update the
2402 * variables, which will be read later by the local
2403 * clock driver. Afterwards, remember the time and
2404 * frequency offsets for jitter and stability values and
2405 * to update the frequency file.
2406 */
2407 memset(&ntv, 0, sizeof(ntv));
2408 if (ext_enable) {
2409 ntv.modes = MOD_STATUS;
2410 } else {
2411#ifdef STA_NANO
2412 ntv.modes = MOD_BITS | MOD_NANO;
2413#else /* STA_NANO */
2414 ntv.modes = MOD_BITS;
2415#endif /* STA_NANO */
2416 if (clock_offset < 0)
2417 dtemp = -.5;
2418 else
2419 dtemp = .5;
2420#ifdef STA_NANO
2421 ntv.offset = (int32)(clock_offset * 1e9 + dtemp);
2422 ntv.constant = sys_poll;
2423#else /* STA_NANO */
2424 ntv.offset = (int32)(clock_offset * 1e6 + dtemp);
2425 ntv.constant = sys_poll - 4;
2426#endif /* STA_NANO */
2427 ntv.esterror = (u_int32)(clock_jitter * 1e6);
2428 ntv.maxerror = (u_int32)((sys_rootdelay / 2 + sys_rootdisp) * 1e6);
2429 ntv.status = STA_PLL;
2430
2431 /*
2432 * Enable/disable the PPS if requested.
2433 */
2434 if (pps_enable) {
2435 if (!(pll_status & STA_PPSTIME))
2436 report_event(EVNT_KERN,
Denys Vlasenko69675782013-01-14 01:34:48 +01002437 NULL, "PPS enabled");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002438 ntv.status |= STA_PPSTIME | STA_PPSFREQ;
2439 } else {
2440 if (pll_status & STA_PPSTIME)
2441 report_event(EVNT_KERN,
Denys Vlasenko69675782013-01-14 01:34:48 +01002442 NULL, "PPS disabled");
2443 ntv.status &= ~(STA_PPSTIME | STA_PPSFREQ);
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002444 }
2445 if (sys_leap == LEAP_ADDSECOND)
2446 ntv.status |= STA_INS;
2447 else if (sys_leap == LEAP_DELSECOND)
2448 ntv.status |= STA_DEL;
2449 }
2450
2451 /*
2452 * Pass the stuff to the kernel. If it squeals, turn off
2453 * the pps. In any case, fetch the kernel offset,
2454 * frequency and jitter.
2455 */
2456 if (ntp_adjtime(&ntv) == TIME_ERROR) {
2457 if (!(ntv.status & STA_PPSSIGNAL))
2458 report_event(EVNT_KERN, NULL,
Denys Vlasenko69675782013-01-14 01:34:48 +01002459 "PPS no signal");
Denys Vlasenkodd6673b2010-01-01 16:46:17 +01002460 }
2461 pll_status = ntv.status;
2462#ifdef STA_NANO
2463 clock_offset = ntv.offset / 1e9;
2464#else /* STA_NANO */
2465 clock_offset = ntv.offset / 1e6;
2466#endif /* STA_NANO */
2467 clock_frequency = FREQTOD(ntv.freq);
2468
2469 /*
2470 * If the kernel PPS is lit, monitor its performance.
2471 */
2472 if (ntv.status & STA_PPSTIME) {
2473#ifdef STA_NANO
2474 clock_jitter = ntv.jitter / 1e9;
2475#else /* STA_NANO */
2476 clock_jitter = ntv.jitter / 1e6;
2477#endif /* STA_NANO */
2478 }
2479
2480#if defined(STA_NANO) && NTP_API == 4
2481 /*
2482 * If the TAI changes, update the kernel TAI.
2483 */
2484 if (loop_tai != sys_tai) {
2485 loop_tai = sys_tai;
2486 ntv.modes = MOD_TAI;
2487 ntv.constant = sys_tai;
2488 ntp_adjtime(&ntv);
2489 }
2490#endif /* STA_NANO */
2491 }
2492#endif /* KERNEL_PLL */
2493#endif