X-Git-Url: https://git.openstreetmap.org/dns.git/blobdiff_plain/73daf6886140777c2cb93593ca62be39c43e0780..3ebd791ba7e51d33b0e93bd79cc0aaa6acfc847f:/bin/mkgeo diff --git a/bin/mkgeo b/bin/mkgeo index bd5bfbb..0b38881 100755 --- a/bin/mkgeo +++ b/bin/mkgeo @@ -1,5 +1,7 @@ #!/usr/bin/perl +use v5.12; + use strict; use warnings; @@ -15,6 +17,7 @@ my $zone = shift @ARGV; my $targetoriginfile = shift @ARGV; my $origins = YAML::LoadFile($originfile); my $clusters = YAML::LoadFile($clusterfile); +my $gdnsname = shift @ARGV; my @servers; # Initialise cluster details @@ -201,8 +204,11 @@ while (grep { !exists($_->{cluster}) } values %$origins) my @json; # Open output files -my $zonefile = IO::File->new("> data/${zone}") || die "$!"; -my $jsonfile = IO::File->new("> json/${zone}.json") || die "$!"; +my $zonefile = IO::File->new("> include/${zone}.js") || die "$!"; +my $jsonfile = IO::File->new("> json/${zone}.openstreetmap.org.json") || die "$!"; + +# Output headers +$zonefile->print("var \U${zone}\E_RECORDS = [\n"); # Output details for each country foreach my $origin (sort { $a->{name} cmp $b->{name} } values %$origins) @@ -222,8 +228,10 @@ foreach my $origin (sort { $a->{name} cmp $b->{name} } values %$origins) $clon = $clon + 360; } - $zonefile->print("# $origin->{name}\n"); - $zonefile->print("C\L$origin->{code}\E.${zone}:$cluster->{name}.${zone}:600\n"); + if (!defined($gdnsname)) + { + $zonefile->print(" CNAME(\"\L$origin->{code}\E.${zone}\", \"$cluster->{name}.${zone}.openstreetmap.org.\", TTL(\"10m\")),\n"); + } push @json, { type => "Feature", @@ -241,41 +249,128 @@ foreach my $origin (sort { $a->{name} cmp $b->{name} } values %$origins) $targetorigins->{$cluster->{name}}->{bandwidth} += $origin->{bandwidth}; } -# Header for default records -$zonefile->print("# Unknown origins\n"); - -# Output default records for IPs that can't be mapped to a country -foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) +# Skip default records if we don't need them +if (!defined($gdnsname)) { - my $name = $cluster->{name}; - - if (my $default = $cluster->{default}) + # Output default records for IPs that can't be mapped to a country + foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) { - output_server($zonefile, "${default}.${zone}", $cluster); - } - elsif (exists($cluster->{default})) - { - output_server($zonefile, "${zone}", $cluster); + my $name = $cluster->{name}; + + if (my $default = $cluster->{default}) + { + output_server($zonefile, "${default}.${zone}", $cluster, 0); + } + elsif (exists($cluster->{default})) + { + output_server($zonefile, "${zone}", $cluster, 0); + } } } -# Header for underlying servers -$zonefile->print("# Servers\n"); - # Output A records for each cluster foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) { my $name = $cluster->{name}; - output_server($zonefile, "${name}.${zone}", $cluster); + if (@{$cluster->{servers}} > 1) + { + output_server($zonefile, "${name}-%02d.${zone}", $cluster, 1); + } + else + { + output_server($zonefile, "${name}.${zone}", $cluster, 1); + } } # Output the GeoJSON text $jsonfile->print(encode_json(\@json)); +# Output footers +$zonefile->print("];\n"); + # Close the output files -$jsonfile->close(); $zonefile->close(); +$zonefile->close(); + +# Output gdnsd configuration +if (defined($gdnsname)) +{ + my $gdnsmapfile = IO::File->new("> gdns/${gdnsname}.map") || die "$!"; + my $gdnsresourcefile = IO::File->new("> gdns/${gdnsname}.resource") || die "$!"; + my $gdnsweightedfile = IO::File->new("> gdns/${gdnsname}.weighted") || die "$!"; + my $continent = ""; + + $gdnsmapfile->print("${gdnsname} => {\n"); + $gdnsmapfile->print(" geoip2_db => /usr/share/GeoIP/GeoLite2-Country.mmdb\n"); + $gdnsmapfile->print(" datacenters => [" . join(",", sort(keys(%$clusters))) . "]\n"); + $gdnsmapfile->print(" map => {\n"); + $gdnsmapfile->print(" default => [" . join(",", sort(map { $_->{name} } grep { $_->{default} } values(%$clusters))) . "]\n"); + + foreach my $origin (sort { $a->{continent} cmp $b->{continent} || $a->{code} cmp $b->{code} } values %$origins) + { + my $code = $origin->{code}; + my $cluster = $origin->{cluster}->{name}; + + next if $code eq "XK"; + + if ($continent ne $origin->{continent}) + { + $gdnsmapfile->print(" }\n") if $continent; + + $continent = $origin->{continent}; + + $gdnsmapfile->print(" ${continent} => {\n"); + } + + $gdnsmapfile->print(" ${code} => [${cluster}]\n"); + } + + $gdnsmapfile->print(" }\n") if $continent; + + $gdnsmapfile->print(" }\n"); + $gdnsmapfile->print("}\n"); + + $gdnsresourcefile->print("${gdnsname} => {\n"); + $gdnsresourcefile->print(" map => ${gdnsname}\n"); + $gdnsresourcefile->print(" dcmap => {\n"); + + foreach my $cluster (sort { $a->{name} cmp $b->{name} } values %$clusters) + { + my $name = $cluster->{name}; + + if (@{$cluster->{servers}} > 1 && grep { $_->{status} eq "up" } @{$cluster->{servers}}) + { + $gdnsweightedfile->print("${name} => {\n"); + + while (my($index,$server) = each @{$cluster->{servers}}) + { + if ($server->{status} eq "up") + { + my $number = sprintf("%02d", $index + 1); + my $bandwidth = $server->{bandwidth}; + + $gdnsweightedfile->print(" ${name}-${number} = [ ${name}-${number}.${zone}.openstreetmap.org., ${bandwidth} ]\n"); + } + } + + $gdnsweightedfile->print("}\n"); + + $gdnsresourcefile->print(" ${name} => %weighted!${name}\n"); + } + else + { + $gdnsresourcefile->print(" ${name} => ${name}.${zone}.openstreetmap.org.\n"); + } + } + + $gdnsresourcefile->print(" }\n"); + $gdnsresourcefile->print("}\n"); + + $gdnsweightedfile->close(); + $gdnsresourcefile->close(); + $gdnsmapfile->close(); +} # Output the target details in origin format if required YAML::DumpFile($targetoriginfile, $targetorigins) if $targetoriginfile; @@ -292,8 +387,20 @@ sub match_origin my $match; if ($cluster->{preferred} && - $cluster->{preferred}->{countries} && - grep { $_ eq $origin->{country} } @{$cluster->{preferred}->{countries}}) + $cluster->{preferred}->{origins} && + grep { $_ eq $origin->{name} } @{$cluster->{preferred}->{origins}}) + { + $match = "preferred"; + } + elsif ($cluster->{allowed} && + $cluster->{allowed}->{origins} && + grep { $_ eq $origin->{name} } @{$cluster->{allowed}->{origins}}) + { + $match = "allowed"; + } + elsif ($cluster->{preferred} && + $cluster->{preferred}->{countries} && + grep { $_ eq $origin->{country} } @{$cluster->{preferred}->{countries}}) { $match = "preferred"; } @@ -420,16 +527,17 @@ sub output_server my $zonefile = shift; my $name = shift; my $cluster = shift; + my $all = shift; - foreach my $server (@{$cluster->{servers}}) + while (my($index,$server) = each @{$cluster->{servers}}) { - if ($server->{status} eq "up") + if ($all || $server->{status} eq "up") { - $zonefile->print("+${name}:$server->{ipv4}:600\n"); + $zonefile->printf(" A(\"${name}\", \"$server->{ipv4}\", TTL(\"10m\")),\n", $index + 1); if ($server->{ipv6}) { -# $zonefile->print("3${name}:$server->{ipv6}:600\n"); + $zonefile->printf(" AAAA(\"${name}\", \"$server->{ipv6}\", TTL(\"10m\")),\n", $index + 1); } } }