Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1 | /* |
| 2 | * NTP client/server, based on OpenNTPD 3.9p1 |
| 3 | * |
Adam Tkac | 4bf88d9 | 2015-01-04 17:46:08 +0100 | [diff] [blame] | 4 | * Busybox port author: Adam Tkac (C) 2009 <vonsch@gmail.com> |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 5 | * |
Adam Tkac | 4bf88d9 | 2015-01-04 17:46:08 +0100 | [diff] [blame] | 6 | * OpenNTPd 3.9p1 copyright holders: |
| 7 | * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> |
| 8 | * Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org> |
| 9 | * |
| 10 | * OpenNTPd code is licensed under ISC-style licence: |
| 11 | * |
| 12 | * Permission to use, copy, modify, and distribute this software for any |
| 13 | * purpose with or without fee is hereby granted, provided that the above |
| 14 | * copyright notice and this permission notice appear in all copies. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 17 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 19 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 20 | * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER |
| 21 | * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING |
| 22 | * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 23 | *********************************************************************** |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 24 | * |
| 25 | * Parts of OpenNTPD clock syncronization code is replaced by |
Adam Tkac | 4bf88d9 | 2015-01-04 17:46:08 +0100 | [diff] [blame] | 26 | * code which is based on ntp-4.2.6, which carries the following |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 27 | * copyright notice: |
| 28 | * |
Adam Tkac | 4bf88d9 | 2015-01-04 17:46:08 +0100 | [diff] [blame] | 29 | * Copyright (c) University of Delaware 1992-2009 |
| 30 | * |
| 31 | * Permission to use, copy, modify, and distribute this software and |
| 32 | * its documentation for any purpose with or without fee is hereby |
| 33 | * granted, provided that the above copyright notice appears in all |
| 34 | * copies and that both the copyright notice and this permission |
| 35 | * notice appear in supporting documentation, and that the name |
| 36 | * University of Delaware not be used in advertising or publicity |
| 37 | * pertaining to distribution of the software without specific, |
| 38 | * written prior permission. The University of Delaware makes no |
| 39 | * representations about the suitability this software for any |
| 40 | * purpose. It is provided "as is" without express or implied warranty. |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 41 | *********************************************************************** |
| 42 | */ |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 43 | //config:config NTPD |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 44 | //config: bool "ntpd (17 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 45 | //config: default y |
| 46 | //config: select PLATFORM_LINUX |
| 47 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 48 | //config: The NTP client/server daemon. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 49 | //config: |
| 50 | //config:config FEATURE_NTPD_SERVER |
| 51 | //config: bool "Make ntpd usable as a NTP server" |
| 52 | //config: default y |
| 53 | //config: depends on NTPD |
| 54 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 55 | //config: Make ntpd usable as a NTP server. If you disable this option |
| 56 | //config: ntpd will be usable only as a NTP client. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 57 | //config: |
| 58 | //config:config FEATURE_NTPD_CONF |
| 59 | //config: bool "Make ntpd understand /etc/ntp.conf" |
| 60 | //config: default y |
| 61 | //config: depends on NTPD |
| 62 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 63 | //config: Make ntpd look in /etc/ntp.conf for peers. Only "server address" |
| 64 | //config: is supported. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 65 | |
| 66 | //applet:IF_NTPD(APPLET(ntpd, BB_DIR_USR_SBIN, BB_SUID_DROP)) |
| 67 | |
| 68 | //kbuild:lib-$(CONFIG_NTPD) += ntpd.o |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 69 | |
| 70 | //usage:#define ntpd_trivial_usage |
Denys Vlasenko | 278842d | 2014-07-15 15:06:54 +0200 | [diff] [blame] | 71 | //usage: "[-dnqNw"IF_FEATURE_NTPD_SERVER("l -I IFACE")"] [-S PROG] [-p PEER]..." |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 72 | //usage:#define ntpd_full_usage "\n\n" |
| 73 | //usage: "NTP client/server\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 74 | //usage: "\n -d Verbose" |
| 75 | //usage: "\n -n Do not daemonize" |
| 76 | //usage: "\n -q Quit after clock is set" |
| 77 | //usage: "\n -N Run at high priority" |
| 78 | //usage: "\n -w Do not set time (only query peers), implies -n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 79 | //usage: "\n -S PROG Run PROG after stepping time, stratum change, and every 11 mins" |
| 80 | //usage: "\n -p PEER Obtain time from PEER (may be repeated)" |
Denys Vlasenko | 504fe45 | 2014-03-23 15:06:38 +0100 | [diff] [blame] | 81 | //usage: IF_FEATURE_NTPD_CONF( |
Denys Vlasenko | 3c31b09 | 2015-03-05 14:04:44 +0100 | [diff] [blame] | 82 | //usage: "\n If -p is not given, 'server HOST' lines" |
| 83 | //usage: "\n from /etc/ntp.conf are used" |
Denys Vlasenko | 504fe45 | 2014-03-23 15:06:38 +0100 | [diff] [blame] | 84 | //usage: ) |
Denys Vlasenko | 3aef814 | 2015-03-02 20:59:13 +0100 | [diff] [blame] | 85 | //usage: IF_FEATURE_NTPD_SERVER( |
| 86 | //usage: "\n -l Also run as server on port 123" |
| 87 | //usage: "\n -I IFACE Bind server to IFACE, implies -l" |
| 88 | //usage: ) |
Denys Vlasenko | 504fe45 | 2014-03-23 15:06:38 +0100 | [diff] [blame] | 89 | |
| 90 | // -l and -p options are not compatible with "standard" ntpd: |
| 91 | // it has them as "-l logfile" and "-p pidfile". |
| 92 | // -S and -w are not compat either, "standard" ntpd has no such opts. |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 93 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 94 | #include "libbb.h" |
| 95 | #include <math.h> |
| 96 | #include <netinet/ip.h> /* For IPTOS_LOWDELAY definition */ |
Mike Frysinger | c5fe9f7 | 2012-07-05 23:19:09 -0400 | [diff] [blame] | 97 | #include <sys/resource.h> /* setpriority */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 98 | #include <sys/timex.h> |
| 99 | #ifndef IPTOS_LOWDELAY |
| 100 | # define IPTOS_LOWDELAY 0x10 |
| 101 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 102 | |
| 103 | |
Denys Vlasenko | bfc2a32 | 2010-01-01 18:12:06 +0100 | [diff] [blame] | 104 | /* Verbosity control (max level of -dddd options accepted). |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 105 | * max 6 is very talkative (and bloated). 3 is non-bloated, |
Denys Vlasenko | bfc2a32 | 2010-01-01 18:12:06 +0100 | [diff] [blame] | 106 | * production level setting. |
| 107 | */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 108 | #define MAX_VERBOSE 3 |
Denys Vlasenko | bfc2a32 | 2010-01-01 18:12:06 +0100 | [diff] [blame] | 109 | |
| 110 | |
Denys Vlasenko | 65d722b | 2010-01-11 02:14:04 +0100 | [diff] [blame] | 111 | /* High-level description of the algorithm: |
| 112 | * |
| 113 | * We start running with very small poll_exp, BURSTPOLL, |
Leonid Lisovskiy | 894ef60 | 2010-10-20 22:36:51 +0200 | [diff] [blame] | 114 | * in order to quickly accumulate INITIAL_SAMPLES datapoints |
Denys Vlasenko | 65d722b | 2010-01-11 02:14:04 +0100 | [diff] [blame] | 115 | * for each peer. Then, time is stepped if the offset is larger |
| 116 | * than STEP_THRESHOLD, otherwise it isn't; anyway, we enlarge |
| 117 | * poll_exp to MINPOLL and enter frequency measurement step: |
| 118 | * we collect new datapoints but ignore them for WATCH_THRESHOLD |
| 119 | * seconds. After WATCH_THRESHOLD seconds we look at accumulated |
| 120 | * offset and estimate frequency drift. |
| 121 | * |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 122 | * (frequency measurement step seems to not be strictly needed, |
| 123 | * it is conditionally disabled with USING_INITIAL_FREQ_ESTIMATION |
| 124 | * define set to 0) |
| 125 | * |
Denys Vlasenko | 65d722b | 2010-01-11 02:14:04 +0100 | [diff] [blame] | 126 | * After this, we enter "steady state": we collect a datapoint, |
| 127 | * we select the best peer, if this datapoint is not a new one |
| 128 | * (IOW: if this datapoint isn't for selected peer), sleep |
| 129 | * and collect another one; otherwise, use its offset to update |
| 130 | * frequency drift, if offset is somewhat large, reduce poll_exp, |
| 131 | * otherwise increase poll_exp. |
| 132 | * |
| 133 | * If offset is larger than STEP_THRESHOLD, which shouldn't normally |
| 134 | * happen, we assume that something "bad" happened (computer |
| 135 | * was hibernated, someone set totally wrong date, etc), |
| 136 | * then the time is stepped, all datapoints are discarded, |
| 137 | * and we go back to steady state. |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 138 | * |
| 139 | * Made some changes to speed up re-syncing after our clock goes bad |
| 140 | * (tested with suspending my laptop): |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 141 | * - if largish offset (>= STEP_THRESHOLD == 1 sec) is seen |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 142 | * from a peer, schedule next query for this peer soon |
| 143 | * without drastically lowering poll interval for everybody. |
| 144 | * This makes us collect enough data for step much faster: |
| 145 | * e.g. at poll = 10 (1024 secs), step was done within 5 minutes |
| 146 | * after first reply which indicated that our clock is 14 seconds off. |
| 147 | * - on step, do not discard d_dispersion data of the existing datapoints, |
| 148 | * do not clear reachable_bits. This prevents discarding first ~8 |
| 149 | * datapoints after the step. |
Denys Vlasenko | 65d722b | 2010-01-11 02:14:04 +0100 | [diff] [blame] | 150 | */ |
| 151 | |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 152 | #define INITIAL_SAMPLES 4 /* how many samples do we want for init */ |
| 153 | #define BAD_DELAY_GROWTH 4 /* drop packet if its delay grew by more than this */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 154 | |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 155 | #define RETRY_INTERVAL 32 /* on send/recv error, retry in N secs (need to be power of 2) */ |
| 156 | #define NOREPLY_INTERVAL 512 /* sent, but got no reply: cap next query by this many seconds */ |
| 157 | #define RESPONSE_INTERVAL 16 /* wait for reply up to N secs */ |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 158 | #define HOSTNAME_INTERVAL 5 /* hostname lookup failed. Wait N secs for next try */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 159 | |
| 160 | /* Step threshold (sec). std ntpd uses 0.128. |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 161 | */ |
| 162 | #define STEP_THRESHOLD 1 |
| 163 | /* Slew threshold (sec): adjtimex() won't accept offsets larger than this. |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 164 | * Using exact power of 2 (1/8) results in smaller code |
| 165 | */ |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 166 | #define SLEW_THRESHOLD 0.125 |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 167 | /* Stepout threshold (sec). std ntpd uses 900 (11 mins (!)) */ |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 168 | #define WATCH_THRESHOLD 128 |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 169 | /* NB: set WATCH_THRESHOLD to ~60 when debugging to save time) */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 170 | //UNUSED: #define PANIC_THRESHOLD 1000 /* panic threshold (sec) */ |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 171 | |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 172 | /* |
| 173 | * If we got |offset| > BIGOFF from a peer, cap next query interval |
| 174 | * for this peer by this many seconds: |
| 175 | */ |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 176 | #define BIGOFF STEP_THRESHOLD |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 177 | #define BIGOFF_INTERVAL (1 << 7) /* 128 s */ |
| 178 | |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 179 | #define FREQ_TOLERANCE 0.000015 /* frequency tolerance (15 PPM) */ |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 180 | #define BURSTPOLL 0 /* initial poll */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 181 | #define MINPOLL 5 /* minimum poll interval. std ntpd uses 6 (6: 64 sec) */ |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 182 | /* |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 183 | * If offset > discipline_jitter * POLLADJ_GATE, and poll interval is > 2^BIGPOLL, |
| 184 | * then it is decreased _at once_. (If <= 2^BIGPOLL, it will be decreased _eventually_). |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 185 | */ |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 186 | #define BIGPOLL 9 /* 2^9 sec ~= 8.5 min */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 187 | #define MAXPOLL 12 /* maximum poll interval (12: 1.1h, 17: 36.4h). std ntpd uses 17 */ |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 188 | /* |
| 189 | * Actively lower poll when we see such big offsets. |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 190 | * With SLEW_THRESHOLD = 0.125, it means we try to sync more aggressively |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 191 | * if offset increases over ~0.04 sec |
| 192 | */ |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 193 | //#define POLLDOWN_OFFSET (SLEW_THRESHOLD / 3) |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 194 | #define MINDISP 0.01 /* minimum dispersion (sec) */ |
| 195 | #define MAXDISP 16 /* maximum dispersion (sec) */ |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 196 | #define MAXSTRAT 16 /* maximum stratum (infinity metric) */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 197 | #define MAXDIST 1 /* distance threshold (sec) */ |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 198 | #define MIN_SELECTED 1 /* minimum intersection survivors */ |
| 199 | #define MIN_CLUSTERED 3 /* minimum cluster survivors */ |
| 200 | |
| 201 | #define MAXDRIFT 0.000500 /* frequency drift we can correct (500 PPM) */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 202 | |
| 203 | /* Poll-adjust threshold. |
| 204 | * When we see that offset is small enough compared to discipline jitter, |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 205 | * we grow a counter: += MINPOLL. When counter goes over POLLADJ_LIMIT, |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 206 | * we poll_exp++. If offset isn't small, counter -= poll_exp*2, |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 207 | * and when it goes below -POLLADJ_LIMIT, we poll_exp--. |
| 208 | * (Bumped from 30 to 40 since otherwise I often see poll_exp going *2* steps down) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 209 | */ |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 210 | #define POLLADJ_LIMIT 40 |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 211 | /* If offset < discipline_jitter * POLLADJ_GATE, then we decide to increase |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 212 | * poll interval (we think we can't improve timekeeping |
| 213 | * by staying at smaller poll). |
| 214 | */ |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 215 | #define POLLADJ_GATE 4 |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 216 | #define TIMECONST_HACK_GATE 2 |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 217 | /* Compromise Allan intercept (sec). doc uses 1500, std ntpd uses 512 */ |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 218 | #define ALLAN 512 |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 219 | /* PLL loop gain */ |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 220 | #define PLL 65536 |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 221 | /* FLL loop gain [why it depends on MAXPOLL??] */ |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 222 | #define FLL (MAXPOLL + 1) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 223 | /* Parameter averaging constant */ |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 224 | #define AVG 4 |
| 225 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 226 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 227 | enum { |
| 228 | NTP_VERSION = 4, |
| 229 | NTP_MAXSTRATUM = 15, |
| 230 | |
| 231 | NTP_DIGESTSIZE = 16, |
| 232 | NTP_MSGSIZE_NOAUTH = 48, |
| 233 | NTP_MSGSIZE = (NTP_MSGSIZE_NOAUTH + 4 + NTP_DIGESTSIZE), |
| 234 | |
| 235 | /* Status Masks */ |
| 236 | MODE_MASK = (7 << 0), |
| 237 | VERSION_MASK = (7 << 3), |
| 238 | VERSION_SHIFT = 3, |
| 239 | LI_MASK = (3 << 6), |
| 240 | |
| 241 | /* Leap Second Codes (high order two bits of m_status) */ |
| 242 | LI_NOWARNING = (0 << 6), /* no warning */ |
| 243 | LI_PLUSSEC = (1 << 6), /* add a second (61 seconds) */ |
| 244 | LI_MINUSSEC = (2 << 6), /* minus a second (59 seconds) */ |
| 245 | LI_ALARM = (3 << 6), /* alarm condition */ |
| 246 | |
| 247 | /* Mode values */ |
| 248 | MODE_RES0 = 0, /* reserved */ |
| 249 | MODE_SYM_ACT = 1, /* symmetric active */ |
| 250 | MODE_SYM_PAS = 2, /* symmetric passive */ |
| 251 | MODE_CLIENT = 3, /* client */ |
| 252 | MODE_SERVER = 4, /* server */ |
| 253 | MODE_BROADCAST = 5, /* broadcast */ |
| 254 | MODE_RES1 = 6, /* reserved for NTP control message */ |
| 255 | MODE_RES2 = 7, /* reserved for private use */ |
| 256 | }; |
| 257 | |
| 258 | //TODO: better base selection |
| 259 | #define OFFSET_1900_1970 2208988800UL /* 1970 - 1900 in seconds */ |
| 260 | |
| 261 | #define NUM_DATAPOINTS 8 |
| 262 | |
| 263 | typedef struct { |
| 264 | uint32_t int_partl; |
| 265 | uint32_t fractionl; |
| 266 | } l_fixedpt_t; |
| 267 | |
| 268 | typedef struct { |
| 269 | uint16_t int_parts; |
| 270 | uint16_t fractions; |
| 271 | } s_fixedpt_t; |
| 272 | |
| 273 | typedef struct { |
| 274 | uint8_t m_status; /* status of local clock and leap info */ |
| 275 | uint8_t m_stratum; |
| 276 | uint8_t m_ppoll; /* poll value */ |
| 277 | int8_t m_precision_exp; |
| 278 | s_fixedpt_t m_rootdelay; |
| 279 | s_fixedpt_t m_rootdisp; |
| 280 | uint32_t m_refid; |
| 281 | l_fixedpt_t m_reftime; |
| 282 | l_fixedpt_t m_orgtime; |
| 283 | l_fixedpt_t m_rectime; |
| 284 | l_fixedpt_t m_xmttime; |
| 285 | uint32_t m_keyid; |
| 286 | uint8_t m_digest[NTP_DIGESTSIZE]; |
| 287 | } msg_t; |
| 288 | |
| 289 | typedef struct { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 290 | double d_offset; |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 291 | double d_recv_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 292 | double d_dispersion; |
| 293 | } datapoint_t; |
| 294 | |
| 295 | typedef struct { |
| 296 | len_and_sockaddr *p_lsa; |
| 297 | char *p_dotted; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 298 | int p_fd; |
| 299 | int datapoint_idx; |
| 300 | uint32_t lastpkt_refid; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 301 | uint8_t lastpkt_status; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 302 | uint8_t lastpkt_stratum; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 303 | uint8_t reachable_bits; |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 304 | /* when to send new query (if p_fd == -1) |
| 305 | * or when receive times out (if p_fd >= 0): */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 306 | double next_action_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 307 | double p_xmttime; |
Denys Vlasenko | d531f93 | 2014-04-19 19:00:16 +0200 | [diff] [blame] | 308 | double p_raw_delay; |
| 309 | /* p_raw_delay is set even by "high delay" packets */ |
| 310 | /* lastpkt_delay isn't */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 311 | double lastpkt_recv_time; |
| 312 | double lastpkt_delay; |
| 313 | double lastpkt_rootdelay; |
| 314 | double lastpkt_rootdisp; |
| 315 | /* produced by filter algorithm: */ |
| 316 | double filter_offset; |
| 317 | double filter_dispersion; |
| 318 | double filter_jitter; |
| 319 | datapoint_t filter_datapoint[NUM_DATAPOINTS]; |
| 320 | /* last sent packet: */ |
| 321 | msg_t p_xmt_msg; |
Denys Vlasenko | e4caf1d | 2016-06-06 02:26:49 +0200 | [diff] [blame] | 322 | char p_hostname[1]; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 323 | } peer_t; |
| 324 | |
| 325 | |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 326 | #define USING_KERNEL_PLL_LOOP 1 |
| 327 | #define USING_INITIAL_FREQ_ESTIMATION 0 |
| 328 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 329 | enum { |
| 330 | OPT_n = (1 << 0), |
| 331 | OPT_q = (1 << 1), |
| 332 | OPT_N = (1 << 2), |
| 333 | OPT_x = (1 << 3), |
| 334 | /* Insert new options above this line. */ |
| 335 | /* Non-compat options: */ |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 336 | OPT_w = (1 << 4), |
| 337 | OPT_p = (1 << 5), |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 338 | OPT_S = (1 << 6), |
| 339 | OPT_l = (1 << 7) * ENABLE_FEATURE_NTPD_SERVER, |
Denys Vlasenko | 278842d | 2014-07-15 15:06:54 +0200 | [diff] [blame] | 340 | OPT_I = (1 << 8) * ENABLE_FEATURE_NTPD_SERVER, |
Denys Vlasenko | 8e23faf | 2011-04-07 01:45:20 +0200 | [diff] [blame] | 341 | /* We hijack some bits for other purposes */ |
Denys Vlasenko | 16c52a5 | 2012-02-23 14:28:47 +0100 | [diff] [blame] | 342 | OPT_qq = (1 << 31), |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 343 | }; |
| 344 | |
| 345 | struct globals { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 346 | double cur_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 347 | /* total round trip delay to currently selected reference clock */ |
| 348 | double rootdelay; |
| 349 | /* reference timestamp: time when the system clock was last set or corrected */ |
| 350 | double reftime; |
| 351 | /* total dispersion to currently selected reference clock */ |
| 352 | double rootdisp; |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 353 | |
| 354 | double last_script_run; |
| 355 | char *script_name; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 356 | llist_t *ntp_peers; |
| 357 | #if ENABLE_FEATURE_NTPD_SERVER |
| 358 | int listen_fd; |
Denys Vlasenko | 278842d | 2014-07-15 15:06:54 +0200 | [diff] [blame] | 359 | char *if_name; |
Denys Vlasenko | 3e3a8d5 | 2012-04-01 16:31:04 +0200 | [diff] [blame] | 360 | # define G_listen_fd (G.listen_fd) |
| 361 | #else |
| 362 | # define G_listen_fd (-1) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 363 | #endif |
| 364 | unsigned verbose; |
| 365 | unsigned peer_cnt; |
| 366 | /* refid: 32-bit code identifying the particular server or reference clock |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 367 | * in stratum 0 packets this is a four-character ASCII string, |
| 368 | * called the kiss code, used for debugging and monitoring |
| 369 | * in stratum 1 packets this is a four-character ASCII string |
| 370 | * assigned to the reference clock by IANA. Example: "GPS " |
| 371 | * in stratum 2+ packets, it's IPv4 address or 4 first bytes |
| 372 | * of MD5 hash of IPv6 |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 373 | */ |
| 374 | uint32_t refid; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 375 | uint8_t ntp_status; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 376 | /* precision is defined as the larger of the resolution and time to |
| 377 | * read the clock, in log2 units. For instance, the precision of a |
| 378 | * mains-frequency clock incrementing at 60 Hz is 16 ms, even when the |
| 379 | * system clock hardware representation is to the nanosecond. |
| 380 | * |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 381 | * Delays, jitters of various kinds are clamped down to precision. |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 382 | * |
| 383 | * If precision_sec is too large, discipline_jitter gets clamped to it |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 384 | * and if offset is smaller than discipline_jitter * POLLADJ_GATE, poll |
| 385 | * interval grows even though we really can benefit from staying at |
| 386 | * smaller one, collecting non-lagged datapoits and correcting offset. |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 387 | * (Lagged datapoits exist when poll_exp is large but we still have |
| 388 | * systematic offset error - the time distance between datapoints |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 389 | * is significant and older datapoints have smaller offsets. |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 390 | * This makes our offset estimation a bit smaller than reality) |
| 391 | * Due to this effect, setting G_precision_sec close to |
| 392 | * STEP_THRESHOLD isn't such a good idea - offsets may grow |
| 393 | * too big and we will step. I observed it with -6. |
| 394 | * |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 395 | * OTOH, setting precision_sec far too small would result in futile |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 396 | * attempts to synchronize to an unachievable precision. |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 397 | * |
| 398 | * -6 is 1/64 sec, -7 is 1/128 sec and so on. |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 399 | * -8 is 1/256 ~= 0.003906 (worked well for me --vda) |
| 400 | * -9 is 1/512 ~= 0.001953 (let's try this for some time) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 401 | */ |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 402 | #define G_precision_exp -9 |
| 403 | /* |
| 404 | * G_precision_exp is used only for construction outgoing packets. |
| 405 | * It's ok to set G_precision_sec to a slightly different value |
| 406 | * (One which is "nicer looking" in logs). |
| 407 | * Exact value would be (1.0 / (1 << (- G_precision_exp))): |
| 408 | */ |
| 409 | #define G_precision_sec 0.002 |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 410 | uint8_t stratum; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 411 | |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 412 | #define STATE_NSET 0 /* initial state, "nothing is set" */ |
| 413 | //#define STATE_FSET 1 /* frequency set from file */ |
Denys Vlasenko | 6c46eed | 2013-12-04 17:12:11 +0100 | [diff] [blame] | 414 | //#define STATE_SPIK 2 /* spike detected */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 415 | //#define STATE_FREQ 3 /* initial frequency */ |
| 416 | #define STATE_SYNC 4 /* clock synchronized (normal operation) */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 417 | uint8_t discipline_state; // doc calls it c.state |
| 418 | uint8_t poll_exp; // s.poll |
| 419 | int polladj_count; // c.count |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 420 | long kernel_freq_drift; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 421 | peer_t *last_update_peer; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 422 | double last_update_offset; // c.last |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 423 | double last_update_recv_time; // s.t |
| 424 | double discipline_jitter; // c.jitter |
Denys Vlasenko | 547ee79 | 2012-03-05 10:18:00 +0100 | [diff] [blame] | 425 | /* Since we only compare it with ints, can simplify code |
| 426 | * by not making this variable floating point: |
| 427 | */ |
| 428 | unsigned offset_to_jitter_ratio; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 429 | //double cluster_offset; // s.offset |
| 430 | //double cluster_jitter; // s.jitter |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 431 | #if !USING_KERNEL_PLL_LOOP |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 432 | double discipline_freq_drift; // c.freq |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 433 | /* Maybe conditionally calculate wander? it's used only for logging */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 434 | double discipline_wander; // c.wander |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 435 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 436 | }; |
| 437 | #define G (*ptr_to_globals) |
| 438 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 439 | |
Denys Vlasenko | bfc2a32 | 2010-01-01 18:12:06 +0100 | [diff] [blame] | 440 | #define VERB1 if (MAX_VERBOSE && G.verbose) |
| 441 | #define VERB2 if (MAX_VERBOSE >= 2 && G.verbose >= 2) |
| 442 | #define VERB3 if (MAX_VERBOSE >= 3 && G.verbose >= 3) |
| 443 | #define VERB4 if (MAX_VERBOSE >= 4 && G.verbose >= 4) |
| 444 | #define VERB5 if (MAX_VERBOSE >= 5 && G.verbose >= 5) |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 445 | #define VERB6 if (MAX_VERBOSE >= 6 && G.verbose >= 6) |
Denys Vlasenko | bfc2a32 | 2010-01-01 18:12:06 +0100 | [diff] [blame] | 446 | |
| 447 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 448 | static double LOG2D(int a) |
| 449 | { |
| 450 | if (a < 0) |
| 451 | return 1.0 / (1UL << -a); |
| 452 | return 1UL << a; |
| 453 | } |
| 454 | static ALWAYS_INLINE double SQUARE(double x) |
| 455 | { |
| 456 | return x * x; |
| 457 | } |
| 458 | static ALWAYS_INLINE double MAXD(double a, double b) |
| 459 | { |
| 460 | if (a > b) |
| 461 | return a; |
| 462 | return b; |
| 463 | } |
| 464 | static ALWAYS_INLINE double MIND(double a, double b) |
| 465 | { |
| 466 | if (a < b) |
| 467 | return a; |
| 468 | return b; |
| 469 | } |
Denys Vlasenko | d498ff0 | 2010-01-03 21:06:27 +0100 | [diff] [blame] | 470 | static NOINLINE double my_SQRT(double X) |
| 471 | { |
| 472 | union { |
| 473 | float f; |
| 474 | int32_t i; |
| 475 | } v; |
| 476 | double invsqrt; |
| 477 | double Xhalf = X * 0.5; |
| 478 | |
| 479 | /* Fast and good approximation to 1/sqrt(X), black magic */ |
| 480 | v.f = X; |
| 481 | /*v.i = 0x5f3759df - (v.i >> 1);*/ |
| 482 | v.i = 0x5f375a86 - (v.i >> 1); /* - this constant is slightly better */ |
| 483 | invsqrt = v.f; /* better than 0.2% accuracy */ |
| 484 | |
| 485 | /* Refining it using Newton's method: x1 = x0 - f(x0)/f'(x0) |
| 486 | * f(x) = 1/(x*x) - X (f==0 when x = 1/sqrt(X)) |
| 487 | * f'(x) = -2/(x*x*x) |
| 488 | * f(x)/f'(x) = (X - 1/(x*x)) / (2/(x*x*x)) = X*x*x*x/2 - x/2 |
| 489 | * x1 = x0 - (X*x0*x0*x0/2 - x0/2) = 1.5*x0 - X*x0*x0*x0/2 = x0*(1.5 - (X/2)*x0*x0) |
| 490 | */ |
| 491 | invsqrt = invsqrt * (1.5 - Xhalf * invsqrt * invsqrt); /* ~0.05% accuracy */ |
| 492 | /* invsqrt = invsqrt * (1.5 - Xhalf * invsqrt * invsqrt); 2nd iter: ~0.0001% accuracy */ |
| 493 | /* With 4 iterations, more than half results will be exact, |
| 494 | * at 6th iterations result stabilizes with about 72% results exact. |
| 495 | * We are well satisfied with 0.05% accuracy. |
| 496 | */ |
| 497 | |
| 498 | return X * invsqrt; /* X * 1/sqrt(X) ~= sqrt(X) */ |
| 499 | } |
| 500 | static ALWAYS_INLINE double SQRT(double X) |
| 501 | { |
| 502 | /* If this arch doesn't use IEEE 754 floats, fall back to using libm */ |
| 503 | if (sizeof(float) != 4) |
| 504 | return sqrt(X); |
| 505 | |
Denys Vlasenko | 2d3253d | 2010-01-03 21:52:46 +0100 | [diff] [blame] | 506 | /* This avoids needing libm, saves about 0.5k on x86-32 */ |
Denys Vlasenko | d498ff0 | 2010-01-03 21:06:27 +0100 | [diff] [blame] | 507 | return my_SQRT(X); |
| 508 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 509 | |
| 510 | static double |
| 511 | gettime1900d(void) |
| 512 | { |
| 513 | struct timeval tv; |
| 514 | gettimeofday(&tv, NULL); /* never fails */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 515 | G.cur_time = tv.tv_sec + (1.0e-6 * tv.tv_usec) + OFFSET_1900_1970; |
| 516 | return G.cur_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 517 | } |
| 518 | |
| 519 | static void |
| 520 | d_to_tv(double d, struct timeval *tv) |
| 521 | { |
| 522 | tv->tv_sec = (long)d; |
| 523 | tv->tv_usec = (d - tv->tv_sec) * 1000000; |
| 524 | } |
| 525 | |
| 526 | static double |
| 527 | lfp_to_d(l_fixedpt_t lfp) |
| 528 | { |
| 529 | double ret; |
| 530 | lfp.int_partl = ntohl(lfp.int_partl); |
| 531 | lfp.fractionl = ntohl(lfp.fractionl); |
| 532 | ret = (double)lfp.int_partl + ((double)lfp.fractionl / UINT_MAX); |
| 533 | return ret; |
| 534 | } |
| 535 | static double |
| 536 | sfp_to_d(s_fixedpt_t sfp) |
| 537 | { |
| 538 | double ret; |
| 539 | sfp.int_parts = ntohs(sfp.int_parts); |
| 540 | sfp.fractions = ntohs(sfp.fractions); |
| 541 | ret = (double)sfp.int_parts + ((double)sfp.fractions / USHRT_MAX); |
| 542 | return ret; |
| 543 | } |
| 544 | #if ENABLE_FEATURE_NTPD_SERVER |
| 545 | static l_fixedpt_t |
| 546 | d_to_lfp(double d) |
| 547 | { |
| 548 | l_fixedpt_t lfp; |
| 549 | lfp.int_partl = (uint32_t)d; |
| 550 | lfp.fractionl = (uint32_t)((d - lfp.int_partl) * UINT_MAX); |
| 551 | lfp.int_partl = htonl(lfp.int_partl); |
| 552 | lfp.fractionl = htonl(lfp.fractionl); |
| 553 | return lfp; |
| 554 | } |
| 555 | static s_fixedpt_t |
| 556 | d_to_sfp(double d) |
| 557 | { |
| 558 | s_fixedpt_t sfp; |
| 559 | sfp.int_parts = (uint16_t)d; |
| 560 | sfp.fractions = (uint16_t)((d - sfp.int_parts) * USHRT_MAX); |
| 561 | sfp.int_parts = htons(sfp.int_parts); |
| 562 | sfp.fractions = htons(sfp.fractions); |
| 563 | return sfp; |
| 564 | } |
| 565 | #endif |
| 566 | |
| 567 | static double |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 568 | dispersion(const datapoint_t *dp) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 569 | { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 570 | return dp->d_dispersion + FREQ_TOLERANCE * (G.cur_time - dp->d_recv_time); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 571 | } |
| 572 | |
| 573 | static double |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 574 | root_distance(peer_t *p) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 575 | { |
| 576 | /* The root synchronization distance is the maximum error due to |
| 577 | * all causes of the local clock relative to the primary server. |
| 578 | * It is defined as half the total delay plus total dispersion |
| 579 | * plus peer jitter. |
| 580 | */ |
| 581 | return MAXD(MINDISP, p->lastpkt_rootdelay + p->lastpkt_delay) / 2 |
| 582 | + p->lastpkt_rootdisp |
| 583 | + p->filter_dispersion |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 584 | + FREQ_TOLERANCE * (G.cur_time - p->lastpkt_recv_time) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 585 | + p->filter_jitter; |
| 586 | } |
| 587 | |
| 588 | static void |
| 589 | set_next(peer_t *p, unsigned t) |
| 590 | { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 591 | p->next_action_time = G.cur_time + t; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | /* |
| 595 | * Peer clock filter and its helpers |
| 596 | */ |
| 597 | static void |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 598 | filter_datapoints(peer_t *p) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 599 | { |
| 600 | int i, idx; |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 601 | double sum, wavg; |
| 602 | datapoint_t *fdp; |
| 603 | |
| 604 | #if 0 |
| 605 | /* Simulations have shown that use of *averaged* offset for p->filter_offset |
| 606 | * is in fact worse than simply using last received one: with large poll intervals |
| 607 | * (>= 2048) averaging code uses offset values which are outdated by hours, |
| 608 | * and time/frequency correction goes totally wrong when fed essentially bogus offsets. |
| 609 | */ |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 610 | int got_newest; |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 611 | double minoff, maxoff, w; |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 612 | double x = x; /* for compiler */ |
| 613 | double oldest_off = oldest_off; |
| 614 | double oldest_age = oldest_age; |
| 615 | double newest_off = newest_off; |
| 616 | double newest_age = newest_age; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 617 | |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 618 | fdp = p->filter_datapoint; |
| 619 | |
| 620 | minoff = maxoff = fdp[0].d_offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 621 | for (i = 1; i < NUM_DATAPOINTS; i++) { |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 622 | if (minoff > fdp[i].d_offset) |
| 623 | minoff = fdp[i].d_offset; |
| 624 | if (maxoff < fdp[i].d_offset) |
| 625 | maxoff = fdp[i].d_offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 626 | } |
| 627 | |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 628 | idx = p->datapoint_idx; /* most recent datapoint's index */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 629 | /* Average offset: |
| 630 | * Drop two outliers and take weighted average of the rest: |
| 631 | * most_recent/2 + older1/4 + older2/8 ... + older5/32 + older6/32 |
| 632 | * we use older6/32, not older6/64 since sum of weights should be 1: |
| 633 | * 1/2 + 1/4 + 1/8 + 1/16 + 1/32 + 1/32 = 1 |
| 634 | */ |
| 635 | wavg = 0; |
| 636 | w = 0.5; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 637 | /* n-1 |
| 638 | * --- dispersion(i) |
| 639 | * filter_dispersion = \ ------------- |
| 640 | * / (i+1) |
| 641 | * --- 2 |
| 642 | * i=0 |
| 643 | */ |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 644 | got_newest = 0; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 645 | sum = 0; |
| 646 | for (i = 0; i < NUM_DATAPOINTS; i++) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 647 | VERB5 { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 648 | bb_error_msg("datapoint[%d]: off:%f disp:%f(%f) age:%f%s", |
| 649 | i, |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 650 | fdp[idx].d_offset, |
| 651 | fdp[idx].d_dispersion, dispersion(&fdp[idx]), |
| 652 | G.cur_time - fdp[idx].d_recv_time, |
| 653 | (minoff == fdp[idx].d_offset || maxoff == fdp[idx].d_offset) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 654 | ? " (outlier by offset)" : "" |
| 655 | ); |
| 656 | } |
| 657 | |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 658 | sum += dispersion(&fdp[idx]) / (2 << i); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 659 | |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 660 | if (minoff == fdp[idx].d_offset) { |
Denys Vlasenko | e4844b8 | 2010-01-01 21:59:49 +0100 | [diff] [blame] | 661 | minoff -= 1; /* so that we don't match it ever again */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 662 | } else |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 663 | if (maxoff == fdp[idx].d_offset) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 664 | maxoff += 1; |
| 665 | } else { |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 666 | oldest_off = fdp[idx].d_offset; |
| 667 | oldest_age = G.cur_time - fdp[idx].d_recv_time; |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 668 | if (!got_newest) { |
| 669 | got_newest = 1; |
| 670 | newest_off = oldest_off; |
| 671 | newest_age = oldest_age; |
| 672 | } |
| 673 | x = oldest_off * w; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 674 | wavg += x; |
| 675 | w /= 2; |
| 676 | } |
| 677 | |
| 678 | idx = (idx - 1) & (NUM_DATAPOINTS - 1); |
| 679 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 680 | p->filter_dispersion = sum; |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 681 | wavg += x; /* add another older6/64 to form older6/32 */ |
| 682 | /* Fix systematic underestimation with large poll intervals. |
| 683 | * Imagine that we still have a bit of uncorrected drift, |
| 684 | * and poll interval is big (say, 100 sec). Offsets form a progression: |
| 685 | * 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 - 0.7 is most recent. |
| 686 | * The algorithm above drops 0.0 and 0.7 as outliers, |
| 687 | * and then we have this estimation, ~25% off from 0.7: |
| 688 | * 0.1/32 + 0.2/32 + 0.3/16 + 0.4/8 + 0.5/4 + 0.6/2 = 0.503125 |
| 689 | */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 690 | x = oldest_age - newest_age; |
| 691 | if (x != 0) { |
| 692 | x = newest_age / x; /* in above example, 100 / (600 - 100) */ |
| 693 | if (x < 1) { /* paranoia check */ |
| 694 | x = (newest_off - oldest_off) * x; /* 0.5 * 100/500 = 0.1 */ |
| 695 | wavg += x; |
| 696 | } |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 697 | } |
| 698 | p->filter_offset = wavg; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 699 | |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 700 | #else |
| 701 | |
| 702 | fdp = p->filter_datapoint; |
| 703 | idx = p->datapoint_idx; /* most recent datapoint's index */ |
| 704 | |
| 705 | /* filter_offset: simply use the most recent value */ |
| 706 | p->filter_offset = fdp[idx].d_offset; |
| 707 | |
| 708 | /* n-1 |
| 709 | * --- dispersion(i) |
| 710 | * filter_dispersion = \ ------------- |
| 711 | * / (i+1) |
| 712 | * --- 2 |
| 713 | * i=0 |
| 714 | */ |
| 715 | wavg = 0; |
| 716 | sum = 0; |
| 717 | for (i = 0; i < NUM_DATAPOINTS; i++) { |
| 718 | sum += dispersion(&fdp[idx]) / (2 << i); |
| 719 | wavg += fdp[idx].d_offset; |
| 720 | idx = (idx - 1) & (NUM_DATAPOINTS - 1); |
| 721 | } |
| 722 | wavg /= NUM_DATAPOINTS; |
| 723 | p->filter_dispersion = sum; |
| 724 | #endif |
| 725 | |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 726 | /* +----- -----+ ^ 1/2 |
| 727 | * | n-1 | |
| 728 | * | --- | |
| 729 | * | 1 \ 2 | |
| 730 | * filter_jitter = | --- * / (avg-offset_j) | |
| 731 | * | n --- | |
| 732 | * | j=0 | |
| 733 | * +----- -----+ |
| 734 | * where n is the number of valid datapoints in the filter (n > 1); |
| 735 | * if filter_jitter < precision then filter_jitter = precision |
| 736 | */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 737 | sum = 0; |
| 738 | for (i = 0; i < NUM_DATAPOINTS; i++) { |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 739 | sum += SQUARE(wavg - fdp[i].d_offset); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 740 | } |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 741 | sum = SQRT(sum / NUM_DATAPOINTS); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 742 | p->filter_jitter = sum > G_precision_sec ? sum : G_precision_sec; |
| 743 | |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 744 | VERB4 bb_error_msg("filter offset:%+f disp:%f jitter:%f", |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 745 | p->filter_offset, |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 746 | p->filter_dispersion, |
| 747 | p->filter_jitter); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | static void |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 751 | reset_peer_stats(peer_t *p, double offset) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 752 | { |
| 753 | int i; |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 754 | bool small_ofs = fabs(offset) < STEP_THRESHOLD; |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 755 | |
Denys Vlasenko | 777be10 | 2013-12-07 17:29:03 +0100 | [diff] [blame] | 756 | /* Used to set p->filter_datapoint[i].d_dispersion = MAXDISP |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 757 | * and clear reachable bits, but this proved to be too aggressive: |
Denys Vlasenko | f37f281 | 2016-03-04 07:06:53 +0100 | [diff] [blame] | 758 | * after step (tested with suspending laptop for ~30 secs), |
Denys Vlasenko | 777be10 | 2013-12-07 17:29:03 +0100 | [diff] [blame] | 759 | * this caused all previous data to be considered invalid, |
Denys Vlasenko | 1bfc4b8 | 2017-01-19 14:42:34 +0100 | [diff] [blame] | 760 | * making us needing to collect full ~8 datapoints per peer |
Denys Vlasenko | 777be10 | 2013-12-07 17:29:03 +0100 | [diff] [blame] | 761 | * after step in order to start trusting them. |
| 762 | * In turn, this was making poll interval decrease even after |
| 763 | * step was done. (Poll interval decreases already before step |
| 764 | * in this scenario, because we see large offsets and end up with |
| 765 | * no good peer to select). |
| 766 | */ |
| 767 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 768 | for (i = 0; i < NUM_DATAPOINTS; i++) { |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 769 | if (small_ofs) { |
Denys Vlasenko | eff6d59 | 2010-06-24 20:23:40 +0200 | [diff] [blame] | 770 | p->filter_datapoint[i].d_recv_time += offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 771 | if (p->filter_datapoint[i].d_offset != 0) { |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 772 | p->filter_datapoint[i].d_offset -= offset; |
| 773 | //bb_error_msg("p->filter_datapoint[%d].d_offset %f -> %f", |
| 774 | // i, |
| 775 | // p->filter_datapoint[i].d_offset + offset, |
| 776 | // p->filter_datapoint[i].d_offset); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 777 | } |
| 778 | } else { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 779 | p->filter_datapoint[i].d_recv_time = G.cur_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 780 | p->filter_datapoint[i].d_offset = 0; |
Denys Vlasenko | 777be10 | 2013-12-07 17:29:03 +0100 | [diff] [blame] | 781 | /*p->filter_datapoint[i].d_dispersion = MAXDISP;*/ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 782 | } |
| 783 | } |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 784 | if (small_ofs) { |
Denys Vlasenko | eff6d59 | 2010-06-24 20:23:40 +0200 | [diff] [blame] | 785 | p->lastpkt_recv_time += offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 786 | } else { |
Denys Vlasenko | 777be10 | 2013-12-07 17:29:03 +0100 | [diff] [blame] | 787 | /*p->reachable_bits = 0;*/ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 788 | p->lastpkt_recv_time = G.cur_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 789 | } |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 790 | filter_datapoints(p); /* recalc p->filter_xxx */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 791 | VERB6 bb_error_msg("%s->lastpkt_recv_time=%f", p->p_dotted, p->lastpkt_recv_time); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 792 | } |
| 793 | |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 794 | static len_and_sockaddr* |
| 795 | resolve_peer_hostname(peer_t *p) |
Denys Vlasenko | e4caf1d | 2016-06-06 02:26:49 +0200 | [diff] [blame] | 796 | { |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 797 | len_and_sockaddr *lsa = host2sockaddr(p->p_hostname, 123); |
| 798 | if (lsa) { |
| 799 | free(p->p_lsa); |
| 800 | free(p->p_dotted); |
| 801 | p->p_lsa = lsa; |
| 802 | p->p_dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa); |
Denys Vlasenko | 1bfc4b8 | 2017-01-19 14:42:34 +0100 | [diff] [blame] | 803 | VERB1 if (strcmp(p->p_hostname, p->p_dotted) != 0) |
| 804 | bb_error_msg("'%s' is %s", p->p_hostname, p->p_dotted); |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 805 | } else { |
| 806 | /* error message is emitted by host2sockaddr() */ |
| 807 | set_next(p, HOSTNAME_INTERVAL); |
Denys Vlasenko | e4caf1d | 2016-06-06 02:26:49 +0200 | [diff] [blame] | 808 | } |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 809 | return lsa; |
Denys Vlasenko | e4caf1d | 2016-06-06 02:26:49 +0200 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | static void |
Denys Vlasenko | 504fe45 | 2014-03-23 15:06:38 +0100 | [diff] [blame] | 813 | add_peers(const char *s) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 814 | { |
Denys Vlasenko | f37f281 | 2016-03-04 07:06:53 +0100 | [diff] [blame] | 815 | llist_t *item; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 816 | peer_t *p; |
| 817 | |
Denys Vlasenko | e4caf1d | 2016-06-06 02:26:49 +0200 | [diff] [blame] | 818 | p = xzalloc(sizeof(*p) + strlen(s)); |
| 819 | strcpy(p->p_hostname, s); |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 820 | p->p_fd = -1; |
| 821 | p->p_xmt_msg.m_status = MODE_CLIENT | (NTP_VERSION << 3); |
| 822 | p->next_action_time = G.cur_time; /* = set_next(p, 0); */ |
| 823 | reset_peer_stats(p, STEP_THRESHOLD); |
Denys Vlasenko | f37f281 | 2016-03-04 07:06:53 +0100 | [diff] [blame] | 824 | |
| 825 | /* Names like N.<country2chars>.pool.ntp.org are randomly resolved |
| 826 | * to a pool of machines. Sometimes different N's resolve to the same IP. |
| 827 | * It is not useful to have two peers with same IP. We skip duplicates. |
| 828 | */ |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 829 | if (resolve_peer_hostname(p)) { |
| 830 | for (item = G.ntp_peers; item != NULL; item = item->link) { |
| 831 | peer_t *pp = (peer_t *) item->data; |
| 832 | if (pp->p_dotted && strcmp(p->p_dotted, pp->p_dotted) == 0) { |
| 833 | bb_error_msg("duplicate peer %s (%s)", s, p->p_dotted); |
| 834 | free(p->p_lsa); |
| 835 | free(p->p_dotted); |
| 836 | free(p); |
| 837 | return; |
| 838 | } |
Denys Vlasenko | f37f281 | 2016-03-04 07:06:53 +0100 | [diff] [blame] | 839 | } |
| 840 | } |
| 841 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 842 | llist_add_to(&G.ntp_peers, p); |
| 843 | G.peer_cnt++; |
| 844 | } |
| 845 | |
| 846 | static int |
| 847 | do_sendto(int fd, |
| 848 | const struct sockaddr *from, const struct sockaddr *to, socklen_t addrlen, |
| 849 | msg_t *msg, ssize_t len) |
| 850 | { |
| 851 | ssize_t ret; |
| 852 | |
| 853 | errno = 0; |
| 854 | if (!from) { |
| 855 | ret = sendto(fd, msg, len, MSG_DONTWAIT, to, addrlen); |
| 856 | } else { |
| 857 | ret = send_to_from(fd, msg, len, MSG_DONTWAIT, to, from, addrlen); |
| 858 | } |
| 859 | if (ret != len) { |
| 860 | bb_perror_msg("send failed"); |
| 861 | return -1; |
| 862 | } |
| 863 | return 0; |
| 864 | } |
| 865 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 866 | static void |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 867 | send_query_to_peer(peer_t *p) |
| 868 | { |
Denys Vlasenko | a1e9bc6 | 2017-10-28 17:54:24 +0200 | [diff] [blame^] | 869 | if (!p->p_lsa) |
| 870 | return; |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 871 | |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 872 | /* Why do we need to bind()? |
| 873 | * See what happens when we don't bind: |
| 874 | * |
| 875 | * socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 3 |
| 876 | * setsockopt(3, SOL_IP, IP_TOS, [16], 4) = 0 |
| 877 | * gettimeofday({1259071266, 327885}, NULL) = 0 |
| 878 | * sendto(3, "xxx", 48, MSG_DONTWAIT, {sa_family=AF_INET, sin_port=htons(123), sin_addr=inet_addr("10.34.32.125")}, 16) = 48 |
| 879 | * ^^^ we sent it from some source port picked by kernel. |
| 880 | * time(NULL) = 1259071266 |
| 881 | * write(2, "ntpd: entering poll 15 secs\n", 28) = 28 |
| 882 | * poll([{fd=3, events=POLLIN}], 1, 15000) = 1 ([{fd=3, revents=POLLIN}]) |
| 883 | * recv(3, "yyy", 68, MSG_DONTWAIT) = 48 |
| 884 | * ^^^ this recv will receive packets to any local port! |
| 885 | * |
| 886 | * Uncomment this and use strace to see it in action: |
| 887 | */ |
| 888 | #define PROBE_LOCAL_ADDR /* { len_and_sockaddr lsa; lsa.len = LSA_SIZEOF_SA; getsockname(p->query.fd, &lsa.u.sa, &lsa.len); } */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 889 | |
| 890 | if (p->p_fd == -1) { |
| 891 | int fd, family; |
| 892 | len_and_sockaddr *local_lsa; |
| 893 | |
| 894 | family = p->p_lsa->u.sa.sa_family; |
| 895 | p->p_fd = fd = xsocket_type(&local_lsa, family, SOCK_DGRAM); |
| 896 | /* local_lsa has "null" address and port 0 now. |
| 897 | * bind() ensures we have a *particular port* selected by kernel |
| 898 | * and remembered in p->p_fd, thus later recv(p->p_fd) |
| 899 | * receives only packets sent to this port. |
| 900 | */ |
| 901 | PROBE_LOCAL_ADDR |
| 902 | xbind(fd, &local_lsa->u.sa, local_lsa->len); |
| 903 | PROBE_LOCAL_ADDR |
| 904 | #if ENABLE_FEATURE_IPV6 |
| 905 | if (family == AF_INET) |
| 906 | #endif |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 907 | setsockopt_int(fd, IPPROTO_IP, IP_TOS, IPTOS_LOWDELAY); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 908 | free(local_lsa); |
| 909 | } |
| 910 | |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 911 | /* Emit message _before_ attempted send. Think of a very short |
| 912 | * roundtrip networks: we need to go back to recv loop ASAP, |
| 913 | * to reduce delay. Printing messages after send works against that. |
| 914 | */ |
| 915 | VERB1 bb_error_msg("sending query to %s", p->p_dotted); |
| 916 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 917 | /* |
| 918 | * Send out a random 64-bit number as our transmit time. The NTP |
| 919 | * server will copy said number into the originate field on the |
| 920 | * response that it sends us. This is totally legal per the SNTP spec. |
| 921 | * |
| 922 | * The impact of this is two fold: we no longer send out the current |
| 923 | * system time for the world to see (which may aid an attacker), and |
| 924 | * it gives us a (not very secure) way of knowing that we're not |
| 925 | * getting spoofed by an attacker that can't capture our traffic |
| 926 | * but can spoof packets from the NTP server we're communicating with. |
| 927 | * |
| 928 | * Save the real transmit timestamp locally. |
| 929 | */ |
Denys Vlasenko | 0ed5f7a | 2014-03-05 18:58:15 +0100 | [diff] [blame] | 930 | p->p_xmt_msg.m_xmttime.int_partl = rand(); |
| 931 | p->p_xmt_msg.m_xmttime.fractionl = rand(); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 932 | p->p_xmttime = gettime1900d(); |
| 933 | |
Denys Vlasenko | 5a7e337 | 2013-05-23 16:06:59 +0200 | [diff] [blame] | 934 | /* Were doing it only if sendto worked, but |
Denys Vlasenko | 5ffdd1d | 2013-05-22 18:16:34 +0200 | [diff] [blame] | 935 | * loss of sync detection needs reachable_bits updated |
| 936 | * even if sending fails *locally*: |
| 937 | * "network is unreachable" because cable was pulled? |
| 938 | * We still need to declare "unsync" if this condition persists. |
| 939 | */ |
| 940 | p->reachable_bits <<= 1; |
| 941 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 942 | if (do_sendto(p->p_fd, /*from:*/ NULL, /*to:*/ &p->p_lsa->u.sa, /*addrlen:*/ p->p_lsa->len, |
| 943 | &p->p_xmt_msg, NTP_MSGSIZE_NOAUTH) == -1 |
| 944 | ) { |
| 945 | close(p->p_fd); |
| 946 | p->p_fd = -1; |
Denys Vlasenko | 5a7e337 | 2013-05-23 16:06:59 +0200 | [diff] [blame] | 947 | /* |
| 948 | * We know that we sent nothing. |
| 949 | * We can retry *soon* without fearing |
| 950 | * that we are flooding the peer. |
| 951 | */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 952 | set_next(p, RETRY_INTERVAL); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 953 | return; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 954 | } |
| 955 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 956 | set_next(p, RESPONSE_INTERVAL); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 957 | } |
| 958 | |
| 959 | |
Denys Vlasenko | 24928ff | 2010-01-25 19:30:16 +0100 | [diff] [blame] | 960 | /* Note that there is no provision to prevent several run_scripts |
Denys Vlasenko | 5a7e337 | 2013-05-23 16:06:59 +0200 | [diff] [blame] | 961 | * to be started in quick succession. In fact, it happens rather often |
Denys Vlasenko | 24928ff | 2010-01-25 19:30:16 +0100 | [diff] [blame] | 962 | * if initial syncronization results in a step. |
| 963 | * You will see "step" and then "stratum" script runs, sometimes |
| 964 | * as close as only 0.002 seconds apart. |
| 965 | * Script should be ready to deal with this. |
| 966 | */ |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 967 | static void run_script(const char *action, double offset) |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 968 | { |
| 969 | char *argv[3]; |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 970 | char *env1, *env2, *env3, *env4; |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 971 | |
Denys Vlasenko | 07c5987 | 2013-05-22 18:18:51 +0200 | [diff] [blame] | 972 | G.last_script_run = G.cur_time; |
| 973 | |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 974 | if (!G.script_name) |
| 975 | return; |
| 976 | |
| 977 | argv[0] = (char*) G.script_name; |
| 978 | argv[1] = (char*) action; |
| 979 | argv[2] = NULL; |
| 980 | |
| 981 | VERB1 bb_error_msg("executing '%s %s'", G.script_name, action); |
| 982 | |
Denys Vlasenko | ae47335 | 2010-01-07 11:51:13 +0100 | [diff] [blame] | 983 | env1 = xasprintf("%s=%u", "stratum", G.stratum); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 984 | putenv(env1); |
Denys Vlasenko | ae47335 | 2010-01-07 11:51:13 +0100 | [diff] [blame] | 985 | env2 = xasprintf("%s=%ld", "freq_drift_ppm", G.kernel_freq_drift); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 986 | putenv(env2); |
Denys Vlasenko | ae47335 | 2010-01-07 11:51:13 +0100 | [diff] [blame] | 987 | env3 = xasprintf("%s=%u", "poll_interval", 1 << G.poll_exp); |
| 988 | putenv(env3); |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 989 | env4 = xasprintf("%s=%f", "offset", offset); |
| 990 | putenv(env4); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 991 | /* Other items of potential interest: selected peer, |
Denys Vlasenko | ae47335 | 2010-01-07 11:51:13 +0100 | [diff] [blame] | 992 | * rootdelay, reftime, rootdisp, refid, ntp_status, |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 993 | * last_update_offset, last_update_recv_time, discipline_jitter, |
| 994 | * how many peers have reachable_bits = 0? |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 995 | */ |
| 996 | |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 997 | /* Don't want to wait: it may run hwclock --systohc, and that |
| 998 | * may take some time (seconds): */ |
Denys Vlasenko | 8531d76 | 2010-03-18 22:44:00 +0100 | [diff] [blame] | 999 | /*spawn_and_wait(argv);*/ |
Denys Vlasenko | 6959f6b | 2010-01-07 08:31:46 +0100 | [diff] [blame] | 1000 | spawn(argv); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1001 | |
| 1002 | unsetenv("stratum"); |
| 1003 | unsetenv("freq_drift_ppm"); |
Denys Vlasenko | ae47335 | 2010-01-07 11:51:13 +0100 | [diff] [blame] | 1004 | unsetenv("poll_interval"); |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1005 | unsetenv("offset"); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1006 | free(env1); |
| 1007 | free(env2); |
Denys Vlasenko | ae47335 | 2010-01-07 11:51:13 +0100 | [diff] [blame] | 1008 | free(env3); |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1009 | free(env4); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1010 | } |
| 1011 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1012 | static NOINLINE void |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1013 | step_time(double offset) |
| 1014 | { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1015 | llist_t *item; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1016 | double dtime; |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 1017 | struct timeval tvc, tvn; |
| 1018 | char buf[sizeof("yyyy-mm-dd hh:mm:ss") + /*paranoia:*/ 4]; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1019 | time_t tval; |
| 1020 | |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 1021 | gettimeofday(&tvc, NULL); /* never fails */ |
| 1022 | dtime = tvc.tv_sec + (1.0e-6 * tvc.tv_usec) + offset; |
| 1023 | d_to_tv(dtime, &tvn); |
| 1024 | if (settimeofday(&tvn, NULL) == -1) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1025 | bb_perror_msg_and_die("settimeofday"); |
| 1026 | |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 1027 | VERB2 { |
| 1028 | tval = tvc.tv_sec; |
Denys Vlasenko | 8f2cb7a | 2013-03-29 12:30:33 +0100 | [diff] [blame] | 1029 | strftime_YYYYMMDDHHMMSS(buf, sizeof(buf), &tval); |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 1030 | bb_error_msg("current time is %s.%06u", buf, (unsigned)tvc.tv_usec); |
| 1031 | } |
| 1032 | tval = tvn.tv_sec; |
Denys Vlasenko | 8f2cb7a | 2013-03-29 12:30:33 +0100 | [diff] [blame] | 1033 | strftime_YYYYMMDDHHMMSS(buf, sizeof(buf), &tval); |
Denys Vlasenko | fc4ebd0 | 2012-02-28 02:45:00 +0100 | [diff] [blame] | 1034 | bb_error_msg("setting time to %s.%06u (offset %+fs)", buf, (unsigned)tvn.tv_usec, offset); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1035 | |
| 1036 | /* Correct various fields which contain time-relative values: */ |
| 1037 | |
Denys Vlasenko | 4125a6b | 2012-06-11 11:41:46 +0200 | [diff] [blame] | 1038 | /* Globals: */ |
| 1039 | G.cur_time += offset; |
| 1040 | G.last_update_recv_time += offset; |
| 1041 | G.last_script_run += offset; |
| 1042 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1043 | /* p->lastpkt_recv_time, p->next_action_time and such: */ |
| 1044 | for (item = G.ntp_peers; item != NULL; item = item->link) { |
| 1045 | peer_t *pp = (peer_t *) item->data; |
| 1046 | reset_peer_stats(pp, offset); |
Denys Vlasenko | 16c52a5 | 2012-02-23 14:28:47 +0100 | [diff] [blame] | 1047 | //bb_error_msg("offset:%+f pp->next_action_time:%f -> %f", |
Denys Vlasenko | eff6d59 | 2010-06-24 20:23:40 +0200 | [diff] [blame] | 1048 | // offset, pp->next_action_time, pp->next_action_time + offset); |
| 1049 | pp->next_action_time += offset; |
Denys Vlasenko | 4125a6b | 2012-06-11 11:41:46 +0200 | [diff] [blame] | 1050 | if (pp->p_fd >= 0) { |
| 1051 | /* We wait for reply from this peer too. |
| 1052 | * But due to step we are doing, reply's data is no longer |
| 1053 | * useful (in fact, it'll be bogus). Stop waiting for it. |
| 1054 | */ |
| 1055 | close(pp->p_fd); |
| 1056 | pp->p_fd = -1; |
| 1057 | set_next(pp, RETRY_INTERVAL); |
| 1058 | } |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1059 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1060 | } |
| 1061 | |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 1062 | static void clamp_pollexp_and_set_MAXSTRAT(void) |
| 1063 | { |
| 1064 | if (G.poll_exp < MINPOLL) |
| 1065 | G.poll_exp = MINPOLL; |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1066 | if (G.poll_exp > BIGPOLL) |
| 1067 | G.poll_exp = BIGPOLL; |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 1068 | G.polladj_count = 0; |
| 1069 | G.stratum = MAXSTRAT; |
| 1070 | } |
| 1071 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1072 | |
| 1073 | /* |
| 1074 | * Selection and clustering, and their helpers |
| 1075 | */ |
| 1076 | typedef struct { |
| 1077 | peer_t *p; |
| 1078 | int type; |
| 1079 | double edge; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1080 | double opt_rd; /* optimization */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1081 | } point_t; |
| 1082 | static int |
| 1083 | compare_point_edge(const void *aa, const void *bb) |
| 1084 | { |
| 1085 | const point_t *a = aa; |
| 1086 | const point_t *b = bb; |
| 1087 | if (a->edge < b->edge) { |
| 1088 | return -1; |
| 1089 | } |
| 1090 | return (a->edge > b->edge); |
| 1091 | } |
| 1092 | typedef struct { |
| 1093 | peer_t *p; |
| 1094 | double metric; |
| 1095 | } survivor_t; |
| 1096 | static int |
| 1097 | compare_survivor_metric(const void *aa, const void *bb) |
| 1098 | { |
| 1099 | const survivor_t *a = aa; |
| 1100 | const survivor_t *b = bb; |
Denys Vlasenko | 510f56a | 2010-01-03 12:00:26 +0100 | [diff] [blame] | 1101 | if (a->metric < b->metric) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1102 | return -1; |
Denys Vlasenko | 510f56a | 2010-01-03 12:00:26 +0100 | [diff] [blame] | 1103 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1104 | return (a->metric > b->metric); |
| 1105 | } |
| 1106 | static int |
| 1107 | fit(peer_t *p, double rd) |
| 1108 | { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1109 | if ((p->reachable_bits & (p->reachable_bits-1)) == 0) { |
| 1110 | /* One or zero bits in reachable_bits */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1111 | VERB4 bb_error_msg("peer %s unfit for selection: unreachable", p->p_dotted); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1112 | return 0; |
| 1113 | } |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 1114 | #if 0 /* we filter out such packets earlier */ |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1115 | if ((p->lastpkt_status & LI_ALARM) == LI_ALARM |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1116 | || p->lastpkt_stratum >= MAXSTRAT |
| 1117 | ) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1118 | VERB4 bb_error_msg("peer %s unfit for selection: bad status/stratum", p->p_dotted); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1119 | return 0; |
| 1120 | } |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1121 | #endif |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1122 | /* rd is root_distance(p) */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1123 | if (rd > MAXDIST + FREQ_TOLERANCE * (1 << G.poll_exp)) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1124 | VERB4 bb_error_msg("peer %s unfit for selection: root distance too high", p->p_dotted); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1125 | return 0; |
| 1126 | } |
| 1127 | //TODO |
| 1128 | // /* Do we have a loop? */ |
| 1129 | // if (p->refid == p->dstaddr || p->refid == s.refid) |
| 1130 | // return 0; |
Denys Vlasenko | b7c9fb2 | 2011-02-03 00:05:48 +0100 | [diff] [blame] | 1131 | return 1; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1132 | } |
| 1133 | static peer_t* |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1134 | select_and_cluster(void) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1135 | { |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1136 | peer_t *p; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1137 | llist_t *item; |
| 1138 | int i, j; |
| 1139 | int size = 3 * G.peer_cnt; |
| 1140 | /* for selection algorithm */ |
| 1141 | point_t point[size]; |
| 1142 | unsigned num_points, num_candidates; |
| 1143 | double low, high; |
| 1144 | unsigned num_falsetickers; |
| 1145 | /* for cluster algorithm */ |
| 1146 | survivor_t survivor[size]; |
| 1147 | unsigned num_survivors; |
| 1148 | |
| 1149 | /* Selection */ |
| 1150 | |
| 1151 | num_points = 0; |
| 1152 | item = G.ntp_peers; |
Denys Vlasenko | ff3f3ac | 2015-01-29 16:31:36 +0100 | [diff] [blame] | 1153 | while (item != NULL) { |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1154 | double rd, offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1155 | |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1156 | p = (peer_t *) item->data; |
| 1157 | rd = root_distance(p); |
| 1158 | offset = p->filter_offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1159 | if (!fit(p, rd)) { |
| 1160 | item = item->link; |
| 1161 | continue; |
| 1162 | } |
| 1163 | |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1164 | VERB5 bb_error_msg("interval: [%f %f %f] %s", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1165 | offset - rd, |
| 1166 | offset, |
| 1167 | offset + rd, |
| 1168 | p->p_dotted |
| 1169 | ); |
| 1170 | point[num_points].p = p; |
| 1171 | point[num_points].type = -1; |
| 1172 | point[num_points].edge = offset - rd; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1173 | point[num_points].opt_rd = rd; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1174 | num_points++; |
| 1175 | point[num_points].p = p; |
| 1176 | point[num_points].type = 0; |
| 1177 | point[num_points].edge = offset; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1178 | point[num_points].opt_rd = rd; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1179 | num_points++; |
| 1180 | point[num_points].p = p; |
| 1181 | point[num_points].type = 1; |
| 1182 | point[num_points].edge = offset + rd; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1183 | point[num_points].opt_rd = rd; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1184 | num_points++; |
| 1185 | item = item->link; |
| 1186 | } |
| 1187 | num_candidates = num_points / 3; |
| 1188 | if (num_candidates == 0) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1189 | VERB3 bb_error_msg("no valid datapoints%s", ", no peer selected"); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1190 | return NULL; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1191 | } |
| 1192 | //TODO: sorting does not seem to be done in reference code |
| 1193 | qsort(point, num_points, sizeof(point[0]), compare_point_edge); |
| 1194 | |
| 1195 | /* Start with the assumption that there are no falsetickers. |
| 1196 | * Attempt to find a nonempty intersection interval containing |
| 1197 | * the midpoints of all truechimers. |
| 1198 | * If a nonempty interval cannot be found, increase the number |
| 1199 | * of assumed falsetickers by one and try again. |
| 1200 | * If a nonempty interval is found and the number of falsetickers |
| 1201 | * is less than the number of truechimers, a majority has been found |
| 1202 | * and the midpoint of each truechimer represents |
| 1203 | * the candidates available to the cluster algorithm. |
| 1204 | */ |
| 1205 | num_falsetickers = 0; |
| 1206 | while (1) { |
| 1207 | int c; |
| 1208 | unsigned num_midpoints = 0; |
| 1209 | |
| 1210 | low = 1 << 9; |
| 1211 | high = - (1 << 9); |
| 1212 | c = 0; |
| 1213 | for (i = 0; i < num_points; i++) { |
| 1214 | /* We want to do: |
| 1215 | * if (point[i].type == -1) c++; |
| 1216 | * if (point[i].type == 1) c--; |
| 1217 | * and it's simpler to do it this way: |
| 1218 | */ |
| 1219 | c -= point[i].type; |
| 1220 | if (c >= num_candidates - num_falsetickers) { |
| 1221 | /* If it was c++ and it got big enough... */ |
| 1222 | low = point[i].edge; |
| 1223 | break; |
| 1224 | } |
| 1225 | if (point[i].type == 0) |
| 1226 | num_midpoints++; |
| 1227 | } |
| 1228 | c = 0; |
| 1229 | for (i = num_points-1; i >= 0; i--) { |
| 1230 | c += point[i].type; |
| 1231 | if (c >= num_candidates - num_falsetickers) { |
| 1232 | high = point[i].edge; |
| 1233 | break; |
| 1234 | } |
| 1235 | if (point[i].type == 0) |
| 1236 | num_midpoints++; |
| 1237 | } |
| 1238 | /* If the number of midpoints is greater than the number |
| 1239 | * of allowed falsetickers, the intersection contains at |
| 1240 | * least one truechimer with no midpoint - bad. |
| 1241 | * Also, interval should be nonempty. |
| 1242 | */ |
| 1243 | if (num_midpoints <= num_falsetickers && low < high) |
| 1244 | break; |
| 1245 | num_falsetickers++; |
| 1246 | if (num_falsetickers * 2 >= num_candidates) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1247 | VERB3 bb_error_msg("falsetickers:%d, candidates:%d%s", |
| 1248 | num_falsetickers, num_candidates, |
| 1249 | ", no peer selected"); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1250 | return NULL; |
| 1251 | } |
| 1252 | } |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1253 | VERB4 bb_error_msg("selected interval: [%f, %f]; candidates:%d falsetickers:%d", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1254 | low, high, num_candidates, num_falsetickers); |
| 1255 | |
| 1256 | /* Clustering */ |
| 1257 | |
| 1258 | /* Construct a list of survivors (p, metric) |
| 1259 | * from the chime list, where metric is dominated |
| 1260 | * first by stratum and then by root distance. |
| 1261 | * All other things being equal, this is the order of preference. |
| 1262 | */ |
| 1263 | num_survivors = 0; |
| 1264 | for (i = 0; i < num_points; i++) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1265 | if (point[i].edge < low || point[i].edge > high) |
| 1266 | continue; |
| 1267 | p = point[i].p; |
| 1268 | survivor[num_survivors].p = p; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1269 | /* x.opt_rd == root_distance(p); */ |
| 1270 | survivor[num_survivors].metric = MAXDIST * p->lastpkt_stratum + point[i].opt_rd; |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1271 | VERB5 bb_error_msg("survivor[%d] metric:%f peer:%s", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1272 | num_survivors, survivor[num_survivors].metric, p->p_dotted); |
| 1273 | num_survivors++; |
| 1274 | } |
| 1275 | /* There must be at least MIN_SELECTED survivors to satisfy the |
| 1276 | * correctness assertions. Ordinarily, the Byzantine criteria |
| 1277 | * require four survivors, but for the demonstration here, one |
| 1278 | * is acceptable. |
| 1279 | */ |
| 1280 | if (num_survivors < MIN_SELECTED) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1281 | VERB3 bb_error_msg("survivors:%d%s", |
| 1282 | num_survivors, |
| 1283 | ", no peer selected"); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1284 | return NULL; |
| 1285 | } |
| 1286 | |
| 1287 | //looks like this is ONLY used by the fact that later we pick survivor[0]. |
| 1288 | //we can avoid sorting then, just find the minimum once! |
| 1289 | qsort(survivor, num_survivors, sizeof(survivor[0]), compare_survivor_metric); |
| 1290 | |
| 1291 | /* For each association p in turn, calculate the selection |
| 1292 | * jitter p->sjitter as the square root of the sum of squares |
| 1293 | * (p->offset - q->offset) over all q associations. The idea is |
| 1294 | * to repeatedly discard the survivor with maximum selection |
| 1295 | * jitter until a termination condition is met. |
| 1296 | */ |
| 1297 | while (1) { |
| 1298 | unsigned max_idx = max_idx; |
| 1299 | double max_selection_jitter = max_selection_jitter; |
| 1300 | double min_jitter = min_jitter; |
| 1301 | |
| 1302 | if (num_survivors <= MIN_CLUSTERED) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1303 | VERB4 bb_error_msg("num_survivors %d <= %d, not discarding more", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1304 | num_survivors, MIN_CLUSTERED); |
| 1305 | break; |
| 1306 | } |
| 1307 | |
| 1308 | /* To make sure a few survivors are left |
| 1309 | * for the clustering algorithm to chew on, |
| 1310 | * we stop if the number of survivors |
| 1311 | * is less than or equal to MIN_CLUSTERED (3). |
| 1312 | */ |
| 1313 | for (i = 0; i < num_survivors; i++) { |
| 1314 | double selection_jitter_sq; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1315 | |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1316 | p = survivor[i].p; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1317 | if (i == 0 || p->filter_jitter < min_jitter) |
| 1318 | min_jitter = p->filter_jitter; |
| 1319 | |
| 1320 | selection_jitter_sq = 0; |
| 1321 | for (j = 0; j < num_survivors; j++) { |
| 1322 | peer_t *q = survivor[j].p; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1323 | selection_jitter_sq += SQUARE(p->filter_offset - q->filter_offset); |
| 1324 | } |
| 1325 | if (i == 0 || selection_jitter_sq > max_selection_jitter) { |
| 1326 | max_selection_jitter = selection_jitter_sq; |
| 1327 | max_idx = i; |
| 1328 | } |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1329 | VERB6 bb_error_msg("survivor %d selection_jitter^2:%f", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1330 | i, selection_jitter_sq); |
| 1331 | } |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1332 | max_selection_jitter = SQRT(max_selection_jitter / num_survivors); |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1333 | VERB5 bb_error_msg("max_selection_jitter (at %d):%f min_jitter:%f", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1334 | max_idx, max_selection_jitter, min_jitter); |
| 1335 | |
| 1336 | /* If the maximum selection jitter is less than the |
| 1337 | * minimum peer jitter, then tossing out more survivors |
| 1338 | * will not lower the minimum peer jitter, so we might |
| 1339 | * as well stop. |
| 1340 | */ |
| 1341 | if (max_selection_jitter < min_jitter) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1342 | VERB4 bb_error_msg("max_selection_jitter:%f < min_jitter:%f, num_survivors:%d, not discarding more", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1343 | max_selection_jitter, min_jitter, num_survivors); |
| 1344 | break; |
| 1345 | } |
| 1346 | |
| 1347 | /* Delete survivor[max_idx] from the list |
| 1348 | * and go around again. |
| 1349 | */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1350 | VERB6 bb_error_msg("dropping survivor %d", max_idx); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1351 | num_survivors--; |
| 1352 | while (max_idx < num_survivors) { |
| 1353 | survivor[max_idx] = survivor[max_idx + 1]; |
| 1354 | max_idx++; |
| 1355 | } |
| 1356 | } |
| 1357 | |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1358 | if (0) { |
| 1359 | /* Combine the offsets of the clustering algorithm survivors |
| 1360 | * using a weighted average with weight determined by the root |
| 1361 | * distance. Compute the selection jitter as the weighted RMS |
| 1362 | * difference between the first survivor and the remaining |
| 1363 | * survivors. In some cases the inherent clock jitter can be |
| 1364 | * reduced by not using this algorithm, especially when frequent |
| 1365 | * clockhopping is involved. bbox: thus we don't do it. |
| 1366 | */ |
| 1367 | double x, y, z, w; |
| 1368 | y = z = w = 0; |
| 1369 | for (i = 0; i < num_survivors; i++) { |
| 1370 | p = survivor[i].p; |
| 1371 | x = root_distance(p); |
| 1372 | y += 1 / x; |
| 1373 | z += p->filter_offset / x; |
| 1374 | w += SQUARE(p->filter_offset - survivor[0].p->filter_offset) / x; |
| 1375 | } |
| 1376 | //G.cluster_offset = z / y; |
| 1377 | //G.cluster_jitter = SQRT(w / y); |
| 1378 | } |
| 1379 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1380 | /* Pick the best clock. If the old system peer is on the list |
| 1381 | * and at the same stratum as the first survivor on the list, |
| 1382 | * then don't do a clock hop. Otherwise, select the first |
| 1383 | * survivor on the list as the new system peer. |
| 1384 | */ |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1385 | p = survivor[0].p; |
| 1386 | if (G.last_update_peer |
| 1387 | && G.last_update_peer->lastpkt_stratum <= p->lastpkt_stratum |
| 1388 | ) { |
| 1389 | /* Starting from 1 is ok here */ |
| 1390 | for (i = 1; i < num_survivors; i++) { |
| 1391 | if (G.last_update_peer == survivor[i].p) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1392 | VERB5 bb_error_msg("keeping old synced peer"); |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1393 | p = G.last_update_peer; |
| 1394 | goto keep_old; |
| 1395 | } |
| 1396 | } |
| 1397 | } |
| 1398 | G.last_update_peer = p; |
| 1399 | keep_old: |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1400 | VERB4 bb_error_msg("selected peer %s filter_offset:%+f age:%f", |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1401 | p->p_dotted, |
| 1402 | p->filter_offset, |
| 1403 | G.cur_time - p->lastpkt_recv_time |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1404 | ); |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1405 | return p; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1406 | } |
| 1407 | |
| 1408 | |
| 1409 | /* |
| 1410 | * Local clock discipline and its helpers |
| 1411 | */ |
| 1412 | static void |
| 1413 | set_new_values(int disc_state, double offset, double recv_time) |
| 1414 | { |
| 1415 | /* Enter new state and set state variables. Note we use the time |
| 1416 | * of the last clock filter sample, which must be earlier than |
| 1417 | * the current time. |
| 1418 | */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1419 | VERB4 bb_error_msg("disc_state=%d last update offset=%f recv_time=%f", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1420 | disc_state, offset, recv_time); |
| 1421 | G.discipline_state = disc_state; |
| 1422 | G.last_update_offset = offset; |
| 1423 | G.last_update_recv_time = recv_time; |
| 1424 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1425 | /* Return: -1: decrease poll interval, 0: leave as is, 1: increase */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1426 | static NOINLINE int |
| 1427 | update_local_clock(peer_t *p) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1428 | { |
| 1429 | int rc; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1430 | struct timex tmx; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1431 | /* Note: can use G.cluster_offset instead: */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1432 | double offset = p->filter_offset; |
| 1433 | double recv_time = p->lastpkt_recv_time; |
| 1434 | double abs_offset; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1435 | #if !USING_KERNEL_PLL_LOOP |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1436 | double freq_drift; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1437 | #endif |
Bartosz Golaszewski | 76ad748 | 2014-01-18 15:36:27 +0100 | [diff] [blame] | 1438 | #if !USING_KERNEL_PLL_LOOP || USING_INITIAL_FREQ_ESTIMATION |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1439 | double since_last_update; |
Bartosz Golaszewski | 76ad748 | 2014-01-18 15:36:27 +0100 | [diff] [blame] | 1440 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1441 | double etemp, dtemp; |
| 1442 | |
| 1443 | abs_offset = fabs(offset); |
| 1444 | |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1445 | #if 0 |
Denys Vlasenko | 24928ff | 2010-01-25 19:30:16 +0100 | [diff] [blame] | 1446 | /* If needed, -S script can do it by looking at $offset |
| 1447 | * env var and killing parent */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1448 | /* If the offset is too large, give up and go home */ |
| 1449 | if (abs_offset > PANIC_THRESHOLD) { |
| 1450 | bb_error_msg_and_die("offset %f far too big, exiting", offset); |
| 1451 | } |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1452 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1453 | |
| 1454 | /* If this is an old update, for instance as the result |
| 1455 | * of a system peer change, avoid it. We never use |
| 1456 | * an old sample or the same sample twice. |
| 1457 | */ |
| 1458 | if (recv_time <= G.last_update_recv_time) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1459 | VERB3 bb_error_msg("update from %s: same or older datapoint, not using it", |
| 1460 | p->p_dotted); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1461 | return 0; /* "leave poll interval as is" */ |
| 1462 | } |
| 1463 | |
| 1464 | /* Clock state machine transition function. This is where the |
| 1465 | * action is and defines how the system reacts to large time |
| 1466 | * and frequency errors. |
| 1467 | */ |
Bartosz Golaszewski | 76ad748 | 2014-01-18 15:36:27 +0100 | [diff] [blame] | 1468 | #if !USING_KERNEL_PLL_LOOP || USING_INITIAL_FREQ_ESTIMATION |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1469 | since_last_update = recv_time - G.reftime; |
Bartosz Golaszewski | 76ad748 | 2014-01-18 15:36:27 +0100 | [diff] [blame] | 1470 | #endif |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1471 | #if !USING_KERNEL_PLL_LOOP |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1472 | freq_drift = 0; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1473 | #endif |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1474 | #if USING_INITIAL_FREQ_ESTIMATION |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1475 | if (G.discipline_state == STATE_FREQ) { |
| 1476 | /* Ignore updates until the stepout threshold */ |
| 1477 | if (since_last_update < WATCH_THRESHOLD) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1478 | VERB4 bb_error_msg("measuring drift, datapoint ignored, %f sec remains", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1479 | WATCH_THRESHOLD - since_last_update); |
| 1480 | return 0; /* "leave poll interval as is" */ |
| 1481 | } |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1482 | # if !USING_KERNEL_PLL_LOOP |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1483 | freq_drift = (offset - G.last_update_offset) / since_last_update; |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1484 | # endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1485 | } |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1486 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1487 | |
| 1488 | /* There are two main regimes: when the |
| 1489 | * offset exceeds the step threshold and when it does not. |
| 1490 | */ |
| 1491 | if (abs_offset > STEP_THRESHOLD) { |
Denys Vlasenko | 6c46eed | 2013-12-04 17:12:11 +0100 | [diff] [blame] | 1492 | #if 0 |
Denys Vlasenko | cb1dc1d | 2013-12-04 13:19:04 +0100 | [diff] [blame] | 1493 | double remains; |
| 1494 | |
Denys Vlasenko | 6c46eed | 2013-12-04 17:12:11 +0100 | [diff] [blame] | 1495 | // This "spike state" seems to be useless, peer selection already drops |
| 1496 | // occassional "bad" datapoints. If we are here, there were _many_ |
| 1497 | // large offsets. When a few first large offsets are seen, |
| 1498 | // we end up in "no valid datapoints, no peer selected" state. |
| 1499 | // Only when enough of them are seen (which means it's not a fluke), |
| 1500 | // we end up here. Looks like _our_ clock is off. |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1501 | switch (G.discipline_state) { |
| 1502 | case STATE_SYNC: |
| 1503 | /* The first outlyer: ignore it, switch to SPIK state */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1504 | VERB3 bb_error_msg("update from %s: offset:%+f, spike%s", |
| 1505 | p->p_dotted, offset, |
| 1506 | ""); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1507 | G.discipline_state = STATE_SPIK; |
| 1508 | return -1; /* "decrease poll interval" */ |
| 1509 | |
| 1510 | case STATE_SPIK: |
| 1511 | /* Ignore succeeding outlyers until either an inlyer |
| 1512 | * is found or the stepout threshold is exceeded. |
| 1513 | */ |
Denys Vlasenko | cb1dc1d | 2013-12-04 13:19:04 +0100 | [diff] [blame] | 1514 | remains = WATCH_THRESHOLD - since_last_update; |
| 1515 | if (remains > 0) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1516 | VERB3 bb_error_msg("update from %s: offset:%+f, spike%s", |
| 1517 | p->p_dotted, offset, |
| 1518 | ", datapoint ignored"); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1519 | return -1; /* "decrease poll interval" */ |
| 1520 | } |
| 1521 | /* fall through: we need to step */ |
| 1522 | } /* switch */ |
Denys Vlasenko | 6c46eed | 2013-12-04 17:12:11 +0100 | [diff] [blame] | 1523 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1524 | |
| 1525 | /* Step the time and clamp down the poll interval. |
| 1526 | * |
| 1527 | * In NSET state an initial frequency correction is |
| 1528 | * not available, usually because the frequency file has |
| 1529 | * not yet been written. Since the time is outside the |
| 1530 | * capture range, the clock is stepped. The frequency |
| 1531 | * will be set directly following the stepout interval. |
| 1532 | * |
| 1533 | * In FSET state the initial frequency has been set |
| 1534 | * from the frequency file. Since the time is outside |
| 1535 | * the capture range, the clock is stepped immediately, |
| 1536 | * rather than after the stepout interval. Guys get |
| 1537 | * nervous if it takes 17 minutes to set the clock for |
| 1538 | * the first time. |
| 1539 | * |
| 1540 | * In SPIK state the stepout threshold has expired and |
| 1541 | * the phase is still above the step threshold. Note |
| 1542 | * that a single spike greater than the step threshold |
| 1543 | * is always suppressed, even at the longer poll |
| 1544 | * intervals. |
| 1545 | */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1546 | VERB4 bb_error_msg("stepping time by %+f; poll_exp=MINPOLL", offset); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1547 | step_time(offset); |
| 1548 | if (option_mask32 & OPT_q) { |
| 1549 | /* We were only asked to set time once. Done. */ |
| 1550 | exit(0); |
| 1551 | } |
| 1552 | |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 1553 | clamp_pollexp_and_set_MAXSTRAT(); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1554 | |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1555 | run_script("step", offset); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1556 | |
Denys Vlasenko | cb76113 | 2014-01-08 17:17:52 +0100 | [diff] [blame] | 1557 | recv_time += offset; |
| 1558 | |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1559 | #if USING_INITIAL_FREQ_ESTIMATION |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1560 | if (G.discipline_state == STATE_NSET) { |
| 1561 | set_new_values(STATE_FREQ, /*offset:*/ 0, recv_time); |
| 1562 | return 1; /* "ok to increase poll interval" */ |
| 1563 | } |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1564 | #endif |
Denys Vlasenko | 547ee79 | 2012-03-05 10:18:00 +0100 | [diff] [blame] | 1565 | abs_offset = offset = 0; |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1566 | set_new_values(STATE_SYNC, offset, recv_time); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1567 | } else { /* abs_offset <= STEP_THRESHOLD */ |
| 1568 | |
Miroslav Lichvar | 760d035 | 2014-10-05 03:10:15 +0200 | [diff] [blame] | 1569 | /* The ratio is calculated before jitter is updated to make |
| 1570 | * poll adjust code more sensitive to large offsets. |
| 1571 | */ |
| 1572 | G.offset_to_jitter_ratio = abs_offset / G.discipline_jitter; |
| 1573 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1574 | /* Compute the clock jitter as the RMS of exponentially |
| 1575 | * weighted offset differences. Used by the poll adjust code. |
| 1576 | */ |
| 1577 | etemp = SQUARE(G.discipline_jitter); |
Denys Vlasenko | 74584b8 | 2012-03-02 01:22:40 +0100 | [diff] [blame] | 1578 | dtemp = SQUARE(offset - G.last_update_offset); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1579 | G.discipline_jitter = SQRT(etemp + (dtemp - etemp) / AVG); |
Miroslav Lichvar | 760d035 | 2014-10-05 03:10:15 +0200 | [diff] [blame] | 1580 | if (G.discipline_jitter < G_precision_sec) |
| 1581 | G.discipline_jitter = G_precision_sec; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1582 | |
| 1583 | switch (G.discipline_state) { |
| 1584 | case STATE_NSET: |
| 1585 | if (option_mask32 & OPT_q) { |
| 1586 | /* We were only asked to set time once. |
| 1587 | * The clock is precise enough, no need to step. |
| 1588 | */ |
| 1589 | exit(0); |
| 1590 | } |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1591 | #if USING_INITIAL_FREQ_ESTIMATION |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1592 | /* This is the first update received and the frequency |
| 1593 | * has not been initialized. The first thing to do |
| 1594 | * is directly measure the oscillator frequency. |
| 1595 | */ |
| 1596 | set_new_values(STATE_FREQ, offset, recv_time); |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1597 | #else |
| 1598 | set_new_values(STATE_SYNC, offset, recv_time); |
| 1599 | #endif |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1600 | VERB4 bb_error_msg("transitioning to FREQ, datapoint ignored"); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1601 | return 0; /* "leave poll interval as is" */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1602 | |
| 1603 | #if 0 /* this is dead code for now */ |
| 1604 | case STATE_FSET: |
| 1605 | /* This is the first update and the frequency |
| 1606 | * has been initialized. Adjust the phase, but |
| 1607 | * don't adjust the frequency until the next update. |
| 1608 | */ |
| 1609 | set_new_values(STATE_SYNC, offset, recv_time); |
| 1610 | /* freq_drift remains 0 */ |
| 1611 | break; |
| 1612 | #endif |
| 1613 | |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1614 | #if USING_INITIAL_FREQ_ESTIMATION |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1615 | case STATE_FREQ: |
| 1616 | /* since_last_update >= WATCH_THRESHOLD, we waited enough. |
| 1617 | * Correct the phase and frequency and switch to SYNC state. |
| 1618 | * freq_drift was already estimated (see code above) |
| 1619 | */ |
| 1620 | set_new_values(STATE_SYNC, offset, recv_time); |
| 1621 | break; |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1622 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1623 | |
| 1624 | default: |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1625 | #if !USING_KERNEL_PLL_LOOP |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1626 | /* Compute freq_drift due to PLL and FLL contributions. |
| 1627 | * |
| 1628 | * The FLL and PLL frequency gain constants |
| 1629 | * depend on the poll interval and Allan |
| 1630 | * intercept. The FLL is not used below one-half |
| 1631 | * the Allan intercept. Above that the loop gain |
| 1632 | * increases in steps to 1 / AVG. |
| 1633 | */ |
| 1634 | if ((1 << G.poll_exp) > ALLAN / 2) { |
| 1635 | etemp = FLL - G.poll_exp; |
| 1636 | if (etemp < AVG) |
| 1637 | etemp = AVG; |
| 1638 | freq_drift += (offset - G.last_update_offset) / (MAXD(since_last_update, ALLAN) * etemp); |
| 1639 | } |
| 1640 | /* For the PLL the integration interval |
| 1641 | * (numerator) is the minimum of the update |
| 1642 | * interval and poll interval. This allows |
| 1643 | * oversampling, but not undersampling. |
| 1644 | */ |
| 1645 | etemp = MIND(since_last_update, (1 << G.poll_exp)); |
| 1646 | dtemp = (4 * PLL) << G.poll_exp; |
| 1647 | freq_drift += offset * etemp / SQUARE(dtemp); |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1648 | #endif |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1649 | set_new_values(STATE_SYNC, offset, recv_time); |
| 1650 | break; |
| 1651 | } |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1652 | if (G.stratum != p->lastpkt_stratum + 1) { |
| 1653 | G.stratum = p->lastpkt_stratum + 1; |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1654 | run_script("stratum", offset); |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 1655 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1656 | } |
| 1657 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1658 | G.reftime = G.cur_time; |
Denys Vlasenko | 1ee5afd | 2010-01-02 15:57:07 +0100 | [diff] [blame] | 1659 | G.ntp_status = p->lastpkt_status; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1660 | G.refid = p->lastpkt_refid; |
| 1661 | G.rootdelay = p->lastpkt_rootdelay + p->lastpkt_delay; |
Denys Vlasenko | 9b20adc | 2010-01-17 02:51:33 +0100 | [diff] [blame] | 1662 | dtemp = p->filter_jitter; // SQRT(SQUARE(p->filter_jitter) + SQUARE(G.cluster_jitter)); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1663 | dtemp += MAXD(p->filter_dispersion + FREQ_TOLERANCE * (G.cur_time - p->lastpkt_recv_time) + abs_offset, MINDISP); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1664 | G.rootdisp = p->lastpkt_rootdisp + dtemp; |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1665 | VERB4 bb_error_msg("updating leap/refid/reftime/rootdisp from peer %s", p->p_dotted); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1666 | |
| 1667 | /* We are in STATE_SYNC now, but did not do adjtimex yet. |
| 1668 | * (Any other state does not reach this, they all return earlier) |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1669 | * By this time, freq_drift and offset are set |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1670 | * to values suitable for adjtimex. |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 1671 | */ |
| 1672 | #if !USING_KERNEL_PLL_LOOP |
| 1673 | /* Calculate the new frequency drift and frequency stability (wander). |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1674 | * Compute the clock wander as the RMS of exponentially weighted |
| 1675 | * frequency differences. This is not used directly, but can, |
| 1676 | * along with the jitter, be a highly useful monitoring and |
| 1677 | * debugging tool. |
| 1678 | */ |
| 1679 | dtemp = G.discipline_freq_drift + freq_drift; |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 1680 | G.discipline_freq_drift = MAXD(MIND(MAXDRIFT, dtemp), -MAXDRIFT); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1681 | etemp = SQUARE(G.discipline_wander); |
| 1682 | dtemp = SQUARE(dtemp); |
| 1683 | G.discipline_wander = SQRT(etemp + (dtemp - etemp) / AVG); |
| 1684 | |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1685 | VERB4 bb_error_msg("discipline freq_drift=%.9f(int:%ld corr:%e) wander=%f", |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 1686 | G.discipline_freq_drift, |
| 1687 | (long)(G.discipline_freq_drift * 65536e6), |
| 1688 | freq_drift, |
| 1689 | G.discipline_wander); |
| 1690 | #endif |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1691 | VERB4 { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1692 | memset(&tmx, 0, sizeof(tmx)); |
| 1693 | if (adjtimex(&tmx) < 0) |
| 1694 | bb_perror_msg_and_die("adjtimex"); |
Denys Vlasenko | 8be49c3 | 2012-03-06 19:16:50 +0100 | [diff] [blame] | 1695 | bb_error_msg("p adjtimex freq:%ld offset:%+ld status:0x%x tc:%ld", |
| 1696 | tmx.freq, tmx.offset, tmx.status, tmx.constant); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1697 | } |
| 1698 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1699 | memset(&tmx, 0, sizeof(tmx)); |
| 1700 | #if 0 |
Denys Vlasenko | 6131311 | 2010-01-01 19:56:16 +0100 | [diff] [blame] | 1701 | //doesn't work, offset remains 0 (!) in kernel: |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1702 | //ntpd: set adjtimex freq:1786097 tmx.offset:77487 |
| 1703 | //ntpd: prev adjtimex freq:1786097 tmx.offset:0 |
| 1704 | //ntpd: cur adjtimex freq:1786097 tmx.offset:0 |
| 1705 | tmx.modes = ADJ_FREQUENCY | ADJ_OFFSET; |
| 1706 | /* 65536 is one ppm */ |
| 1707 | tmx.freq = G.discipline_freq_drift * 65536e6; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1708 | #endif |
| 1709 | tmx.modes = ADJ_OFFSET | ADJ_STATUS | ADJ_TIMECONST;// | ADJ_MAXERROR | ADJ_ESTERROR; |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 1710 | tmx.constant = (int)G.poll_exp - 4; |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1711 | /* EXPERIMENTAL. |
| 1712 | * The below if statement should be unnecessary, but... |
| 1713 | * It looks like Linux kernel's PLL is far too gentle in changing |
| 1714 | * tmx.freq in response to clock offset. Offset keeps growing |
| 1715 | * and eventually we fall back to smaller poll intervals. |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 1716 | * We can make correction more aggressive (about x2) by supplying |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1717 | * PLL time constant which is one less than the real one. |
| 1718 | * To be on a safe side, let's do it only if offset is significantly |
| 1719 | * larger than jitter. |
| 1720 | */ |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 1721 | if (G.offset_to_jitter_ratio >= TIMECONST_HACK_GATE) |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1722 | tmx.constant--; |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 1723 | tmx.offset = (long)(offset * 1000000); /* usec */ |
| 1724 | if (SLEW_THRESHOLD < STEP_THRESHOLD) { |
| 1725 | if (tmx.offset > (long)(SLEW_THRESHOLD * 1000000)) { |
| 1726 | tmx.offset = (long)(SLEW_THRESHOLD * 1000000); |
| 1727 | tmx.constant--; |
| 1728 | } |
| 1729 | if (tmx.offset < -(long)(SLEW_THRESHOLD * 1000000)) { |
| 1730 | tmx.offset = -(long)(SLEW_THRESHOLD * 1000000); |
| 1731 | tmx.constant--; |
| 1732 | } |
| 1733 | } |
| 1734 | if (tmx.constant < 0) |
| 1735 | tmx.constant = 0; |
| 1736 | |
| 1737 | tmx.status = STA_PLL; |
| 1738 | if (G.ntp_status & LI_PLUSSEC) |
| 1739 | tmx.status |= STA_INS; |
| 1740 | if (G.ntp_status & LI_MINUSSEC) |
| 1741 | tmx.status |= STA_DEL; |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1742 | |
| 1743 | //tmx.esterror = (uint32_t)(clock_jitter * 1e6); |
| 1744 | //tmx.maxerror = (uint32_t)((sys_rootdelay / 2 + sys_rootdisp) * 1e6); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1745 | rc = adjtimex(&tmx); |
| 1746 | if (rc < 0) |
| 1747 | bb_perror_msg_and_die("adjtimex"); |
Denys Vlasenko | d9109e3 | 2010-01-02 00:36:43 +0100 | [diff] [blame] | 1748 | /* NB: here kernel returns constant == G.poll_exp, not == G.poll_exp - 4. |
| 1749 | * Not sure why. Perhaps it is normal. |
| 1750 | */ |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1751 | VERB4 bb_error_msg("adjtimex:%d freq:%ld offset:%+ld status:0x%x", |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1752 | rc, tmx.freq, tmx.offset, tmx.status); |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1753 | G.kernel_freq_drift = tmx.freq / 65536; |
Denys Vlasenko | 03718bb | 2016-02-24 01:22:45 +0100 | [diff] [blame] | 1754 | VERB2 bb_error_msg("update from:%s offset:%+f delay:%f jitter:%f clock drift:%+.3fppm tc:%d", |
| 1755 | p->p_dotted, |
| 1756 | offset, |
| 1757 | p->lastpkt_delay, |
| 1758 | G.discipline_jitter, |
| 1759 | (double)tmx.freq / 65536, |
| 1760 | (int)tmx.constant |
| 1761 | ); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1762 | |
| 1763 | return 1; /* "ok to increase poll interval" */ |
| 1764 | } |
| 1765 | |
| 1766 | |
| 1767 | /* |
| 1768 | * We've got a new reply packet from a peer, process it |
| 1769 | * (helpers first) |
| 1770 | */ |
| 1771 | static unsigned |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 1772 | poll_interval(int upper_bound) |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1773 | { |
Denys Vlasenko | 3e78f6f | 2014-02-09 15:35:04 +0100 | [diff] [blame] | 1774 | unsigned interval, r, mask; |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 1775 | interval = 1 << G.poll_exp; |
| 1776 | if (interval > upper_bound) |
| 1777 | interval = upper_bound; |
Denys Vlasenko | 3e78f6f | 2014-02-09 15:35:04 +0100 | [diff] [blame] | 1778 | mask = ((interval-1) >> 4) | 1; |
Denys Vlasenko | 0ed5f7a | 2014-03-05 18:58:15 +0100 | [diff] [blame] | 1779 | r = rand(); |
Denys Vlasenko | 3e78f6f | 2014-02-09 15:35:04 +0100 | [diff] [blame] | 1780 | interval += r & mask; /* ~ random(0..1) * interval/16 */ |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 1781 | VERB4 bb_error_msg("chose poll interval:%u (poll_exp:%d)", interval, G.poll_exp); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1782 | return interval; |
| 1783 | } |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1784 | static void |
Miroslav Lichvar | 590a22c | 2014-09-18 16:19:05 +0200 | [diff] [blame] | 1785 | adjust_poll(int count) |
| 1786 | { |
| 1787 | G.polladj_count += count; |
| 1788 | if (G.polladj_count > POLLADJ_LIMIT) { |
| 1789 | G.polladj_count = 0; |
| 1790 | if (G.poll_exp < MAXPOLL) { |
| 1791 | G.poll_exp++; |
| 1792 | VERB4 bb_error_msg("polladj: discipline_jitter:%f ++poll_exp=%d", |
| 1793 | G.discipline_jitter, G.poll_exp); |
| 1794 | } |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1795 | } else if (G.polladj_count < -POLLADJ_LIMIT || (count < 0 && G.poll_exp > BIGPOLL)) { |
Miroslav Lichvar | 590a22c | 2014-09-18 16:19:05 +0200 | [diff] [blame] | 1796 | G.polladj_count = 0; |
| 1797 | if (G.poll_exp > MINPOLL) { |
| 1798 | llist_t *item; |
| 1799 | |
| 1800 | G.poll_exp--; |
| 1801 | /* Correct p->next_action_time in each peer |
| 1802 | * which waits for sending, so that they send earlier. |
| 1803 | * Old pp->next_action_time are on the order |
| 1804 | * of t + (1 << old_poll_exp) + small_random, |
| 1805 | * we simply need to subtract ~half of that. |
| 1806 | */ |
| 1807 | for (item = G.ntp_peers; item != NULL; item = item->link) { |
| 1808 | peer_t *pp = (peer_t *) item->data; |
| 1809 | if (pp->p_fd < 0) |
| 1810 | pp->next_action_time -= (1 << G.poll_exp); |
| 1811 | } |
| 1812 | VERB4 bb_error_msg("polladj: discipline_jitter:%f --poll_exp=%d", |
| 1813 | G.discipline_jitter, G.poll_exp); |
| 1814 | } |
| 1815 | } else { |
| 1816 | VERB4 bb_error_msg("polladj: count:%d", G.polladj_count); |
| 1817 | } |
| 1818 | } |
| 1819 | static NOINLINE void |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1820 | recv_and_process_peer_pkt(peer_t *p) |
| 1821 | { |
| 1822 | int rc; |
| 1823 | ssize_t size; |
| 1824 | msg_t msg; |
| 1825 | double T1, T2, T3, T4; |
Denys Vlasenko | d531f93 | 2014-04-19 19:00:16 +0200 | [diff] [blame] | 1826 | double offset; |
| 1827 | double prev_delay, delay; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1828 | unsigned interval; |
| 1829 | datapoint_t *datapoint; |
| 1830 | peer_t *q; |
| 1831 | |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 1832 | offset = 0; |
| 1833 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1834 | /* We can recvfrom here and check from.IP, but some multihomed |
| 1835 | * ntp servers reply from their *other IP*. |
| 1836 | * TODO: maybe we should check at least what we can: from.port == 123? |
| 1837 | */ |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1838 | recv_again: |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1839 | size = recv(p->p_fd, &msg, sizeof(msg), MSG_DONTWAIT); |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1840 | if (size < 0) { |
| 1841 | if (errno == EINTR) |
| 1842 | /* Signal caught */ |
| 1843 | goto recv_again; |
| 1844 | if (errno == EAGAIN) |
| 1845 | /* There was no packet after all |
| 1846 | * (poll() returning POLLIN for a fd |
| 1847 | * is not a ironclad guarantee that data is there) |
| 1848 | */ |
| 1849 | return; |
| 1850 | /* |
| 1851 | * If you need a different handling for a specific |
| 1852 | * errno, always explain it in comment. |
| 1853 | */ |
| 1854 | bb_perror_msg_and_die("recv(%s) error", p->p_dotted); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1855 | } |
| 1856 | |
| 1857 | if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE) { |
| 1858 | bb_error_msg("malformed packet received from %s", p->p_dotted); |
Denys Vlasenko | 4125a6b | 2012-06-11 11:41:46 +0200 | [diff] [blame] | 1859 | return; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1860 | } |
| 1861 | |
| 1862 | if (msg.m_orgtime.int_partl != p->p_xmt_msg.m_xmttime.int_partl |
| 1863 | || msg.m_orgtime.fractionl != p->p_xmt_msg.m_xmttime.fractionl |
| 1864 | ) { |
Denys Vlasenko | 4125a6b | 2012-06-11 11:41:46 +0200 | [diff] [blame] | 1865 | /* Somebody else's packet */ |
| 1866 | return; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1867 | } |
| 1868 | |
Denys Vlasenko | 4125a6b | 2012-06-11 11:41:46 +0200 | [diff] [blame] | 1869 | /* We do not expect any more packets from this peer for now. |
| 1870 | * Closing the socket informs kernel about it. |
| 1871 | * We open a new socket when we send a new query. |
| 1872 | */ |
| 1873 | close(p->p_fd); |
| 1874 | p->p_fd = -1; |
| 1875 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1876 | if ((msg.m_status & LI_ALARM) == LI_ALARM |
| 1877 | || msg.m_stratum == 0 |
| 1878 | || msg.m_stratum > NTP_MAXSTRATUM |
| 1879 | ) { |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 1880 | bb_error_msg("reply from %s: peer is unsynced", p->p_dotted); |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1881 | /* |
| 1882 | * Stratum 0 responses may have commands in 32-bit m_refid field: |
| 1883 | * "DENY", "RSTR" - peer does not like us at all, |
| 1884 | * "RATE" - peer is overloaded, reduce polling freq. |
| 1885 | * If poll interval is small, increase it. |
| 1886 | */ |
| 1887 | if (G.poll_exp < BIGPOLL) |
| 1888 | goto increase_interval; |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 1889 | goto pick_normal_interval; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1890 | } |
| 1891 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1892 | // /* Verify valid root distance */ |
| 1893 | // if (msg.m_rootdelay / 2 + msg.m_rootdisp >= MAXDISP || p->lastpkt_reftime > msg.m_xmt) |
| 1894 | // return; /* invalid header values */ |
| 1895 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1896 | /* |
| 1897 | * From RFC 2030 (with a correction to the delay math): |
| 1898 | * |
| 1899 | * Timestamp Name ID When Generated |
| 1900 | * ------------------------------------------------------------ |
| 1901 | * Originate Timestamp T1 time request sent by client |
| 1902 | * Receive Timestamp T2 time request received by server |
| 1903 | * Transmit Timestamp T3 time reply sent by server |
| 1904 | * Destination Timestamp T4 time reply received by client |
| 1905 | * |
| 1906 | * The roundtrip delay and local clock offset are defined as |
| 1907 | * |
| 1908 | * delay = (T4 - T1) - (T3 - T2); offset = ((T2 - T1) + (T3 - T4)) / 2 |
| 1909 | */ |
| 1910 | T1 = p->p_xmttime; |
| 1911 | T2 = lfp_to_d(msg.m_rectime); |
| 1912 | T3 = lfp_to_d(msg.m_xmttime); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1913 | T4 = G.cur_time; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1914 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1915 | /* The delay calculation is a special case. In cases where the |
| 1916 | * server and client clocks are running at different rates and |
| 1917 | * with very fast networks, the delay can appear negative. In |
| 1918 | * order to avoid violating the Principle of Least Astonishment, |
| 1919 | * the delay is clamped not less than the system precision. |
| 1920 | */ |
Denys Vlasenko | d531f93 | 2014-04-19 19:00:16 +0200 | [diff] [blame] | 1921 | delay = (T4 - T1) - (T3 - T2); |
| 1922 | if (delay < G_precision_sec) |
| 1923 | delay = G_precision_sec; |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 1924 | /* |
| 1925 | * If this packet's delay is much bigger than the last one, |
| 1926 | * it's better to just ignore it than use its much less precise value. |
| 1927 | */ |
Denys Vlasenko | d531f93 | 2014-04-19 19:00:16 +0200 | [diff] [blame] | 1928 | prev_delay = p->p_raw_delay; |
| 1929 | p->p_raw_delay = delay; |
| 1930 | if (p->reachable_bits && delay > prev_delay * BAD_DELAY_GROWTH) { |
Denys Vlasenko | 5a21c85 | 2014-04-20 13:04:23 +0200 | [diff] [blame] | 1931 | bb_error_msg("reply from %s: delay %f is too high, ignoring", p->p_dotted, delay); |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 1932 | goto pick_normal_interval; |
| 1933 | } |
| 1934 | |
Denys Vlasenko | d531f93 | 2014-04-19 19:00:16 +0200 | [diff] [blame] | 1935 | p->lastpkt_delay = delay; |
| 1936 | p->lastpkt_recv_time = T4; |
| 1937 | VERB6 bb_error_msg("%s->lastpkt_recv_time=%f", p->p_dotted, p->lastpkt_recv_time); |
| 1938 | p->lastpkt_status = msg.m_status; |
| 1939 | p->lastpkt_stratum = msg.m_stratum; |
| 1940 | p->lastpkt_rootdelay = sfp_to_d(msg.m_rootdelay); |
| 1941 | p->lastpkt_rootdisp = sfp_to_d(msg.m_rootdisp); |
| 1942 | p->lastpkt_refid = msg.m_refid; |
| 1943 | |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 1944 | p->datapoint_idx = p->reachable_bits ? (p->datapoint_idx + 1) % NUM_DATAPOINTS : 0; |
| 1945 | datapoint = &p->filter_datapoint[p->datapoint_idx]; |
| 1946 | datapoint->d_recv_time = T4; |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 1947 | datapoint->d_offset = offset = ((T2 - T1) + (T3 - T4)) / 2; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1948 | datapoint->d_dispersion = LOG2D(msg.m_precision_exp) + G_precision_sec; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1949 | if (!p->reachable_bits) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1950 | /* 1st datapoint ever - replicate offset in every element */ |
| 1951 | int i; |
Denys Vlasenko | 132b044 | 2012-03-05 00:51:48 +0100 | [diff] [blame] | 1952 | for (i = 0; i < NUM_DATAPOINTS; i++) { |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 1953 | p->filter_datapoint[i].d_offset = offset; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1954 | } |
| 1955 | } |
| 1956 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1957 | p->reachable_bits |= 1; |
Denys Vlasenko | 074e8dc | 2010-01-04 23:58:13 +0100 | [diff] [blame] | 1958 | if ((MAX_VERBOSE && G.verbose) || (option_mask32 & OPT_w)) { |
Denys Vlasenko | 79bec06 | 2012-03-08 13:02:52 +0100 | [diff] [blame] | 1959 | bb_error_msg("reply from %s: offset:%+f delay:%f status:0x%02x strat:%d refid:0x%08x rootdelay:%f reach:0x%02x", |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1960 | p->p_dotted, |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 1961 | offset, |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 1962 | p->lastpkt_delay, |
| 1963 | p->lastpkt_status, |
| 1964 | p->lastpkt_stratum, |
| 1965 | p->lastpkt_refid, |
Denys Vlasenko | d98dc92 | 2012-03-08 03:27:49 +0100 | [diff] [blame] | 1966 | p->lastpkt_rootdelay, |
| 1967 | p->reachable_bits |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 1968 | /* not shown: m_ppoll, m_precision_exp, m_rootdisp, |
| 1969 | * m_reftime, m_orgtime, m_rectime, m_xmttime |
| 1970 | */ |
| 1971 | ); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 1972 | } |
| 1973 | |
| 1974 | /* Muck with statictics and update the clock */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 1975 | filter_datapoints(p); |
| 1976 | q = select_and_cluster(); |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1977 | rc = 0; |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 1978 | if (q) { |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1979 | if (!(option_mask32 & OPT_w)) { |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 1980 | rc = update_local_clock(q); |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1981 | #if 0 |
| 1982 | //Disabled this because there is a case where largish offsets |
| 1983 | //are unavoidable: if network round-trip delay is, say, ~0.6s, |
| 1984 | //error in offset estimation would be ~delay/2 ~= 0.3s. |
| 1985 | //Thus, offsets will be usually in -0.3...0.3s range. |
| 1986 | //In this case, this code would keep poll interval small, |
| 1987 | //but it won't be helping. |
| 1988 | //BIGOFF check below deals with a case of seeing multi-second offsets. |
| 1989 | |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1990 | /* If drift is dangerously large, immediately |
| 1991 | * drop poll interval one step down. |
| 1992 | */ |
Denys Vlasenko | 5b9a910 | 2010-01-17 01:05:58 +0100 | [diff] [blame] | 1993 | if (fabs(q->filter_offset) >= POLLDOWN_OFFSET) { |
Denys Vlasenko | a14958c | 2013-12-04 16:32:09 +0100 | [diff] [blame] | 1994 | VERB4 bb_error_msg("offset:%+f > POLLDOWN_OFFSET", q->filter_offset); |
Miroslav Lichvar | 590a22c | 2014-09-18 16:19:05 +0200 | [diff] [blame] | 1995 | adjust_poll(-POLLADJ_LIMIT * 3); |
| 1996 | rc = 0; |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1997 | } |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 1998 | #endif |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 1999 | } |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 2000 | } else { |
| 2001 | /* No peer selected. |
| 2002 | * If poll interval is small, increase it. |
| 2003 | */ |
| 2004 | if (G.poll_exp < BIGPOLL) |
| 2005 | goto increase_interval; |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 2006 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2007 | |
| 2008 | if (rc != 0) { |
| 2009 | /* Adjust the poll interval by comparing the current offset |
| 2010 | * with the clock jitter. If the offset is less than |
| 2011 | * the clock jitter times a constant, then the averaging interval |
| 2012 | * is increased, otherwise it is decreased. A bit of hysteresis |
| 2013 | * helps calm the dance. Works best using burst mode. |
| 2014 | */ |
Denys Vlasenko | 547ee79 | 2012-03-05 10:18:00 +0100 | [diff] [blame] | 2015 | if (rc > 0 && G.offset_to_jitter_ratio <= POLLADJ_GATE) { |
Denys Vlasenko | bfc2a32 | 2010-01-01 18:12:06 +0100 | [diff] [blame] | 2016 | /* was += G.poll_exp but it is a bit |
| 2017 | * too optimistic for my taste at high poll_exp's */ |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 2018 | increase_interval: |
Miroslav Lichvar | 590a22c | 2014-09-18 16:19:05 +0200 | [diff] [blame] | 2019 | adjust_poll(MINPOLL); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2020 | } else { |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 2021 | VERB3 if (rc > 0) |
Denys Vlasenko | 4c48a64 | 2016-03-03 22:01:23 +0100 | [diff] [blame] | 2022 | bb_error_msg("want smaller interval: offset/jitter = %u", |
| 2023 | G.offset_to_jitter_ratio); |
Miroslav Lichvar | 590a22c | 2014-09-18 16:19:05 +0200 | [diff] [blame] | 2024 | adjust_poll(-G.poll_exp * 2); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2025 | } |
| 2026 | } |
| 2027 | |
| 2028 | /* Decide when to send new query for this peer */ |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 2029 | pick_normal_interval: |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 2030 | interval = poll_interval(INT_MAX); |
| 2031 | if (fabs(offset) >= BIGOFF && interval > BIGOFF_INTERVAL) { |
Denys Vlasenko | fc47fce | 2016-02-10 06:55:07 +0100 | [diff] [blame] | 2032 | /* If we are synced, offsets are less than SLEW_THRESHOLD, |
Denys Vlasenko | 0b3a38b | 2013-12-08 16:11:04 +0100 | [diff] [blame] | 2033 | * or at the very least not much larger than it. |
| 2034 | * Now we see a largish one. |
| 2035 | * Either this peer is feeling bad, or packet got corrupted, |
| 2036 | * or _our_ clock is wrong now and _all_ peers will show similar |
| 2037 | * largish offsets too. |
| 2038 | * I observed this with laptop suspend stopping clock. |
| 2039 | * In any case, it makes sense to make next request soonish: |
| 2040 | * cases 1 and 2: get a better datapoint, |
| 2041 | * case 3: allows to resync faster. |
| 2042 | */ |
| 2043 | interval = BIGOFF_INTERVAL; |
| 2044 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2045 | |
Denys Vlasenko | 4168fdd | 2010-01-04 00:19:13 +0100 | [diff] [blame] | 2046 | set_next(p, interval); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2047 | } |
| 2048 | |
| 2049 | #if ENABLE_FEATURE_NTPD_SERVER |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2050 | static NOINLINE void |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2051 | recv_and_process_client_pkt(void /*int fd*/) |
| 2052 | { |
| 2053 | ssize_t size; |
Cristian Ionescu-Idbohrn | 662972a | 2011-05-16 03:53:00 +0200 | [diff] [blame] | 2054 | //uint8_t version; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2055 | len_and_sockaddr *to; |
| 2056 | struct sockaddr *from; |
| 2057 | msg_t msg; |
| 2058 | uint8_t query_status; |
| 2059 | l_fixedpt_t query_xmttime; |
| 2060 | |
Denys Vlasenko | 3e3a8d5 | 2012-04-01 16:31:04 +0200 | [diff] [blame] | 2061 | to = get_sock_lsa(G_listen_fd); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2062 | from = xzalloc(to->len); |
| 2063 | |
Denys Vlasenko | 3e3a8d5 | 2012-04-01 16:31:04 +0200 | [diff] [blame] | 2064 | size = recv_from_to(G_listen_fd, &msg, sizeof(msg), MSG_DONTWAIT, from, &to->u.sa, to->len); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2065 | if (size != NTP_MSGSIZE_NOAUTH && size != NTP_MSGSIZE) { |
| 2066 | char *addr; |
| 2067 | if (size < 0) { |
| 2068 | if (errno == EAGAIN) |
| 2069 | goto bail; |
| 2070 | bb_perror_msg_and_die("recv"); |
| 2071 | } |
| 2072 | addr = xmalloc_sockaddr2dotted_noport(from); |
| 2073 | bb_error_msg("malformed packet received from %s: size %u", addr, (int)size); |
| 2074 | free(addr); |
| 2075 | goto bail; |
| 2076 | } |
| 2077 | |
Miroslav Lichvar | 150dc7a | 2016-08-01 20:24:24 +0200 | [diff] [blame] | 2078 | /* Respond only to client and symmetric active packets */ |
| 2079 | if ((msg.m_status & MODE_MASK) != MODE_CLIENT |
| 2080 | && (msg.m_status & MODE_MASK) != MODE_SYM_ACT |
| 2081 | ) { |
| 2082 | goto bail; |
| 2083 | } |
| 2084 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2085 | query_status = msg.m_status; |
| 2086 | query_xmttime = msg.m_xmttime; |
| 2087 | |
| 2088 | /* Build a reply packet */ |
| 2089 | memset(&msg, 0, sizeof(msg)); |
Paul Marks | b7841cf | 2013-01-14 02:39:10 +0100 | [diff] [blame] | 2090 | msg.m_status = G.stratum < MAXSTRAT ? (G.ntp_status & LI_MASK) : LI_ALARM; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2091 | msg.m_status |= (query_status & VERSION_MASK); |
| 2092 | msg.m_status |= ((query_status & MODE_MASK) == MODE_CLIENT) ? |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 2093 | MODE_SERVER : MODE_SYM_PAS; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2094 | msg.m_stratum = G.stratum; |
| 2095 | msg.m_ppoll = G.poll_exp; |
| 2096 | msg.m_precision_exp = G_precision_exp; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2097 | /* this time was obtained between poll() and recv() */ |
| 2098 | msg.m_rectime = d_to_lfp(G.cur_time); |
| 2099 | msg.m_xmttime = d_to_lfp(gettime1900d()); /* this instant */ |
Denys Vlasenko | d678257 | 2010-10-04 01:20:44 +0200 | [diff] [blame] | 2100 | if (G.peer_cnt == 0) { |
| 2101 | /* we have no peers: "stratum 1 server" mode. reftime = our own time */ |
| 2102 | G.reftime = G.cur_time; |
| 2103 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2104 | msg.m_reftime = d_to_lfp(G.reftime); |
| 2105 | msg.m_orgtime = query_xmttime; |
| 2106 | msg.m_rootdelay = d_to_sfp(G.rootdelay); |
| 2107 | //simple code does not do this, fix simple code! |
| 2108 | msg.m_rootdisp = d_to_sfp(G.rootdisp); |
Cristian Ionescu-Idbohrn | 662972a | 2011-05-16 03:53:00 +0200 | [diff] [blame] | 2109 | //version = (query_status & VERSION_MASK); /* ... >> VERSION_SHIFT - done below instead */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2110 | msg.m_refid = G.refid; // (version > (3 << VERSION_SHIFT)) ? G.refid : G.refid3; |
| 2111 | |
| 2112 | /* We reply from the local address packet was sent to, |
| 2113 | * this makes to/from look swapped here: */ |
Denys Vlasenko | 3e3a8d5 | 2012-04-01 16:31:04 +0200 | [diff] [blame] | 2114 | do_sendto(G_listen_fd, |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2115 | /*from:*/ &to->u.sa, /*to:*/ from, /*addrlen:*/ to->len, |
| 2116 | &msg, size); |
| 2117 | |
| 2118 | bail: |
| 2119 | free(to); |
| 2120 | free(from); |
| 2121 | } |
| 2122 | #endif |
| 2123 | |
| 2124 | /* Upstream ntpd's options: |
| 2125 | * |
| 2126 | * -4 Force DNS resolution of host names to the IPv4 namespace. |
| 2127 | * -6 Force DNS resolution of host names to the IPv6 namespace. |
| 2128 | * -a Require cryptographic authentication for broadcast client, |
| 2129 | * multicast client and symmetric passive associations. |
| 2130 | * This is the default. |
| 2131 | * -A Do not require cryptographic authentication for broadcast client, |
| 2132 | * multicast client and symmetric passive associations. |
| 2133 | * This is almost never a good idea. |
| 2134 | * -b Enable the client to synchronize to broadcast servers. |
| 2135 | * -c conffile |
| 2136 | * Specify the name and path of the configuration file, |
| 2137 | * default /etc/ntp.conf |
| 2138 | * -d Specify debugging mode. This option may occur more than once, |
| 2139 | * with each occurrence indicating greater detail of display. |
| 2140 | * -D level |
| 2141 | * Specify debugging level directly. |
| 2142 | * -f driftfile |
| 2143 | * Specify the name and path of the frequency file. |
| 2144 | * This is the same operation as the "driftfile FILE" |
| 2145 | * configuration command. |
| 2146 | * -g Normally, ntpd exits with a message to the system log |
| 2147 | * if the offset exceeds the panic threshold, which is 1000 s |
| 2148 | * by default. This option allows the time to be set to any value |
| 2149 | * without restriction; however, this can happen only once. |
| 2150 | * If the threshold is exceeded after that, ntpd will exit |
| 2151 | * with a message to the system log. This option can be used |
| 2152 | * with the -q and -x options. See the tinker command for other options. |
| 2153 | * -i jaildir |
| 2154 | * Chroot the server to the directory jaildir. This option also implies |
| 2155 | * that the server attempts to drop root privileges at startup |
| 2156 | * (otherwise, chroot gives very little additional security). |
| 2157 | * You may need to also specify a -u option. |
| 2158 | * -k keyfile |
| 2159 | * Specify the name and path of the symmetric key file, |
| 2160 | * default /etc/ntp/keys. This is the same operation |
| 2161 | * as the "keys FILE" configuration command. |
| 2162 | * -l logfile |
| 2163 | * Specify the name and path of the log file. The default |
| 2164 | * is the system log file. This is the same operation as |
| 2165 | * the "logfile FILE" configuration command. |
| 2166 | * -L Do not listen to virtual IPs. The default is to listen. |
| 2167 | * -n Don't fork. |
| 2168 | * -N To the extent permitted by the operating system, |
| 2169 | * run the ntpd at the highest priority. |
| 2170 | * -p pidfile |
| 2171 | * Specify the name and path of the file used to record the ntpd |
| 2172 | * process ID. This is the same operation as the "pidfile FILE" |
| 2173 | * configuration command. |
| 2174 | * -P priority |
| 2175 | * To the extent permitted by the operating system, |
| 2176 | * run the ntpd at the specified priority. |
| 2177 | * -q Exit the ntpd just after the first time the clock is set. |
| 2178 | * This behavior mimics that of the ntpdate program, which is |
| 2179 | * to be retired. The -g and -x options can be used with this option. |
| 2180 | * Note: The kernel time discipline is disabled with this option. |
| 2181 | * -r broadcastdelay |
| 2182 | * Specify the default propagation delay from the broadcast/multicast |
| 2183 | * server to this client. This is necessary only if the delay |
| 2184 | * cannot be computed automatically by the protocol. |
| 2185 | * -s statsdir |
| 2186 | * Specify the directory path for files created by the statistics |
| 2187 | * facility. This is the same operation as the "statsdir DIR" |
| 2188 | * configuration command. |
| 2189 | * -t key |
| 2190 | * Add a key number to the trusted key list. This option can occur |
| 2191 | * more than once. |
| 2192 | * -u user[:group] |
| 2193 | * Specify a user, and optionally a group, to switch to. |
| 2194 | * -v variable |
| 2195 | * -V variable |
| 2196 | * Add a system variable listed by default. |
| 2197 | * -x Normally, the time is slewed if the offset is less than the step |
| 2198 | * threshold, which is 128 ms by default, and stepped if above |
| 2199 | * the threshold. This option sets the threshold to 600 s, which is |
| 2200 | * well within the accuracy window to set the clock manually. |
| 2201 | * Note: since the slew rate of typical Unix kernels is limited |
| 2202 | * to 0.5 ms/s, each second of adjustment requires an amortization |
| 2203 | * interval of 2000 s. Thus, an adjustment as much as 600 s |
| 2204 | * will take almost 14 days to complete. This option can be used |
| 2205 | * with the -g and -q options. See the tinker command for other options. |
| 2206 | * Note: The kernel time discipline is disabled with this option. |
| 2207 | */ |
| 2208 | |
| 2209 | /* By doing init in a separate function we decrease stack usage |
| 2210 | * in main loop. |
| 2211 | */ |
| 2212 | static NOINLINE void ntp_init(char **argv) |
| 2213 | { |
| 2214 | unsigned opts; |
| 2215 | llist_t *peers; |
| 2216 | |
Denys Vlasenko | 0ed5f7a | 2014-03-05 18:58:15 +0100 | [diff] [blame] | 2217 | srand(getpid()); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2218 | |
| 2219 | if (getuid()) |
| 2220 | bb_error_msg_and_die(bb_msg_you_must_be_root); |
| 2221 | |
| 2222 | /* Set some globals */ |
Miroslav Lichvar | 760d035 | 2014-10-05 03:10:15 +0200 | [diff] [blame] | 2223 | G.discipline_jitter = G_precision_sec; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2224 | G.stratum = MAXSTRAT; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2225 | if (BURSTPOLL != 0) |
| 2226 | G.poll_exp = BURSTPOLL; /* speeds up initial sync */ |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 2227 | G.last_script_run = G.reftime = G.last_update_recv_time = gettime1900d(); /* sets G.cur_time too */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2228 | |
| 2229 | /* Parse options */ |
| 2230 | peers = NULL; |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 2231 | opts = getopt32(argv, "^" |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2232 | "nqNx" /* compat */ |
Denys Vlasenko | 237bedd | 2016-07-06 21:58:02 +0200 | [diff] [blame] | 2233 | "wp:*S:"IF_FEATURE_NTPD_SERVER("l") /* NOT compat */ |
Denys Vlasenko | 278842d | 2014-07-15 15:06:54 +0200 | [diff] [blame] | 2234 | IF_FEATURE_NTPD_SERVER("I:") /* compat */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2235 | "d" /* compat */ |
Denys Vlasenko | 8b77a9e | 2017-08-23 15:08:25 +0200 | [diff] [blame] | 2236 | "46aAbgL" /* compat, ignored */ |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 2237 | "\0" |
| 2238 | "dd:wn" /* -d: counter; -p: list; -w implies -n */ |
| 2239 | IF_FEATURE_NTPD_SERVER(":Il") /* -I implies -l */ |
| 2240 | , &peers, &G.script_name, |
Denys Vlasenko | 278842d | 2014-07-15 15:06:54 +0200 | [diff] [blame] | 2241 | #if ENABLE_FEATURE_NTPD_SERVER |
| 2242 | &G.if_name, |
| 2243 | #endif |
| 2244 | &G.verbose); |
Denys Vlasenko | 504fe45 | 2014-03-23 15:06:38 +0100 | [diff] [blame] | 2245 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2246 | // if (opts & OPT_x) /* disable stepping, only slew is allowed */ |
| 2247 | // G.time_was_stepped = 1; |
Denys Vlasenko | aabb0a9 | 2016-07-03 17:58:54 +0200 | [diff] [blame] | 2248 | |
| 2249 | #if ENABLE_FEATURE_NTPD_SERVER |
| 2250 | G_listen_fd = -1; |
| 2251 | if (opts & OPT_l) { |
| 2252 | G_listen_fd = create_and_bind_dgram_or_die(NULL, 123); |
| 2253 | if (G.if_name) { |
| 2254 | if (setsockopt_bindtodevice(G_listen_fd, G.if_name)) |
| 2255 | xfunc_die(); |
| 2256 | } |
| 2257 | socket_want_pktinfo(G_listen_fd); |
| 2258 | setsockopt_int(G_listen_fd, IPPROTO_IP, IP_TOS, IPTOS_LOWDELAY); |
| 2259 | } |
| 2260 | #endif |
| 2261 | /* I hesitate to set -20 prio. -15 should be high enough for timekeeping */ |
| 2262 | if (opts & OPT_N) |
| 2263 | setpriority(PRIO_PROCESS, 0, -15); |
| 2264 | |
Denys Vlasenko | aabb0a9 | 2016-07-03 17:58:54 +0200 | [diff] [blame] | 2265 | if (!(opts & OPT_n)) { |
| 2266 | bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO, argv); |
| 2267 | logmode = LOGMODE_NONE; |
| 2268 | } |
| 2269 | |
Denys Vlasenko | d678257 | 2010-10-04 01:20:44 +0200 | [diff] [blame] | 2270 | if (peers) { |
| 2271 | while (peers) |
| 2272 | add_peers(llist_pop(&peers)); |
Denys Vlasenko | 504fe45 | 2014-03-23 15:06:38 +0100 | [diff] [blame] | 2273 | } |
| 2274 | #if ENABLE_FEATURE_NTPD_CONF |
| 2275 | else { |
| 2276 | parser_t *parser; |
| 2277 | char *token[3]; |
| 2278 | |
| 2279 | parser = config_open("/etc/ntp.conf"); |
| 2280 | while (config_read(parser, token, 3, 1, "# \t", PARSE_NORMAL)) { |
| 2281 | if (strcmp(token[0], "server") == 0 && token[1]) { |
| 2282 | add_peers(token[1]); |
| 2283 | continue; |
| 2284 | } |
| 2285 | bb_error_msg("skipping %s:%u: unimplemented command '%s'", |
| 2286 | "/etc/ntp.conf", parser->lineno, token[0] |
| 2287 | ); |
| 2288 | } |
| 2289 | config_close(parser); |
| 2290 | } |
| 2291 | #endif |
| 2292 | if (G.peer_cnt == 0) { |
| 2293 | if (!(opts & OPT_l)) |
| 2294 | bb_show_usage(); |
Denys Vlasenko | d678257 | 2010-10-04 01:20:44 +0200 | [diff] [blame] | 2295 | /* -l but no peers: "stratum 1 server" mode */ |
| 2296 | G.stratum = 1; |
| 2297 | } |
Denys Vlasenko | 74c992a | 2010-08-27 02:15:01 +0200 | [diff] [blame] | 2298 | /* If network is up, syncronization occurs in ~10 seconds. |
Denys Vlasenko | 8e23faf | 2011-04-07 01:45:20 +0200 | [diff] [blame] | 2299 | * We give "ntpd -q" 10 seconds to get first reply, |
| 2300 | * then another 50 seconds to finish syncing. |
Denys Vlasenko | 74c992a | 2010-08-27 02:15:01 +0200 | [diff] [blame] | 2301 | * |
| 2302 | * I tested ntpd 4.2.6p1 and apparently it never exits |
| 2303 | * (will try forever), but it does not feel right. |
| 2304 | * The goal of -q is to act like ntpdate: set time |
| 2305 | * after a reasonably small period of polling, or fail. |
| 2306 | */ |
Denys Vlasenko | 8e23faf | 2011-04-07 01:45:20 +0200 | [diff] [blame] | 2307 | if (opts & OPT_q) { |
| 2308 | option_mask32 |= OPT_qq; |
| 2309 | alarm(10); |
| 2310 | } |
Denys Vlasenko | 74c992a | 2010-08-27 02:15:01 +0200 | [diff] [blame] | 2311 | |
| 2312 | bb_signals(0 |
| 2313 | | (1 << SIGTERM) |
| 2314 | | (1 << SIGINT) |
| 2315 | | (1 << SIGALRM) |
| 2316 | , record_signo |
| 2317 | ); |
| 2318 | bb_signals(0 |
| 2319 | | (1 << SIGPIPE) |
| 2320 | | (1 << SIGCHLD) |
| 2321 | , SIG_IGN |
| 2322 | ); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2323 | } |
| 2324 | |
| 2325 | int ntpd_main(int argc UNUSED_PARAM, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 2326 | int ntpd_main(int argc UNUSED_PARAM, char **argv) |
| 2327 | { |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2328 | #undef G |
| 2329 | struct globals G; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2330 | struct pollfd *pfd; |
| 2331 | peer_t **idx2peer; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2332 | unsigned cnt; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2333 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2334 | memset(&G, 0, sizeof(G)); |
| 2335 | SET_PTR_TO_GLOBALS(&G); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2336 | |
| 2337 | ntp_init(argv); |
| 2338 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2339 | /* If ENABLE_FEATURE_NTPD_SERVER, + 1 for listen_fd: */ |
| 2340 | cnt = G.peer_cnt + ENABLE_FEATURE_NTPD_SERVER; |
| 2341 | idx2peer = xzalloc(sizeof(idx2peer[0]) * cnt); |
| 2342 | pfd = xzalloc(sizeof(pfd[0]) * cnt); |
| 2343 | |
Leonid Lisovskiy | 894ef60 | 2010-10-20 22:36:51 +0200 | [diff] [blame] | 2344 | /* Countdown: we never sync before we sent INITIAL_SAMPLES+1 |
Denys Vlasenko | 65d722b | 2010-01-11 02:14:04 +0100 | [diff] [blame] | 2345 | * packets to each peer. |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2346 | * NB: if some peer is not responding, we may end up sending |
| 2347 | * fewer packets to it and more to other peers. |
Leonid Lisovskiy | 894ef60 | 2010-10-20 22:36:51 +0200 | [diff] [blame] | 2348 | * NB2: sync usually happens using INITIAL_SAMPLES packets, |
Denys Vlasenko | 65d722b | 2010-01-11 02:14:04 +0100 | [diff] [blame] | 2349 | * since last reply does not come back instantaneously. |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2350 | */ |
Leonid Lisovskiy | 894ef60 | 2010-10-20 22:36:51 +0200 | [diff] [blame] | 2351 | cnt = G.peer_cnt * (INITIAL_SAMPLES + 1); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2352 | |
Anthony G. Basile | 12677ac | 2012-12-10 14:49:39 -0500 | [diff] [blame] | 2353 | write_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid"); |
| 2354 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2355 | while (!bb_got_signal) { |
| 2356 | llist_t *item; |
| 2357 | unsigned i, j; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2358 | int nfds, timeout; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2359 | double nextaction; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2360 | |
Denys Vlasenko | a1e9bc6 | 2017-10-28 17:54:24 +0200 | [diff] [blame^] | 2361 | /* Resolve peer names to IPs, if not resolved yet */ |
| 2362 | for (item = G.ntp_peers; item != NULL; item = item->link) { |
| 2363 | peer_t *p = (peer_t *) item->data; |
| 2364 | |
| 2365 | if (p->next_action_time <= G.cur_time && !p->p_lsa) |
| 2366 | resolve_peer_hostname(p); |
| 2367 | } |
| 2368 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2369 | /* Nothing between here and poll() blocks for any significant time */ |
| 2370 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2371 | nextaction = G.cur_time + 3600; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2372 | |
| 2373 | i = 0; |
| 2374 | #if ENABLE_FEATURE_NTPD_SERVER |
Denys Vlasenko | 3e3a8d5 | 2012-04-01 16:31:04 +0200 | [diff] [blame] | 2375 | if (G_listen_fd != -1) { |
| 2376 | pfd[0].fd = G_listen_fd; |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2377 | pfd[0].events = POLLIN; |
| 2378 | i++; |
| 2379 | } |
| 2380 | #endif |
| 2381 | /* Pass over peer list, send requests, time out on receives */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2382 | for (item = G.ntp_peers; item != NULL; item = item->link) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2383 | peer_t *p = (peer_t *) item->data; |
| 2384 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2385 | if (p->next_action_time <= G.cur_time) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2386 | if (p->p_fd == -1) { |
| 2387 | /* Time to send new req */ |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2388 | if (--cnt == 0) { |
Miroslav Lichvar | fb143f7 | 2014-09-18 16:19:03 +0200 | [diff] [blame] | 2389 | VERB4 bb_error_msg("disabling burst mode"); |
| 2390 | G.polladj_count = 0; |
| 2391 | G.poll_exp = MINPOLL; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2392 | } |
| 2393 | send_query_to_peer(p); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2394 | } else { |
| 2395 | /* Timed out waiting for reply */ |
| 2396 | close(p->p_fd); |
| 2397 | p->p_fd = -1; |
Miroslav Lichvar | b434ce7 | 2014-10-02 17:18:43 +0200 | [diff] [blame] | 2398 | /* If poll interval is small, increase it */ |
| 2399 | if (G.poll_exp < BIGPOLL) |
| 2400 | adjust_poll(MINPOLL); |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 2401 | timeout = poll_interval(NOREPLY_INTERVAL); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2402 | bb_error_msg("timed out waiting for %s, reach 0x%02x, next query in %us", |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2403 | p->p_dotted, p->reachable_bits, timeout); |
Denys Vlasenko | c864196 | 2016-03-04 07:26:08 +0100 | [diff] [blame] | 2404 | |
| 2405 | /* What if don't see it because it changed its IP? */ |
Denys Vlasenko | e4caf1d | 2016-06-06 02:26:49 +0200 | [diff] [blame] | 2406 | if (p->reachable_bits == 0) |
Natanael Copa | b62ea34 | 2017-01-06 16:18:45 +0100 | [diff] [blame] | 2407 | resolve_peer_hostname(p); |
Denys Vlasenko | c864196 | 2016-03-04 07:26:08 +0100 | [diff] [blame] | 2408 | |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2409 | set_next(p, timeout); |
| 2410 | } |
| 2411 | } |
| 2412 | |
| 2413 | if (p->next_action_time < nextaction) |
| 2414 | nextaction = p->next_action_time; |
| 2415 | |
| 2416 | if (p->p_fd >= 0) { |
| 2417 | /* Wait for reply from this peer */ |
| 2418 | pfd[i].fd = p->p_fd; |
| 2419 | pfd[i].events = POLLIN; |
| 2420 | idx2peer[i] = p; |
| 2421 | i++; |
| 2422 | } |
| 2423 | } |
| 2424 | |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2425 | timeout = nextaction - G.cur_time; |
| 2426 | if (timeout < 0) |
| 2427 | timeout = 0; |
| 2428 | timeout++; /* (nextaction - G.cur_time) rounds down, compensating */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2429 | |
| 2430 | /* Here we may block */ |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 2431 | VERB2 { |
Denys Vlasenko | 3e3a8d5 | 2012-04-01 16:31:04 +0200 | [diff] [blame] | 2432 | if (i > (ENABLE_FEATURE_NTPD_SERVER && G_listen_fd != -1)) { |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 2433 | /* We wait for at least one reply. |
| 2434 | * Poll for it, without wasting time for message. |
| 2435 | * Since replies often come under 1 second, this also |
| 2436 | * reduces clutter in logs. |
| 2437 | */ |
| 2438 | nfds = poll(pfd, i, 1000); |
| 2439 | if (nfds != 0) |
| 2440 | goto did_poll; |
| 2441 | if (--timeout <= 0) |
| 2442 | goto did_poll; |
| 2443 | } |
Denys Vlasenko | 8be49c3 | 2012-03-06 19:16:50 +0100 | [diff] [blame] | 2444 | bb_error_msg("poll:%us sockets:%u interval:%us", timeout, i, 1 << G.poll_exp); |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 2445 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2446 | nfds = poll(pfd, i, timeout * 1000); |
Denys Vlasenko | e8ce285 | 2012-03-03 12:15:46 +0100 | [diff] [blame] | 2447 | did_poll: |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2448 | gettime1900d(); /* sets G.cur_time */ |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 2449 | if (nfds <= 0) { |
Denys Vlasenko | 5ffdd1d | 2013-05-22 18:16:34 +0200 | [diff] [blame] | 2450 | if (!bb_got_signal /* poll wasn't interrupted by a signal */ |
| 2451 | && G.cur_time - G.last_script_run > 11*60 |
| 2452 | ) { |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 2453 | /* Useful for updating battery-backed RTC and such */ |
Denys Vlasenko | 12628b7 | 2010-01-11 01:31:59 +0100 | [diff] [blame] | 2454 | run_script("periodic", G.last_update_offset); |
Denys Vlasenko | 06667f2 | 2010-01-06 13:05:08 +0100 | [diff] [blame] | 2455 | gettime1900d(); /* sets G.cur_time */ |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 2456 | } |
Denys Vlasenko | 5ffdd1d | 2013-05-22 18:16:34 +0200 | [diff] [blame] | 2457 | goto check_unsync; |
Denys Vlasenko | ede737b | 2010-01-06 12:27:47 +0100 | [diff] [blame] | 2458 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2459 | |
| 2460 | /* Process any received packets */ |
| 2461 | j = 0; |
| 2462 | #if ENABLE_FEATURE_NTPD_SERVER |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2463 | if (G.listen_fd != -1) { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2464 | if (pfd[0].revents /* & (POLLIN|POLLERR)*/) { |
| 2465 | nfds--; |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2466 | recv_and_process_client_pkt(/*G.listen_fd*/); |
| 2467 | gettime1900d(); /* sets G.cur_time */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2468 | } |
| 2469 | j = 1; |
| 2470 | } |
| 2471 | #endif |
| 2472 | for (; nfds != 0 && j < i; j++) { |
| 2473 | if (pfd[j].revents /* & (POLLIN|POLLERR)*/) { |
Denys Vlasenko | 8e23faf | 2011-04-07 01:45:20 +0200 | [diff] [blame] | 2474 | /* |
| 2475 | * At init, alarm was set to 10 sec. |
| 2476 | * Now we did get a reply. |
| 2477 | * Increase timeout to 50 seconds to finish syncing. |
| 2478 | */ |
| 2479 | if (option_mask32 & OPT_qq) { |
| 2480 | option_mask32 &= ~OPT_qq; |
| 2481 | alarm(50); |
| 2482 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2483 | nfds--; |
| 2484 | recv_and_process_peer_pkt(idx2peer[j]); |
Denys Vlasenko | 0b00281 | 2010-01-03 08:59:59 +0100 | [diff] [blame] | 2485 | gettime1900d(); /* sets G.cur_time */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2486 | } |
| 2487 | } |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 2488 | |
Denys Vlasenko | 5ffdd1d | 2013-05-22 18:16:34 +0200 | [diff] [blame] | 2489 | check_unsync: |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 2490 | if (G.ntp_peers && G.stratum != MAXSTRAT) { |
| 2491 | for (item = G.ntp_peers; item != NULL; item = item->link) { |
| 2492 | peer_t *p = (peer_t *) item->data; |
| 2493 | if (p->reachable_bits) |
| 2494 | goto have_reachable_peer; |
| 2495 | } |
| 2496 | /* No peer responded for last 8 packets, panic */ |
Denys Vlasenko | d3fe960 | 2014-09-27 22:56:09 +0200 | [diff] [blame] | 2497 | clamp_pollexp_and_set_MAXSTRAT(); |
Denys Vlasenko | 5a7e337 | 2013-05-23 16:06:59 +0200 | [diff] [blame] | 2498 | run_script("unsync", 0.0); |
Denys Vlasenko | d99ef63 | 2013-05-22 17:48:19 +0200 | [diff] [blame] | 2499 | have_reachable_peer: ; |
| 2500 | } |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2501 | } /* while (!bb_got_signal) */ |
| 2502 | |
Anthony G. Basile | 12677ac | 2012-12-10 14:49:39 -0500 | [diff] [blame] | 2503 | remove_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid"); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2504 | kill_myself_with_sig(bb_got_signal); |
| 2505 | } |
| 2506 | |
| 2507 | |
| 2508 | |
| 2509 | |
| 2510 | |
| 2511 | |
| 2512 | /*** openntpd-4.6 uses only adjtime, not adjtimex ***/ |
| 2513 | |
| 2514 | /*** ntp-4.2.6/ntpd/ntp_loopfilter.c - adjtimex usage ***/ |
| 2515 | |
| 2516 | #if 0 |
| 2517 | static double |
| 2518 | direct_freq(double fp_offset) |
| 2519 | { |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2520 | #ifdef KERNEL_PLL |
| 2521 | /* |
| 2522 | * If the kernel is enabled, we need the residual offset to |
| 2523 | * calculate the frequency correction. |
| 2524 | */ |
| 2525 | if (pll_control && kern_enable) { |
| 2526 | memset(&ntv, 0, sizeof(ntv)); |
| 2527 | ntp_adjtime(&ntv); |
| 2528 | #ifdef STA_NANO |
| 2529 | clock_offset = ntv.offset / 1e9; |
| 2530 | #else /* STA_NANO */ |
| 2531 | clock_offset = ntv.offset / 1e6; |
| 2532 | #endif /* STA_NANO */ |
| 2533 | drift_comp = FREQTOD(ntv.freq); |
| 2534 | } |
| 2535 | #endif /* KERNEL_PLL */ |
| 2536 | set_freq((fp_offset - clock_offset) / (current_time - clock_epoch) + drift_comp); |
| 2537 | wander_resid = 0; |
| 2538 | return drift_comp; |
| 2539 | } |
| 2540 | |
| 2541 | static void |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 2542 | set_freq(double freq) /* frequency update */ |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2543 | { |
| 2544 | char tbuf[80]; |
| 2545 | |
| 2546 | drift_comp = freq; |
| 2547 | |
| 2548 | #ifdef KERNEL_PLL |
| 2549 | /* |
| 2550 | * If the kernel is enabled, update the kernel frequency. |
| 2551 | */ |
| 2552 | if (pll_control && kern_enable) { |
| 2553 | memset(&ntv, 0, sizeof(ntv)); |
| 2554 | ntv.modes = MOD_FREQUENCY; |
| 2555 | ntv.freq = DTOFREQ(drift_comp); |
| 2556 | ntp_adjtime(&ntv); |
| 2557 | snprintf(tbuf, sizeof(tbuf), "kernel %.3f PPM", drift_comp * 1e6); |
| 2558 | report_event(EVNT_FSET, NULL, tbuf); |
| 2559 | } else { |
| 2560 | snprintf(tbuf, sizeof(tbuf), "ntpd %.3f PPM", drift_comp * 1e6); |
| 2561 | report_event(EVNT_FSET, NULL, tbuf); |
| 2562 | } |
| 2563 | #else /* KERNEL_PLL */ |
| 2564 | snprintf(tbuf, sizeof(tbuf), "ntpd %.3f PPM", drift_comp * 1e6); |
| 2565 | report_event(EVNT_FSET, NULL, tbuf); |
| 2566 | #endif /* KERNEL_PLL */ |
| 2567 | } |
| 2568 | |
| 2569 | ... |
| 2570 | ... |
| 2571 | ... |
| 2572 | |
| 2573 | #ifdef KERNEL_PLL |
| 2574 | /* |
| 2575 | * This code segment works when clock adjustments are made using |
| 2576 | * precision time kernel support and the ntp_adjtime() system |
| 2577 | * call. This support is available in Solaris 2.6 and later, |
| 2578 | * Digital Unix 4.0 and later, FreeBSD, Linux and specially |
| 2579 | * modified kernels for HP-UX 9 and Ultrix 4. In the case of the |
| 2580 | * DECstation 5000/240 and Alpha AXP, additional kernel |
| 2581 | * modifications provide a true microsecond clock and nanosecond |
| 2582 | * clock, respectively. |
| 2583 | * |
| 2584 | * Important note: The kernel discipline is used only if the |
| 2585 | * step threshold is less than 0.5 s, as anything higher can |
| 2586 | * lead to overflow problems. This might occur if some misguided |
| 2587 | * lad set the step threshold to something ridiculous. |
| 2588 | */ |
| 2589 | if (pll_control && kern_enable) { |
| 2590 | |
| 2591 | #define MOD_BITS (MOD_OFFSET | MOD_MAXERROR | MOD_ESTERROR | MOD_STATUS | MOD_TIMECONST) |
| 2592 | |
| 2593 | /* |
| 2594 | * We initialize the structure for the ntp_adjtime() |
| 2595 | * system call. We have to convert everything to |
| 2596 | * microseconds or nanoseconds first. Do not update the |
| 2597 | * system variables if the ext_enable flag is set. In |
| 2598 | * this case, the external clock driver will update the |
| 2599 | * variables, which will be read later by the local |
| 2600 | * clock driver. Afterwards, remember the time and |
| 2601 | * frequency offsets for jitter and stability values and |
| 2602 | * to update the frequency file. |
| 2603 | */ |
| 2604 | memset(&ntv, 0, sizeof(ntv)); |
| 2605 | if (ext_enable) { |
| 2606 | ntv.modes = MOD_STATUS; |
| 2607 | } else { |
| 2608 | #ifdef STA_NANO |
| 2609 | ntv.modes = MOD_BITS | MOD_NANO; |
| 2610 | #else /* STA_NANO */ |
| 2611 | ntv.modes = MOD_BITS; |
| 2612 | #endif /* STA_NANO */ |
| 2613 | if (clock_offset < 0) |
| 2614 | dtemp = -.5; |
| 2615 | else |
| 2616 | dtemp = .5; |
| 2617 | #ifdef STA_NANO |
| 2618 | ntv.offset = (int32)(clock_offset * 1e9 + dtemp); |
| 2619 | ntv.constant = sys_poll; |
| 2620 | #else /* STA_NANO */ |
| 2621 | ntv.offset = (int32)(clock_offset * 1e6 + dtemp); |
| 2622 | ntv.constant = sys_poll - 4; |
| 2623 | #endif /* STA_NANO */ |
| 2624 | ntv.esterror = (u_int32)(clock_jitter * 1e6); |
| 2625 | ntv.maxerror = (u_int32)((sys_rootdelay / 2 + sys_rootdisp) * 1e6); |
| 2626 | ntv.status = STA_PLL; |
| 2627 | |
| 2628 | /* |
| 2629 | * Enable/disable the PPS if requested. |
| 2630 | */ |
| 2631 | if (pps_enable) { |
| 2632 | if (!(pll_status & STA_PPSTIME)) |
| 2633 | report_event(EVNT_KERN, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 2634 | NULL, "PPS enabled"); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2635 | ntv.status |= STA_PPSTIME | STA_PPSFREQ; |
| 2636 | } else { |
| 2637 | if (pll_status & STA_PPSTIME) |
| 2638 | report_event(EVNT_KERN, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 2639 | NULL, "PPS disabled"); |
| 2640 | ntv.status &= ~(STA_PPSTIME | STA_PPSFREQ); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2641 | } |
| 2642 | if (sys_leap == LEAP_ADDSECOND) |
| 2643 | ntv.status |= STA_INS; |
| 2644 | else if (sys_leap == LEAP_DELSECOND) |
| 2645 | ntv.status |= STA_DEL; |
| 2646 | } |
| 2647 | |
| 2648 | /* |
| 2649 | * Pass the stuff to the kernel. If it squeals, turn off |
| 2650 | * the pps. In any case, fetch the kernel offset, |
| 2651 | * frequency and jitter. |
| 2652 | */ |
| 2653 | if (ntp_adjtime(&ntv) == TIME_ERROR) { |
| 2654 | if (!(ntv.status & STA_PPSSIGNAL)) |
| 2655 | report_event(EVNT_KERN, NULL, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 2656 | "PPS no signal"); |
Denys Vlasenko | dd6673b | 2010-01-01 16:46:17 +0100 | [diff] [blame] | 2657 | } |
| 2658 | pll_status = ntv.status; |
| 2659 | #ifdef STA_NANO |
| 2660 | clock_offset = ntv.offset / 1e9; |
| 2661 | #else /* STA_NANO */ |
| 2662 | clock_offset = ntv.offset / 1e6; |
| 2663 | #endif /* STA_NANO */ |
| 2664 | clock_frequency = FREQTOD(ntv.freq); |
| 2665 | |
| 2666 | /* |
| 2667 | * If the kernel PPS is lit, monitor its performance. |
| 2668 | */ |
| 2669 | if (ntv.status & STA_PPSTIME) { |
| 2670 | #ifdef STA_NANO |
| 2671 | clock_jitter = ntv.jitter / 1e9; |
| 2672 | #else /* STA_NANO */ |
| 2673 | clock_jitter = ntv.jitter / 1e6; |
| 2674 | #endif /* STA_NANO */ |
| 2675 | } |
| 2676 | |
| 2677 | #if defined(STA_NANO) && NTP_API == 4 |
| 2678 | /* |
| 2679 | * If the TAI changes, update the kernel TAI. |
| 2680 | */ |
| 2681 | if (loop_tai != sys_tai) { |
| 2682 | loop_tai = sys_tai; |
| 2683 | ntv.modes = MOD_TAI; |
| 2684 | ntv.constant = sys_tai; |
| 2685 | ntp_adjtime(&ntv); |
| 2686 | } |
| 2687 | #endif /* STA_NANO */ |
| 2688 | } |
| 2689 | #endif /* KERNEL_PLL */ |
| 2690 | #endif |