2020-02-15 03:52:41 +01:00
|
|
|
# File: ProcessManager.pm
|
2010-03-24 07:47:40 +01:00
|
|
|
# Author: pragma_
|
2010-03-22 08:33:44 +01:00
|
|
|
#
|
2020-02-15 03:52:41 +01:00
|
|
|
# Purpose: Handles forking and execution of module/subroutine processes
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
package PBot::ProcessManager;
|
2020-02-08 20:04:13 +01:00
|
|
|
use parent 'PBot::Class';
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2020-02-08 20:04:13 +01:00
|
|
|
use warnings; use strict;
|
2019-07-11 03:40:53 +02:00
|
|
|
use feature 'unicode_strings';
|
|
|
|
|
2019-06-10 20:53:04 +02:00
|
|
|
use POSIX qw(WNOHANG);
|
2017-10-11 02:19:02 +02:00
|
|
|
use JSON;
|
2010-03-22 08:33:44 +01:00
|
|
|
|
|
|
|
# automatically reap children processes in background
|
2019-05-28 18:19:42 +02:00
|
|
|
$SIG{CHLD} = sub { while (waitpid(-1, WNOHANG) > 0) {} };
|
2010-03-22 08:33:44 +01:00
|
|
|
|
|
|
|
sub initialize {
|
|
|
|
my ($self, %conf) = @_;
|
2020-02-15 03:52:41 +01:00
|
|
|
$self->{pbot}->{commands}->register(sub { $self->ps_cmd(@_) }, 'ps', 0);
|
|
|
|
$self->{pbot}->{commands}->register(sub { $self->kill_cmd(@_) }, 'kill', 1);
|
2020-02-15 05:04:14 +01:00
|
|
|
$self->{pbot}->{capabilities}->add('admin', 'can-kill');
|
2020-02-15 03:52:41 +01:00
|
|
|
$self->{processes} = {};
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
sub ps_cmd {
|
|
|
|
my ($self, $from, $nick, $user, $host, $arguments, $stuff) = @_;
|
|
|
|
my @processes;
|
|
|
|
foreach my $pid (sort keys %{$self->{processes}}) {
|
|
|
|
push @processes, "$pid: $self->{processes}->{$pid}->{commands}->[0]";
|
2017-11-21 01:10:48 +01:00
|
|
|
}
|
2020-02-15 03:52:41 +01:00
|
|
|
if (@processes) {
|
2020-02-15 04:58:44 +01:00
|
|
|
return "Running processes: " . join '; ', @processes;
|
2020-02-15 03:52:41 +01:00
|
|
|
} else {
|
|
|
|
return "No running processes.";
|
2010-06-20 08:16:48 +02:00
|
|
|
}
|
2020-02-15 03:52:41 +01:00
|
|
|
}
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
sub kill_cmd {
|
|
|
|
my ($self, $from, $nick, $user, $host, $arguments, $stuff) = @_;
|
2020-02-15 04:58:44 +01:00
|
|
|
my $usage = "Usage: kill <pids...>";
|
|
|
|
my @pids;
|
|
|
|
while (1) {
|
|
|
|
my $pid = $self->{pbot}->{interpreter}->shift_arg($stuff->{arglist}) // last;
|
2020-02-15 05:04:14 +01:00
|
|
|
return "No such pid $pid." if not exists $self->{processes}->{$pid};
|
2020-02-15 04:58:44 +01:00
|
|
|
push @pids, $pid;
|
|
|
|
}
|
|
|
|
return $usage if not @pids;
|
|
|
|
kill 'INT', @pids;
|
|
|
|
return "Killed.";
|
2020-02-15 03:52:41 +01:00
|
|
|
}
|
2015-07-22 00:07:56 +02:00
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
sub add_process {
|
|
|
|
my ($self, $pid, $stuff) = @_;
|
|
|
|
$self->{processes}->{$pid} = $stuff;
|
|
|
|
}
|
2017-10-11 02:19:02 +02:00
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
sub remove_process {
|
|
|
|
my ($self, $pid) = @_;
|
|
|
|
delete $self->{processes}->{$pid};
|
|
|
|
}
|
2010-05-14 01:28:38 +02:00
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
sub execute_process {
|
2020-02-15 06:25:09 +01:00
|
|
|
my ($self, $stuff, $subref, $timeout) = @_;
|
|
|
|
$timeout //= 30;
|
2010-05-14 00:12:04 +02:00
|
|
|
|
2020-02-15 04:58:44 +01:00
|
|
|
if (not exists $stuff->{commands}) {
|
|
|
|
$stuff->{commands} = [ $stuff->{command} ];
|
|
|
|
}
|
|
|
|
|
2014-03-14 11:05:11 +01:00
|
|
|
pipe(my $reader, my $writer);
|
2020-02-15 06:54:38 +01:00
|
|
|
$stuff->{pid} = fork;
|
2014-03-14 11:05:11 +01:00
|
|
|
|
2020-02-15 06:54:38 +01:00
|
|
|
if (not defined $stuff->{pid}) {
|
2020-02-15 03:52:41 +01:00
|
|
|
$self->{pbot}->{logger}->log("Could not fork process: $!\n");
|
2014-03-14 11:05:11 +01:00
|
|
|
close $reader;
|
|
|
|
close $writer;
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{checkflood} = 1;
|
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, "/me groans loudly.\n");
|
2019-06-26 18:34:19 +02:00
|
|
|
return;
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
2020-02-15 06:54:38 +01:00
|
|
|
if ($stuff->{pid} == 0) {
|
2020-02-15 06:25:09 +01:00
|
|
|
# child
|
2014-03-14 11:05:11 +01:00
|
|
|
close $reader;
|
2019-06-26 18:34:19 +02:00
|
|
|
|
2011-01-22 09:35:31 +01:00
|
|
|
# don't quit the IRC client when the child dies
|
2010-05-27 11:19:11 +02:00
|
|
|
no warnings;
|
2011-01-22 09:35:31 +01:00
|
|
|
*PBot::IRC::Connection::DESTROY = sub { return; };
|
2010-05-27 11:19:11 +02:00
|
|
|
use warnings;
|
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
# execute the provided subroutine, results are stored in $stuff
|
2020-02-15 06:25:09 +01:00
|
|
|
eval {
|
2020-02-15 06:54:38 +01:00
|
|
|
local $SIG{ALRM} = sub { die "PBot::Process `$stuff->{commands}->[0]` timed-out" };
|
2020-02-15 06:25:09 +01:00
|
|
|
alarm $timeout;
|
|
|
|
$subref->($stuff);
|
|
|
|
die if $@;
|
|
|
|
};
|
|
|
|
alarm 0;
|
2019-07-06 08:00:53 +02:00
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
# check for errors
|
2019-07-06 08:00:53 +02:00
|
|
|
if ($@) {
|
2020-02-15 06:25:09 +01:00
|
|
|
$stuff->{result} = $@;
|
|
|
|
$stuff->{result} =~ s/ at PBot.*$//ms;
|
|
|
|
$self->{pbot}->{logger}->log("Error executing process: $stuff->{result}\n");
|
2019-07-06 08:00:53 +02:00
|
|
|
}
|
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
# print $stuff to pipe
|
2017-11-16 18:23:58 +01:00
|
|
|
my $json = encode_json $stuff;
|
2017-10-11 02:19:02 +02:00
|
|
|
print $writer "$json\n";
|
2020-02-15 03:52:41 +01:00
|
|
|
|
|
|
|
# end child
|
2014-03-14 11:05:11 +01:00
|
|
|
exit 0;
|
2020-02-15 03:52:41 +01:00
|
|
|
} else {
|
|
|
|
# parent
|
|
|
|
close $writer;
|
2020-02-15 06:54:38 +01:00
|
|
|
$self->add_process($stuff->{pid}, $stuff);
|
|
|
|
$self->{pbot}->{select_handler}->add_reader($reader, sub { $self->process_pipe_reader($stuff->{pid}, @_) });
|
2020-02-15 03:52:41 +01:00
|
|
|
# return empty string since reader will handle the output when child is finished
|
|
|
|
return "";
|
|
|
|
}
|
2014-03-14 11:05:11 +01:00
|
|
|
}
|
|
|
|
|
2020-02-15 03:52:41 +01:00
|
|
|
sub process_pipe_reader {
|
|
|
|
my ($self, $pid, $buf) = @_;
|
|
|
|
$self->remove_process($pid);
|
2017-11-21 01:10:48 +01:00
|
|
|
my $stuff = decode_json $buf or do {
|
|
|
|
$self->{pbot}->{logger}->log("Failed to decode bad json: [$buf]\n");
|
|
|
|
return;
|
|
|
|
};
|
2017-10-11 02:19:02 +02:00
|
|
|
|
|
|
|
if (not defined $stuff->{result} or not length $stuff->{result}) {
|
2020-02-15 03:52:41 +01:00
|
|
|
$self->{pbot}->{logger}->log("No result from process.\n");
|
2017-10-11 02:19:02 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stuff->{referenced}) {
|
|
|
|
return if $stuff->{result} =~ m/(?:no results)/i;
|
|
|
|
}
|
|
|
|
|
2017-11-28 04:17:28 +01:00
|
|
|
if (exists $stuff->{special} and $stuff->{special} eq 'code-factoid') {
|
2017-10-11 02:19:02 +02:00
|
|
|
$stuff->{result} =~ s/\s+$//g;
|
|
|
|
$self->{pbot}->{logger}->log("No text result from code-factoid.\n") and return if not length $stuff->{result};
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{original_keyword} = $stuff->{root_keyword};
|
|
|
|
$stuff->{result} = $self->{pbot}->{factoids}->handle_action($stuff, $stuff->{result});
|
2017-10-11 02:19:02 +02:00
|
|
|
}
|
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{checkflood} = 0;
|
|
|
|
|
|
|
|
if (defined $stuff->{nickoverride}) {
|
2017-11-26 05:00:55 +01:00
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, $stuff->{result});
|
2017-10-11 02:19:02 +02:00
|
|
|
} else {
|
2017-11-26 05:00:55 +01:00
|
|
|
# don't override nick if already set
|
2020-02-13 22:31:36 +01:00
|
|
|
if (exists $stuff->{special} and $stuff->{special} ne 'code-factoid' and $self->{pbot}->{factoids}->{factoids}->exists($stuff->{channel}, $stuff->{trigger}, 'add_nick') and $self->{pbot}->{factoids}->{factoids}->get_data($stuff->{channel}, $stuff->{trigger}, 'add_nick') != 0) {
|
2017-11-26 05:00:55 +01:00
|
|
|
$stuff->{nickoverride} = $stuff->{nick};
|
2018-01-23 22:58:03 +01:00
|
|
|
$stuff->{no_nickoverride} = 0;
|
|
|
|
$stuff->{force_nickoverride} = 1;
|
2017-10-11 02:19:02 +02:00
|
|
|
} else {
|
2019-06-26 18:34:19 +02:00
|
|
|
# extract nick-like thing from module result
|
2017-11-26 05:00:55 +01:00
|
|
|
if ($stuff->{result} =~ s/^(\S+): //) {
|
|
|
|
my $nick = $1;
|
|
|
|
if (lc $nick eq "usage") {
|
|
|
|
# put it back on result if it's a usage message
|
|
|
|
$stuff->{result} = "$nick: $stuff->{result}";
|
|
|
|
} else {
|
2017-11-28 04:17:28 +01:00
|
|
|
my $present = $self->{pbot}->{nicklist}->is_present($stuff->{channel}, $nick);
|
2017-11-26 05:00:55 +01:00
|
|
|
if ($present) {
|
|
|
|
# nick is present in channel
|
|
|
|
$stuff->{nickoverride} = $present;
|
|
|
|
} else {
|
|
|
|
# nick not present, put it back on result
|
|
|
|
$stuff->{result} = "$nick: $stuff->{result}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 02:19:02 +02:00
|
|
|
}
|
2017-11-26 05:00:55 +01:00
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, $stuff->{result});
|
2017-10-11 02:19:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
my $text = $self->{pbot}->{interpreter}->truncate_result($stuff->{channel}, $self->{pbot}->{registry}->get_value('irc', 'botnick'), 'undef', $stuff->{result}, $stuff->{result}, 0);
|
2020-01-04 05:37:58 +01:00
|
|
|
$self->{pbot}->{antiflood}->check_flood($stuff->{from}, $self->{pbot}->{registry}->get_value('irc', 'botnick'), $self->{pbot}->{registry}->get_value('irc', 'username'), 'pbot', $text, 0, 0, 0);
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|