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
|
#!/usr/bin/perl -w
#
# Project : ipv6calc/databases/ipv6-assignment
# File : create-registry-list.pl
# Version : $Id: create-registry-list.pl,v 1.7 2011/10/08 11:50:13 peter Exp $
# Copyright : 2005 by Simon Arlott (initial implementation of global file only)
# 2005-2011 by Peter Bieringer <pb (at) bieringer.de> (further extensions)
# License : GNU GPL v2
#
# Information:
# Perl program which creates IPv6 address assignement header
# Uses code from ipv4-assignment
use strict;
use Net::IP;
use Math::BigInt;
use XML::Simple;
my $debug = (0xffff & ~(0x10 | 0x20 | 0x100 | 0x40));
# Debugging
# 0x0010: proceed registry files
# 0x0020: proceed global file
# 0x0040: fill data
# 0x0100: subnet mask generation
my $OUTFILE = "dbipv6addr_assignment.h";
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time - 48*60*60);
$year = 1900 + $year;
$mon = sprintf "%02d", $mon + 1;
$mday = sprintf "%02d", $mday;
my $global_file = "../registries/iana/ipv6-unicast-address-assignments.xml";
my @files = (
"../registries/arin/delegated-arin-latest",
"../registries/ripencc/delegated-ripencc-latest",
"../registries/apnic/delegated-apnic-latest",
"../registries/lacnic/delegated-lacnic-latest",
"../registries/afrinic/delegated-afrinic-latest"
);
my (@arin, @apnic, @ripencc, @iana, @lacnic, @afrinic, @reserved, @s6to4, @s6bone);
my %date_created;
# Generate subnet powers
my %subnet_masks;
print "Generate subnet masks\n";
for (my $i = 0; $i <= 64; $i++) {
my $mask;
$mask = Math::BigInt->new("0xffffffffffffffff");
$mask->blsft(64 - $i);
#$mask->bnot();
my $ip_ipv6_int = $mask->copy();
$ip_ipv6_int->brsft(32);
$ip_ipv6_int->band("0xffffffff");
$subnet_masks{$i}->{'mask_00_31'} = sprintf("%08x", $ip_ipv6_int);
$ip_ipv6_int = $mask->copy();
$ip_ipv6_int->band("0xffffffff");
$subnet_masks{$i}->{'mask_32_63'} = sprintf("%08x", $ip_ipv6_int);
printf "Prefix length %3d: ", $i if ($debug & 0x100);
printf " mask_00_31=" . $subnet_masks{$i}->{'mask_00_31'} . " mask_32_63=" . $subnet_masks{$i}->{'mask_32_63'} . "\n" if ($debug & 0x100);
};
# Fill global assignement (IPv6 should be more hierarchical than IPv4)
sub proceed_global() {
# Proceed first global IANA file
print "Proceed file (XML): " . $global_file . "\n";
my $xs = XML::Simple->new();
my $xd = $xs->XMLin($global_file) || die "Cannot open/parse file: $global_file";
for my $e1 ($xd->{'updated'}) {
$e1 =~ s/-//go;
$date_created{'IANA'} = $e1;
print "Found create date: " . $e1 . "\n";
last;
};
for my $e1 ($xd->{'record'}) {
for my $e2 (@$e1) {
#print $$e2{'prefix'} . ":" . $$e2{'description'} . "\n";
my $ipv6 = $$e2{'prefix'};
my $reg = $$e2{'description'};
# Check for > /32
my ($addr, $length) = split /\//, $ipv6;
if ($length > 32) {
die "Currently unsupported prefix length (>32): $ipv6";
};
print "reg=" . $reg . " addr=$ipv6\n" if ($debug & 0x20);
$reg = uc($reg);
$reg =~ s/RIPE NCC/RIPENCC/g;
#print $$e2{'prefix'} . ":" . $reg . "\n";
if ($reg eq "ARIN" ) {
push @arin, $ipv6;
} elsif ($reg eq "APNIC" ) {
push @apnic, $ipv6;
} elsif ($reg eq "RIPENCC" ) {
push @ripencc, $ipv6;
} elsif ($reg eq "IANA" ) {
push @iana, $ipv6;
} elsif ($reg eq "LACNIC" ) {
push @lacnic, $ipv6;
} elsif ($reg eq "AFRINIC" ) {
push @afrinic, $ipv6;
} elsif ($reg eq "RESERVED" ) {
push @reserved, $ipv6;
} elsif ($reg eq "6TO4" ) {
push @s6to4, $ipv6;
} elsif ($reg eq "6BONE" ) {
push @s6bone, $ipv6;
} else {
die "Unsupported registry: " . $reg . "\n";
};
};
};
};
## Main
proceed_global();
foreach my $file (@files) {
print "Proceed file: " . $file . "\n";
open(FILE, "<$file") || die "Cannot open file: $file";
my $line;
my %cache;
while (<FILE>) {
$line = $_;
chomp $line;
# catch date line
if ($line =~ /^2\|([^\|]+)\|.*\|([0-9]{8})\|[^\|]*$/o) {
$date_created{uc($1)} = $2;
print "Found create date: " . $2 . "\n";
next;
};
# skip not proper lines
if ( ! ( $line =~ /\|ipv6\|/ ) ) { next; };
if ( $line =~ /\|\*\|/ ) { next; };
#print $line . "\n";
my ($reg, $tld, $token, $ipv6, $prefixlen, $date, $status) = split /\|/, $line;
if ( $token ne "ipv6" ) { next; };
$reg = uc($reg);
$reg =~ s/\wRIPE\w/RIPENCC/g;
# get registry array
my $parray;
if ($reg eq "ARIN" ) {
$parray = \@arin;
} elsif ($reg eq "APNIC" ) {
$parray = \@apnic;
} elsif ($reg eq "RIPENCC" ) {
$parray = \@ripencc;
} elsif ($reg eq "IANA" ) {
$parray = \@iana;
} elsif ($reg eq "LACNIC" ) {
$parray = \@lacnic;
} elsif ($reg eq "AFRINIC" ) {
$parray = \@afrinic;
} else {
die "Unsupported registry: " . $reg;
};
print "reg=" . $reg . " ipv6=" . $ipv6 . "/" . $prefixlen . "\n" if ($debug & 0x10);
# Check for already included in range:
my $ip_ipv6 = new Net::IP($ipv6) || die "Can't create IPv6 object from ipv6=$ipv6";
my $flag = 0;
my $ip_ipv6_check;
my $test;
Label_restart:
for (my $i = 0; $i < scalar(@$parray); $i++) {
my $ipv6_check = $$parray[$i];
print " check against ipv6=" . $ipv6_check if ($debug & 0x10);
if (defined $cache{$ipv6_check}) {
$ip_ipv6_check = $cache{$ipv6_check};
} else {
$ip_ipv6_check = new Net::IP($ipv6_check) || die "Can't create IPv6 object from ipv6=$ipv6_check";
$cache{$ipv6_check} = $ip_ipv6_check;
};
$test = $ip_ipv6->overlaps($ip_ipv6_check);
if ($test == $Net::IP::IP_IDENTICAL) {
print " IDENTICAL\n" if ($debug & 0x10);
$flag = 1;
last;
} elsif ($test == $Net::IP::IP_A_IN_B_OVERLAP) {
print " INCLUDED\n" if ($debug & 0x10);
$flag = 1;
last;
} elsif ($test == $Net::IP::IP_B_IN_A_OVERLAP) {
# check value is included in ipv6 range
print " REMOVE\n" if ($debug & 0x10);
goto("Label_restart");
} else {
print " NO MATCH\n" if ($debug & 0x10);
};
};
if ($flag == 1) {
next;
};
# Check for > /64
if ($prefixlen > 64) {
die "Currently unsupported prefix length (>64): $ipv6/$prefixlen";
};
# Push into array
push @$parray, $ipv6 . "/" . $prefixlen;
};
close(FILE);
};
# Create hash
my %data;
sub fill_data($$) {
my $parray = shift || die "missing array pointer";
my $reg = shift || die "missing registry";
print "Fill data for registry: $reg\n";
foreach my $entry (sort @$parray) {
my ($ipv6, $length) = split /\//, $entry;
my $ip_ipv6 = new Net::IP($entry);
print " ipv6=$entry" if ($debug & 0x40);
my $ip_ipv6_int = $ip_ipv6->intip();
my $ip_ipv6_int_32_63 = $ip_ipv6_int->copy();
# MSB 00-31
$ip_ipv6_int->brsft(96);
my $ipv6_hex_00_31 = sprintf("%08x", $ip_ipv6_int);
# MSB 32-63
$ip_ipv6_int_32_63->brsft(64);
$ip_ipv6_int_32_63->band("0xffffffff");
my $ipv6_hex_32_63 = sprintf("%08x", $ip_ipv6_int_32_63);
$data{$ipv6}->{'ipv6_00_31'} = $ipv6_hex_00_31;
$data{$ipv6}->{'ipv6_32_63'} = $ipv6_hex_32_63;
my $mask_00_31 = $subnet_masks{$ip_ipv6->prefixlen()}->{'mask_00_31'};
my $mask_32_63 = $subnet_masks{$ip_ipv6->prefixlen()}->{'mask_32_63'};
$data{$ipv6}->{'mask_00_31'} = $mask_00_31;
$data{$ipv6}->{'mask_32_63'} = $mask_32_63;
$data{$ipv6}->{'mask_length'} = $length;
$data{$ipv6}->{'reg'} = $reg;
print " ipv6_hex_00_31=$ipv6_hex_00_31 ipv6_hex_32_63=$ipv6_hex_32_63 mask_00_31=$mask_00_31 mask_00_31=$mask_32_63 hex reg=$reg\n" if ($debug & 0x40);
};
};
&fill_data(\@apnic , "APNIC");
&fill_data(\@ripencc, "RIPENCC");
&fill_data(\@arin , "ARIN");
&fill_data(\@lacnic , "LACNIC");
&fill_data(\@afrinic, "AFRINIC");
&fill_data(\@iana , "IANA");
&fill_data(\@s6to4 , "6TO4");
&fill_data(\@s6bone , "6BONE");
# Create header file
print "Create outfile now: " . $OUTFILE . "\n";
open(OUT, ">$OUTFILE") || die "Cannot open outfile: $OUTFILE";
# Header
my $now_string = localtime;
print OUT qq| /*
* Project : ipv6calc
* File : dbipv6_assignment.h
|;
print OUT " * Version : \$I";
print OUT "d:\$\n";
print OUT qq| * Generated : $now_string
* Data copyright: IANA ARIN RIPENCC APNIC LACNIC AFRINIC
*
* Information:
* Additional header file for libipv6addr.c
*/
|;
# print creation dates
my $string = "";
for my $reg (sort keys %date_created) {
if (length($string) > 0) {
$string .= " ";
};
$string .= $reg . "/" . $date_created{$reg};
};
print OUT "static const char* dbipv6addr_registry_status = \"$string\";\n";
# Main data structure
print OUT qq|
static const s_ipv6addr_assignment dbipv6addr_assignment[] = {
|;
foreach my $ipv6 (sort keys %data) {
printf OUT "\t{ 0x%s, 0x%s, 0x%s, 0x%s, %3d, \"%s\" },\n", $data{$ipv6}->{'ipv6_00_31'}, $data{$ipv6}->{'ipv6_32_63'}, $data{$ipv6}->{'mask_00_31'}, $data{$ipv6}->{'mask_32_63'}, $data{$ipv6}->{'mask_length'}, $data{$ipv6}->{'reg'};
};
print OUT qq|};
|;
close(OUT);
print "Finished\n";
|