aboutsummaryrefslogtreecommitdiff
path: root/scripts/ntp-wait.in
diff options
context:
space:
mode:
authorOllivier Robert <roberto@FreeBSD.org>2013-12-04 21:33:17 +0000
committerOllivier Robert <roberto@FreeBSD.org>2013-12-04 21:33:17 +0000
commit2b45e011ca352ce509bc83ae148230aeee0c7e0d (patch)
treea618007bb41d13153794a598e3d904ace2976324 /scripts/ntp-wait.in
parent9b5bd0a264b0a21eefac2b929b574c73bd601507 (diff)
Virgin import of ntpd 4.2.6p5.vendor/ntp/4.2.6p5
When the series of commits is complete, things like https://cert.litnet.lt/en/docs/ntp-distributed-reflection-dos-attacks should be fixed. PR: bin/148836 (except that we import a newer version) Asked by: Too many MFC after: 2 weeks
Notes
Notes: svn path=/vendor/ntp/dist/; revision=258945 svn path=/vendor/ntp/4.2.6p5/; revision=258946; tag=vendor/ntp/4.2.6p5
Diffstat (limited to 'scripts/ntp-wait.in')
-rw-r--r--scripts/ntp-wait.in34
1 files changed, 23 insertions, 11 deletions
diff --git a/scripts/ntp-wait.in b/scripts/ntp-wait.in
index a26630bebf58..7b026ca1909c 100644
--- a/scripts/ntp-wait.in
+++ b/scripts/ntp-wait.in
@@ -4,14 +4,13 @@ die "perl5 needed\n" unless ($] > 5);
use Getopt::Std;
-$opt_f = 0; # 'Hard' failure if 'state' is unknown
$opt_n = 1000; # How many tries before we give up? (10 min+)
$opt_s = 6; # Seconds to sleep between tries (6s = 10/min)
$opt_v = 0; # Be verbose?
-getopts('fn:s:v');
+getopts('n:s:v');
-$cmd = 'ntpq -c "rv 0 state"';
+$cmd = 'ntpq -c "rv 0"';
$| = 1; # Autoflush output.
@@ -19,20 +18,33 @@ print "Waiting for ntpd to synchronize... " if ($opt_v);
for ($i = 0; $i < $opt_n; ++$i) {
open(Q, $cmd." 2>&1 |") || die "Can't start ntpq: $!";
while(<Q>) {
- if (/^state=4/) {
- print "\bOK!\n" if ($opt_v);
- exit 0;
- }
-
- if (/request variable was unknown/) {
- print "\bCan't tell!\nPerhaps you are running an old version of ntpd.\n" if ($opt_v);
- exit $opt_f;
+ chomp;
+ # the first line should be similar to:
+ # associd=0 status=0645 leap_none, sync_ntp, ...
+ if (/^associd=0 status=(\S{4}) (\S+), (\S+),/) {
+ my $status = $1;
+ my $leap = $2;
+ my $sync = $3;
+ # print $_;
+ # print "status <$status>, leap <$leap>, sync <$sync>\n";
+ last if ($leap =~ /(sync|leap)_alarm/);
+ if ($leap =~ /leap_(none|((add|del)_sec))/) {
+ # We could check $sync here to make sure we like the source...
+ print "\bOK!\n" if ($opt_v);
+ exit 0;
+ }
+ print "\bUnexpected 'leap' status <$leap>\n";
+ exit 1;
}
if (/Connection refused/) {
print "\bntpd is not running!\n" if ($opt_v);
exit 1;
}
+
+ # Otherwise, we have a bigger problem.
+ print "\bUnexpected first line <$_>\n";
+ exit 1;
}
close(Q);
print "\b".substr("*+:.", $i % 4, 1) if ($opt_v);