/usr/share/tiarra/module/Client/Eval.pm is in tiarra 20100212-3.
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 | # -----------------------------------------------------------------------------
# $Id: Eval.pm 11365 2008-05-10 14:58:28Z topia $
# -----------------------------------------------------------------------------
package Client::Eval;
use strict;
use warnings;
use base qw(Module);
use Mask;
use Timer;
use Data::Dumper;
sub message_arrived {
my ($this,$msg,$sender) = @_;
# クライアントからのメッセージか?
if ($sender->isa('IrcIO::Client')) {
# 指定されたコマンドか?
my $cmd = Mask::match_deep([$this->config->command('all')], $msg->command);
my $hexcmd = Mask::match_deep([$this->config->hex_command('all')], $msg->command);
if ($cmd || $hexcmd) {
# メッセージ再構築
my ($method) = join(' ', @{$msg->params});
my ($ret, $err);
do {
# disable warning
local $SIG{__WARN__} = sub { };
# die handler
#local $SIG{__DIE__} = sub { $err = $_[0]; };
no strict;
# untaint
$method =~ /\A(.*)\z/s;
$err = '';
$ret = eval($1);
};
$err = $@;
my $message = $this->construct_irc_message(
Prefix => RunLoop->shared_loop->sysmsg_prefix(qw(priv system)),
Command => 'NOTICE',
Params => [RunLoop->shared_loop->current_nick,
''],
);
my $process = sub {
if (defined $this->config->max_line &&
@_ > $this->config->max_line) {
splice @_, $this->config->max_line;
}
map {
if ($hexcmd) {
s/([^\s,'[:print:]])/'\x'.unpack('H*', $1)/eg;
s/\$/\\\$/g;
}
$_;
} @_;
};
do {
my $dumper = sub {
my $val = shift;
local $SIG{__WARN__} = sub {};
Data::Dumper->new([$val])->Terse(1)->Purity(1)
->Seen({
($this->_runloop ne $val) ?
(current_runloop => $this->_runloop) :
(),
})->Dump."\n";
};
map {
my $new = $message->clone;
$new->param(1, $_);
$sender->send_message($new);
} (
$process->(split /\n/, 'method: '.$dumper->($method)),
$process->(split /\n/, 'result: '.$dumper->($ret)),
$process->(split /\n/, 'error: '.$err),
);
return undef;
};
}
}
return $msg;
}
# useful functions to call from eval
sub runloop { return RunLoop->shared; }
sub network { return runloop->network(shift); }
sub conf { return Configuration->shared; }
sub module_manager { return ModuleManager->shared_manager; }
sub module { return module_manager->get(shift); }
sub shutdown { return ::shutdown(); }
sub reload {
ReloadTrigger->_install_reload_timer;
return undef;
}
sub reload_mod {
my $name = shift;
$name .= '.pm';
$name =~ s|::|/|g;
reload_pm($name);
}
sub reload_pm {
my $file = shift;
delete $INC{$file};
require $file;
}
1;
=pod
info: クライアントから Perl 式を実行できるようにする。
default: off
# eval を実行するコマンド名。省略されるとコマンドを追加しません。
# この時コマンドはTiarraが握り潰すので、IRCプロトコル上で定義された
# コマンド名を設定すべきではありません。
command: eval
# hex eval を実行するコマンド名。省略されるとコマンドを追加しません。
# この時コマンドはTiarraが握り潰すので、IRCプロトコル上で定義された
# コマンド名を設定すべきではありません。
hex-command: hexeval
# 表示する最大行数を指定します。省略するとすべての行を表示します。
max-line: 30
=cut
|