/usr/share/perl5/Net/DNS/Keyset.pm is in libnet-dns-sec-perl 0.16-2.
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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 | # $Id: Keyset.pm 728 2008-10-12 09:02:24Z olaf $
package Net::DNS::Keyset;
use Cwd;
=head1 NAME
Net::DNS::Keyset - DNSSEC Keyset object class
=head1 SYNOPSIS
use Net::DNS::Keyset;
=head1 DESCRIPTION
A keyset is a "administrative" unit used for DNSSEC maintenance.
The bind dnssec-signzone tool uses it to genertate DS records. This class
provides interfaces for reading keysets, creating and parsing them.
Note that this class is still being developed. Attributes and methods
are subject to change.
=cut
use Data::Dumper;
use strict;
use Net::DNS;
use Carp;
use vars qw ( $VERSION @EXPORT $keyset_err );
( $VERSION ) = '$Revision: 728 $ ' =~ /\$Revision:\s+([^\s]+)/;
my $debug=0;
sub new {
my $retval;
$keyset_err="No Error";
if (@_ == 2 && ! ref $_[1] ) {
$retval = new_from_file(@_);
}
elsif (@_ == 3
&& (ref($_[2]) eq "ARRAY") &&
ref($_[2]->[0]) eq "Net::DNS::RR::RRSIG" &&
(ref($_[1]) eq "ARRAY") &&
ref($_[1]->[0]) eq "Net::DNS::RR::DNSKEY" ) {
$retval = new_from_keys_sigs(@_);
}elsif (@_ >= 2 && (ref($_[1]) eq "ARRAY") &&
ref($_[1]->[0]) eq "Net::DNS::RR::DNSKEY" ) {
$retval = new_from_keys(@_);
}elsif ( @_ == 2 && ref($_[1]) eq "Net::DNS::Packet" ){
$retval = new_from_packet(@_);
}else{
$keyset_err="Could not parse argument";
return(0);
}
return $retval;
}
=head2 new (from file)
$keyset=Net::DNS::Keyset->new("keyset-example.tld");
Creator method, will read the specified keyset file and return a
keyset object. Fails if not all keys in the set are self-signed.
Sets $Net::DNS::Keyset::keyset_err and returns 0 on failure.
=cut
sub new_from_file {
my $class=shift;
my $keysetfile=shift;
$keyset_err="No Error";
my $TTL;
croak "need keysetfile as argumnt" if ! $keysetfile;
open(KEYSET, $keysetfile) # get sort's results
|| croak "Can't open $keysetfile for input: $!";
my $currentorigin;
my $buffer="";
my $previouslabel;
my @keys;
my $k=0;
my @sigs;
my $s=0;
my %names;
# We now read the keyset as if it is a (bind) zone file. # To be
#able to read the individual RRs into RR-objects we # have to fill
#in the information that was conveniently left out # of the zone
#file to make it more readable for us humans. #
# This is code I reused. There is a whole chunk of code for dncame
# completion for RR types other than DNSKEY and RRSIG. That may be
# usefull # if you want to reuse the code for writing a zone
# parser
while (<KEYSET>){
s/;.*//; # Remove comments
next if /^\s*$/ ;
if (!$TTL && /^\s*\$TTL\s+(\d+)/){
$TTL=$1;
print ";; TTL found : ". $TTL ."\n" if $debug;
next;
}
# replace the @ by the ORIGIN.. as given by the argument.
s/@/$currentorigin/;
# Set the current originin. This is the one from the $ORINIGIN value from
# the zone file. It will be used to complete labels below.
if ( /^\s*\$ORIGIN\s+(\S+)\s*$/){
$currentorigin=$1;
print ";; currentorigin set to : ". $currentorigin ."\n" if $debug;
next;
}
# Join multilines to one line
if ( $buffer ne ""){
if (s/\)//) {
$buffer.=$_;
$_=$buffer;
$buffer="";
s/\s+(\s)/$1/g;
}else{
chop;
$buffer.=$_;
next;
}
}elsif (s/\(//) {
chop;
$buffer.=$_;
next;
}
s/\s+/ /g; #Single spaces .. eases future matching
s/ $//; #strips trailing space, that got introduced by the previous...
# Use the previoous label if no label was qualified (line starts with blanks)
if (/^(\S+) /){
$previouslabel=$1;
}else{
$_ = $previouslabel . $_;
}
# Now we have
# label optional TTL optional ClASS and QTYPE and RDATA
# If the TTL and CLASS are not there we'll add them. Besides we'll
# look at the QTYPE and may take some action to RDATA depending on that.
{ #LOCALIZE SOME VARIABLES
my $label;
my $ttl=$TTL;
my $class='IN'; # We only considder IN
my $rtype='';
my $rdata='';
my $prefix='';
# It should be easier to do this....
s/^(\S+) / /; # remove the label to put it back fully quallified
if ($1){
$label=$1;
_complete_dname($label,$currentorigin);
$_ = $label . $_;
print ";; read LABEL: " . $label ."\n" if $debug>2 ;
}else{
croak "Couldnt match label in read method while reading\n". $_ . " \nthis Should not happen\n";
}
# See if there is a TTL value, if not insert one
if (/^\S+. (\d+)/) {
print ";; TTL : " . $1. "\n" if $debug>2 ;
$ttl=$1;
}else {
# instert default TTL
s/^(\S+) (.*)$/$1 $ttl $2/;
}
# See if there is the CLASS is defined, if not insert one.
if(! /^\S+ \d+ (IN)/){
#insert IN
s/^(\S+ \d+ )(.*)$/$1IN $2/;
}
# We have everything specified.. We now get the RTYPE AND RDATA...
/^\S+ \d+ IN (\S+) (.*)$/;
if ($1) {
print ";; rtype: " . $1 ."\n" if $debug>2 ;
$rtype=$1;
}else{
croak " We expected to match an RTYPE\n". $_ . " \nthis Should not happen\n";
}
if ($2) {
$rdata=$2;
print ";; rdata:-->" . $rdata ."<---\n" if $debug>3 ;
}else{
croak " We expected a match RDATA\n". $_ . " \nthis Should not happen\n";
}
$prefix=$label." ".$ttl." IN ".$rtype." ";
} #END LOCALIZATION
print ";; " . $_ . "\n" if $debug>2;
# The sting in $_ now contains a one-line RRset. We now turn it into
# RR object.
my $rr=Net::DNS::RR->new($_);
if ($rr->type eq "DNSKEY") {
$keys[$k++]=$rr;
$names{$rr->name}=1;
}elsif ($rr->type eq "RRSIG") {
$sigs[$s++]=$rr;
$names{$rr->name}=1;
}else{
$keyset_err= "WARNING the following RR was found in a keyset and is not expected there\n". $rr->string;
return(0);
}
}
if ((keys %names )!=1){
$keyset_err = "Different names in the keyset: ".
join ( " ",(keys %names))."\n";
return 0;
}
# @keys_and_sigs contains all keys and sigs from the RRset.
my $ks;
my $keyset;
$keyset= {
keys => [ @keys ],
sigs => [ @sigs ],
};
bless $ks= $keyset, $class;
return 0 if (! $ks->verify);
return $ks;
}
=head2 new (by signing keys)
$keyset=Net::DNS::Keyset->new(\@keyrr,$privatekeypath);
Creates a keyset object from the keys provided through the reference
to an array of Net::DNS::RR::Key objects.
The method will create selfsign the whole keyset. The private keys as
generated by the BIND dnssec-keygen tool are assumed to be in the
current directory or, if specified, in the directory indicat by the
$privatekeypath.
Sets $Net::DNS::Keyset::keyset_err and returns 0 on failure.
=cut
sub new_from_keys {
my $class=shift;
my $keyrr_ref=shift;
my $privatekeypath=shift;
$keyset_err="No Error";
if ( defined $privatekeypath ){
$privatekeypath =~ s!\/*\s*$!! ; #strip trailing spaces and slashes
if (! -d $privatekeypath){
$keyset_err= "The file " . $privatekeypath .
" could not be found\n";
return 0;
}
}else{
$privatekeypath=cwd;
}
my $key;
my $privatekey;
my @sigrr;
my @keyrr;
foreach $key (@{$keyrr_ref}){
my $privkey= $privatekeypath."/".$key->privatekeyname;
if (! -r $privkey){
$keyset_err= "private key ".$privkey.
"could not be found";
return 0;
}
my $sig=Net::DNS::RR::RRSIG->create($keyrr_ref,$privkey);
push @sigrr, $sig;
push @keyrr, $key;
}
my $ks;
my $keyset= {
keys => [ @keyrr ],
sigs => [ @sigrr ],
};
bless $ks= $keyset, $class;
return 0 if (! $ks->verify);
return $ks;
}
=head2 new (from keys and sig RRsets)
$keyset=Net::DNS::Keyset->new(\@keyrr,\@sigrr);
Creates a keyset object from the keys provided through the reference
to an array of Net::DNS::RR::DNSKEY and Net::DNS::RR::RRSIG objects.
Sets $Net::DNS::Keyset::keyset_err and returns 0 on failure.
=cut
sub new_from_keys_sigs{
my $class=shift;
my $keyrr_ref=shift;
my $sigrr_ref=shift;
my @sigrr;
my @keyrr;
foreach my $key (@{$keyrr_ref}){
push @keyrr, $key;
}
foreach my $sig (@{$sigrr_ref}){
push @sigrr, $sig;
}
my $ks;
my $keyset= {
keys => [ @keyrr ],
sigs => [ @sigrr ],
};
bless $ks= $keyset, $class;
return 0 if (! $ks->verify);
return $ks;
}
=head2 new (from Packet)
$res = Net::DNS::Resolver->new;
$res->dnssec(1);
$packet = $res->query ("example.com", "DNSKEY", "IN");
$keyset=Net::DNS::Keyset->new($packet)
die "Corrupted selfsignature " if ! $keyset->verify;
Creates a keyset object from a Net::DNS::Packet that contains the
answer to a query for the apex key records.
This is the method you want to use for automatically fetching keys.
Sets $Net::DNS::Keyset::keyset_err and returns 0 on failure.
=cut
sub new_from_packet {
my $class=shift;
my $packet=shift;
my @sigrr;
my @keyrr;
$keyset_err="No Error";
if (ref ($packet) ne "Net::DNS::Packet"){
$keyset_err="Input is not a Net::DNS::Packet" ;
return (0);
}
# All the information is in the answer section.
# We expect keys and signatures there.
foreach my $rr ($packet->answer){
if ($rr->type eq "RRSIG"){
push @sigrr, $rr;
}
elsif ($rr->type eq "DNSKEY")
{
push @keyrr, $rr ;
}else{
$keyset_err = "Unexpected RR in the answer section of the packet:\n".
$rr->string."\n";
return (0);
}
}
my $ks;
my $keyset= {
keys => [ @keyrr ],
sigs => [ @sigrr ],
};
bless $ks= $keyset, $class;
return 0 if (! $ks->verify);
return $ks;
}
=head2 keys
@keyrr=$keyset->keys;
Returns an array of Net::DNS::RR::Key objects
=cut
sub keys {
my $self=shift;
return @{$self->{'keys'}};
}
=head2 sigs
@keyrr=$keyset->sigs;
Returns an array of Net::DNS::RR::Sig objects
=cut
sub sigs {
my $self=shift;
return @{$self->{'sigs'}};
}
=head2 verify
die $Net::DNS::Keyset::keyset_err if $keyset->verify;
If no arguments are given:
- Verifies if all signatures present verify the keyset.
- Verifies if there are DNSKEYs with the SEP flag set there is
at least one RRSIG made using that key
- Verifies that if there are no DNSKEYS with the SEP flag set there is
at lease one RRSIG made with one of the keys from the keyset.
If an argument is given it is should be the KEYID of one of the keys
in the keyset and the method verifies if the the RRSIG with that made
with that key verifies.
The argument returns 0 if verification fails and sets
$Net::DNS::Keyset::keyset_err.
If verification succeeds an array is returne with the key-tags of the
keys for which signatures verified.
=cut
sub verify {
my $self=shift;
my $keyid=shift;
my $key;
my $sig;
my $one_sep_key_found=0;
my $one_sep_key_validated=0;
my $one_key_validated=0;
my $key_id_found=0;
my @tags_verified=();
KEY: foreach $key ($self->keys) {
$one_sep_key_found=1 if $key->is_sep;
foreach $sig ($self->sigs) {
print "Checking: " . $key->name .":". $key->keytag .
($key->is_sep?"(SEP)":"") .
"---" .
$sig->signame .":". $sig->keytag . "\n" if $debug;
if ($key->keytag == $sig->keytag &&
$key->name."." eq $sig->signame."." ){
print "...\n" if $debug;
my @keys=$self->keys ;
if (! $sig->verify( \@keys , $key)){
$keyset_err="" if ($keyset_err eq "No Error");
$keyset_err .= $sig->vrfyerrstr. " on key ". $key->name. " ".$key->keytag ." ";
# If we did supply an argument we want to fail if
# the signature made with that keytag failed.
if (defined $keyid && $sig->keytag == $keyid ){
$keyset_err= "Signature made with $keyid did not validate";
return 0;
}
# If we did not supply an argument we want to fail if any
# of the signatures failed
return 0 if (! defined $keyid);
next KEY;
}
push @tags_verified, $key->keytag;
# past verification
$one_key_validated=1;
$one_sep_key_validated=1 if $key->is_sep;
$key_id_found=1 if (defined $keyid && $key->keytag == $keyid );
print "verified " .$key->keytag."\n" if $debug;
}
}
}
if ($one_sep_key_found && ! $one_sep_key_validated){
$keyset_err= "One key had the SEP flag set but non of the keys had a signature";
return 0;
}elsif( ! $one_key_validated ){
$keyset_err= "None of the keys in the keyset had a signature";
return 0;
}elsif ( defined($keyid) && ! $key_id_found ){
$keyset_err= "No signature made with $keyid found";
return 0;
}
@tags_verified = ($keyid) if defined ($keyid);
return @tags_verified;
}
=head2 print
$keyset->print;
Prints the keyset
=head2 string
$keysetstring=$keyset->string;
Returns a string representation of the keyset
print $keyset->string;
is similar to
$keyset->print;
=cut
sub string {
my $self=shift;
my $string;
foreach my $rr ($self->keys,$self->sigs){
$string .= $rr->string ."\n";
}
return $string;
}
sub print {
my $self=shift;
print $self->string;
}
=head2 extract_ds
@ds=$keyset->extract_ds;
foreach $ds (@ds) {
$ds->print;
}
Extracts DS records from the keyset. Note that the keyset will be verified
during extraction: All keys will need to have a valid selfsignature.
=cut
sub extract_ds {
my $self=shift;
$keyset_err="No error";
my @ds;
return (0) if (! $self->verify);
foreach my $rr ($self->keys){
my $ds=Net::DNS::RR::DS->create($rr);
push @ds, $ds;
}
return (@ds);
}
=head2 writekeyset
die $Net::DNS::Keyset::keyset_err if ! $keyset->writekeyset($prefix, $path);
Writes the keyset to a file named "keyset-<domain>." in the current
working directory or the directory defined by $path. $prefix specifies an
optional prefix that will be prepended to the string "keyset-<domain>."
Returns 0 on failure and sets keyset_err.
=cut
sub writekeyset {
my $self=shift;
my $prefix=shift;
my $keysetpath=shift;
$keyset_err="No Error";
my $domainname=$self->{'keys'}->[0]->name;
if ( defined $keysetpath ){
$keysetpath =~ s!\/*\s*$!! ; #strip trailing spaces and slashes
if (! -d $keysetpath){
$keyset_err= "Directory " . $keysetpath .
" could not be found\n";
return 0;
}
}else {
$keysetpath=cwd;
}
my $keysetname="$keysetpath/$prefix" . "keyset-$domainname.";
if (! open(KEYSET,"> $keysetname") ){
$keyset_err= " Could not open $keysetname for writing";
return 0;
}
print KEYSET $self->string;
return (1);
}
sub _complete_dname
{
my $dname=shift;
my $origin=shift;
if ( $dname !~ /\.$/ ){
# breaks if a label ends in an escapped \.
# Is that allowed?
$dname .= ".".$origin;
}
return $dname;
}
1;
__END__
=head1 COPYRIGHT
Copyright (c) 2002 RIPE NCC. Author Olaf M. Kolkman
<net-dns-sec@ripe.net>
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of the author not be used
in advertising or publicity pertaining to distribution of the software
without specific, written prior permission.
THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO
EVENT SHALL AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
=cut
|