7 use Math::Trig qw(deg2rad pip2 great_circle_distance);
12 my $originfile = shift @ARGV;
13 my $clusterfile = shift @ARGV;
14 my $zone = shift @ARGV;
15 my $targetoriginfile = shift @ARGV;
16 my $origins = YAML::LoadFile($originfile);
17 my $clusters = YAML::LoadFile($clusterfile);
20 # Initialise cluster details
21 while (my($name,$cluster) = each %$clusters)
23 if ($cluster->{servers})
25 $cluster->{bandwidth} = 0;
27 foreach my $server (@{$cluster->{servers}})
29 $server->{cluster} = $cluster;
30 $cluster->{bandwidth} = $cluster->{bandwidth} + $server->{bandwidth};
32 push @servers, $server;
39 pingdom => $cluster->{pingdom},
40 bandwidth => $cluster->{bandwidth},
41 ipv4 => $cluster->{ipv4},
42 ipv6 => $cluster->{ipv6}
45 $cluster->{servers} = [ $server ];
47 push @servers, $server;
50 $cluster->{name} = $name;
51 $cluster->{status} = "down";
54 # Initialise server details
55 foreach my $server (@servers)
57 $server->{status} = "up";
60 # If pingdom support is enabled then check which servers are up
61 if ($ENV{PINGDOM_USERNAME} && $ENV{PINGDOM_PASSWORD})
63 my $ua = LWP::UserAgent->new;
67 $ua->default_header("App-Key", "2cohi62u5haxvqmypk3ljqqrze1jufrh");
68 $ua->credentials("api.pingdom.com:443", "Pingdom API", $ENV{PINGDOM_USERNAME}, $ENV{PINGDOM_PASSWORD});
72 $cache = YAML::LoadFile("pingdom.yml");
79 foreach my $server (@servers)
81 if (my $checkid = $server->{pingdom})
83 my $response = $ua->get("https://api.pingdom.com/api/2.0/checks/${checkid}");
85 if ($response->is_success)
87 my $check = decode_json($response->content);
89 $server->{status} = $check->{check}->{status};
90 $cache->{$server->{pingdom}} = $check->{check}->{status};
94 $server->{status} = $cache->{$server->{pingdom}} || "down";
99 $server->{status} = "down";
103 YAML::DumpFile("pingdom.yml", $cache);
106 # Mark a cluster as up if any servers are up
107 foreach my $server (@servers)
109 if ($server->{status} eq "up")
111 $server->{cluster}->{status} = "up";
115 $server->{cluster}->{bandwidth} = $server->{cluster}->{bandwidth} - $server->{bandwidth};
119 # Create target origins object
120 my $targetorigins = {};
122 # Initialise cluster details
123 while (my($name,$cluster) = each %$clusters)
125 $cluster->{bandwidth_limit} = $cluster->{bandwidth} * 1024 * 1024;
126 $cluster->{bandwidth_used} = 0;
128 $targetorigins->{$cluster->{name}} = {
129 code => $cluster->{name},
130 name => $cluster->{name},
131 lat => $cluster->{lat},
132 lon => $cluster->{lon},
139 # Scan origins and work out which clusters each can use
140 foreach my $origin (values %$origins)
142 foreach my $cluster (values %$clusters)
144 my $match = match_origin($cluster, $origin);
146 if ($cluster->{status} eq "up" && $match ne "denied")
148 my $priority = $match eq "preferred" ? 20 : 10;
149 my $distance = distance($origin->{lat}, $origin->{lon}, $cluster->{lat}, $cluster->{lon});
152 origin => $origin, cluster => $cluster,
153 priority => $priority, distance => $distance
159 # Allocate each country to a cluster
160 allocate_clusters(@mappings);
162 # If we failed to allocate every origin then loop, increasing
163 # the bandwidth for each cluster by a little and retrying until
164 # we manage to allocate everything
165 while (grep { !exists($_->{cluster}) } values %$origins)
167 # Clear any existing mappings of countries to clusters
168 foreach my $origin (values %$origins)
170 delete $origin->{cluster};
173 # Reset bandwidth usage for clusters and increase limits by 10%
174 foreach my $cluster (values %$clusters)
176 $cluster->{bandwidth_used} = 0;
177 $cluster->{bandwidth_limit} = $cluster->{bandwidth_limit} * 1.1;
180 # Try the allocate again
181 allocate_clusters(@mappings);
184 # Create JSON collection object
188 my $zonefile = IO::File->new("> data/${zone}") || die "$!";
189 my $jsonfile = IO::File->new("> json/${zone}.json") || die "$!";
191 # Output details for each country
192 foreach my $origin (values %$origins)
194 my $cluster = $origin->{cluster};
195 my $clon = $origin->{lon};
196 my $clat = $origin->{lat};
197 my $slon = $cluster->{lon};
198 my $slat = $cluster->{lat};
200 if ($clon > 0 && $slon < 0 && 360 + $slon - $clon < $clon - $slon)
204 elsif ($slon > 0 && $clon < 0 && 360 + $clon - $slon < $slon - $clon)
209 $zonefile->print("# $origin->{name}\n");
210 $zonefile->print("C\L$origin->{code}\E.${zone}:$cluster->{name}.${zone}:600\n");
215 type => "LineString",
216 coordinates => [ [ $clon, $clat ], [ $slon, $slat ] ]
219 origin => $origin->{name},
220 server => $cluster->{name},
221 colour => $cluster->{colour}
225 $targetorigins->{$cluster->{name}}->{bandwidth} += $origin->{bandwidth};
228 # Header for default records
229 $zonefile->print("# Unknown origins\n");
231 # Output default records for IPs that can't be mapped to a country
232 while (my($name,$cluster) = each %$clusters)
234 if (my $default = $cluster->{default})
236 output_server($zonefile, "${default}.${zone}", $cluster);
238 elsif (exists($cluster->{default}))
240 output_server($zonefile, "${zone}", $cluster);
244 # Header for underlying servers
245 $zonefile->print("# Servers\n");
247 # Output A records for each cluster
248 while (my($name,$cluster) = each %$clusters)
250 output_server($zonefile, "${name}.${zone}", $cluster);
253 # Output the GeoJSON text
254 $jsonfile->print(encode_json(\@json));
256 # Close the output files
260 # Output the target details in origin format if required
261 YAML::DumpFile($targetoriginfile, $targetorigins) if $targetoriginfile;
266 # Match an origin against a cluster
274 if ($cluster->{preferred} &&
275 $cluster->{preferred}->{countries} &&
276 grep { $_ eq $origin->{country} } @{$cluster->{preferred}->{countries}})
278 $match = "preferred";
280 elsif ($cluster->{allowed} &&
281 $cluster->{allowed}->{countries} &&
282 grep { $_ eq $origin->{country} } @{$cluster->{allowed}->{countries}})
286 elsif ($cluster->{denied} &&
287 $cluster->{denied}->{countries} &&
288 grep { $_ eq $origin->{country} } @{$cluster->{denied}->{countries}})
292 elsif ($cluster->{preferred} &&
293 $cluster->{preferred}->{continents} &&
294 grep { $_ eq $origin->{continent} } @{$cluster->{preferred}->{continents}})
296 $match = "preferred";
298 elsif ($cluster->{allowed} &&
299 $cluster->{allowed}->{continents} &&
300 grep { $_ eq $origin->{continent} } @{$cluster->{allowed}->{continents}})
304 elsif ($cluster->{denied} &&
305 $cluster->{denied}->{continents} &&
306 grep { $_ eq $origin->{continent} } @{$cluster->{denied}->{continents}})
310 elsif ($cluster->{allowed})
323 # Compute the great circle distance between two points
327 my $lat1 = deg2rad(shift);
328 my $lon1 = deg2rad(shift);
329 my $lat2 = deg2rad(shift);
330 my $lon2 = deg2rad(shift);
332 return great_circle_distance($lon1, pip2 - $lat1, $lon2, pip2 - $lat2);
336 # Allocate each origin to a cluster
338 sub allocate_clusters
340 my @mappings = sort { compare_mappings($a, $b) } @_;
342 # Loop over the mappings, trying to assign each origin to the
343 # nearest cluster, but subject to the bandwidth limits
344 while (my $mapping = shift @mappings)
348 push @group, $mapping;
350 while (@mappings && compare_mappings($mapping, $mappings[0]) == 0)
352 push @group, shift @mappings;
355 for my $mapping (sort compare_bandwidth @group)
357 my $origin = $mapping->{origin};
358 my $cluster = $mapping->{cluster};
360 if (!exists($origin->{cluster}) &&
361 $cluster->{bandwidth_used} + $origin->{bandwidth} <= $cluster->{bandwidth_limit})
363 $origin->{cluster} = $cluster;
364 $cluster->{bandwidth_used} = $cluster->{bandwidth_used} + $origin->{bandwidth};
373 # Compare two mappings to decide which to use
380 return $b->{priority} <=> $a->{priority} ||
381 $a->{distance} <=> $b->{distance};
385 # Compare two mappings to decide which to try first
387 sub compare_bandwidth
389 my $a_used = ( $a->{cluster}->{bandwidth_used} * 100.0 ) / ( $a->{cluster}->{bandwidth_limit} * 1.0 );
390 my $b_used = ( $b->{cluster}->{bandwidth_used} * 100.0 ) / ( $b->{cluster}->{bandwidth_limit} * 1.0 );
392 return $a_used <=> $b_used;
396 # Output DNS records for a server
400 my $zonefile = shift;
404 foreach my $server (@{$cluster->{servers}})
406 if ($server->{status} eq "up")
408 $zonefile->print("+${name}:$server->{ipv4}:600\n");
412 # $zonefile->print("3${name}:$server->{ipv6}:600\n");