D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
lib64
/
perl5
/
vendor_perl
/
Net
/
DNS
/
Filename :
RR.pm
back
Copy
package Net::DNS::RR; # # $Id: RR.pm 1094 2012-12-27 21:35:09Z willem $ # use vars qw($VERSION); $VERSION = (qw$LastChangedRevision: 1094 $)[1]; =head1 NAME Net::DNS::RR - DNS Resource Record base class =head1 SYNOPSIS use Net::DNS; $rr = new Net::DNS::RR('example.com IN A 192.0.2.99'); $rr = new Net::DNS::RR( name => 'example.com', type => 'A', address => '192.0.2.99' ); =head1 DESCRIPTION Net::DNS::RR is the base class for DNS Resource Record (RR) objects. See also the manual pages for each specific RR type. =cut use constant COMPATIBLE => 1; ## enable architecture transition code use strict; use integer; use Carp; use Net::DNS::Parameters; use Net::DNS::DomainName; use Net::DNS::Question; =head1 METHODS B<WARNING!!!> Do not assume the RR objects you receive from a query are of a particular type -- always check the object type before calling any of its methods. If you call an unknown method, you will get an error message and execution will be terminated. =cut sub new { my ($class) = @_; return &_new_from_rdata if COMPATIBLE && ref $_[1]; # resolve new() usage conflict my $rr = eval { scalar @_ > 2 ? &new_hash : &new_string; }; croak "${@}new $class( ... )" if $@; return $rr; } =head2 new (from string) $a = new Net::DNS::RR('host.example.com. 86400 A 192.0.2.1'); $mx = new Net::DNS::RR('example.com. 7200 MX 10 mailhost.example.com.'); $cname = new Net::DNS::RR('www.example.com 300 IN CNAME host.example.com'); $txt = new Net::DNS::RR('txt.example.com 3600 HS TXT "text data"'); Returns an RR object of the appropriate type, or a C<Net::DNS::RR> object if the type is not implemented. The attribute values are extracted from the string passed by the user. The syntax of the argument string follows the RFC1035 specification for zone files, and is compatible with the result returned by the string method. The name and RR type are required; all other information is optional. If omitted, the TTL defaults to 0 and the RR class defaults to IN. Omitting the optional fields is useful for creating the empty RDATA sections required for certain dynamic update operations. See the C<Net::DNS::Update> manual page for additional examples. All names are interpreted as fully qualified domain names. The trailing dot (.) is optional. RR owner names in in-addr.arpa or ip6.arpa namespaces may be specified using appropriate RFC4291 or RFC4632 IP address/prefix notation. =cut my $CLASS_REGEX = join '|', sort( keys %classbyname ), 'CLASS\d+'; my %dnssectype = map { ( $_, 1 ) } qw(DLV DNSKEY DS KEY NSEC NSEC3 NSEC3PARAM NXT RRSIG SIG); sub new_string { my $class = shift; local $_ = shift || croak 'empty or undefined argument'; # parse into quoted strings, contiguous non-whitespace, (discarded) brackets and comments s/\\\\/\\092/g; # disguise escaped escape s/\\"/\\034/g; # disguise escaped double quote s/\\'/\\039/g; # disguise escaped single quote s/\\;/\\059/g; # disguise escaped semicolon s/\n(\S)/$1/g if COMPATIBLE; # gloss over syntax errors in Net::DNS::SEC test data my @token = grep defined && length, split /("[^"]*"|'[^']*')|;[^\n]*|[()]|\s+/; my $name = shift @token; # name [ttl] [class] type ... my $ttl = shift @token if @token && $token[0] =~ /^\d/; my $rrclass = shift @token if @token > 1 && $token[0] =~ /^($CLASS_REGEX)$/o; $ttl = shift @token if @token && $token[0] =~ /^\d/; # name [class] [ttl] type ... my $rrtype = shift(@token) || croak 'unable to parse RR string'; my $base = new Net::DNS::Question( $name, $rrtype, $rrclass ); my $self = $class->_subclass( $base, scalar @token ); # RR with defaults (if appropriate) $self->ttl($ttl) if defined $ttl; # undefined TTL meaningful in zone file return $self unless @token; # empty RR if ( $token[0] eq '\\#' ) { shift @token; # RFC3597 hexadecimal format my $count = shift(@token) || 0; my $rdata = pack 'H*', join '', @token; my $rdlen = $self->{rdlength} = length $rdata; croak 'length and hexadecimal data inconsistent' unless $rdlen == $count; return $self unless $count; return ref($self)->new( $self, \$rdata, 0 ) if COMPATIBLE; $self->decode_rdata( \$rdata, 0 ); # unpack RDATA } elsif (COMPATIBLE) { $self->{ttl} ||= 0 if $dnssectype{$self->type}; # gloss over bugs in SEC RRs return ref($self)->new_from_string( $self, "@token", @token ); } else { $self->parse_rdata(@token); # parse arguments } return $self; } =head2 new (from hash) $rr = new Net::DNS::RR( name => 'host.example.com', ttl => 86400, class => 'IN', type => 'A', address => '192.0.2.1' ); $rr = new Net::DNS::RR( name => 'txt.example.com', type => 'TXT', txtdata => [ 'one', 'two' ] ); Returns an RR object of the appropriate type, or a C<Net::DNS::RR> object if the type is not implemented. See the manual pages for each RR type to see what fields the type requires. The C<name> and C<type> fields are required; all others are optional. If omitted, C<ttl> defaults to 0 and C<class> defaults to IN. Omitting the optional fields is useful for creating the empty RDATA sections required for certain dynamic update operations. =cut sub new_hash { my $base = shift; my %attribute = ( name => '.' ); while (@_) { my $key = lc shift; $attribute{$key} = shift; } croak('RR type not specified') unless defined $attribute{type}; my $temp = new Net::DNS::Question( @attribute{qw(name type)} ); my $class = $attribute{class}; my $ttl = $attribute{ttl}; delete @attribute{qw(name class type ttl rdlength)}; # strip non-RDATA fields my $populated = scalar keys %attribute; # RDATA specified my $self = $base->_subclass( $temp, $populated ); # RR with defaults (if appropriate) $self->class($class) if defined $class; # specify CLASS $self->ttl($ttl) if defined $ttl; # specify TTL $self->{ttl} ||= 0 if COMPATIBLE and $dnssectype{$self->type}; # gloss over bugs in SEC RRs while ( my ( $attribute, $value ) = each %attribute ) { if ( UNIVERSAL::isa( $value, 'ARRAY' ) ) { $self->$attribute(@$value); # attribute => [ ... ] } else { $self->$attribute($value); # attribute => value } } $self->_normalize_dnames if COMPATIBLE and $populated; # strip trailing dot from RDATA names return $self; } =head2 decode ( $rr, $next ) = decode Net::DNS::RR( \$data, $offset, @opaque ); Decodes a DNS resource record at the specified location within a DNS packet. The argument list consists of a reference to the buffer containing the packet data and offset indicating where resource record begins. Remaining arguments, if any, are passed as opaque data to subordinate decoders. Returns a C<Net::DNS::RR> object and the offset of the next record in the packet. An exception is raised if the data buffer contains insufficient or corrupt data. Any remaining arguments are passed as opaque data to subordinate decoders and do not form part of the published interface. =cut use constant RRFIXEDSZ => length pack 'n2 N n', (0) x 4; sub decode { my $class = shift; my $self = bless {}, $class; my ( $data, $offset, @opaque ) = @_; ( $self->{owner}, $offset ) = decode Net::DNS::DomainName1035(@_); my $index = $offset + RRFIXEDSZ; die 'corrupt wire-format data' if length $$data < $index; @{$self}{qw(type class ttl rdlength)} = unpack "\@$offset n2 N n", $$data; $self->type( typebyval( $self->{type} ) ) if COMPATIBLE; $self->class( classbyval( $self->{class} ) ) if COMPATIBLE; $self = $class->_subclass($self); my $next = $index + $self->{rdlength}; die 'corrupt wire-format data' if length $$data < $next; if (COMPATIBLE) { ref($self)->new( $self, $data, $index, @opaque ); return wantarray ? ( $self, $next ) : $self; } $self->decode_rdata( $data, $index, @opaque ) if $next > $index or $self->type eq 'OPT'; return wantarray ? ( $self, $next ) : $self; } =head2 encode $data = $rr->encode( $offset, @opaque ); Returns the C<Net::DNS::RR> in binary format suitable for inclusion in a DNS packet buffer. The offset indicates the intended location within the packet data where the C<Net::DNS::RR> is to be stored. Any remaining arguments are opaque data which are passed intact to subordinate encoders. =cut sub encode { my $self = shift; my ( $offset, @opaque ) = @_; ( $offset, @opaque ) = ( 0, {} ) unless @_; if (COMPATIBLE) { my ( $hash, $packet ) = @opaque; $packet ||= bless {}, qw(Net::DNS::Packet); $packet->{compnames} = $hash || {}; my $name = $self->name; my $owner = $self->{owner}->encode(@_); my $index = $offset + length($owner) + RRFIXEDSZ; my $rdata = eval { $self->rr_rdata( $packet, $index, @opaque ); } || ''; my $itype = typebyname( $self->type ); my $iclass = classbyname( $self->class ); delete $packet->{compnames}; return pack 'a* n2 N n a*', $owner, $itype, $iclass, $self->ttl, length $rdata, $rdata; } my $owner = $self->{owner}->encode(@_); my $index = $offset + length($owner) + RRFIXEDSZ; my $rdata = eval { $self->encode_rdata( $index, @opaque ); } || ''; return pack 'a* n2 N n a*', $owner, @{$self}{qw(type class)}, $self->ttl, length $rdata, $rdata; } =head2 canonical $data = $rr->canonical; Returns the C<Net::DNS::RR> in canonical binary format suitable for DNSSEC signature validation. The absence of the associative array argument signals to subordinate encoders that the canonical uncompressed lower case form of embedded domain names is to be used. =cut sub canonical { my $self = shift; if (COMPATIBLE) { my $dummy = $self->name; my $owner = $self->{owner}->encode(0); my $index = RRFIXEDSZ + length $owner; my $rdata = eval { $self->_canonicalRdata($index); } || ''; my $itype = typebyname( $self->type ); my $iclass = classbyname( $self->class ); return pack 'a* n2 N n a*', $owner, $itype, $iclass, $self->ttl, length $rdata, $rdata; } my $owner = $self->{owner}->encode(0); my $index = RRFIXEDSZ + length $owner; my $rdata = eval { $self->encode_rdata($index); } || ''; pack 'a* n2 N n a*', $owner, @{$self}{qw(type class)}, $self->ttl, length $rdata, $rdata; } =head2 name $name = $rr->name; Returns the owner name of the record. =cut sub name { my $self = shift; if (COMPATIBLE) { $self->{owner} = new Net::DNS::DomainName1035(shift) if @_; $self->{owner} = new Net::DNS::DomainName1035( $self->{name} ) unless $self->{owner}; return $self->{name} = $self->{owner}->name; } $self->{owner} = new Net::DNS::DomainName1035(shift) if @_; $self->{owner}->name if defined wantarray; } =head2 type $type = $rr->type; Returns the record type. =cut sub type { my $self = shift; if (COMPATIBLE) { $self->{type} = shift if @_; return $self->{type} || 'A'; } confess 'not possible to change RR->type' if @_; typebyval( $self->{type} || 1 ); } =head2 class $class = $rr->class; Resource record class. =cut sub class { my $self = shift; if (COMPATIBLE) { $self->{class} = shift if @_; return $self->{class} || 'IN'; } $self->{class} = classbyname(shift) if @_; classbyval( $self->{class} || 1 ); } =head2 ttl $ttl = $rr->ttl; $ttl = $rr->ttl(3600); Resource record time to live in seconds. =cut # The following time units are recognised, but are not part of the # published API. These are required for parsing BIND zone files but # should not be used in other contexts. my %unit = ( W => 604800, D => 86400, H => 3600, M => 60, S => 1 ); %unit = ( %unit, map { /\D/ ? lc($_) : $_ } %unit ); sub ttl { my $self = shift; my $value = shift; return $self->{ttl} || 0 unless defined $value; # avoid defining rr->{ttl} my $ttl = 0; my %time = reverse split /(\D)\D*/, $value . 'S'; while ( my ( $u, $t ) = each %time ) { my $s = $unit{$u} || croak qq(bad time unit "$u"); $ttl += $s > 1 ? $t * $s : $t; } $self->{ttl} = $ttl; } =head2 rdata $rr = new Net::DNS::RR( type => NULL, rdata => 'arbitrary' ); Resource record data section when viewed as opaque octets. =cut sub rdata { my $self = shift; return eval { $self->encode_rdata( 0x4000, {} ); } || '' unless @_; my $rdata = $self->{rdata} = shift; my $rdlen = $self->{rdlength} = length $rdata; my $hash = {}; $self->decode_rdata( \$rdata, 0, $hash ) if $rdlen; croak 'compression pointer seen in rdata' if keys %$hash; } =head2 print $rr->print; Prints the record to the standard output. Calls the B<string> method to get the RR string representation. =cut sub print { print shift->string, "\n"; } =head2 string print $rr->string, "\n"; Returns a string representation of the RR using the zone file format described in RFC1035. All domain names are fully qualified with trailing dot. This differs from RR attribute methods, which omit the trailing dot. =cut sub string { my $self = shift; my $name = $self->name if COMPATIBLE; my @basic = ( $self->{owner}->string, $self->ttl, $self->class, $self->type ); my $rdata = $self->rdstring; return join "\t", @basic, '; no data' unless length $rdata; chomp $rdata; $rdata =~ s/\n+/\n\t/g; return join "\t", @basic, $rdata; } =head2 rdstring $rdstring = $rr->rdstring; Returns a string representation of the RR-specific data. =cut sub rdstring { my $self = shift; my $rdata = eval { return $self->rdatastr if COMPATIBLE; return $self->format_rdata; } || ''; carp $@ if $@; return $rdata; } ################################################################################### =head1 Sorting of RR arrays Sorting of RR arrays is done by Net::DNS::rrsort(), see documentation for L<Net::DNS>. This package provides class methods to set the sorting functions used for a particular RR based on its attributes. =head2 set_rrsort_func Net::DNS::RR::SRV->set_rrsort_func('priority', sub { my ($a,$b)=($Net::DNS::a,$Net::DNS::b); $a->priority <=> $b->priority || $b->weight <=> $a->weight } Net::DNS::RR::SRV->set_rrsort_func('default_sort', sub { my ($a,$b)=($Net::DNS::a,$Net::DNS::b); $a->priority <=> $b->priority || $b->weight <=> $a->weight } set_rrsort_func needs to be called as a class method. The first argument is the attribute name on which the sorting will need to take place. If you specify "default_sort" then that is the sort algorithm that will be used in the case that rrsort() is called without an RR attribute as argument. The second argument is a reference to a comparison function that uses the global variables $a and $b in the C<from Net::DNS>(!!)package. During sorting, the variables $a and $b will contain references to objects of the class from which you called the set_prop_sort. In other words, you can rest assured that the above sorting function will only be applied to Net::DNS::RR::SRV objects. The above example is the sorting function implemented in SRV. =cut use vars qw(%rrsortfunct); sub set_rrsort_func { my $class = shift; my $attribute = shift; my $funct = shift; # print "Using ".__PACKAGE__."set_rrsort: $class\n"; my ($type) = $class =~ m/^.*::(.*)$/; $Net::DNS::RR::rrsortfunct{$type}{$attribute} = $funct; } sub get_rrsort_func { my $class = shift; my $attribute = shift; # can be undefined. my $sortsub; my ($type) = $class =~ m/^.*::(.*)$/; if ( defined($attribute) && exists( $Net::DNS::RR::rrsortfunct{$type} ) && exists( $Net::DNS::RR::rrsortfunct{$type}{$attribute} ) ) { # The default overwritten by the class variable in Net::DNS return $Net::DNS::RR::rrsortfunct{$type}{$attribute}; } elsif ( !defined($attribute) && exists( $Net::DNS::RR::rrsortfunct{$type} ) && exists( $Net::DNS::RR::rrsortfunct{$type}{default_sort} ) ) { # The default overwritten by the class variable in Net::DNS return $Net::DNS::RR::rrsortfunct{$type}{default_sort}; } elsif ( defined($attribute) ) { return sub { my ( $a, $b ) = ( $Net::DNS::a, $Net::DNS::b ); exists( $a->{$attribute} ) ? $a->$attribute() <=> $b->$attribute() : $a->canonical() cmp $b->canonical(); }; } else { return sub { my ( $a, $b ) = ( $Net::DNS::a, $Net::DNS::b ); $a->canonical() cmp $b->canonical(); }; } return $sortsub; } ################################################################################### ## ## Default implementation for unknown RR type ## ################################################################################### sub decode_rdata { ## decode rdata from wire-format byte string my ( $self, $data, $offset ) = @_; my $rdlength = $self->{rdlength} || length $$data; $self->{rdata} = substr $$data, $offset, $rdlength; } sub encode_rdata { ## encode rdata as wire-format byte string my $self = shift; $self->{rdata} || ''; } sub format_rdata { ## format rdata portion of RR string my $self = shift; my $data = $self->{rdata} || $self->encode_rdata; # unknown RR, per RFC3597 my $size = length $data; join ' ', '\\#', $size, $size ? unpack( 'H*', $data ) : (); } sub parse_rdata { ## parse RR attributes in argument list my $self = shift; return unless shift; die join ' ', $self->type, 'not implemented' if ref($self) eq __PACKAGE__; die join ' ', 'zone file representation not defined for', $self->type; } sub defaults { } ## set attribute default values ################################################################################### use vars qw($AUTOLOAD); sub AUTOLOAD { ## Default method my $self = shift; confess "method '$AUTOLOAD' undefined" unless ref $self; my $method = $1 if $AUTOLOAD =~ m/^.*::(.*)$/; if (COMPATIBLE) { return $self->{$method} = shift if @_; return $self->{$method} if exists $self->{$method}; } my $object = $self->string; @_ = (<<"END"); *** FATAL PROGRAM ERROR!! Unknown method '$method' *** which the program has attempted to call for the object: *** *** $object *** *** This object does not have a method '$method'. THIS IS A BUG *** IN THE CALLING SOFTWARE, which incorrectly assumes that the *** object would be of a particular type. The type of an object *** should be checked before calling any of its methods. END no strict; goto &{'Carp::confess'}; } sub DESTROY { } ## Avoid tickling AUTOLOAD (in cleanup) sub dump { ## print internal data structure use Data::Dumper; $Data::Dumper::Sortkeys = sub { return [sort keys %{$_[0]}] }; return Dumper(shift) if defined wantarray; print Dumper(shift); } # # Net::DNS::RR->_subclass($object) # Net::DNS::RR->_subclass($object, $default) # # Create a new object blessed into appropriate RR subclass, after # loading the subclass module (if necessary). A subclass with no # corresponding module will be regarded as unknown and blessed # into the RR base class. # # The optional second argument indicates that default values are # to be copied into the newly created object. use vars qw(%_LOADED %_DEFAULTS); sub _subclass { my $class = shift || ''; my $object = shift; my $default = shift; die "Usage:\tuse Net::DNS;\n\t\$rr = new $class( ... )\n" unless $class eq __PACKAGE__; my $required = join '::', $class, $object->type; # full package name my $subclass = $_LOADED{$required}; # load once only unless ($subclass) { eval "require $required"; $subclass = $_LOADED{$required} = $@ ? $class : $required; $_DEFAULTS{$subclass} = bless {}, $subclass; # cache default values $_DEFAULTS{$subclass}->defaults; } my $defaults = $default ? $_DEFAULTS{$subclass} : {}; # clone object to avoid problem with my $clone = bless {%$object, %$defaults}, $subclass; # storage reclamation on some platforms return $clone unless COMPATIBLE; $clone->name; $clone->type( $object->type ); $clone->class( $object->class ); return $clone; } ################################################################################### ## Compatibility interface to allow old and new RR architectures to coexist ## ## "new" modules inherit these methods to wrap themselves in "old" clothing. ################################################################################### sub _new_from_rdata { ## decode rdata from wire-format byte string my $class = shift; my $self = shift; $self->decode_rdata(@_) if $self->{rdlength} or $self->type eq 'OPT'; return $self; } sub new_from_string { ## parse RR attributes in argument list my ( $class, $self, undef, @parse ) = @_; # new_from_string() is a misnomer confess 'new_from_string() deprecated' unless ref($self); $self->parse_rdata(@parse); # string already parsed in new_string() return $self; } sub rdatastr { ## format rdata portion of RR string my $self = shift; return $self->format_rdata; } sub rr_rdata { ## encode rdata as wire-format byte string my $self = shift; my $packet = shift; return $self->encode_rdata(@_); } sub _canonicaldata { ## encode RR in canonical form &canonical; } sub _canonicalRdata { ## encode rdata in canonical form my ( $self, $offset ) = @_; return $self->rr_rdata( undef, $offset ); } sub _name2wire { ## emulate my $class = shift; new Net::DNS::DomainName(shift)->encode(); } sub _normalize_ownername { } ## ignore sub _normalize_dnames { } ## ignore ################################################################################### 1; __END__ =head1 COPYRIGHT Copyright (c)1997-2002 Michael Fuhr. Portions Copyright (c)2002-2004 Chris Reinhardt. Portions Copyright (c)2005-2007 Olaf Kolkman. Portions Copyright (c)2007,2012 Dick Franks. All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<perl>, L<Net::DNS>, L<Net::DNS::Question>, L<Net::DNS::Packet>, L<Net::DNS::Update>, RFC1035 Section 4.1.3, RFC1123, RFC3597 =cut