diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-16 02:31:58 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-24 18:14:15 +0800 |
commit | b1908f6a16e712d4059195db3f22a0b856907bdb (patch) | |
tree | 8fc76a34e8cb7c2b276a48961b7ab59dc3a47b50 /p2p/discover/udp.go | |
parent | 7841f0cc09885dce408e2a32bab36b833ea896b6 (diff) | |
download | dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.tar dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.tar.gz dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.tar.bz2 dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.tar.lz dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.tar.xz dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.tar.zst dexon-b1908f6a16e712d4059195db3f22a0b856907bdb.zip |
psp/discovery: NTP sanity check clock drift in case of expirations
Diffstat (limited to 'p2p/discover/udp.go')
-rw-r--r-- | p2p/discover/udp.go | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/p2p/discover/udp.go b/p2p/discover/udp.go index 81674f552..fa4bc07dc 100644 --- a/p2p/discover/udp.go +++ b/p2p/discover/udp.go @@ -51,6 +51,9 @@ const ( respTimeout = 500 * time.Millisecond sendTimeout = 500 * time.Millisecond expiration = 20 * time.Second + + ntpThreshold = 32 // Continuous timeouts after which to check NTP + driftThreshold = 10 * time.Second // Allowed clock drift before warning user ) // RPC packet types @@ -316,13 +319,14 @@ func (t *udp) handleReply(from NodeID, ptype byte, req packet) bool { } } -// loop runs in its own goroutin. it keeps track of +// loop runs in its own goroutine. it keeps track of // the refresh timer and the pending reply queue. func (t *udp) loop() { var ( - plist = list.New() - timeout = time.NewTimer(0) - nextTimeout *pending // head of plist when timeout was last reset + plist = list.New() + timeout = time.NewTimer(0) + nextTimeout *pending // head of plist when timeout was last reset + contTimeouts = 0 // number of continuous timeouts to do NTP checks ) <-timeout.C // ignore first timeout defer timeout.Stop() @@ -377,20 +381,41 @@ func (t *udp) loop() { p.errc <- nil plist.Remove(el) } + // Reset the continuous timeout counter (time drift detection) + contTimeouts = 0 } } r.matched <- matched case now := <-timeout.C: nextTimeout = nil + // Notify and remove callbacks whose deadline is in the past. for el := plist.Front(); el != nil; el = el.Next() { p := el.Value.(*pending) if now.After(p.deadline) || now.Equal(p.deadline) { p.errc <- errTimeout plist.Remove(el) + contTimeouts++ } } + // If we've accumulated too many timeouts, do an NTP time sync check + if contTimeouts > ntpThreshold { + go func() { + drift, err := sntpDrift(3) + switch { + case err != nil: + glog.V(logger.Warn).Infof("No UDP connectivity, maybe blocked by firewall? (%v)", err) + + case drift < -driftThreshold || drift > driftThreshold: + glog.V(logger.Warn).Infof("System clock seems off by %v, which can prevent network connectivity", drift) + + default: + glog.V(logger.Debug).Infof("Sanity NTP check reported %v drift, all ok", drift) + } + }() + contTimeouts = 0 + } } } } |