/usr/share/ekg2/scripts/dns.pl is in ekg2-scripting-perl 1:0.4~pre+20120506.1-14build1.
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 | # /DNS <nick>|<host>|<ip> ...
use Ekg2;
use Ekg2::Irc;
use strict;
use Socket;
use POSIX;
our $VERSION = "2.1";
our %EKG2 = (
authors => 'Timo Sirainen',
name => 'dns',
description => '/DNS <nick>|<host>|<ip> ...',
license => 'Public Domain',
changed => 'Sun Mar 10 23:23 EET 2002'
);
# rewriten to ekg2 perl script by darkjames @ 2005-08-29
my (%resolve_hosts, %resolve_nicks, %resolve_print); # resolve queues
my $userhosts; # number of USERHOSTs currently waiting for reply
my $lookup_waiting; # 1 if we're waiting a reply for host lookup
# for the current host lookup
my ($print_server, $print_host, $print_name, @print_ips);
my ($input_skip_next, $input_query);
my $pipe_tag;
sub cmd_dns {
my ($name, $nicks) = @_;
return if !$nicks;
my ($server) = Ekg2::session_current;
my ($ircserver) = Ekg2::Irc::session2server($server);
# get list of nicks/hosts we want to know
my $tag = !$ircserver ? undef : $ircserver->{server};
my $ask_nicks = "";
my $print_error = 0;
foreach my $nick (split(" ", $nicks)) {
$nick = lc($nick);
if ($nick =~ /[\.:]/) {
# it's an IP or hostname
$resolve_hosts{$nick} = $tag;
} else {
# it's nick
if (!$print_error && (!$server || !$server->{connected})) {
$print_error = 1;
Ekg2::echo("Not connected to server");
} else {
$resolve_nicks{$nick} = 1;
$ask_nicks .= "$nick ";
}
}
}
if ($ask_nicks ne "") {
$_ = $server->{uid};
if (/irc:/) {
# send the USERHOST query
$userhosts++;
$ircserver->raw("USERHOST :$nicks");
}
if (/gg:/) {
# todo, inaczej
my ($ip) = $server->userlist()->find($nicks)->{ip};
Ekg2::print(1, "%> %B$nicks%n: %W$ip");
}
}
# ask the IPs/hostnames immediately
host_lookup() if (!$lookup_waiting);
}
sub sig_failure {
Irssi::print("Error getting hostname for nick");
%resolve_nicks = () if (--$userhosts == 0);
}
sub sig_userhost {
my ($server_, $data_) = @_;
my ($server, $data) = ($$server_, $$data_);
$data =~ s/^[^ ]* :?//;
my @hosts = split(/ +/, $data);
# move resolve_nicks -> resolve_hosts
foreach my $host (@hosts) {
if ($host =~ /^([^=\*]*)\*?=.(.*)@(.*)/) {
my $nick = lc($1);
my $user = $2;
$host = lc($3);
$resolve_hosts{$host} = $resolve_nicks{$nick};
delete $resolve_nicks{$nick};
$resolve_print{$host} = "%n[%B$nick!$user"."@"."$host%n]";
}
}
if (--$userhosts == 0 && %resolve_nicks) {
# unknown nicks - they didn't contain . or : so it can't be
# IP or hostname.
Ekg2::echo("Unknown nicks: ".join(' ', keys %resolve_nicks));
%resolve_nicks = ();
}
host_lookup() if (!$lookup_waiting);
return -1;
}
sub host_lookup {
return if (!%resolve_hosts);
my ($host) = keys %resolve_hosts;
$print_server = $resolve_hosts{$host};
$print_host = undef;
$print_name = $resolve_print{$host};
@print_ips = ();
delete $resolve_hosts{$host};
delete $resolve_print{$host};
$input_query = $host;
$input_skip_next = 0;
our ($rh, $wh);
pipe( $rh, $wh);
# non-blocking host lookups with fork()ing
my $pid = fork();
if (!defined($pid)) {
%resolve_hosts = ();
%resolve_print = ();
Irssi::print("Can't fork() - aborting");
close($rh); close($wh);
return;
}
$lookup_waiting++;
if ($pid > 0) {
# parent, wait for reply
close($wh);
# Irssi::pidwait_add($pid);
$pipe_tag = Ekg2::watch_add(fileno($rh), WATCH_READ, 'pipe_input', $rh);
return;
}
close($rh);
my $text;
eval {
# child, do the lookup
my $name = "";
if ($host =~ /^[0-9\.]*$/) {
# ip -> host
$name = gethostbyaddr(inet_aton($host), AF_INET);
} else {
# host -> ip
my @addrs = gethostbyname($host);
if (@addrs) {
@addrs = map { inet_ntoa($_) } @addrs[4 .. $#addrs];
$name = join (" ", @addrs);
}
}
$print_name = $input_query if !$print_name;
if (!$name) {
$text = "%! %RNo information for %B$print_name";
} else {
$text = "%> %B$print_name%n: %W$name";
}
};
$text = $! if (!$text);
eval {
# write the reply
print($wh $text);
close($wh);
};
POSIX::_exit(1);
}
sub pipe_input {
my ($type, $rhfd, $watch, $rh) = @_;
return if ($type);
my $text = <$rh>;
close($rh);
undef $pipe_tag;
my ($server);
# my $server = Irssi::server_find_tag($print_server);
if ($server) {
$server->print('', $text);
} else {
Ekg2::print(1, $text);
}
$lookup_waiting--;
host_lookup();
return -666;
}
Ekg2::command_bind_ext('dns', '!u', '', 'cmd_dns');
Ekg2::handler_bind('irc-protocol-numeric 302', 'sig_userhost');
## Irssi::signal_add( {
## 'redir dns failure' => \&sig_failure,
## 'redir dns host' => \&sig_userhost } );
return 1;
|