/usr/share/perl5/Paranoid/Process.pm is in libparanoid-perl 2.04-2.
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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 | # Paranoid::Process -- Process management support for paranoid programs
#
# (c) 2005 - 2016, Arthur Corliss <corliss@digitalmages.com>
#
# $Id: lib/Paranoid/Process.pm, 2.04 2016/09/19 15:00:25 acorliss Exp $
#
# This software is licensed under the same terms as Perl, itself.
# Please see http://dev.perl.org/licenses/ for more information.
#
#####################################################################
#####################################################################
#
# Environment definitions
#
#####################################################################
package Paranoid::Process;
use 5.008;
use strict;
use warnings;
use vars qw($VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS);
use base qw(Exporter);
use Paranoid;
use Paranoid::Debug qw(:all);
use POSIX qw(getuid setuid setgid WNOHANG setsid);
use Carp;
($VERSION) = ( q$Revision: 2.04 $ =~ /(\d+(?:\.\d+)+)/sm );
@EXPORT = qw(switchUser daemonize);
@EXPORT_OK = (
@EXPORT, qw(MAXCHILDREN childrenCount installChldHandler
sigchld pfork ptranslateUser ptranslateGroup pcapture
installSIGH uninstallSIGH installSIGD uninstallSIGD
) );
%EXPORT_TAGS = (
all => [@EXPORT_OK],
pfork => [
qw(MAXCHILDREN childrenCount installChldHandler
sigchld pfork daemonize)
],
signal => [qw(installSIGH uninstallSIGH installSIGD uninstallSIGD)],
);
#####################################################################
#
# Module code follows
#
#####################################################################
{
my %signals = ( map { $_ => [] } keys %SIG );
my %original = %SIG;
sub _sigHandler {
# Purpose: Runs all code refs assigned to the signal
# Returns: Boolean
# Usage: _sigHandler($signal);
my ( $signal, @sargs ) = @_;
my $sref;
local $SIG{$signal} = 'IGNORE';
foreach $sref ( @{ $signals{$signal} } ) {
&$sref( $signal, @sargs );
}
return 1;
}
sub installSIGD {
# Purpose: Installs dispatcher for sig handlers that have code refs
# assigned
# Returns: Boolean
# Usage: $rv = installSIGD();
my $sig;
pdebug( 'entering', PDLEVEL1 );
pIn();
foreach $sig ( keys %signals ) {
$SIG{$sig} = \&_sigHandler if scalar @{ $signals{$sig} };
}
pOut();
pdebug( 'leaving w/rv: 1', PDLEVEL1 );
return 1;
}
sub uninstallSIGD {
# Purpose: Uninstalls the dispatcher
# Returns: Boolean
# Usage: $rv = uninstallSIGD();
pdebug( 'entering', PDLEVEL1 );
pIn();
foreach ( keys %original ) {
$SIG{$_} = $original{$_}
if defined $SIG{$_}
and $SIG{$_} eq \&_sigHandler;
}
pOut();
pdebug( 'leaving w/rv: 1', PDLEVEL1 );
return 1;
}
sub installSIGH ($\&) {
# Purpose: Assigns a code ref to a signal array
# Returns: Boolean
# Usage: $rv = installSIGH($signal, $sref);
my ( $signal, $sref ) = @_;
my $rv = 1;
pdebug( 'entering w/%s, %s', PDLEVEL1, $signal, $sref );
pIn();
if ( exists $signals{$signal} ) {
if ( grep { $_ eq $sref } @{ $signals{$signal} } ) {
pdebug( '%s handler already installed', PDLEVEL2, $signal );
} else {
push @{ $signals{$signal} }, $sref;
pdebug( '%s handler installed', PDLEVEL2, $signal );
}
} else {
pdebug( 'unknown signal: %s', PDLEVEL1, $signal );
$rv = 0;
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
sub uninstallSIGH ($\&) {
# Purpose: Removes a code ref for a signal array
# Returns: Boolean
# Usage: $rv = uninstallSIGH($signal, $sref);
my ( $signal, $sref ) = @_;
my $rv = 1;
my ( $sigh, $i );
pdebug( 'entering w/%s, %s', PDLEVEL1, $signal, $sref );
pIn();
if ( exists $signals{$signal} ) {
if ( grep { $_ eq $sref } @{ $signals{$signal} } ) {
$i = 0;
foreach $sigh ( @{ $signals{$signal} } ) {
if ( $sigh eq $sref ) {
splice @{ $signals{$signal} }, $i, 1;
last;
}
$i++;
}
pdebug( '%s handler removed', PDLEVEL2, $signal );
} else {
pdebug( 'no %s handler to remove', PDLEVEL2, $signal );
}
} else {
pdebug( 'unknown signal: %s', PDLEVEL1, $signal );
$rv = 0;
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
}
{
my $maxChildren = 0;
my $numChildren = 0;
my $chldRef = undef;
sub MAXCHILDREN : lvalue {
# Purpose: Gets/sets $maxChildren
# Returns: $maxChildren
# Usage: $max = MAXCHILDREN;
# Usage: MAXCHILDREN = 20;
$maxChildren;
}
sub childrenCount { return $numChildren }
sub _incrChildren { $numChildren++ }
sub _decrChildren { $numChildren-- }
sub installChldHandler (\&) {
# Purpose: Installs a code reference to execute whenever a child
# exits
# Returns: True (1)
# Usage: installChldHandler(&foo);
$chldRef = shift;
return 1;
}
sub _chldHandler { return $chldRef }
}
sub sigchld {
# Purpose: Default signal handler for SIGCHLD
# Returns: True (1)
# Usage: $SIG{CHLD} = \&sigchld;
my ($pid);
my $sref = _chldHandler();
# Remove the signal handler so we're not preempted
local $SIG{CHLD} = 'IGNORE';
# Process children exit values
do {
$pid = waitpid -1, WNOHANG;
if ( $pid > 0 ) {
_decrChildren();
pdebug( 'child %d reaped w/rv: %s', PDLEVEL1, $pid, $? );
# Call the user's sig handler if defined
&$sref( $pid, $? ) if defined $sref;
}
} until $pid < 1;
return 1;
}
sub daemonize {
# Purpose: Daemonizes process and disassociates with the terminal
# Returns: True unless there are errors.
# Usage: daemonize();
my ( $rv, $pid );
pdebug( 'entering', PDLEVEL1 );
pIn();
$pid = fork;
# Exit if we're the parent process
exit 0 if $pid;
if ( defined $pid ) {
# Fork was successful, close parent file descriptors
$rv = open( STDIN, '/dev/null' ) and open( STDOUT, '>/dev/null' );
# Create a new process group
unless ($rv) {
setsid();
$rv = open STDERR, '>&STDOUT';
die "Can't dup stdout: $!" unless $rv;
chdir '/';
}
} else {
Paranoid::ERROR =
pdebug( 'Failed to daemonize process: %s', PDLEVEL1, $! );
$rv = 0;
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
sub pfork {
# Purpose: Replacement for Perl's fork function. Blocks until a child
# exists if MAXCHILDREN is exceeded.
# Returns: Return value of children handler if installed, otherwise
# undef.
# Usage: $rv = pfork();
my $max = MAXCHILDREN();
my $rv;
pdebug( 'entering', PDLEVEL1 );
pIn();
# Check children limits and wait, if necessary
if ($max) {
while ( $max <= childrenCount() ) { sleep 1 }
}
# Fork and return
$rv = fork;
_incrChildren() if defined $rv;
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
sub ptranslateUser {
# Purpose: Translates a string account name into the UID
# Returns: UID if found, undef if not
# Usage: $uid = ptranslateUser($user);
my $user = shift;
my ( $uuid, @pwentry, $rv );
pdebug( 'entering w/(%s)', PDLEVEL1, $user );
pIn();
if ( defined $user and length $user ) {
setpwent;
do {
@pwentry = getpwent;
$uuid = $pwentry[2] if @pwentry && $user eq $pwentry[0];
} until defined $uuid || !@pwentry;
endpwent;
$rv = $uuid if defined $uuid;
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
sub ptranslateGroup {
# Purpose: Translates a string group name into the UID
# Returns: GID if found, undef if not
# Usage: $gid = ptranslateGroup($group);
my $group = shift;
my ( $ugid, @pwentry, $rv );
pdebug( 'entering w/(%s)', PDLEVEL1, $group );
pIn();
if ( defined $group and length $group ) {
setgrent;
do {
@pwentry = getgrent;
$ugid = $pwentry[2] if @pwentry && $group eq $pwentry[0];
} until defined $ugid || !@pwentry;
endgrent;
$rv = $ugid if defined $ugid;
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
sub switchUser {
# Purpose: Switches to the user/group specified
# Returns: True (1) if successful, False (0) if not
# Usage: $rv = swithUser($user);
# Usage: $rv = swithUser($user, $group);
my $user = shift;
my $group = shift;
my $rv = 1;
my ( @pwentry, $duid, $dgid );
# Validate arguments
croak 'Mandatory argument of either user or group must be passed'
unless defined $user || defined $group;
pdebug( 'entering w/(%s)(%s)', PDLEVEL1, $user, $group );
pIn();
# First switch the group
if ( defined $group ) {
# Look up named group
unless ( $group =~ /^\d+$/s ) {
$dgid = ptranslateGroup($group);
unless ( defined $dgid ) {
Paranoid::ERROR = pdebug( 'couldn\'t identify group (%s)',
PDLEVEL1, $group );
$rv = 0;
}
}
# Switch to group
if ($rv) {
pdebug( 'switching to GID %s', PDLEVEL2, $dgid );
unless ( setgid($dgid) ) {
Paranoid::ERROR =
pdebug( 'couldn\'t switch to group (%s): %s',
PDLEVEL1, $group, $! );
$rv = 0;
}
}
}
# Second, switch the user
if ( $rv && defined $user ) {
# Look up named user
unless ( $user =~ /^\d+$/s ) {
$duid = ptranslateUser($user);
unless ( defined $duid ) {
Paranoid::ERROR =
pdebug( 'couldn\'t identify user (%s)', PDLEVEL1, $user );
$rv = 0;
}
}
# Switch to user
if ($rv) {
pdebug( 'switching to UID %s', PDLEVEL2, $duid );
unless ( setuid($duid) ) {
Paranoid::ERROR = pdebug( 'couldn\'t switch to user (%s): %s',
PDLEVEL1, $user, $! );
$rv = 0;
}
}
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
sub pcapture ($\$\$) {
# Purpose: Captures the output and exit code of the specified shell
# command. Output incorporates STDERR via redirection.
# Returns: True (1) if command exits cleanly, False (0) otherwise
# Usage: $rv = pcapture($cmd, $crv, $out);
my $cmd = shift;
my $cref = shift;
my $oref = shift;
my $rv = -1;
my ( $sigchld, $cored, $signal );
pdebug( 'entering w/(%s)(%s)(%s)', PDLEVEL1, $cmd, $cref, $oref );
pIn();
if ( defined $cmd ) {
# Massage the command string
$cmd = "( $cmd ) 2>&1";
# Backup SIGCHLD handler and set it to something safe
if ( defined $SIG{CHLD} ) {
$sigchld = $SIG{CHLD};
$SIG{CHLD} = sub {1};
}
# Execute and snarf the output
pdebug( 'executing command', PDLEVEL2 );
$$oref = `$cmd`;
$$cref = $?;
$cored = $$cref & 128;
$signal = $$cref & 127;
pdebug( 'command exited with raw rv: %s', PDLEVEL2, $$cref );
# Restore SIGCHLD handler
$SIG{CHLD} = $sigchld if defined $SIG{CHLD};
# Check the return value
if ( $$cref == -1 or $$cref == 32512 ) {
# Command failed to execute
Paranoid::ERROR =
pdebug( 'command failed to execute: %s', PDLEVEL1, $! );
$rv = -1;
} elsif ($signal) {
# Exited with signal (and core?)
Paranoid::ERROR =
pdebug( 'command died with signal: %s', PDLEVEL1, $signal );
pdebug( "command exited with core dump", PDLEVEL1 ) if $cored;
$rv = -1;
} else {
# Command exited normally
$$cref >>= 8;
$rv = $$cref == 0 ? 1 : 0;
pdebug( 'command exited with rv: %s', PDLEVEL1, $$cref );
}
pOut();
pdebug( 'leaving w/rv: %s', PDLEVEL1, $rv );
return $rv;
}
}
1;
__END__
=head1 NAME
Paranoid::Process - Process Management Functions
=head1 VERSION
$Id: lib/Paranoid/Process.pm, 2.04 2016/09/19 15:00:25 acorliss Exp $
=head1 SYNOPSIS
use Paranoid::Process qw(:all);
$rv = daemonize();
MAXCHILDREN = 100;
$SIG{CHLD} = \&sigchld;
$count = childrenCount();
installChldHandler(&cleanup);
$rv = pfork();
$uid = ptranslateUser("foo");
$gid = ptranslateGroup("foo");
$rv = switchUser($user, $group);
$rv = pcapture($cmd, $crv, $out);
installSIGH('INT', &sigint1):
installSIGH('INT', &sigint2):
installSIGH('INT', &sigint3):
uninstallSIGH('INT', &sigint2);
installSIGD();
uninstallSIGD();
=head1 DESCRIPTION
This module provides a few functions meant to make life easier when managing
processes. The following export targets are provided:
all All functions within this module
pfork All child management functions
signal All signal dispatcher functions
Only the functions B<switchUser> and B<daemonize> are currently exported by
default.
=head1 SUBROUTINES/METHODS
=head2 MAXCHILDREN
Setting this lvalue subroutine sets a limit to how many children will be
forked at a time by B<pfork>. The default is zero, which allows unlimited
children. Once the limit is met pfork becomes a blocking call until a child
exits so the new one can be spawned.
=head2 childrenCount
$count = childrenCount();
This function returns the current number of children spawned by B<pfork>.
=head2 installChldHandler
installChldHandler(&cleanup);
This function takes a reference to a subroutine. If used the subroutine will
be called every time a child exits. That subroutine will be called with the
child's PID and exit value as arguments.
=head2 sigchld
$SIG{CHLD} = \&sigchld;
# Or, if using the signal dispatcher
installSIGH('CHLD', &sigchld);
installSIGD();
This function decrements the child counter necessary for pfork's operation, as
well as calling the user's signal handler with each child's PID and exit
value.
=head2 daemonize
$rv = daemonize();
This function forks a child who reopens all STD* filehandles on /dev/null and
starts a new process group. The parent exits cleanly. If the fork fails for
any reason it returns a false value. The child will also change its directory
to B</>.
=head2 pfork
$rv = pfork();
This function should be used in lieu of Perl's fork if you want to take
advantage of a blocking fork call that respects the MAXCHILDREN limit. Use of
this function, however, also assumes the use of B<sigchld> as the signal
handler for SIGCHLD.
=head2 ptranslateUser
$uid = ptranslateUser("foo");
This function takes a username and returns the corresponding UID as returned
by B<getpwent>. If no match is found it returns undef.
=head2 ptranslateGroup
$gid = ptranslateGroup("foo");
This function takes a group name and returns the corresponding GID as returned
by B<getgrent>. If no match is found it returns undef.
=head2 switchUser
$rv = switchUser($user);
$rv = switchUser($user, $group);
This function can be fed one or two arguments, both either named user or
group, or UID or GID. Both user and group arguments are optional as long as
one of them is defined.
=head2 pcapture
$rv = pcapture($cmd, $crv, $out);
This function executes the passed shell command and returns one of the following
three values:
RV Description
=======================================================
-1 Command failed to execute or died with signal
0 Command executed but exited with a non-0 RV
1 Command executed and exited with a 0 RV
The actual return value is populated in the passed scalar, while all
command output (including STDERR) is stored in the next scalar. Any errors
executing the command will have the error string stored in B<Paranoid::ERROR>.
If the command exited cleanly it will automatically be bit shifted eight
bits.
B<NOTE:> Unlike many other functions in this suite it is up to you to detaint
the command passed to this function yourself. There's simply no way for me to
know ahead of time what kind of convoluted arguments you might be handing this
call before system is called. Failing to detaint that argument will cause
your script to exit under taint mode.
=head2 installSIGH
installSIGH($signal, &subroutine);
This installs another subroutine in the queue for the specified signal.
Subroutines are called in the order that they're added to the queue. Adding
a specific subroutine more than once is filtered out so each subroutine in the
queue is unique.
=head2 uninstallSIGH
uninstallSIGH($signal, &subroutine);
Removes a subroutine from the specified queue.
=head2 installSIGD
installSIGD();
Inserts the dispatcher for each signal with subroutines in the queue.
=head2 uninstallSIGD
uninstallSIGD();
Removes the dispatcher for each signal that's using the dispatcher. The
signal handler installed is what ever was set when this module's code was
loaded and initialized.
=head1 DEPENDENCIES
=over
=item o
L<Carp>
=item o
L<Paranoid>
=item o
L<Paranoid::Debug>
=item o
L<POSIX>
=back
=head1 EXAMPLES
=head2 pfork
This following example caps the number of children processes to three at a
time:
$SIG{CHLD} = \&sigchld;
MAXCHILDREN = 3;
for (1 .. 5) {
# Only the children execute the following block
unless ($pid = pfork()) {
# ....
exit 0;
}
}
You can also install a child-exit routine to be called by sigchld.
For instance, to track the children's history in the parent:
sub recordChild ($$) {
my ($cpid, $cexit) = @_;
push(@chistory, [$cpid, $cexit]);
}
installChldHandler(&recordChild);
for (1 .. 5) {
unless ($pid = pfork()) {
# ....
exit $rv;
}
}
# Prints the child process history
foreach (@chistory) { print "PID: $$_[0] EXIT: $$_[1]\n" };
=head1 BUGS AND LIMITATIONS
On Solaris B<pcapture> doesn't return a -1 for non-existant commands, but a 0.
On Linux this appears to work as intended.
=head1 AUTHOR
Arthur Corliss (corliss@digitalmages.com)
=head1 LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself.
Please see http://dev.perl.org/licenses/ for more information.
(c) 2005 - 2016, Arthur Corliss (corliss@digitalmages.com)
|