This file is indexed.

/usr/share/perl5/MMM/Monitor/Checker.pm is in mysql-mmm-monitor 2.2.1-1.1.

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
package MMM::Monitor::Checker;

use strict;
use warnings FATAL => 'all';
use Log::Log4perl qw(:easy);
use IPC::Open2;
use MMM::Monitor::CheckResult;

our $VERSION = '0.01';

=head1 NAME

MMM::Monitor::Checker - Checker class and main function for the checker threads

=head1 SYNOPSIS

	# Spawn a checker thread which will create and poll a checker and push its status to $queue
	our $shutdown :shared = 0;
	$SIG{INT} = sub { $shutdown = 1; };
	my $queue = checker_queue(new Thread::Queue::)
	my $ping_thread  = new threads(\&MMM::Monitor::Checker::main, 'ping', $queue)
	my $mysql_thread = new threads(\&MMM::Monitor::Checker::main, 'mysql', $queue)
	...

=cut

sub main($$) {
	my $check_name	= shift;
	my $queue		= shift;

	# Some shortcuts
	my @checks		= keys(%{$main::config->{check}});
	my @hosts		= keys(%{$main::config->{host}});
	my $options		= $main::config->{check}->{$check_name};

	# Create checker
	my $checker = new MMM::Monitor::Checker::($check_name);

	# Initialize failure counters
	my $failures = {};
	foreach my $host_name (@hosts) {
		$failures->{$host_name} = {
			state	=> -1,				# -1 undefined; 1 - ok; -2 untrapped error; 0 trapped error
			time	=> 0,
		}
	}

	# Perform checks until shutdown
	while (!$main::shutdown) {
		foreach my $host_name (@hosts) {
			last if ($main::shutdown);
			last unless ($main::have_net);

			# Ping checker
			$checker->spawn() unless $checker->ping();

			# Check service ...
			my $res = $checker->check($host_name);

			# If success
			if ($res =~ /^OK/) {
				next if ($failures->{$host_name}->{state} == 1);
				if ($failures->{$host_name}->{state} != -2) {
					INFO "Check '$check_name' on '$host_name' is ok!";
					$queue->enqueue(new MMM::Monitor::CheckResult::($host_name, $check_name, 1, $res));
				}
				$failures->{$host_name}->{time}		= 0;
				$failures->{$host_name}->{state}	= 1;
				next;
			}

			# If unknown
			if ($res =~ /^UNKNOWN/) {
				next if ($failures->{$host_name}->{state} == -3);
				$failures->{$host_name}->{time} = time();
				$failures->{$host_name}->{state}= -3;
				WARN "Check '$check_name' on '$host_name' is in unknown state! Message: $res";
				next;
			}
			
			# If failed
			if ($res =~ /^ERROR/) {
				last unless ($main::have_net);
				next if ($failures->{$host_name}->{state} == 0);
				if ($failures->{$host_name}->{state} != 0 && $failures->{$host_name}->{state} != -2) {
					$failures->{$host_name}->{time} = time();
					$failures->{$host_name}->{state}= -2;
				}
				my $failure_age = time() - $failures->{$host_name}->{time};
				
				next if ($failure_age < $options->{trap_period});

				ERROR "Check '$check_name' on '$host_name' has failed for $failure_age seconds! Message: $res";
				$queue->enqueue(new MMM::Monitor::CheckResult::($host_name, $check_name, 0, $res));
				$failures->{$host_name}->{state}	= 0;
				next;
			}
		}

		sleep($options->{check_period});
	}
	$checker->shutdown();
}


=pod

	# Create checker - will spawn a checker process
	my $checker = new MMM::Monitor::Checker::('ping');

=cut

sub new($$) {
	my $class	= shift;
	my $name	= shift;

	my $self = {};

	$self->{name} = $name;
	bless $self, $class; 
	$self->spawn();
	return $self;
}


=pod

	# Respawn checker if it doesn't respond
	$checker->spawn() unless $checker->ping();

=cut

sub spawn($) {
	my $self	= shift;
	my $name	= $self->{name};

	my $reader;		# STDOUT of checker
	my $writer;		# STDIN  of checker

	INFO "Spawning checker '$name'...";

	my $cluster = ($main::cluster_name ? '@' . $main::cluster_name : '');
	my $pid = open2($reader, $writer, $main::config->{monitor}->{bin_path} . "/monitor/checker $cluster $name");
	if (!$pid) {
		LOGDIE "Can't spawn checker! Error: $!";
	}

	$self->{pid}	= $pid;
	$self->{reader}	= $reader;
	$self->{writer}	= $writer;
}


=pod

	# Shutdown checker process
	$checker->shutdown();

=cut

sub shutdown($) {
	my $self	= shift;
	my $name	= $self->{name};

	INFO "Shutting down checker '$name'...";

	my $reader = $self->{reader};
	my $writer = $self->{writer};

	my $send_res = print $writer "quit\n";
	my $recv_res = <$reader>;
	chomp($recv_res) if defined($recv_res);
}


=pod

	# Check if checker process is still alive
	$checker->ping();

=cut

sub ping($) {
	my $self	= shift;
	my $name	= $self->{name};

#	DEBUG "Pinging checker '$name'...";

	my $reader = $self->{reader};
	my $writer = $self->{writer};
	
	my $send_res = print $writer "ping\n";
	my $recv_res;
READ: {
	$recv_res = <$reader>;
	redo READ if !$recv_res && $!{EINTR};
}
	chomp($recv_res) if defined($recv_res);

	if (!$send_res || !$recv_res || !($recv_res =~ /^OK/)) {
		WARN "Checker '$name' is dead!";
		return 0;
	}

#	DEBUG "Checker '$name' is OK ($recv_res)";
	return 1;
}


=pod

	# Tell the checker to check host 'db2'
	$checker->check('db2');

=cut

sub check($$) {
	my $self	= shift;
	my $host	= shift;

	my $name	= $self->{name};

	my $reader = $self->{reader};
	my $writer = $self->{writer};
	
	my $send_res = print $writer "check $host\n";
	my $recv_res;
READ: {
	$recv_res = <$reader>;
	redo READ if !$recv_res && $!{EINTR};
}
	chomp($recv_res) if defined($recv_res);

	return "UNKNOWN: Checker '$name' is dead!" unless ($send_res && $recv_res);
	return $recv_res;
}

1;