249 lines
7.4 KiB
Perl
249 lines
7.4 KiB
Perl
#
|
|
# Copyright 2020 Centreon (http://www.centreon.com/)
|
|
#
|
|
# Centreon is a full-fledged industry-strength solution that meets
|
|
# the needs in IT infrastructure and application monitoring for
|
|
# service performance.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
package apps::activedirectory::local::mode::dcdiag;
|
|
|
|
use base qw(centreon::plugins::mode);
|
|
|
|
use strict;
|
|
use warnings;
|
|
use centreon::plugins::misc;
|
|
use File::Basename;
|
|
use XML::Simple;
|
|
use Win32;
|
|
|
|
sub new {
|
|
my ($class, %options) = @_;
|
|
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
|
|
bless $self, $class;
|
|
|
|
$options{options}->add_options(arguments => {
|
|
'config:s' => { name => 'config' },
|
|
'language:s' => { name => 'language', default => 'en' },
|
|
'dfsr' => { name => 'dfsr' },
|
|
'noeventlog' => { name => 'noeventlog' },
|
|
'nomachineaccount' => { name => 'nomachineaccount' },
|
|
'timeout:s' => { name => 'timeout', default => 30 }
|
|
});
|
|
|
|
$self->{os_is2003} = 0;
|
|
$self->{os_is2008} = 0;
|
|
$self->{os_is2012} = 0;
|
|
$self->{os_is2016} = 0;
|
|
|
|
return $self;
|
|
}
|
|
|
|
sub check_options {
|
|
my ($self, %options) = @_;
|
|
$self->SUPER::init(%options);
|
|
}
|
|
|
|
sub check_version {
|
|
my ($self, %options) = @_;
|
|
|
|
our ($ver_string, $ver_major, $ver_minor, $ver_build, $ver_id) = Win32::GetOSVersion();
|
|
#"Operating system is " . "$ver_string - ($ver_id.$ver_major.$ver_minor.$ver_build)\n";
|
|
|
|
# 5.1, 5.2 => XP/2003
|
|
# 6.0, 6.1 => Vista/7/2008
|
|
# 6.2, 6.3 => 2012
|
|
# 10.0 => 2016, 2019
|
|
if ($ver_major == 5 && ($ver_minor == 1 || $ver_minor == 2)) {
|
|
$self->{os_is2003} = 1;
|
|
} elsif ($ver_major == 6 && ($ver_minor == 0 || $ver_minor == 1)) {
|
|
$self->{os_is2008} = 1;
|
|
} elsif ($ver_major == 6 && ($ver_minor == 2 || $ver_minor == 3)) {
|
|
$self->{os_is2012} = 1;
|
|
} elsif ($ver_major == 10 && $ver_minor == 0) {
|
|
$self->{os_is2016} = 1;
|
|
} else {
|
|
$self->{output}->output_add(
|
|
severity => 'UNKNOWN',
|
|
short_msg => 'OS version ' . $ver_major . '.' . $ver_minor . ' not managed.'
|
|
);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
sub read_config {
|
|
my ($self, %options) = @_;
|
|
|
|
my $content_file = <<'END_FILE';
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<root>
|
|
<dcdiag language="en">
|
|
<messages>
|
|
<global>Starting test.*?:\s+(.*?)\n.*?(passed|warning|failed)</global>
|
|
<ok>passed</ok>
|
|
<warning>warning</warning>
|
|
<critical>failed</critical>
|
|
</messages>
|
|
</dcdiag>
|
|
<dcdiag language="fr">
|
|
<messages>
|
|
<global>D.*?marrage du test.*?:\s+(.*?)\n.*?(a r.*?ussi|a .*?chou.|warning)</global>
|
|
<ok>a r.*?ussi</ok>
|
|
<warning>warning</warning>
|
|
<critical>a .*?chou.</critical>
|
|
</messages>
|
|
</dcdiag>
|
|
</root>
|
|
END_FILE
|
|
|
|
if (defined($self->{option_results}->{config}) && $self->{option_results}->{config} ne '') {
|
|
$content_file = do {
|
|
local $/ = undef;
|
|
if (!open my $fh, "<", $self->{option_results}->{config}) {
|
|
$self->{output}->add_option_msg(short_msg => "Could not open file $self->{option_results}->{config} : $!");
|
|
$self->{output}->option_exit();
|
|
}
|
|
<$fh>;
|
|
};
|
|
}
|
|
|
|
my $content;
|
|
eval {
|
|
$content = XMLin($content_file, ForceArray => ['dcdiag'], KeyAttr => ['language']);
|
|
};
|
|
if ($@) {
|
|
$self->{output}->add_option_msg(short_msg => "Cannot decode xml response: $@");
|
|
$self->{output}->option_exit();
|
|
}
|
|
|
|
if (!defined($content->{dcdiag}->{$self->{option_results}->{language}})) {
|
|
$self->{output}->add_option_msg(short_msg => "Cannot find language '$self->{option_results}->{language}' in config file");
|
|
$self->{output}->option_exit();
|
|
}
|
|
|
|
return $content->{dcdiag}->{ $self->{option_results}->{language} };
|
|
}
|
|
|
|
sub dcdiag {
|
|
my ($self, %options) = @_;
|
|
|
|
my $dcdiag_cmd = 'dcdiag /test:services /test:replications /test:advertising /test:fsmocheck /test:ridmanager';
|
|
$dcdiag_cmd .= ' /test:machineaccount' if (!defined($self->{option_results}->{nomachineaccount}));
|
|
$dcdiag_cmd .= ' /test:frssysvol' if ($self->{os_is2003} == 1);
|
|
$dcdiag_cmd .= ' /test:sysvolcheck' if ($self->{os_is2008} == 1 || $self->{os_is2012} == 1 || $self->{os_is2016} == 1);
|
|
|
|
if (!defined($self->{option_results}->{noeventlog})) {
|
|
$dcdiag_cmd .= ' /test:frsevent /test:kccevent' if ($self->{os_is2003} == 1);
|
|
$dcdiag_cmd .= ' /test:frsevent /test:kccevent' if (($self->{os_is2008} == 1 || $self->{os_is2012} == 1 || $self->{os_is2016} == 1) && !defined($self->{option_results}->{dfsr}));
|
|
$dcdiag_cmd .= ' /test:dfsrevent /test:kccevent' if (($self->{os_is2008} == 1 || $self->{os_is2012} == 1 || $self->{os_is2016} == 1) && defined($self->{option_results}->{dfsr}));
|
|
}
|
|
|
|
my ($stdout) = centreon::plugins::misc::windows_execute(
|
|
output => $self->{output},
|
|
timeout => $self->{option_results}->{timeout},
|
|
command => $dcdiag_cmd,
|
|
command_path => undef,
|
|
command_options => undef
|
|
);
|
|
|
|
my $match = 0;
|
|
while ($stdout =~ /$options{config}->{messages}->{global}/imsg) {
|
|
my ($test_name, $pattern) = ($1, lc($2));
|
|
|
|
if ($pattern =~ /$options{config}->{messages}->{ok}/i) {
|
|
$match = 1;
|
|
$self->{output}->output_add(
|
|
severity => 'OK',
|
|
short_msg => $test_name
|
|
);
|
|
} elsif ($pattern =~ /$options{config}->{messages}->{critical}/i) {
|
|
$match = 1;
|
|
$self->{output}->output_add(
|
|
severity => 'CRITICAL',
|
|
short_msg => 'test ' . $test_name
|
|
);
|
|
} elsif ($pattern =~ /$options{config}->{messages}->{warning}/i) {
|
|
$match = 1;
|
|
$self->{output}->output_add(
|
|
severity => 'WARNING',
|
|
short_msg => 'test ' . $test_name
|
|
);
|
|
}
|
|
}
|
|
|
|
if ($match == 0) {
|
|
$self->{output}->output_add(
|
|
severity => 'UNKNOWN',
|
|
short_msg => 'Cannot match output test (maybe you need to set the good language)'
|
|
);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
sub run {
|
|
my ($self, %options) = @_;
|
|
|
|
my $config = $self->read_config();
|
|
if ($self->check_version() == 0) {
|
|
$self->dcdiag(config => $config);
|
|
}
|
|
|
|
$self->{output}->display();
|
|
$self->{output}->exit();
|
|
}
|
|
|
|
1;
|
|
|
|
__END__
|
|
|
|
=head1 MODE
|
|
|
|
Check Windows Active Directory Health (use 'dcdiag' command).
|
|
|
|
=over 8
|
|
|
|
=item B<--config>
|
|
|
|
command can be localized by using a configuration file.
|
|
This parameter can be used to specify an alternative location for the configuration file
|
|
|
|
=item B<--language>
|
|
|
|
Set the language used in config file (default: 'en').
|
|
|
|
=item B<--dfsr>
|
|
|
|
Specifies that SysVol replication uses DFS instead of FRS (Windows 2008 or later)
|
|
|
|
=item B<--noeventlog>
|
|
|
|
Don't run the dc tests kccevent, frsevent and dfsrevent
|
|
|
|
=item B<--nomachineaccount>
|
|
|
|
Don't run the dc tests machineaccount
|
|
|
|
=item B<--timeout>
|
|
|
|
Set timeout time for command execution (Default: 30 sec)
|
|
|
|
=back
|
|
|
|
=cut
|