/usr/share/perl5/Net/IRR.pm is in libnet-irr-perl 0.08-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 | package Net::IRR;
use strict;
use warnings;
use Carp;
use IO::Socket::INET;
use vars qw/ @ISA %EXPORT_TAGS @EXPORT_OK $VERSION /;
$VERSION = '0.08';
# used for route searches
use constant EXACT_MATCH => 'o';
use constant ONE_LEVEL => 'l';
use constant LESS_SPECIFIC => 'L';
use constant MORE_SPECIFIC => 'M';
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw( EXACT_MATCH ONE_LEVEL LESS_SPECIFIC MORE_SPECIFIC );
%EXPORT_TAGS = (
'all' => \@EXPORT_OK,
'route' => \@EXPORT_OK,
);
# constructor
sub connect {
my ($class, %args) = @_;
my $self = bless {}, ref($class) || $class;
$self->{host} = $args{host} || '127.0.0.1';
$self->{port} = $args{port} || 43;
$self->{tcp} = IO::Socket::INET->new(
PeerAddr => $self->{host},
PeerPort => $self->{port},
Proto => 'tcp'
);
unless ($self->{tcp}) {
$self->{errstr} = "cannot create socket: $@";
return;
}
return undef if $self->error();
$self->_multi_mode();
$self->_identify();
return $self;
}
sub get_routes_by_origin {
my ($self, $as) = @_;
croak 'usage: $whois->get_routes_by_origin( $as_number )'
unless @_ == 2;
$as = 'as'.$as unless $as =~ /^as/i;
$self->{tcp}->send("!g${as}\n");
if (my $data = $self->_response()) {
return wantarray ? split(" ", $data) : $data;
}
return ();
}
# RIPE-181 Only
sub get_routes_by_community {
my ($self, $community) = @_;
croak 'usage: $whois->get_routes_by_community( $community )'
unless @_ == 2;
$self->{tcp}->send("!h${community}\n");
if (my $data = $self->_response()) {
return wantarray ? split(" ", $data) : $data;
}
return ();
}
sub get_ipv6_routes_by_origin {
my ($self, $as) = @_;
croak 'usage: $whois->get_ipv6_routes_by_origin( $as_number )'
unless @_ == 2;
$as = 'as'.$as unless $as =~ /^as/i;
$self->{tcp}->send("!6${as}\n");
if (my $data = $self->_response()) {
return wantarray ? split(" ", $data) : $data;
}
return ();
}
sub get_sync_info {
my ($self, @dbs) = @_;
my $dbs = (@dbs) ? join(",",@dbs) : '-*';
$self->{tcp}->send("!j${dbs}\n");
return $self->_response();
}
sub get_as_set {
my ($self, $as_set, $expand) = @_;
croak 'usage: $whois->get_as_set( $as_set )'
unless @_ >= 2 && @_ <= 3;
$expand = ($expand) ? ',1' : '';
$self->{tcp}->send("!i${as_set}${expand}\n");
if (my $data = $self->_response()) {
return wantarray ? split(" ", $data) : $data;
}
return ();
}
sub get_route_set { my ($self, $route_set, $expand) = @_;
croak 'usage: $whois->get_route_set( $route_set )'
unless @_ >= 2 && @_ <= 3;
$expand = ($expand) ? ',1' : '';
$self->{tcp}->send("!i${route_set}${expand}\n");
if (my $data = $self->_response()) {
return wantarray ? split(" ", $data) : $data;
}
return ();
}
sub match {
my ($self, $type, $key) = @_;
croak 'usage: $whois->match( $object_type, $key )'
unless @_ == 3;
$self->{tcp}->send("!m${type},${key}\n");
return $self->_response();
}
*disconnect = \&quit;
sub quit {
my $self = shift;
$self->{tcp}->send("!q\n");
}
sub _identify {
my ($self) = @_;
$self->{tcp}->send("!nNet::IRR\n");
return $self->_response();
}
sub _multi_mode {
my ($self) = @_;
$self->{tcp}->send("!!\n");
return 1;
}
sub get_irrd_version {
my ($self) = @_;
$self->{tcp}->send("!v\n");
return $self->_response();
}
sub route_search {
my ($self, $route, $specific) = @_;
croak 'usage: $whois->route_search( $route )'
unless @_ >= 2 && @_ <= 3;
$specific = ($specific) ? ",$specific" : '';
$self->{tcp}->send("!r${route}${specific}\n");
my $response = $self->_response();
chomp($response) if $response;
$response =~ s/\s*$// if $response;
return $response;
}
sub sources {
my ($self, @sources) = @_;
my $source = (@sources) ? join(",", @sources) : '-lc';
$self->{tcp}->send("!s${source}\n");
my $response = $self->_response();
chomp($response) if $response;
return wantarray ? split(',', $response) : $response;
}
sub update {
my ($self, $db, $action, $object) = @_;
croak 'usage: $whois->update( $db, "ADD|DEL", $object )'
unless @_ == 4;
croak 'second argument to $whois->update() must be either ADD or DEL'
unless $action eq 'ADD' || $action eq 'DEL';
$self->{tcp}->send( sprintf("!us%s\n%s\n\n%s\n\n!ue\n", $db, $action, $object) );
return $self->_response();
}
sub _response {
my $self = shift;
my $t = $self->{tcp};
my $header = $t->getline();
my $error_prefix = 'Net::IRR read error';
if (not defined $header) {
$self->{errstr} = sprintf("%s: no data read from %s:%d\n", $error_prefix, $self->{host}, $self->{port});
return ();
}
return () if ($header =~ /^[CDEF].*$/);
my($data_length) = $header =~ /^A(.*)$/;
my $data = '';
while($data_length != length($data)) {
$data .= $t->getline();
}
carp sprintf("%s: only received %d out of %d bytes from %s:%d\n", $error_prefix, length($data), $data_length, $self->{host}, $self->{port})
if $data_length != length($data);
my $footer = $t->getline();
return $data;
}
sub error {
my $self = shift;
return $self->{errstr};
}
1;
__END__
=pod
=head1 NAME
Net::IRR - Perl interface to the Internet Route Registry Daemon
=head1 SYNOPSIS
use Net::IRR;
my $host = 'whois.radb.net';
my $i = Net::IRR->connect( host => $host )
or die "can't connect to $host\n";
my $version = $i->get_irrd_version();
print "IRRd version: $version\n" unless $i->error();
print "routes by origin AS5650\n";
my @routes = $i->get_routes_by_origin("AS5650");
print "found " . scalar(@routes) . " routes\n";
print "AS-SET for AS5650\n";
if (my @ases = $i->get_as_set("AS-ELI", 1)) {
print "found " . scalar(@ases) . " AS's\n";
print "@ases\n";
}
else {
print "none found\n";
}
my $aut_num = $i->match("aut-num","as5650")
or warn("can't find object: " . $i->error . "\n");
print $i->route_search("208.186.0.0/15", Net::IRR::EXACT_MATCH)
. " originates 208.186.0.0/15\n";
print $i->get_sync_info(), "\n";
$i->disconnect();
=head1 DESCRIPTION
This module provides an object oriented perl interface to the Internet Route Registry. The interface uses the RIPE/RPSL Tool Query Language as defined in Appendix B of the IRRd User Guide. The guide can be found at http://www.irrd.net/, however an understanding of the query language is not required to use this module.
Net::IRR supports IRRd's multiple-command mode. Multiple-command mode is good for intensive queries since only one TCP connection needs to be made for multiple queries. The interface also allows for additional queries that aren't supported by standard UNIX I<whois> utitilies.
Hopefully this module will stimulate development of new Route Registry tools written in Perl. An example of Route Registry tools can be found by googling for RAToolset which is now known as the IRRToolset. The RAToolset was originally developed by ISI, http://www.isi.edu/, and is now maintained by RIPE, http://www.ripe.net/.
=head1 METHODS
=over 4
=item Net::IRR->connect( host => $hostname, port => $port_number )
This class method is used to connect to a route registry server. Net::IRR->connect() is also the constructor for the Net::IRR class. The constructor returns a Net::IRR object upon connection to the IRR server or undef upon failure.
=item $whois->disconnect()
This method closes the connection to the route registry server.
=item $whois->quit()
Same as $whois->disconnect().
=item $whois->get_routes_by_origin('AS5650')
Get routes with a specified origin AS. This method takes an autonomous system number and returns the set of routes it originates. Upon success this method returns a list of routes in list context or a string of space separated routes. undef is returned upon failure.
=item $whois->get_ipv6_routes_by_origin('AS5650')
Same as $whois->get_routes_by_origin(), but returns IPv6 instead of IPv4 routes.
=item $whois->get_routes_by_community($community_name)
This method is for RIPE-181 only. It is not supported by RPSL. This method takes a community object name and returns the set of routes it originates. Upon success this method returns a list of routes in list context or a string of space separated routes. undef is returned upon failure.
=item $whois->get_sync_info()
This method provides database synchronization information. This makes it possible to view the mirror status of a database. This method optionally takes the name of a database such as RADB. If no argument is given the method will return information about all databases originating from and mirrored by the registry server. If the optional argument is given the database specified will be checked and it's status returned. This method returns undef if no database exists or if access is denied.
=item $whois->get_as_set("AS-ELI", 1)
This method takes an AS-SET object name and returns the ASNs registered for the AS-SET object. The method takes an optional second argument which enables AS-SET key expansion since an AS-SET can contain both ASNs and AS-SET keys. undef is returned upon failure.
=item $whois->get_route_set("ROUTES-ELI", 1)
This method takes an ROUTE-SET object name and returns the ROUTEs registered for the ROUTE-SET object. The method takes an optional second argument which enables ROUTE-SET key expansion since a ROUTE-SET can contain both ROUTEs and ROUTE-SET keys. undef is returned upon failure.
=item $whois->match('aut-num', 'AS5650'); - get RPSL objects registered in the database
The example above will retrieve the aut-num object with the key AS5650. This method will return the first RPSL object matching the object type and name specified as parameters to $whois->match(). undef is returned upon failure.
=item $whois->get_irrd_version()
This methods takes no arguments and returns the version of the IRRd server that was specified as the hostname to the connect() method.
=item $whois->route_search("208.186.0.0/15", EXACT_MATCH)
The method is used to search for route objects. The method takes two arguments, a route and an optional flag. The flag can be one of four values: EXACT_MATCH, LEVEL_ONE, LESS_SPECIFIC, MORE_SPECIFIC. These constants can be imported into your namespace by using the :all or :route export tag when importing the Net::IRR module.
use Net::IRR qw( :route );
print "EXACT_MATCH = " . EXACT_MATCH . "\n";
=item $whois->sources()
This method is used to both get and set the databases used for Internet Route Registry queries. The $whois->sources() method accepts a list of databases in the order they should be searched. If no arguments are given the method will return a list of all the databases mirrored by the route registry you are connected to.
=item $whois->update($database, 'ADD', $rpsl_rr_object)
This method is used to add or delete a database object. This method takes three arguments. The first argument is the database to update. The second argument is the action which can be either "ADD" or "DEL". The third and final required argument is a route object in RPSL format.
=item $whois->error()
Most Net::IRR methods set an error message when errors occur. These errors can only be accessed by using the error() method.
=back
=head1 AUTHOR
Todd Caine <todd.caine@gmail.com>
=head1 SEE ALSO
Main IRRd Site
http://www.irrd.net/
RIPE/RPSL Tool Query Language
http://www.irrd.net/irrd-user.pdf, Appendix B
=head1 COPYRIGHT
Copyright 2002-2010 by Todd Caine. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
|