dsa-check-mirrorsync: optionally allow some skew over mirror timestamps
[mirror/dsa-nagios.git] / dsa-nagios-checks / checks / dsa-check-mirrorsync
1 #!/usr/bin/perl -w
2
3 # nagios check for debian security sync checks
4 #
5 #  Copyright (c) 2008 Alexander Wirt <formorer@debian.org>
6 #  Copyright (c) 2009, 2010 Peter Palfrader <peter@palfrader.org>
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 # USA
22
23 use LWP::UserAgent;
24 use Socket;
25 use strict;
26 use Date::Parse;
27 use Getopt::Long;
28 use Date::Parse;
29 use Date::Format;
30 use File::Basename;
31 use English;
32 use warnings;
33
34
35 sub usage($$) {
36         my ($fh, $exit) = @_;
37         my $basename = basename($PROGRAM_NAME);
38         my $VERSION = '0.1';
39
40         print $fh "$basename $VERSION\n";
41         print $fh "Usage: $basename [--help|--version] [--verbose]\n";
42         print $fh "\n";
43         print $fh "  --help              Print this short help.\n";
44         print $fh "  --version           Report version number.\n";
45         print $fh "  --verbose           Be a little verbose.\n";
46         print $fh "  --host              hostname to check.\n";
47         print $fh "  --path              path to tracefile.\n";
48         print $fh "  --allow-skew=<foo>:<bar> if the newest timestamp is newer than <foo>secs\n";
49         print $fh "                      then the mirror sync is still ok, assuming the oldest\n";
50         print $fh "                      trace file is no older than <bar>\n";
51         print $fh "\n";
52         exit ($exit);
53 };
54
55
56 $ENV{'PATH'} = '/bin:/sbin:/usr/bin:/usr/sbin';
57 delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
58
59 my $params;
60
61 $params->{'host'} = 'security.debian.org'; #which host to check
62 $params->{'path'} = 'project/trace/security-master.debian.org'; 
63
64 my $OK = 0;
65 my $WARNING = 1;
66 my $CRITICAL = 2;
67 my $UNKNOWN = 3;
68
69 if (!GetOptions (
70                 '--help'                => \$params->{'help'},
71                 '--verbose'             => \$params->{'verbose'},
72                 '--version'             => \$params->{'version'},
73                 '--host=s'              => \$params->{'host'},
74                 '--path=s'              => \$params->{'path'},
75                 '--allow-skew=s'        => \$params->{'skew'},
76                 )) {
77                 usage(*STDERR,1)
78 };
79 usage(*STDOUT,0) if ($params->{'help'});
80 usage(*STDERR,1) if (scalar @ARGV);
81
82 if (defined $params->{'skew'}) {
83         if (not $params->{'skew'} =~ /^([0-9]+):([0-9]+)$/) {
84                 print STDERR "Invalid allow-skew format\n";
85                 usage(*STDERR,1);
86         };
87         $params->{'skew-new'} = $1;
88         $params->{'skew-old'} = $2;
89 };
90
91 my $host = $params->{'host'};
92 my $path = $params->{'path'};
93 my @slaves;
94 my $status;
95 my @exitstatus;
96 my $exitcode = $OK;
97
98 @slaves = gethostbyname($params->{'host'})   or die "Can't resolve " . $params->{'host'} .": $!\n";
99 @slaves = map { inet_ntoa($_) } @slaves[4 .. $#slaves];
100 print "Checking the following hosts:\n" . join("\n", @slaves) . "\n" if $params->{'verbose'};
101
102 my @critical;
103
104 foreach my $slave (@slaves) {
105         my $ua = LWP::UserAgent->new;
106         $ua->proxy('http', "http://$slave");
107         print "Requesting http://$host/$path from $slave\n" if $params->{'verbose'};
108         my $response = $ua->get("http://$host/$path");
109
110
111         if ($response->is_success) {
112                 my $content = $response->content;  # or whatever
113                 my ($date, $foo, $bar) = split("\n", $content);
114                 my $synctime = str2time($date);;
115                 if (! defined $synctime) {
116                         $synctime = 0;
117                         $exitcode = $UNKNOWN;
118                         push @exitstatus, "Cannot parse tracefile on $slave";
119                 };
120                 print "$slave last synced $synctime\n" if $params->{'verbose'};
121                 $status->{$slave}->{'synced'} = $synctime;
122         }
123         else {
124                 push @exitstatus, "$slave broken: " . $response->status_line; 
125                 $status->{$slave}->{'error'} = $response->status_line;
126                 $status->{$slave}->{'synced'} = 0;
127                 $exitcode = $CRITICAL;
128                 push @critical, $slave;
129         }
130 }
131
132
133 my %seen;
134 my $o_sync = scalar(grep !$seen{$_}++, map{$status->{$_}->{'synced'}} keys(%{$status}));
135 if ($o_sync > 1) {
136         my @mirrors =  sort { $status->{$a}->{'synced'} <=> $status->{$b}->{'synced'}  } keys %{$status};
137         my @not_most_recent = grep { $status->{$_}->{'synced'} <=> $status->{$mirrors[-1]}->{'synced'} } @mirrors;
138         $o_sync = scalar @not_most_recent;
139
140         my $newest = time - $status->{$mirrors[-1]}->{'synced'};
141         my $oldest = time - $status->{$mirrors[0]}->{'synced'};
142         my $skew_ok = ( defined $params->{'skew-new'} &&
143                         defined $params->{'skew-old'} &&
144                         $newest <= $params->{'skew-new'} &&
145                         $oldest <= $params->{'skew-old'});
146
147         my $msg;
148         if ($skew_ok) {
149                 $exitcode = $OK;
150                 $msg = "$o_sync mirror(s) not in sync (from oldest to newest), but still within acceptable skew: ";
151         } else {
152                 $exitcode = $CRITICAL;
153                 $msg = "$o_sync mirror(s) not in sync (from oldest to newest): ";
154         };
155         push @exitstatus, $msg . join(", ", @not_most_recent);
156 } else {
157         print "All mirrors unique\n" if $params->{'verbose'};
158 }
159
160 if ($exitcode == $CRITICAL) {
161         print "CRITICAL: " . join(',',@exitstatus) . "\n";
162 } elsif ($exitcode == $OK) {
163         if (scalar @exitstatus > 0) {
164                 print "OK: " . join(',',@exitstatus) . "\n";
165         } else {
166                 print "OK: all mirrors up2date\n";
167         }
168 } else {
169         print join(',',@exitstatus) . "\n";
170 }
171
172 foreach my $mirror (keys(%{$status})) {
173         if ($status->{$mirror}->{'error'}) {
174                 print "$mirror broken: " . $status->{$mirror}->{'error'} . "\n";
175         } else {
176                 print "$mirror last synced: " . localtime($status->{$mirror}->{'synced'}) ."\n";
177         }
178 }
179
180 exit $exitcode;