-
Notifications
You must be signed in to change notification settings - Fork 4
/
check_sophos_xg_service.pl
executable file
·388 lines (347 loc) · 9.78 KB
/
check_sophos_xg_service.pl
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
388
#!/usr/bin/perl
# SPDX-FileCopyrightText: PhiBo from DinoTools (2022)
# SPDX-License-Identifier: GPL-3.0-or-later
use strict;
use warnings FATAL => 'all';
use Pod::Text::Termcap;
use Time::localtime;
use Date::Calc qw(Delta_Days);
use Net::SNMP;
use constant OK => 0;
use constant WARNING => 1;
use constant CRITICAL => 2;
use constant UNKNOWN => 3;
use constant VERSION => '';
my $sfosXGServiceStatus = '.1.3.6.1.4.1.2604.5.1.3';
my %services = (
pop3 => {
oid => $sfosXGServiceStatus . '.1.0',
label => 'POP3',
},
imap4 => {
oid => $sfosXGServiceStatus . '.2.0',
label => 'IMAP4',
},
smtp => {
oid => $sfosXGServiceStatus . '.3.0',
label => 'SMTP',
},
ftp => {
oid => $sfosXGServiceStatus . '.4.0',
label => 'FTP',
},
http => {
oid => $sfosXGServiceStatus . '.5.0',
label => 'HTTP',
},
av => {
oid => $sfosXGServiceStatus . '.6.0',
label => 'AV',
},
as => {
oid => $sfosXGServiceStatus . '.7.0',
label => 'AS',
},
dns => {
oid => $sfosXGServiceStatus . '.8.0',
label => 'DNS',
},
ha => {
oid => $sfosXGServiceStatus . '.9.0',
label => 'HA',
},
ips => {
oid => $sfosXGServiceStatus . '.10.0',
label => '',
},
apache => {
oid => $sfosXGServiceStatus . '.11.0',
label => 'Apache',
},
ntp => {
oid => $sfosXGServiceStatus . '.12.0',
label => 'NTP',
},
tomcat => {
oid => $sfosXGServiceStatus . '.13.0',
label => 'Tomcat',
},
'vpn-ssl' => {
oid => $sfosXGServiceStatus . '.14.0',
label => 'SSL-VPN',
},
'vpn-ipsec' => {
oid => $sfosXGServiceStatus . '.15.0',
label => 'IPSec VPN',
},
database => {
oid => $sfosXGServiceStatus . '.16.0',
label => 'Database',
},
network => {
oid => $sfosXGServiceStatus . '.17.0',
label => 'Network',
},
garner => {
oid => $sfosXGServiceStatus . '.18.0',
label => 'Garner',
},
drouting => {
oid => $sfosXGServiceStatus . '.19.0',
label => 'Drouting',
},
sshd => {
oid => $sfosXGServiceStatus . '.20.0',
label => 'SSHd',
},
dgd => {
oid => $sfosXGServiceStatus . '.21.0',
label => 'Device and Group Discovery',
}
);
my @services_to_check = ();
my @services_available = keys %services;
my %ServiceStatusType = (
0 => 'untouched',
1 => 'stopped',
2 => 'initializing',
3 => 'running',
4 => 'exiting',
5 => 'dead',
6 => 'frozen',
7 => 'unregistered',
);
my $pkg_monitoring_available = 0;
BEGIN {
my $pkg_nagios_available = 0;
eval {
require Monitoring::Plugin;
require Monitoring::Plugin::Functions;
$pkg_monitoring_available = 1;
};
if (!$pkg_monitoring_available) {
eval {
require Nagios::Plugin;
require Nagios::Plugin::Functions;
*Monitoring::Plugin:: = *Nagios::Plugin::;
$pkg_nagios_available = 1;
};
}
if (!$pkg_monitoring_available && !$pkg_nagios_available) {
print("UNKNOWN - Unable to find module Monitoring::Plugin or Nagios::Plugin\n");
exit UNKNOWN;
}
}
my @g_long_message;
my $parser = Pod::Text::Termcap->new (sentence => 0, width => 78);
my $extra_doc = <<'END_MESSAGE';
END_MESSAGE
my $extra_doc_output;
$parser->output_string(\$extra_doc_output);
$parser->parse_string_document($extra_doc);
my $mp = Monitoring::Plugin->new(
shortname => "Sophos XG services",
usage => '',
version => VERSION,
extra => $extra_doc_output,
);
$mp->add_arg(
spec => 'community|C=s',
help => 'Community string (Default: public)',
default => 'public'
);
$mp->add_arg(
spec => 'hostname|H=s',
help => 'Hostname or IP of the device with SNMP access enabled',
required => 1
);
$mp->add_arg(
spec => 'username|u=s',
help => 'Username for SNMPv3',
);
$mp->add_arg(
spec => 'authpassword|A=s',
help => 'Authentication protocol password',
);
$mp->add_arg(
spec => 'authprotocol|a=s',
help => 'Authentication protocol: MD5, SHA, SHA-224, SHA-256, SHA-384, SHA-512 (Default: MD5)',
default => 'md5',
);
$mp->add_arg(
spec => 'privpassword|X=s',
help => 'privacy protocol password',
);
$mp->add_arg(
spec => 'privprotocol|x=s',
help => 'Privacy protocol: DES, AES (Default: DES)',
default => 'des',
);
$mp->add_arg(
spec => 'include=s@',
help => sprintf(
'Include the given services in the check.'
. ' This option can be specified multiple times'
. ' Allowed values are: all, %s (Default: all)',
join(', ', @services_available)
),
default => []
);
$mp->add_arg(
spec => 'exclude=s@',
help => sprintf(
'Exclud the given services from the check.'
. ' This option can be specified multiple times'
. ' Allowed values are: %s (Default: empty list)',
join(', ', @services_available)
),
default => []
);
$mp->add_arg(
spec => 'status-warning=s@',
help => sprintf(
'Report warning if a service is in this state.'
. ' This option can be specified multiple times.'
. ' Allowed values: %s (Default: [])',
join(', ', values(%ServiceStatusType)),
),
default => [],
);
$mp->add_arg(
spec => 'status-ok=s@',
help => sprintf(
'If a service is in the specified state it is OK.'
. ' If not it is critical.'
. ' This option can be specified multiple times.'
. ' Allowed values: %s (Default: running)',
join(', ', values(%ServiceStatusType)),
),
default => ['running'],
);
$mp->add_arg(
spec => 'verbose',
help => 'Print verbose/debug information',
default => 0,
);
$mp->getopts;
my @services_included;
my @status_ok;
my @status_warning;
if(@{$mp->opts->include} == 0 || grep(/^all$/, @{$mp->opts->include})) {
@services_included = @services_available;
} else {
@services_included = @{$mp->opts->include};
}
if(@{$mp->opts->{'status-ok'}} == 0) {
@status_ok = ['running'];
} else {
@status_ok = @{$mp->opts->{'status-ok'}};
}
@status_warning = @{$mp->opts->{'status-warning'}};
foreach my $name (@services_included) {
if(!grep(/^$name$/, @services_available)) {
wrap_exit(UNKNOWN, sprintf('Unknown service type: %s', $name));
}
if(@{$mp->opts->exclude} >0 && grep(/^$name$/, @{$mp->opts->exclude})) {
next;
}
push(@services_to_check, $name);
}
my ($session, $error);
if (defined($mp->opts->username) && defined($mp->opts->authpassword)) {
# SNMPv3 login
verb('SNMPv3 login');
if (!defined($mp->opts->privpassword)) {
verb('SNMPv3 AuthNoPriv login : %s, %s', $mp->opts->username, $mp->opts->authprotocol);
($session, $error) = Net::SNMP->session(
-hostname => $mp->opts->hostname,
-version => 'snmpv3',
-username => $mp->opts->username,
-authprotocol => $mp->opts->authprotocol,
-authpassword => $mp->opts->authpassword,
);
} else {
verb('SNMPv3 AuthPriv login : %s, %s, %s', $mp->opts->username, $mp->opts->authprotocol, $mp->opts->privprotocol);
($session, $error) = Net::SNMP->session(
-hostname => $mp->opts->hostname,
-version => 'snmpv3',
-username => $mp->opts->username,
-authprotocol => $mp->opts->authprotocol,
-authpassword => $mp->opts->authpassword,
-privprotocol => $mp->opts->privprotocol,
-privpassword => $mp->opts->privpassword,
);
}
} else {
verb('SNMP v2c login');
($session, $error) = Net::SNMP->session(
-hostname => $mp->opts->hostname,
-version => 'snmpv2c',
-community => $mp->opts->community,
);
}
if (!defined($session)) {
wrap_exit(UNKNOWN, $error)
}
check();
my ($code, $message) = $mp->check_messages();
wrap_exit($code, $message . "\n" . join("\n", @g_long_message));
sub check
{
my @oids = ();
foreach my $key (keys %services) {
if(grep(/^${key}$/, @services_to_check)) {
push(@oids, $services{$key}{'oid'});
}
}
my $result = $session->get_request(
-varbindlist => \@oids,
);
if(!defined $result) {
wrap_exit(UNKNOWN, 'Unable to get information');
}
foreach my $key (sort keys %services) {
my $status = $result->{$services{$key}{'oid'}};
my $label = $services{$key}{'label'};
if(grep(/^${key}$/, @services_to_check)) {
my $status_state = OK;
if (grep(/^$ServiceStatusType{$status}$/, @status_warning)) {
$status_state = WARNING;
$mp->add_message($status_state, 'Service ' . $label . ' state ' . $ServiceStatusType{$status});
} elsif (!grep(/^$ServiceStatusType{$status}$/, @status_ok)) {
$status_state = CRITICAL;
$mp->add_message($status_state, 'Service ' . $label . ' state ' . $ServiceStatusType{$status});
}
push(
@g_long_message,
'Services:',
);
push(
@g_long_message,
(
sprintf(
'- %s: %s %s',
$label,
$ServiceStatusType{$status},
($status_state == OK) ? '' : '!!!'
),
)
);
}
}
}
sub verb
{
my $t = shift;
if ($mp->opts->verbose) {
printf($t . "\n", @_);
}
}
sub wrap_exit
{
if($pkg_monitoring_available == 1) {
$mp->plugin_exit( @_ );
} else {
$mp->nagios_exit( @_ );
}
}