2017-09-06 09:58:29 +10:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
#
|
2018-02-23 09:53:12 +01:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2017-09-06 09:58:29 +10:00
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
#
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
# information regarding copyright ownership.
|
2017-09-06 09:58:29 +10:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use IO::File;
|
|
|
|
use Getopt::Long;
|
|
|
|
use Net::DNS::Nameserver;
|
|
|
|
use Time::HiRes qw(usleep nanosleep);
|
|
|
|
|
|
|
|
my $pidf = new IO::File "ans.pid", "w" or die "cannot open pid file: $!";
|
|
|
|
print $pidf "$$\n" or die "cannot write pid file: $!";
|
|
|
|
$pidf->close or die "cannot close pid file: $!";
|
|
|
|
sub rmpid { unlink "ans.pid"; exit 1; };
|
|
|
|
|
|
|
|
$SIG{INT} = \&rmpid;
|
|
|
|
$SIG{TERM} = \&rmpid;
|
|
|
|
|
|
|
|
my $send_response = 1;
|
|
|
|
|
|
|
|
my $localaddr = "10.53.0.2";
|
2018-02-20 15:43:27 -08:00
|
|
|
|
|
|
|
my $localport = int($ENV{'PORT'});
|
|
|
|
if (!$localport) { $localport = 5300; }
|
|
|
|
|
2017-09-06 09:58:29 +10:00
|
|
|
my $verbose = 0;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Delegation
|
|
|
|
#
|
|
|
|
my $SOA = "example 300 IN SOA . . 0 0 0 0 300";
|
|
|
|
my $NS = "example 300 IN NS ns.example";
|
|
|
|
my $A = "ns.example 300 IN A $localaddr";
|
|
|
|
#
|
|
|
|
# Records to be TTL stretched
|
|
|
|
#
|
|
|
|
my $TXT = "data.example 1 IN TXT \"A text record with a 1 second ttl\"";
|
|
|
|
my $negSOA = "example 1 IN SOA . . 0 0 0 0 300";
|
|
|
|
|
|
|
|
sub reply_handler {
|
|
|
|
my ($qname, $qclass, $qtype, $peerhost, $query, $conn) = @_;
|
|
|
|
my ($rcode, @ans, @auth, @add);
|
|
|
|
|
|
|
|
print ("request: $qname/$qtype\n");
|
|
|
|
STDOUT->flush();
|
|
|
|
|
|
|
|
# Control whether we send a response or not.
|
|
|
|
# We always respond to control commands.
|
|
|
|
if ($qname eq "enable" ) {
|
|
|
|
if ($qtype eq "TXT") {
|
|
|
|
$send_response = 1;
|
2017-09-06 19:26:10 +10:00
|
|
|
my $rr = new Net::DNS::RR("$qname 0 $qclass TXT \"$send_response\"");
|
2017-09-06 09:58:29 +10:00
|
|
|
push @ans, $rr;
|
|
|
|
}
|
|
|
|
$rcode = "NOERROR";
|
|
|
|
return ($rcode, \@ans, \@auth, \@add, { aa => 1 });
|
|
|
|
} elsif ($qname eq "disable" ) {
|
|
|
|
if ($qtype eq "TXT") {
|
|
|
|
$send_response = 0;
|
2017-09-06 19:26:10 +10:00
|
|
|
my $rr = new Net::DNS::RR("$qname 0 $qclass TXT \"$send_response\"");
|
2017-09-06 09:58:29 +10:00
|
|
|
push @ans, $rr;
|
|
|
|
}
|
|
|
|
$rcode = "NOERROR";
|
|
|
|
return ($rcode, \@ans, \@auth, \@add, { aa => 1 });
|
|
|
|
}
|
|
|
|
|
|
|
|
# If we are not responding to queries we are done.
|
|
|
|
return if (!$send_response);
|
|
|
|
|
|
|
|
# Construct the response and send it.
|
|
|
|
if ($qname eq "ns.example" ) {
|
|
|
|
if ($qtype eq "A") {
|
|
|
|
my $rr = new Net::DNS::RR($A);
|
|
|
|
push @ans, $rr;
|
|
|
|
} else {
|
|
|
|
my $rr = new Net::DNS::RR($SOA);
|
|
|
|
push @auth, $rr;
|
|
|
|
}
|
|
|
|
$rcode = "NOERROR";
|
|
|
|
} elsif ($qname eq "example") {
|
|
|
|
if ($qtype eq "NS") {
|
|
|
|
my $rr = new Net::DNS::RR($NS);
|
|
|
|
push @auth, $rr;
|
|
|
|
$rr = new Net::DNS::RR($A);
|
|
|
|
push @add, $rr;
|
|
|
|
} elsif ($qtype eq "SOA") {
|
|
|
|
my $rr = new Net::DNS::RR($SOA);
|
|
|
|
push @ans, $rr;
|
|
|
|
} else {
|
|
|
|
my $rr = new Net::DNS::RR($SOA);
|
|
|
|
push @auth, $rr;
|
|
|
|
}
|
|
|
|
$rcode = "NOERROR";
|
|
|
|
} elsif ($qname eq "nodata.example") {
|
|
|
|
my $rr = new Net::DNS::RR($negSOA);
|
|
|
|
push @auth, $rr;
|
|
|
|
$rcode = "NOERROR";
|
|
|
|
} elsif ($qname eq "data.example") {
|
|
|
|
if ($qtype eq "TXT") {
|
|
|
|
my $rr = new Net::DNS::RR($TXT);
|
|
|
|
push @ans, $rr;
|
|
|
|
} else {
|
|
|
|
my $rr = new Net::DNS::RR($negSOA);
|
|
|
|
push @auth, $rr;
|
|
|
|
}
|
|
|
|
$rcode = "NOERROR";
|
|
|
|
} elsif ($qname eq "nxdomain.example") {
|
|
|
|
my $rr = new Net::DNS::RR($negSOA);
|
|
|
|
push @auth, $rr;
|
|
|
|
$rcode = "NXDOMAIN";
|
|
|
|
} else {
|
|
|
|
my $rr = new Net::DNS::RR($SOA);
|
|
|
|
push @auth, $rr;
|
|
|
|
$rcode = "NXDOMAIN";
|
|
|
|
}
|
|
|
|
|
|
|
|
# mark the answer as authoritive (by setting the 'aa' flag
|
|
|
|
return ($rcode, \@ans, \@auth, \@add, { aa => 1 });
|
|
|
|
}
|
|
|
|
|
|
|
|
GetOptions(
|
|
|
|
'port=i' => \$localport,
|
|
|
|
'verbose!' => \$verbose,
|
|
|
|
);
|
|
|
|
|
|
|
|
$A = "ns.example 300 IN A $localaddr";
|
|
|
|
|
|
|
|
my $ns = Net::DNS::Nameserver->new(
|
|
|
|
LocalAddr => $localaddr,
|
|
|
|
LocalPort => $localport,
|
|
|
|
ReplyHandler => \&reply_handler,
|
|
|
|
Verbose => $verbose,
|
|
|
|
);
|
|
|
|
|
|
|
|
$ns->main_loop;
|