/usr/share/perl5/Munin/Node/OS.pm is in munin-node 2.0.33-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 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 | package Munin::Node::OS;
# $Id$
use warnings;
use strict;
use Carp;
use English qw(-no_match_vars);
use Munin::Node::Config;
use Munin::Common::Timeout;
use POSIX ();
use Sys::Hostname;
sub get_uid {
my ($class, $user) = @_;
return $class->_get_xid($user, \&POSIX::getpwnam, \&POSIX::getpwuid);
}
sub get_gid {
my ($class, $group) = @_;
return $class->_get_xid($group, \&POSIX::getgrnam, \&POSIX::getgrgid);
}
sub _get_xid {
my ($class, $entity, $name2num, $num2name) = @_;
return unless defined $entity;
if ($entity =~ /^\d+$/) {
return unless $num2name->($entity); # Entity does not exist
return $entity;
} else {
return $name2num->($entity);
}
}
sub get_fq_hostname {
my $short = Sys::Hostname::hostname();
return (gethostbyname $short)[0] || $short || "unknown";
}
sub check_perms_if_paranoid
{
my ($class, $target) = @_;
my $config = Munin::Node::Config->instance();
return 0 unless defined $target;
return 1 unless $config->{paranoia};
unless (-e $target) {
warn "Failed to check permissions on nonexistent target: '$target'";
return;
}
my ($mode, $uid, $gid) = (stat $target)[2,4,5];
if ($uid != 0
or $gid != 0 && ($mode & oct(20))
or $mode & oct( 2) )
{
warn sprintf "Warning: '$target' has dangerous permissions (%04o)",
($mode & oct(7777));
return 0;
}
# Check dir as well
if (-f $target) {
(my $dirname = $target) =~ s{[^/]+$}{};
return $class->check_perms($dirname);
}
return 1;
}
# Read stuff from the file handles connected to the pluginds
# stdout and stderr and return two array references: one array of
# output and one array of errors.
sub _read_from_child
{
my ($self, $stdout, $stderr) = @_;
my ($rout, $wout, $eout);
my $rin = my $win = my $ein = '';
my $output = my $errput = '';
vec($win,0,1)=0;
vec($rin,fileno($stdout),1) = 1;
vec($rin,fileno($stderr),1) = 1;
$ein = $rin | $win;
while (1) {
my $nfound = select($rout=$rin, $wout=$win, $eout=$ein, undef);
if ($nfound == -1) {
# ! Print error somewhere?
last;
}
if ($nfound == 0) {
# Exit but no error
last;
}
# Should be something to read
if (vec($rout,fileno($stdout),1)) {
my $res = sysread($stdout,$output,4096,length($output));
next if $res;
}
if (vec($rout,fileno($stderr),1)) {
my $res = sysread($stderr,$errput,4096,length($errput));
next if $res;
}
# We are at the end so there was nothing to read this time.
# Since we are not using a timeout that must mean that something
# else happened. We'll assume that this is the end.
last;
}
my @output = split (/[\r\n]+/,$output);
my @errors = split (/[\r\n]+/,$errput);
return (\@output,\@errors);
}
sub run_as_child {
my ($self, $timeout, $code, @args) = @_;
pipe my ($out_read, $out_write)
or carp "Error creating stdout pipe: $!";
pipe my ($err_read, $err_write)
or carp "Error creating stderr pipe: $!";
if (my $pid = fork) {
# In parent
close $out_write; close $err_write;
my $out;
my $err;
# Give the child till the timeout to finish up
my $read_it_and_reap = sub {
($out,$err) = $self->_read_from_child($out_read,$err_read);
waitpid($pid, 0);
return 1;
};
my $timed_out = !do_with_timeout($timeout, $read_it_and_reap);
Munin::Node::OS->reap_child_group($pid)
if $timed_out;
close $out_read; close $err_read;
return {
stdout => $out,
stderr => $err,
retval => $CHILD_ERROR,
timed_out => $timed_out,
};
}
elsif (defined $pid) {
# In child
close $out_read; close $err_read;
POSIX::setsid();
# use the pipes to replace STD{OUT,ERR}
open(STDOUT, '>&=', fileno($out_write));
open(STDERR, '>&=', fileno($err_write));
exit $code->(@args);
}
else {
# oops.
carp "Unable to fork: $!";
}
}
sub reap_child_group {
my ($class, $child_pid) = @_;
return unless $child_pid;
return unless $class->possible_to_signal_process($child_pid);
# Negative number signals the process group
kill -1, $child_pid; # SIGHUP
sleep 2;
kill -9, $child_pid; # SIGKILL
}
sub possible_to_signal_process {
my ($class, $pid) = @_;
return kill (0, $pid);
}
sub set_effective_user_id {
my ($class, $uid) = @_;
$class->_set_xid(\$EFFECTIVE_USER_ID, $uid);
}
sub set_real_user_id {
my ($class, $uid) = @_;
$class->_set_xid(\$REAL_USER_ID, $uid);
}
sub set_effective_group_id {
my ($class, $gid) = @_;
$class->_set_xid(\$EFFECTIVE_GROUP_ID, $gid);
}
sub set_real_group_id {
my ($class, $gid) = @_;
$class->_set_xid(\$REAL_GROUP_ID, $gid);
}
sub _set_xid {
my ($class, $x, $id) = @_;
# According to pervar manpage, assigning to $<, $> etc results in
# a system call. So we need to check $! for errors.
$! = undef;
$$x = $id;
croak $! if $!;
}
sub set_umask { umask(0002) or croak "Unable to set umask: $!\n"; }
sub mkdir_subdir {
my ($class, $path, $uid) = @_;
my $user = getpwuid($uid);
unless (-d "$path/$user") {
mkdir("$path/$user");
chown($uid, 0, "$path/$user");
}
}
1;
__END__
=head1 NAME
Munin::Node::OS - OS related utility methods for the Munin node.
=head1 SYNOPSIS
use Munin::Node::OS;
my $uid = Munin::Node::OS->get_uid('foo');
my $host = Munin::Node::OS->get_fq_hostname();
=head1 METHODS
=over
=item B<get_uid>
$uid = $class->get_uid($user)
Returns the user ID. $user might either be a user name or a user
ID. Returns undef if the user doesn't exist.
=item B<get_gid>
$gid = $class->get_gid($group)
Returns the group ID. $group might either be a group name or a group
ID. Returns undef if the group doesn't exist.
=item B<get_fq_hostname>
$host = $class->get_fq_hostname()
Returns the fully qualified host name of the machine.
=item B<check_perms_if_paranoid>
$bool = $class->check_perms_if_paranoid($target);
If paranoia is enabled, returns false unless $target is owned by root,
and has safe permissions. If $target is a file, also checks the
directory it inhabits.
=item B<run_as_child>
$result = run_as_child($timeout, $coderef, @arguments);
Creates a child process to run $code and waits for up to
$timeout seconds for it to complete. Returns a hashref
containing the following keys:
=over
=item C<stdout>, C<stderr>
Array references containing the output of these filehandles;
=item C<retval>
The result of wait();
=item C<timed_out>
True if the child had to be interrupted.
=back
System errors will cause it to carp.
=item B<reap_child_group>
$class->reap_child_group($pid);
Sends SIGHUP and SIGKILL to the process group identified by $pid.
Sleeps for 2 seconds between SIGHUP and SIGKILL.
=item B<possible_to_signal_process>
my $bool = $class->possible_to_signal_process($pid)
Check whether it's possible to send a signal to $pid (that means, to
be brief, that the process is owned by the same user, or we are the
super-user). This is a useful way to check that a child process is
alive (even if only as a zombie) and hasn't changed its UID.
=item B<set_effective_user_id>
eval {
$class->set_effective_user_id($uid);
};
if ($@) {
# Failed to set EUID
}
The name says it all ...
=item B<set_effective_group_id>
See documentation for set_effective_user_id()
=item B<set_real_user_id>
See documentation for set_effective_user_id()
=item B<set_real_group_id>
See documentation for set_effective_user_id()
=item B<set_umask>
Set umask so that files created by plugins are group writable
Only call right before exec-ing a plugin.
=back
=cut
# vim: ts=4 : sw=4 : et
|