diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-09-29 14:19:17 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-09-29 14:19:17 +0200 |
commit | afb5d8b2db432b8433ba80a1206ae41ef4f4ea8b (patch) | |
tree | 279a6c1f5b1cf4da9a85fb968030d467e2f87be0 | |
parent | a949399d178f7b052ada2099c62621736eafce44 (diff) | |
download | busybox-w32-afb5d8b2db432b8433ba80a1206ae41ef4f4ea8b.tar.gz busybox-w32-afb5d8b2db432b8433ba80a1206ae41ef4f4ea8b.tar.bz2 busybox-w32-afb5d8b2db432b8433ba80a1206ae41ef4f4ea8b.zip |
ntpd: fix the case where two replies received at once and first one causes a step
function old new delta
recv_and_process_peer_pkt 2476 2486 +10
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/ntpd.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index d721fe80c..44e711232 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c | |||
@@ -2025,6 +2025,15 @@ recv_and_process_peer_pkt(peer_t *p) | |||
2025 | 2025 | ||
2026 | offset = 0; | 2026 | offset = 0; |
2027 | 2027 | ||
2028 | /* The below can happen as follows: | ||
2029 | * = we receive two peer rsponses at once. | ||
2030 | * = recv_and_process_peer_pkt(PEER1) -> update_local_clock() | ||
2031 | * -> step_time() and it closes all other fds, sets all ->fd to -1. | ||
2032 | * = recv_and_process_peer_pkt(PEER2) sees PEER2->fd == -1 | ||
2033 | */ | ||
2034 | if (p->p_fd < 0) | ||
2035 | return; | ||
2036 | |||
2028 | /* We can recvfrom here and check from.IP, but some multihomed | 2037 | /* We can recvfrom here and check from.IP, but some multihomed |
2029 | * ntp servers reply from their *other IP*. | 2038 | * ntp servers reply from their *other IP*. |
2030 | * TODO: maybe we should check at least what we can: from.port == 123? | 2039 | * TODO: maybe we should check at least what we can: from.port == 123? |