/usr/share/tcltk/tcllib1.16/ntp/time.tcl is in tcllib 1.16-dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | # time.tcl - Copyright (C) 2003 Pat Thoyts <patthoyts@users.sourceforge.net>
#
# Client for the Time protocol. See RFC 868
# Client for Simple Network Time Protocol - RFC 2030
#
# -------------------------------------------------------------------------
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# -------------------------------------------------------------------------
#
# $Id: time.tcl,v 1.19 2006/09/19 23:36:17 andreas_kupries Exp $
package require Tcl 8.0; # tcl minimum version
package require log; # tcllib 1.3
namespace eval ::time {
variable version 1.2.1
variable rcsid {$Id: time.tcl,v 1.19 2006/09/19 23:36:17 andreas_kupries Exp $}
namespace export configure gettime server cleanup
variable options
if {![info exists options]} {
array set options {
-timeserver {}
-port 37
-protocol tcp
-timeout 10000
-command {}
-loglevel warning
}
if {![catch {package require udp}]} {
set options(-protocol) udp
} else {
if {![catch {package require ceptcl}]} {
set options(-protocol) udp
}
}
log::lvSuppressLE emergency 0
log::lvSuppressLE $options(-loglevel) 1
log::lvSuppress $options(-loglevel) 0
}
# Store conversions for other epochs. Currently only unix - but maybe
# there are some others out there.
variable epoch
if {![info exists epoch]} {
array set epoch {
unix 2208988800
}
}
# The id for the next token.
variable uid
if {![info exists uid]} {
set uid 0
}
}
# -------------------------------------------------------------------------
# Description:
# Retrieve configuration settings for the time package.
#
proc ::time::cget {optionname} {
return [configure $optionname]
}
# Description:
# Configure the package.
# With no options, returns a list of all current settings.
#
proc ::time::configure {args} {
variable options
set r {}
set cget 0
if {[llength $args] < 1} {
foreach opt [lsort [array names options]] {
lappend r $opt $options($opt)
}
return $r
}
if {[llength $args] == 1} {
set cget 1
}
while {[string match -* [set option [lindex $args 0]]]} {
switch -glob -- $option {
-port { set r [SetOrGet -port $cget] }
-timeout { set r [SetOrGet -timeout $cget] }
-protocol { set r [SetOrGet -protocol $cget] }
-command { set r [SetOrGet -command $cget] }
-loglevel {
if {$cget} {
return $options(-loglevel)
} else {
set options(-loglevel) [Pop args 1]
log::lvSuppressLE emergency 0
log::lvSuppressLE $options(-loglevel) 1
log::lvSuppress $options(-loglevel) 0
}
}
-- { Pop args ; break }
default {
set err [join [lsort [array names options -*]] ", "]
return -code error "bad option \"$option\": must be $err"
}
}
Pop args
}
return $r
}
# Set/get package options.
proc ::time::SetOrGet {option {cget 0}} {
upvar options options
upvar args args
if {$cget} {
return $options($option)
} else {
set options($option) [Pop args 1]
}
return {}
}
# -------------------------------------------------------------------------
proc ::time::getsntp {args} {
set token [eval [linsert $args 0 CommonSetup -port 123]]
upvar #0 $token State
set State(rfc) 2030
return [QueryTime $token]
}
proc ::time::gettime {args} {
set token [eval [linsert $args 0 CommonSetup -port 37]]
upvar #0 $token State
set State(rfc) 868
return [QueryTime $token]
}
proc ::time::CommonSetup {args} {
variable options
variable uid
set token [namespace current]::[incr uid]
variable $token
upvar 0 $token State
array set State [array get options]
set State(status) unconnected
set State(data) {}
while {[string match -* [set option [lindex $args 0]]]} {
switch -glob -- $option {
-port { set State(-port) [Pop args 1] }
-timeout { set State(-timeout) [Pop args 1] }
-proto* { set State(-protocol) [Pop args 1] }
-command { set State(-command) [Pop args 1] }
-- { Pop args ; break }
default {
set err [join [lsort [array names State -*]] ", "]
return -code error "bad option \"$option\":\
must be $err."
}
}
Pop args
}
set len [llength $args]
if {$len < 1 || $len > 2} {
if {[catch {info level -1} arg0]} {
set arg0 [info level 0]
}
return -code error "wrong # args: should be\
\"[lindex $arg0 0] ?options? timeserver ?port?\""
}
set State(-timeserver) [lindex $args 0]
if {$len == 2} {
set State(-port) [lindex $args 1]
}
return $token
}
proc ::time::QueryTime {token} {
variable $token
upvar 0 $token State
if {[string equal $State(-protocol) "udp"]} {
if {[llength [package provide ceptcl]] == 0 \
&& [llength [package provide udp]] == 0} {
set State(status) error
set State(error) "udp support is not available, \
either ceptcl or tcludp required"
return $token
}
}
if {[catch {
if {[string equal $State(-protocol) "udp"]} {
if {[llength [package provide ceptcl]] > 0} {
# using ceptcl
set State(sock) [cep -type datagram \
$State(-timeserver) $State(-port)]
fconfigure $State(sock) -blocking 0
} else {
# using tcludp
set State(sock) [udp_open]
udp_conf $State(sock) $State(-timeserver) $State(-port)
}
} else {
set State(sock) [socket $State(-timeserver) $State(-port)]
}
} sockerr]} {
set State(status) error
set State(error) $sockerr
return $token
}
# setup the timeout
if {$State(-timeout) > 0} {
set State(after) [after $State(-timeout) \
[list [namespace origin reset] $token timeout]]
}
set State(status) connect
fconfigure $State(sock) -translation binary -buffering none
# SNTP wants a 48 byte request while TIME doesn't care and is happy
# to accept any old rubbish. If protocol is TCP then merely connecting
# is sufficient to elicit a response.
if {[string equal $State(-protocol) "udp"]} {
set len [expr {($State(rfc) == 2030) ? 47 : 3}]
puts -nonewline $State(sock) \x0b[string repeat \0 $len]
}
fileevent $State(sock) readable \
[list [namespace origin ClientReadEvent] $token]
if {$State(-command) == {}} {
wait $token
}
return $token
}
proc ::time::unixtime {{token {}}} {
variable $token
variable epoch
upvar 0 $token State
if {$State(status) != "ok"} {
return -code error $State(error)
}
# SNTP returns 48+ bytes while TIME always returns 4.
if {[string length $State(data)] == 4} {
# RFC848 TIME
if {[binary scan $State(data) I r] < 1} {
return -code error "Unable to scan data"
}
return [expr {int($r - $epoch(unix))&0xffffffff}]
} elseif {[string length $State(data)] > 47} {
# SNTP TIME
if {[binary scan $State(data) c40II -> sec frac] < 1} {
return -code error "Failed to decode result"
}
return [expr {int($sec - $epoch(unix))&0xffffffff}]
} else {
return -code error "error: data format not recognised"
}
}
proc ::time::status {token} {
variable $token
upvar 0 $token State
return $State(status)
}
proc ::time::error {token} {
variable $token
upvar 0 $token State
set r {}
if {[info exists State(error)]} {
set r $State(error)
}
return $r
}
proc ::time::wait {token} {
variable $token
upvar 0 $token State
if {$State(status) == "connect"} {
vwait [subst $token](status)
}
return $State(status)
}
proc ::time::reset {token {why reset}} {
variable $token
upvar 0 $token State
set reason {}
set State(status) $why
catch {fileevent $State(sock) readable {}}
if {$why == "timeout"} {
set reason "timeout ocurred"
}
Finish $token $reason
}
# Description:
# Remove any state associated with this token.
#
proc ::time::cleanup {token} {
variable $token
upvar 0 $token State
if {[info exists State]} {
unset State
}
}
# -------------------------------------------------------------------------
proc ::time::ClientReadEvent {token} {
variable $token
upvar 0 $token State
append State(data) [read $State(sock)]
set expected [expr {($State(rfc) == 868) ? 4 : 48}]
if {[string length $State(data)] < $expected} { return }
#FIX ME: acquire peer data?
set State(status) ok
Finish $token
return
}
proc ::time::Finish {token {errormsg {}}} {
variable $token
upvar 0 $token State
global errorInfo errorCode
if {[string length $errormsg] > 0} {
set State(error) $errormsg
set State(status) error
}
catch {close $State(sock)}
catch {after cancel $State(after)}
if {[info exists State(-command)] && $State(-command) != {}} {
if {[catch {eval $State(-command) {$token}} err]} {
if {[string length $errormsg] == 0} {
set State(error) [list $err $errorInfo $errorCode]
set State(status) error
}
}
if {[info exists State(-command)]} {
unset State(-command)
}
}
}
# -------------------------------------------------------------------------
# Description:
# Pop the nth element off a list. Used in options processing.
#
proc ::time::Pop {varname {nth 0}} {
upvar $varname args
set r [lindex $args $nth]
set args [lreplace $args $nth $nth]
return $r
}
# -------------------------------------------------------------------------
package provide time $::time::version
# -------------------------------------------------------------------------
# Local variables:
# mode: tcl
# indent-tabs-mode: nil
# End:
|