[808] | 1 | #!/usr/bin/perl
|
---|
| 2 | # Import a BIND zone file
|
---|
[818] | 3 | # Note we are not using Net:DNS::ZoneFile, because we want to convert $GENERATE
|
---|
| 4 | # directives straight into PTR template or A+PTR template metarecords
|
---|
[808] | 5 | ##
|
---|
| 6 | # Copyright 2020 Kris Deugau <kdeugau@deepnet.cx>
|
---|
| 7 | #
|
---|
| 8 | # This program is free software: you can redistribute it and/or modify
|
---|
| 9 | # it under the terms of the GNU General Public License as published by
|
---|
| 10 | # the Free Software Foundation, either version 3 of the License, or
|
---|
| 11 | # (at your option) any later version.
|
---|
| 12 | #
|
---|
| 13 | # This program is distributed in the hope that it will be useful,
|
---|
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 16 | # GNU General Public License for more details.
|
---|
| 17 | #
|
---|
| 18 | # You should have received a copy of the GNU General Public License
|
---|
| 19 | # along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 20 | ##
|
---|
| 21 |
|
---|
| 22 | use strict;
|
---|
| 23 | use warnings;
|
---|
| 24 | use Data::Dumper;
|
---|
| 25 |
|
---|
| 26 | use lib '.';
|
---|
| 27 | use DNSDB;
|
---|
| 28 |
|
---|
| 29 | my $dnsdb = new DNSDB;
|
---|
[810] | 30 | my $doimport = 0;
|
---|
[808] | 31 |
|
---|
| 32 | #print Dumper(\%reverse_typemap);
|
---|
| 33 |
|
---|
[817] | 34 | local $dnsdb->{dbh}->{AutoCommit} = 0;
|
---|
| 35 | local $dnsdb->{dbh}->{RaiseError} = 1;
|
---|
| 36 |
|
---|
| 37 | ##fixme: command arguments/flags to set these to alternate values
|
---|
| 38 | my $group = 1;
|
---|
| 39 | my $status = 1;
|
---|
| 40 | my $location = '';
|
---|
| 41 | # we'll update this with the actual serial number from the SOA record later
|
---|
| 42 | my $serial = time();
|
---|
| 43 |
|
---|
[808] | 44 | my $zname = shift @ARGV;
|
---|
[817] | 45 | my $origzone = $zname;
|
---|
[813] | 46 | die "usage: bind-import zonename\n" if !$zname;
|
---|
[808] | 47 | my $rev = 'n';
|
---|
| 48 | my $zid;
|
---|
| 49 |
|
---|
[810] | 50 | my %amap;
|
---|
| 51 | my %namemap;
|
---|
[811] | 52 | my %cmap;
|
---|
[810] | 53 |
|
---|
[815] | 54 | ##fixme: this is wrong, BIND zone files are generally complete and we're adding. merging records is an entire fridge full of worms.
|
---|
[816] | 55 | ##fixme: for import, should arguably check for zone *non*existence
|
---|
[809] | 56 | if ($zname =~ /\.arpa\.?$/ || $zname =~ m,^[\d./]+$,) {
|
---|
[808] | 57 | $rev = 'y';
|
---|
[809] | 58 | $zname = _zone2cidr($zname) if $zname =~ /\.arpa\.?$/;
|
---|
[808] | 59 | $zid = $dnsdb->revID($zname,':ANY:');
|
---|
[809] | 60 | if ($zid) {
|
---|
[818] | 61 | # die "zone $origzone already present, not merging records\n";
|
---|
[817] | 62 | #$zname = new NetAddr::IP $zname;
|
---|
| 63 | # $zname = DNSDB::_ZONE($zname, 'ZONE', 'r', '.').($zname->{isv6} ? '.ip6.arpa' : '.in-addr.arpa');
|
---|
[809] | 64 | }
|
---|
[818] | 65 | # $zid = $dnsdb->{dbh}->do("INSERT INTO revzones (revnet,group_id,status,default_location,zserial) VALUES (?,?,?,?,?) RETURNING rnds_id",
|
---|
| 66 | # undef, ($zname, $group, $status, $location, $serial));
|
---|
[817] | 67 |
|
---|
[808] | 68 | } else {
|
---|
| 69 | $zid = $dnsdb->domainID($zname,':ANY:');
|
---|
[817] | 70 | if ($zid) {
|
---|
[818] | 71 | # die "zone $origzone already present, not merging records\n";
|
---|
[817] | 72 | }
|
---|
[818] | 73 | # $zid = $dnsdb->{dbh}->do("INSERT INTO domains (domain,group_id,status,default_location,zserial) VALUES (?,?,?,?,?) RETURNING domain_id",
|
---|
| 74 | # undef, ($zname, $group, $status, $location, $serial));
|
---|
[808] | 75 | }
|
---|
| 76 |
|
---|
[817] | 77 | die "error creating zone stub for $zname: ".$dnsdb->{dbh}->errstr if !$zid;
|
---|
[808] | 78 |
|
---|
[817] | 79 |
|
---|
| 80 |
|
---|
[810] | 81 | # still no sane way to expose a human-friendly view tag on the command line.
|
---|
| 82 | my $view = shift @ARGV;
|
---|
| 83 | $view = '' if !$view;
|
---|
| 84 |
|
---|
[808] | 85 | ##fixme: retrieve defttl from SOA record
|
---|
| 86 | my $zonettl = 900;
|
---|
[810] | 87 | my $defttl = $zonettl;
|
---|
[817] | 88 | my $origin = "$zname."; # to append to unqualified names
|
---|
[818] | 89 | my %foundtypes;
|
---|
[808] | 90 |
|
---|
[810] | 91 | # need to spin up a full state machine-ish thing, because BIND zone files are all about context
|
---|
[812] | 92 | # see ch4, p56-72 in the grasshopper book
|
---|
| 93 | my $prevlabel = '';
|
---|
| 94 | my $curlabel = '';
|
---|
| 95 |
|
---|
[813] | 96 | my $i = 0;
|
---|
| 97 |
|
---|
[817] | 98 | while (my $rec = <>) {
|
---|
| 99 | chomp $rec;
|
---|
| 100 | next if $rec =~ /^\s*$/;
|
---|
| 101 | next if $rec =~ /^\s*;/; # comments
|
---|
| 102 | next if $rec =~ /^\s*\)/; # SOA closing (possibly other records too?)
|
---|
| 103 | # arguably should do some more targeted voodoo when parsing the SOA details
|
---|
[813] | 104 |
|
---|
[818] | 105 | ##fixme: use external skiplist
|
---|
[817] | 106 | # skip stale records that have no value
|
---|
| 107 | next if /^ip-192-168-1(12|20)-\d+/;
|
---|
| 108 | next if /ip.add.re.\d+\s*$/;
|
---|
| 109 |
|
---|
[818] | 110 | $i++;
|
---|
| 111 | #last if $i > 4;
|
---|
| 112 | #print "line $i: ($rec)\n";
|
---|
[817] | 113 | if (my ($macro,$mdetail) = ($rec =~ /^\s*\$(TTL|ORIGIN|INCLUDE|GENERATE)\s+(.+)/) ) {
|
---|
[810] | 114 | # macro sort of thing; $TTL and $ORIGIN most common. $INCLUDE is a thing, expect it to be rare in live use tho
|
---|
| 115 | if ($macro eq 'TTL') {
|
---|
[815] | 116 | $mdetail =~ s/\s*;.+$//;
|
---|
[810] | 117 | if ($mdetail =~ /^\d+$/) {
|
---|
| 118 | $defttl = $mdetail;
|
---|
| 119 | } else {
|
---|
[817] | 120 | warn "invalid \$TTL: $rec\n";
|
---|
[810] | 121 | }
|
---|
| 122 | } elsif ($macro eq 'ORIGIN') {
|
---|
| 123 | ##fixme: going to skip the stupid case of "$ORIGIN com." and the like that lie
|
---|
| 124 | # between . and the root domain we were told we're importing; anyone using such
|
---|
| 125 | # a mess outside the root servers is clearly insane
|
---|
[815] | 126 |
|
---|
| 127 | # $ORIGIN supports cascading/nesting, by watching for fully-qualified names vs partial names.
|
---|
| 128 |
|
---|
| 129 | print "origin ($mdetail)\n";
|
---|
| 130 | if ($mdetail =~ /\.$/) {
|
---|
| 131 | $origin = $mdetail;
|
---|
[810] | 132 | } else {
|
---|
[815] | 133 | # append current origin to unqualified origin
|
---|
| 134 | $origin = "$mdetail.$origin";
|
---|
[810] | 135 | }
|
---|
[815] | 136 |
|
---|
| 137 | # if ($mdetail eq '.' || $mdetail =~ /$zname\.$/ || $zname =~ /$mdetail\.$/) {
|
---|
| 138 | # $origin = $mdetail;
|
---|
| 139 | # } else {
|
---|
| 140 | # # if we continue, we either use an $ORIGIN that's out of zone, or ignore it and potentially publish incorrect records.
|
---|
| 141 | # die "bad \$ORIGIN: $_\n";
|
---|
| 142 | # }
|
---|
| 143 |
|
---|
[810] | 144 | }
|
---|
[818] | 145 | elsif ($macro eq 'GENERATE') {
|
---|
| 146 | # needs to generate CIDR range(s) as needed to match the start/stop points
|
---|
| 147 | }
|
---|
[812] | 148 | # not handling $INCLUDE or $GENERATE (altho the latter seems to be mostly a less-flexible version of the template types)
|
---|
[810] | 149 | next;
|
---|
| 150 | }
|
---|
[815] | 151 |
|
---|
[817] | 152 | my $origrec = $rec;
|
---|
[815] | 153 |
|
---|
| 154 | # leading whitespace indicates "same label as last record"
|
---|
[817] | 155 | if ($rec =~ /^\s/) {
|
---|
[815] | 156 | $curlabel = $prevlabel;
|
---|
[817] | 157 | print " found empty label, using previous label\n";
|
---|
[815] | 158 | } else {
|
---|
[817] | 159 | ($curlabel) = ($rec =~ /^([\w\@_.-]+)\s/);
|
---|
[815] | 160 | }
|
---|
| 161 |
|
---|
[817] | 162 | print " found '$curlabel'\n";
|
---|
| 163 |
|
---|
[815] | 164 | # magic name!
|
---|
| 165 | $curlabel = "$zname." if $curlabel eq '@';
|
---|
| 166 |
|
---|
| 167 | # append $ORIGIN if name is not fully qualified.
|
---|
| 168 | if ($curlabel !~ /\.$/) {
|
---|
[818] | 169 | $curlabel .= ($origin eq '.' ? '.' : ".$origin");
|
---|
[815] | 170 | }
|
---|
[817] | 171 | print " expanded '$curlabel'\n";
|
---|
[815] | 172 |
|
---|
[818] | 173 | # hack pthbptt
|
---|
| 174 | #$curlabel =~ s/\.\.$/./;
|
---|
[815] | 175 | # check for zone scope. skip bad records.
|
---|
| 176 | if ($curlabel !~ /$zname.$/) {
|
---|
| 177 | warn "bad record $origrec, maybe bad \$ORIGIN?\n";
|
---|
[817] | 178 | last;
|
---|
[815] | 179 | next;
|
---|
| 180 | }
|
---|
| 181 |
|
---|
[817] | 182 | # trim the label, if any
|
---|
| 183 | $rec =~ s/^([\w\@_.-]*)\s+//;
|
---|
| 184 |
|
---|
[815] | 185 | # # records must begin in the first column, no leading whitespace
|
---|
| 186 | # my ($name) = /^([\w\@_.-]+)\s/;
|
---|
| 187 |
|
---|
[813] | 188 | # foo IN A 1.2.3.4
|
---|
| 189 | # IN A 2.3.4.5
|
---|
| 190 | # =
|
---|
| 191 | # foo.zone. IN A 1.2.3.4
|
---|
| 192 | # foo.zone. IN A 2.3.4.5
|
---|
| 193 |
|
---|
[815] | 194 | # # "empty" label records inherit the previous label
|
---|
| 195 | # # RRs start in the first column by definition, so leading whitespace indicates an inherited label
|
---|
| 196 | # if (/^\s+/) {
|
---|
| 197 | # # fatal error. if there is no previous label, we can by definition not set
|
---|
| 198 | # # the current label based on it. this can only happen on the very first
|
---|
| 199 | # # record, following records will *ALWAYS* have a previous label
|
---|
| 200 | # die "bad first record ($_): no previous label\n" if !$prevlabel;
|
---|
| 201 | # $name = $prevlabel;
|
---|
| 202 | # }
|
---|
[813] | 203 |
|
---|
[818] | 204 | #print "$i ($rec)\n";#\t$curlabel";
|
---|
[814] | 205 |
|
---|
[813] | 206 |
|
---|
[814] | 207 |
|
---|
| 208 |
|
---|
[815] | 209 | # # append zone name to record name if missing AND not dot-terminated;
|
---|
| 210 | # # this happens automagically for forward zones, but not reverse because Reasons. (fixme?)
|
---|
| 211 | # # suck up and deal with the error if the dot-termiated name is out of zone; should be
|
---|
| 212 | # # impossible with valid BIND zone file but...
|
---|
| 213 | # if ($name !~ /\.$/) {
|
---|
| 214 | # $name .= ".$zname" if $name !~ /$zname$/;
|
---|
| 215 | # } else {
|
---|
| 216 | # warn "skipping out-of-zone record:\n\t($_)\n" if $name !~ /$zname\.$/;
|
---|
| 217 | # next;
|
---|
| 218 | # }
|
---|
[813] | 219 |
|
---|
| 220 |
|
---|
[817] | 221 | my $nc = 0;
|
---|
| 222 | my $class = 'IN';
|
---|
[818] | 223 | my $type;
|
---|
[817] | 224 | my $ttl;
|
---|
[818] | 225 | my $distance;
|
---|
| 226 | my $weight;
|
---|
| 227 | my $port;
|
---|
[817] | 228 | my $badrec;
|
---|
| 229 | my $curatom = 'class';
|
---|
[813] | 230 |
|
---|
[817] | 231 | eval {
|
---|
| 232 | for (; $nc < 3; $nc++) {
|
---|
| 233 | my ($atom) = ($rec =~ /^([\w\d.]+)\s/);
|
---|
| 234 | # should be safe?
|
---|
| 235 | last if !$atom;
|
---|
| 236 | last if $type;
|
---|
| 237 | #print "nc:$nc: $atom\n";
|
---|
| 238 | if ($atom =~ /^\d+$/) {
|
---|
| 239 | if (defined($ttl)) {
|
---|
[816] | 240 | die "bad record ($origrec)\n";
|
---|
| 241 | # warn "bad record ($origrec)\n";
|
---|
| 242 | # $badrec = 1;
|
---|
| 243 | # last;
|
---|
[817] | 244 | } else {
|
---|
| 245 | if ($curatom ne 'class' && $curatom ne 'ttl') {
|
---|
| 246 | die "bad record ($origrec)\n";
|
---|
| 247 | # warn "bad record ($origrec)\n";
|
---|
| 248 | # $badrec = 1;
|
---|
| 249 | # last;
|
---|
| 250 | }
|
---|
| 251 | $curatom = 'ttl';
|
---|
| 252 | $ttl = $atom;
|
---|
[816] | 253 | }
|
---|
[815] | 254 | }
|
---|
[817] | 255 |
|
---|
| 256 | elsif ($atom =~ /^IN|CS|CH|HS$/) {
|
---|
| 257 | #print "a$nc: d2: atom [$atom]\n $rec\n" if $i == $debugid;
|
---|
| 258 | if ($atom =~ /CS|CH|HS/) {
|
---|
| 259 | die "unsupported class $atom in record ($origrec)\n";
|
---|
| 260 | # warn "unsupported class $atom in record ($origrec)\n";
|
---|
| 261 | # $badrec = 1;
|
---|
| 262 | # last;
|
---|
| 263 | }
|
---|
| 264 | $curatom = 'class';
|
---|
| 265 | $class = $atom;
|
---|
[816] | 266 | }
|
---|
[817] | 267 |
|
---|
| 268 | elsif ($atom =~ /^[A-Z]+/) {
|
---|
| 269 | # print "dbg: type $atom\n";
|
---|
| 270 | if ($reverse_typemap{$atom}) {
|
---|
| 271 | $type = $atom;
|
---|
| 272 | } else {
|
---|
| 273 | die "unknown type $atom in record ($origrec)\n";
|
---|
| 274 | }
|
---|
| 275 | }
|
---|
| 276 | $rec =~ s/^$atom\s*//;
|
---|
[815] | 277 | }
|
---|
[817] | 278 | };
|
---|
| 279 | if ($@) {
|
---|
| 280 | warn $@;
|
---|
| 281 | next;
|
---|
[815] | 282 | }
|
---|
| 283 |
|
---|
[818] | 284 | ##todo: BIND conflates a repeated label with repeating the TTL too. Matter of opinion whether that's really correct or not.
|
---|
[817] | 285 | # set default TTL here so we can detect a TTL in the loop above
|
---|
| 286 | $ttl = $defttl if !defined($ttl);
|
---|
| 287 |
|
---|
[816] | 288 | #next if $badrec;
|
---|
[815] | 289 |
|
---|
| 290 |
|
---|
[814] | 291 | ##fixme: drop curlabel? not sure it's needed
|
---|
[815] | 292 | #$curlabel = $name;
|
---|
[813] | 293 | $prevlabel = $curlabel;
|
---|
[814] | 294 |
|
---|
| 295 |
|
---|
[815] | 296 |
|
---|
[817] | 297 | ## by convention the optional TTL leads the optional class, but they're apparently swappable.
|
---|
| 298 | # my ($ttl) = /^(\d+)?\s/;
|
---|
| 299 | # if (defined $ttl) {
|
---|
| 300 | # # TTL may be zero
|
---|
| 301 | # s/(\d+)?\s+//;
|
---|
| 302 | # } else {
|
---|
| 303 | # # Fall back to zone default TTL
|
---|
| 304 | # $ttl = $zonettl;
|
---|
| 305 | # }
|
---|
| 306 | # my ($class) = /^(IN|CS|CH|HS|\d+)\s/;
|
---|
| 307 | # if (defined $class) {
|
---|
| 308 | # if ($class =~ /\d+/) {
|
---|
| 309 | #
|
---|
| 310 | # }
|
---|
| 311 | # if ($class ne 'IN') {
|
---|
| 312 | # warn "Non-Internet class ($class) records not supported:\n\t$origrec\n";
|
---|
| 313 | # next;
|
---|
| 314 | # }
|
---|
| 315 | # s/(IN|CS|CH|HS)\s+//;
|
---|
| 316 | # } else {
|
---|
| 317 | # $class = 'IN';
|
---|
| 318 | # }
|
---|
| 319 | # my ($type) = /([A-Z-]+)\s/;
|
---|
| 320 | # if (!$reverse_typemap{$type}) {
|
---|
| 321 | # warn "Unknown type $type, skipping\n\t($rec)\n";
|
---|
| 322 | # next;
|
---|
| 323 | # }
|
---|
| 324 | # s/([A-Z-]+)\s+//;
|
---|
| 325 | # chomp;
|
---|
| 326 |
|
---|
| 327 |
|
---|
[808] | 328 | my $itype = $reverse_typemap{$type};
|
---|
[817] | 329 | my $rdata = $rec;
|
---|
[808] | 330 |
|
---|
[812] | 331 | # SOA is the only type that may span multiple lines. Probably. Note even AXFRed zones write multiline SOA records:
|
---|
| 332 | #@ IN SOA test.example.invalid. test.example.invalid. (2020082500 7200 900 604800 3600)
|
---|
| 333 | # IN NS olddns.example.com.
|
---|
| 334 | # IN MX 1 fred.foo.bar.invalid.
|
---|
| 335 | #foo IN A 192.168.16.45
|
---|
| 336 | # AXFR'ed zone file gets written as
|
---|
| 337 | #$ORIGIN .
|
---|
| 338 | #$TTL 3600 ; 1 hour
|
---|
| 339 | #example.invalid IN SOA test.example.invalid. test.example.invalid. (
|
---|
| 340 | # 2020082500 ; serial
|
---|
| 341 | # 7200 ; refresh (2 hours)
|
---|
| 342 | # 900 ; retry (15 minutes)
|
---|
| 343 | # 604800 ; expire (1 week)
|
---|
| 344 | # 3600 ; minimum (1 hour)
|
---|
| 345 | # )
|
---|
| 346 | # NS olddns.example.com.
|
---|
| 347 | # MX 1 fred.foo.bar.invalid.
|
---|
| 348 | #$ORIGIN example.invalid.
|
---|
| 349 | #foo A 192.168.16.45
|
---|
[818] | 350 | $foundtypes{$type}++;
|
---|
[812] | 351 |
|
---|
[818] | 352 | ##fixme: strip trailing . here? dnsadmin's normalized internal format omits it, some validation fails or may go funky
|
---|
| 353 |
|
---|
[812] | 354 | if ($type eq 'SOA') {
|
---|
[813] | 355 | my ($ns, $adminmail) = ($rdata =~ /([\w.]+)\s+([\w.]+)\s+\(/);
|
---|
[817] | 356 | die "Can't parse gibberish SOAish record: $rec\n" if !$ns;
|
---|
[813] | 357 | $rdata =~ s/([\w.]+)\s+([\w.]+)\s+\(\s*//;
|
---|
[812] | 358 |
|
---|
[813] | 359 | # There are probably more efficient ways to do this but the SOA record
|
---|
| 360 | # format is essentially character based, not line-based.
|
---|
| 361 | # In theory the SOA serial etc may be spread over up to 5 lines, in any combination.
|
---|
[812] | 362 |
|
---|
[813] | 363 | # Parse fields from $rdata if present
|
---|
| 364 | my @soabits;
|
---|
| 365 | my @soafirst = split /\s+/, $rdata;
|
---|
| 366 | while (my $f = shift @soafirst) {
|
---|
| 367 | last if $f !~ /^\d/;
|
---|
| 368 | push @soabits, $f;
|
---|
| 369 | }
|
---|
| 370 |
|
---|
| 371 | # Read more lines if we don't have enough SOA fields filled
|
---|
| 372 | while (scalar(@soabits) < 5) {
|
---|
| 373 | my $tmp = <>;
|
---|
| 374 | $tmp =~ s/^\s*//;
|
---|
| 375 | my @tmpsoa = split /\s+/, $tmp;
|
---|
| 376 | while (my $f = shift @tmpsoa) {
|
---|
| 377 | last if $f !~ /^\d/;
|
---|
| 378 | push @soabits, $f;
|
---|
| 379 | }
|
---|
| 380 | if (scalar(@soabits) == 5) {
|
---|
| 381 | last;
|
---|
| 382 | }
|
---|
| 383 | }
|
---|
[818] | 384 | # $dnsdb->{dbh}->do("UPDATE [zonetable] SET serial = ? WHERE [idfield] = ?");
|
---|
| 385 | # $dnsdb->{dbh}->do("INSERT INTO records () VALUES ()");
|
---|
| 386 | # next;
|
---|
| 387 | #Zfqdn:mname:rname:ser:ref:ret:exp:min:ttl:timestamp:lo
|
---|
| 388 | #print "Z$zname:$ns:$adminmail:$soabits[0]:$soabits[1]:$soabits[2]:$soabits[3]:$soabits[4]:$ttl\n";
|
---|
[813] | 389 | } # SOA
|
---|
| 390 |
|
---|
[818] | 391 |
|
---|
| 392 | # we're using DNSDB::addrec(), so we'll skip detailed validation of other records. Most won't need further breakdown
|
---|
| 393 |
|
---|
| 394 | elsif ($type eq 'A') {
|
---|
| 395 | #print "+$curlabel:$rdata:$ttl\n";
|
---|
| 396 | }
|
---|
| 397 |
|
---|
| 398 | elsif ($type eq 'NS') {
|
---|
| 399 | #print "\&$curlabel::$rdata:$ttl\n";
|
---|
| 400 | }
|
---|
| 401 |
|
---|
| 402 | elsif ($type eq 'CNAME') {
|
---|
| 403 | #print "C$curlabel:$rdata:$ttl\n";
|
---|
| 404 | }
|
---|
| 405 |
|
---|
| 406 | elsif ($type eq 'PTR') {
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 | elsif ($type eq 'MX') {
|
---|
| 410 | ($distance) = ($rdata =~ /^(\d+)\s+/);
|
---|
| 411 | if (!defined($distance)) {
|
---|
| 412 | warn "malformed MX record: $origrec, skipping\n";
|
---|
| 413 | next;
|
---|
| 414 | }
|
---|
| 415 | $rdata =~ s/^\d+\s+//;
|
---|
| 416 | }
|
---|
| 417 |
|
---|
[813] | 418 | elsif ($type eq 'TXT') {
|
---|
[818] | 419 | # Quotes may arguably be syntactically required, but they're not actually part of the record data
|
---|
[808] | 420 | $rdata =~ s/^"//;
|
---|
| 421 | $rdata =~ s/"$//;
|
---|
[818] | 422 | #print "'$curlabel:$rdata:$ttl\n";
|
---|
[808] | 423 | }
|
---|
| 424 |
|
---|
[818] | 425 | elsif ($type eq 'RP') {
|
---|
| 426 | }
|
---|
[810] | 427 |
|
---|
[818] | 428 | elsif ($type eq 'AAAA') {
|
---|
| 429 | }
|
---|
| 430 |
|
---|
| 431 | elsif ($type eq 'SRV') {
|
---|
| 432 | ($distance, $weight, $port) = ($rdata =~ /^(\d+)\s+(\d+)\s+(\d+)\s+/);
|
---|
| 433 | if ( !defined($distance) || !defined($weight) || !defined($port) ) {
|
---|
| 434 | warn "malformed SRV record: $origrec, skipping\n";
|
---|
| 435 | next;
|
---|
| 436 | }
|
---|
| 437 | $rdata =~ s/^\d+\s+\d+\s+\d+\s+//;
|
---|
| 438 | }
|
---|
| 439 |
|
---|
| 440 | # basically a dedicated clone of TXT, not sure anything actually looks up type SPF.
|
---|
| 441 | # BIND autogenerates them from SPF TXT records.
|
---|
| 442 | elsif ($type eq 'SPF') {
|
---|
| 443 | # Quotes may arguably be syntactically required, but they're not actually part of the record data
|
---|
| 444 | $rdata =~ s/^"//;
|
---|
| 445 | $rdata =~ s/"$//;
|
---|
| 446 | }
|
---|
| 447 |
|
---|
| 448 | # elsif ($type eq 'TXT') {
|
---|
| 449 | # elsif ($type eq 'TXT') {
|
---|
| 450 |
|
---|
| 451 | else {
|
---|
| 452 | warn "unsupported type $type, may not import correctly\n";
|
---|
| 453 | }
|
---|
| 454 |
|
---|
[808] | 455 | no warnings qw(uninitialized);
|
---|
[818] | 456 | #print "parsed: '$curlabel' '$class' '$ttl' '$type'->'$itype' '$rdata'\n";
|
---|
[808] | 457 | #print;
|
---|
| 458 | #;imap IN 900 CNAME deepnet.cx.
|
---|
| 459 | ##fixme: not sure how to handle the case where someone leaves off the class.
|
---|
[810] | 460 | if ($doimport) {
|
---|
| 461 | my ($code, $msg);
|
---|
| 462 | if ($rev eq 'n') {
|
---|
[818] | 463 | ($code,$msg) = $dnsdb->addRec('n', $rev, $zid, \$curlabel, \$itype, \$rdata, $ttl,
|
---|
| 464 | $location, undef, undef, $distance, $weight, $port);
|
---|
[810] | 465 | } else {
|
---|
[818] | 466 | ($code,$msg) = $dnsdb->addRec('y', $rev, $zid, \$rdata, \$itype, \$curlabel, $ttl,
|
---|
| 467 | $location, undef, undef, $distance, $weight, $port);
|
---|
[810] | 468 | }
|
---|
| 469 | print "$code: $msg\n";
|
---|
[809] | 470 | }
|
---|
[817] | 471 | # $i++;
|
---|
[808] | 472 | }
|
---|
[810] | 473 |
|
---|
| 474 |
|
---|
| 475 | #print Dumper \%amap;
|
---|
[811] | 476 | #print Dumper \%namemap;
|
---|
| 477 | #print Dumper \%cmap;
|
---|
| 478 |
|
---|
[818] | 479 | #foreach my $n (keys %amap) {
|
---|
| 480 | # foreach my $ip (@{$amap{$n}}) {
|
---|
| 481 | ##print "$ip $n\n";
|
---|
| 482 | # push @{$namemap{$ip}}, $n unless grep $n, @{$namemap{$ip}};
|
---|
| 483 | # }
|
---|
| 484 | #}
|
---|
[810] | 485 |
|
---|
[818] | 486 | #foreach my $c (keys %cmap) {
|
---|
| 487 | # if ($amap{$c}) {
|
---|
| 488 | # print Dumper(\@{$amap{$c}});
|
---|
| 489 | # }
|
---|
| 490 | ## print $amap{$c};
|
---|
| 491 | #}
|
---|
[811] | 492 |
|
---|
| 493 | # cname targ -> IP
|
---|
| 494 |
|
---|
| 495 | #foreach my $ip (sort keys %namemap) {
|
---|
| 496 | # print "$ip ".join(' ', @{$namemap{$ip}})."\n";
|
---|
| 497 | #}
|
---|
| 498 |
|
---|
[817] | 499 | $dnsdb->{dbh}->rollback;
|
---|
[818] | 500 |
|
---|
| 501 | foreach my $t (keys %foundtypes) {
|
---|
| 502 | print "found $t: $foundtypes{$t}\n";
|
---|
| 503 | }
|
---|