[15] | 1 | #!/usr/bin/perl
|
---|
| 2 | # -T
|
---|
| 3 | # ipdb/cgi-bin/extras/db2rwhois.pl
|
---|
[2] | 4 | # Pull data from ipdb and mangle it into RWHOIS
|
---|
[15] | 5 | # Initial version 03/26/2004 kdeugau against IPDB v1
|
---|
| 6 | ###
|
---|
| 7 | # Revision info
|
---|
| 8 | # $Date: 2010-07-29 21:45:02 +0000 (Thu, 29 Jul 2010) $
|
---|
| 9 | # SVN revision $Rev: 453 $
|
---|
| 10 | # Last update by $Author: kdeugau $
|
---|
| 11 | ###
|
---|
[417] | 12 | # Copyright (C) 2004-2010 - Kris Deugau
|
---|
[2] | 13 |
|
---|
[15] | 14 | use strict;
|
---|
| 15 | use warnings;
|
---|
[2] | 16 | use DBI;
|
---|
| 17 | use NetAddr::IP;
|
---|
[371] | 18 | use File::Path 'rmtree';
|
---|
[417] | 19 | use POSIX qw(strftime);
|
---|
[2] | 20 |
|
---|
[417] | 21 | # don't remove! required for GNU/FHS-ish install from tarball
|
---|
| 22 | ##uselib##
|
---|
[2] | 23 |
|
---|
[417] | 24 | use MyIPDB;
|
---|
| 25 |
|
---|
| 26 | #$ENV{"PATH"} = "/bin;/usr/bin";
|
---|
| 27 |
|
---|
[371] | 28 | my @autharea;
|
---|
| 29 | my $authrw;
|
---|
| 30 | # Use the template file to allow us to keep persistent nodes aside from netblock data
|
---|
[420] | 31 | open AUTHTEMPLATE, "<$IPDB::rwhoisDataPath/rwhoisd.auth_template";
|
---|
[371] | 32 | my $template_persist;
|
---|
| 33 | while (<AUTHTEMPLATE>) {
|
---|
| 34 | next if /^##/;
|
---|
| 35 | $template_persist = 1 if /^[a-z]/i;
|
---|
| 36 | $autharea[0] .= $_;
|
---|
| 37 | }
|
---|
| 38 |
|
---|
[143] | 39 | my ($dbh,$msg) = connectDB_My;
|
---|
[2] | 40 |
|
---|
[143] | 41 | # For WHOIS purposes this may not be very useful. YMMV, we'll see.
|
---|
| 42 | #initIPDBGlobals($dbh);
|
---|
| 43 |
|
---|
[15] | 44 | my @masterblocks;
|
---|
[324] | 45 | my %netnameprefix;
|
---|
[15] | 46 |
|
---|
[371] | 47 | # Get the list of live directories for potential deletion
|
---|
[420] | 48 | opendir RWHOISROOT, $IPDB::rwhoisDataPath;
|
---|
[371] | 49 | my %rwhoisdirs;
|
---|
| 50 | foreach (readdir RWHOISROOT) {
|
---|
| 51 | $rwhoisdirs{$_} = 1 if /^net-/;
|
---|
| 52 | }
|
---|
| 53 | closedir RWHOISROOT;
|
---|
| 54 |
|
---|
| 55 | # prefetch alloctype data
|
---|
| 56 | my $sth = $dbh->prepare("select type,def_custid,arin_netname from alloctypes");
|
---|
| 57 | $sth->execute;
|
---|
| 58 | while (my @data = $sth->fetchrow_array) {
|
---|
| 59 | $netnameprefix{$data[0]} = $data[2];
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | # Get the list of masters to export
|
---|
| 63 | my $msth = $dbh->prepare("select cidr,ctime,mtime from masterblocks where rwhois='y'");
|
---|
| 64 | $msth->execute;
|
---|
| 65 |
|
---|
| 66 | # Prepare to select subblocks for each master
|
---|
| 67 | # Make sure to remove the private netblocks from this,
|
---|
| 68 | # no use or point in broadcasting our use of them.
|
---|
| 69 | # Also remove the details of our "reserved CORE/WAN" blocks; they're not critical.
|
---|
| 70 | my $ssth = $dbh->prepare("select cidr,custid,type,city,description,createstamp,modifystamp,swip ".
|
---|
| 71 | "from allocations where ".
|
---|
| 72 | "not (cidr <<= '192.168.0.0/16') and ".
|
---|
| 73 | "not (cidr <<= '172.16.0.0/12') and ".
|
---|
| 74 | "not (cidr <<= '10.0.0.0/8') and ".
|
---|
| 75 | "not (type = 'wr') and ".
|
---|
[453] | 76 | "((masklen(cidr) <=30 and family(cidr)=4) or (masklen(cidr) <=56 and family(cidr)=6)) and ".
|
---|
[371] | 77 | "cidr <<= ?");
|
---|
| 78 |
|
---|
| 79 | # Customer data, for those rare blocks we really need to delegate.
|
---|
| 80 | my $custsth = $dbh->prepare("select name,street,city,province,country,pocode,phone,tech_handle,special ".
|
---|
| 81 | "from customers where custid=?");
|
---|
| 82 |
|
---|
[2] | 83 | # Fill in data about our master blocks as allocated from ARIN
|
---|
| 84 | # We open separate files for each of these as appropriate.
|
---|
[371] | 85 | # Changes in master blocks are treated as complete new masters - since we're exporting
|
---|
| 86 | # all data every time, this isn't so terrible as it might seem.
|
---|
[15] | 87 | my $i=0;
|
---|
[371] | 88 | while (my @data = $msth->fetchrow_array()) {
|
---|
[2] | 89 |
|
---|
[15] | 90 | $masterblocks[$i] = new NetAddr::IP $data[0];
|
---|
[311] | 91 | my ($ctime,undef) = split /\s/, $data[1];
|
---|
[324] | 92 | my ($mtime,undef) = split /\s/, $data[2];
|
---|
[2] | 93 |
|
---|
[371] | 94 | print "$masterblocks[$i] $ctime $mtime\n";
|
---|
| 95 |
|
---|
[417] | 96 | my $date = strftime("%Y-%m-%d", localtime);
|
---|
[2] | 97 |
|
---|
[371] | 98 | my $rwnet = "net-".$masterblocks[$i]->addr."-".$masterblocks[$i]->masklen;
|
---|
[2] | 99 |
|
---|
[371] | 100 | # unflag the directory for deletion. Whee! Roundabout!
|
---|
| 101 | delete $rwhoisdirs{$rwnet};
|
---|
[2] | 102 |
|
---|
[371] | 103 | # Hokay. Gonna do checks *here* to see if we need to create new master trees
|
---|
[420] | 104 | my $netdatadir = "$IPDB::rwhoisDataPath/$rwnet";
|
---|
[371] | 105 | if (! -e $netdatadir) {
|
---|
| 106 | print " New master $masterblocks[$i]!\n";
|
---|
| 107 | print " Creating directories...\n";
|
---|
| 108 | mkdir $netdatadir;
|
---|
| 109 | mkdir "$netdatadir/attribute_defs";
|
---|
| 110 | mkdir "$netdatadir/data";
|
---|
| 111 | mkdir "$netdatadir/data/network";
|
---|
| 112 | mkdir "$netdatadir/data/org";
|
---|
| 113 | mkdir "$netdatadir/data/referral";
|
---|
| 114 |
|
---|
[417] | 115 | my $serial = strftime("%Y%m%d%H%M%S000", localtime);
|
---|
[371] | 116 |
|
---|
[417] | 117 | ##fixme: SOA should be different every time data changes, therefore need to rewrite this ~~ every export :(
|
---|
[371] | 118 | print " Creating SOA...\n";
|
---|
| 119 | open SOAFILE, ">$netdatadir/soa";
|
---|
| 120 | print SOAFILE qq(Serial-Number: $serial
|
---|
| 121 | Refresh-Interval: 3600
|
---|
| 122 | Increment-Interval: 1800
|
---|
| 123 | Retry-Interval: 1800
|
---|
| 124 | Time-To-Live: 86400
|
---|
[437] | 125 | Primary-Server: rwhois.$IPDB::domain:4321
|
---|
| 126 | Hostmaster: $IPDB::hostmaster
|
---|
[371] | 127 | );
|
---|
| 128 | close SOAFILE;
|
---|
| 129 |
|
---|
| 130 | print " Creating Schema...\n";
|
---|
| 131 | open SCHEMAFILE, ">$netdatadir/schema";
|
---|
| 132 | print SCHEMAFILE qq(name: network
|
---|
| 133 | attributedef: $rwnet/attribute_defs/network.tmpl
|
---|
| 134 | dbdir: $rwnet/data/network
|
---|
| 135 | Schema-Version: $serial
|
---|
| 136 | ---
|
---|
| 137 | name: organization
|
---|
| 138 | attributedef: $rwnet/attribute_defs/org.tmpl
|
---|
| 139 | dbdir: $rwnet/data/org
|
---|
| 140 | description: Organization object
|
---|
| 141 | Schema-Version: $serial
|
---|
| 142 | ---
|
---|
| 143 | name: referral
|
---|
| 144 | attributedef:$rwnet/attribute_defs/referral.tmpl
|
---|
| 145 | dbdir:$rwnet/data/referral
|
---|
| 146 | Schema-Version: $serial
|
---|
| 147 | );
|
---|
| 148 | close SCHEMAFILE;
|
---|
| 149 |
|
---|
| 150 | print " Copying template files...\n";
|
---|
[417] | 151 | ##fixme: find a way to do this without a shell (or functional equivalent)
|
---|
[420] | 152 | qx { /bin/cp $IPDB::rwhoisDataPath/skel/attribute_defs/* $netdatadir/attribute_defs/ };
|
---|
[371] | 153 |
|
---|
[417] | 154 | ##fixme: not sure if this is even necessary, since it's not referenced anywhere I can recall...
|
---|
[371] | 155 | print " Creating org data...\n";
|
---|
[417] | 156 | open ORGDATAFILE, ">$netdatadir/data/org/ourorg.txt";
|
---|
[371] | 157 | print ORGDATAFILE qq(ID: NETBLK-ISP.$masterblocks[$i]
|
---|
| 158 | Auth-Area: $masterblocks[$i]
|
---|
[417] | 159 | Org-Name: $IPDB::org_name
|
---|
| 160 | Street-Address: $IPDB::org_street
|
---|
| 161 | City: $IPDB::org_city
|
---|
| 162 | State: $IPDB::org_prov_state
|
---|
| 163 | Postal-Code: $IPDB::org_pocode
|
---|
| 164 | Country-Code: $IPDB::org_country
|
---|
| 165 | Phone: $IPDB::org_phone
|
---|
[371] | 166 | Created: 20040308
|
---|
| 167 | Updated: 20040308
|
---|
| 168 | );
|
---|
| 169 | close ORGDATAFILE;
|
---|
| 170 |
|
---|
| 171 | # Generate auth_area record, and add it to the array.
|
---|
| 172 | $authrw = 1; # Flag for rewrite and daemon reload/restart
|
---|
| 173 |
|
---|
| 174 | } # new master
|
---|
| 175 |
|
---|
| 176 | # do this for all masters, so that we can use this array to export the data
|
---|
| 177 | # to rwhoisd.auth_area later if we need to
|
---|
| 178 | push @autharea, qq(type:master
|
---|
| 179 | name:$masterblocks[$i]
|
---|
| 180 | data-dir: $rwnet/data
|
---|
| 181 | schema-file: $rwnet/schema
|
---|
| 182 | soa-file: $rwnet/soa
|
---|
| 183 | );
|
---|
| 184 |
|
---|
| 185 | # Recreate the net-nnn.nnn.nnn.nnn-nn.txt data file
|
---|
| 186 | my $masterfilename = "$rwnet/data/network/".$masterblocks[$i]->addr."-".$masterblocks[$i]->masklen.".txt";
|
---|
| 187 |
|
---|
[420] | 188 | open MASTERFILE,">$IPDB::rwhoisDataPath/$masterfilename";
|
---|
[15] | 189 |
|
---|
[2] | 190 | print MASTERFILE "ID: NETBLK-ISP.$masterblocks[$i]\n".
|
---|
| 191 | "Auth-Area: $masterblocks[$i]\n".
|
---|
| 192 | "Network-Name: ISP-".$masterblocks[$i]->network."\n".
|
---|
| 193 | "IP-Network: $masterblocks[$i]\n".
|
---|
| 194 | "IP-Network-Block: ".$masterblocks[$i]->range."\n".
|
---|
[417] | 195 | "Org-Name: $IPDB::org_name\n".
|
---|
| 196 | "Street-Address: $IPDB::org_street\n".
|
---|
| 197 | "City: $IPDB::org_city\n".
|
---|
| 198 | "StateProv: $IPDB::org_prov_state\n".
|
---|
| 199 | "Postal-Code: $IPDB::org_pocode\n".
|
---|
| 200 | "Country-Code: $IPDB::org_country\n".
|
---|
| 201 | "Tech-Contact: $IPDB::org_techhandle\n".
|
---|
[218] | 202 | "Created: $ctime\n".
|
---|
[324] | 203 | "Updated: $mtime\n".
|
---|
[434] | 204 | "Updated-By: $IPDB::org_email\n";
|
---|
[2] | 205 |
|
---|
[371] | 206 | # And now the subblocks
|
---|
| 207 | $ssth->execute("$masterblocks[$i]");
|
---|
| 208 | while (my ($cidr, $custid, $type, $city, $desc, $ctime, $mtime, $swip) = $ssth->fetchrow_array) {
|
---|
[2] | 209 |
|
---|
| 210 | # We get master block info from @masterblocks.
|
---|
| 211 | # ID: NETBLK-ISP.10.0.0.0/8
|
---|
| 212 | # Auth-Area: 10.0.0.0/8
|
---|
| 213 | # Network-Name: ISP-10.0.2.144
|
---|
| 214 | # IP-Network: 10.0.2.144.144/29
|
---|
| 215 | # IP-Network-Block: 10.0.2.144 - 10.0.2.151
|
---|
| 216 | # Organization: WidgetCorp
|
---|
| 217 | # Tech-Contact: bob@widgetcorp.com
|
---|
| 218 | # Admin-Contact: ISP-ARIN-HANDLE
|
---|
| 219 | # Created: 20040314
|
---|
| 220 | # Updated: 20040314
|
---|
| 221 | # Updated-By: noc@example.com
|
---|
| 222 |
|
---|
[371] | 223 | # Get the "full" network number
|
---|
| 224 | my $net = new NetAddr::IP $cidr;
|
---|
[2] | 225 |
|
---|
| 226 | # Assumptions: All data in ipdb is public
|
---|
| 227 | # If not, we need another field to indicate "public/private".
|
---|
| 228 |
|
---|
[311] | 229 | # cidr custid type city description notes maskbits
|
---|
| 230 |
|
---|
| 231 | # Fill in a generic entry for nameless allocations
|
---|
[417] | 232 | if ($desc =~ /^\s*$/) { $desc = $IPDB::org_name; }
|
---|
[311] | 233 |
|
---|
[371] | 234 | # Fix up datestamps. We don't *really* need sub-microsecond resolution on our exports...
|
---|
| 235 | ($ctime) = ($ctime =~ /^(\d+-\d+-\d+)\s+/);
|
---|
| 236 | ($mtime) = ($mtime =~ /^(\d+-\d+-\d+)\s+/);
|
---|
[311] | 237 |
|
---|
[324] | 238 | # Notes:
|
---|
| 239 | # Network-name should contain some component of "description"
|
---|
| 240 | # Cust address/contact data should be included; NB, no phone for ARIN!
|
---|
| 241 | # network:ID: NET-WIDGET
|
---|
| 242 | # network:Network-Name: WIDGET [IPDB description, sort of]
|
---|
| 243 | # network:IP-Network: 10.1.1.0/24
|
---|
| 244 | # network:Org-Name: Widget Corp [Cust name; from billing?]
|
---|
| 245 | # network:Street-Address: 211 Oak Drive [May need more than one line, OR...]
|
---|
| 246 | # network:City: Pineville [...this line...]
|
---|
| 247 | # network:StateProv: WI [...and this line...]
|
---|
| 248 | # network:Postal-Code: 48888 [...and this line]
|
---|
| 249 | # network:Country-Code: US
|
---|
| 250 | # network:Tech-Contact: BZ142-MYRWHOIS [ARIN handle?]
|
---|
| 251 | # network:Updated: 19991221 [timestamp from db]
|
---|
| 252 | # network:Updated-By: jo@myrwhois.net [noc@example, since that's our POC for IP netspace issues]
|
---|
| 253 | # network:Class-Name:network [Provided by rWHOIS protocol]
|
---|
[2] | 254 |
|
---|
[371] | 255 | my $netname = $netnameprefix{$type};
|
---|
[2] | 256 |
|
---|
[371] | 257 | if ($swip eq 'n') {
|
---|
| 258 | print MASTERFILE "---\nID: NETBLK-ISP.$masterblocks[$i]\n".
|
---|
| 259 | "Auth-Area: $masterblocks[$i]\n".
|
---|
| 260 | "Network-Name: $netname-".$net->network."\n".
|
---|
| 261 | "IP-Network: $net\n".
|
---|
| 262 | "IP-Network-Block: ".$net->range."\n".
|
---|
[417] | 263 | "Org-Name: $IPDB::org_name\n".
|
---|
| 264 | "Street-Address: $IPDB::org_street\n".
|
---|
| 265 | "City: $IPDB::org_city\n".
|
---|
| 266 | "StateProv: $IPDB::org_prov_state\n".
|
---|
| 267 | "Postal-Code: $IPDB::org_pocode\n".
|
---|
| 268 | "Country-Code: $IPDB::org_country\n".
|
---|
| 269 | "Tech-Contact: $IPDB::org_techhandle\n".
|
---|
[371] | 270 | "Created: $ctime\n".
|
---|
| 271 | "Updated: $mtime\n".
|
---|
[434] | 272 | "Updated-By: $IPDB::org_email\n";
|
---|
[371] | 273 | } else {
|
---|
| 274 | $custsth->execute($custid);
|
---|
| 275 | my ($name, $street, $city, $prov, $country, $pocode, $phone, $tech, $special) = $custsth->fetchrow_array;
|
---|
| 276 | $custsth->finish;
|
---|
| 277 | if ($special && $special =~ /NetName/ && $special =~ /$cidr/) {
|
---|
| 278 | ($netname) = ($special =~ /NetName$cidr: ([A-Z0-9_-]+)/);
|
---|
[328] | 279 | } else {
|
---|
[371] | 280 | $netname .= "-".$net->network;
|
---|
| 281 | }
|
---|
| 282 | print MASTERFILE "---\nID: NETBLK-ISP.$masterblocks[$i]\n".
|
---|
| 283 | "Auth-Area: $masterblocks[$i]\n".
|
---|
| 284 | "Network-Name: $netname\n".
|
---|
| 285 | "IP-Network: $net\n".
|
---|
| 286 | "IP-Network-Block: ".$net->range."\n".
|
---|
[417] | 287 | "Org-Name: ".($name ? $name : $IPDB::org_name)."\n".
|
---|
| 288 | "Street-Address: ".($street ? $street : $IPDB::org_street)."\n".
|
---|
| 289 | "City: ".($city ? $city : $IPDB::org_city)."\n".
|
---|
| 290 | "StateProv: ".($prov ? $prov : $IPDB::org_prov_state)."\n".
|
---|
| 291 | "Postal-Code: ".($pocode ? $pocode : $IPDB::org_pocode)."\n".
|
---|
| 292 | "Country-Code: ".($country ? $country : $IPDB::org_country)."\n".
|
---|
| 293 | "Tech-Contact: ".($tech ? $tech : $IPDB::org_techhandle)."\n".
|
---|
[371] | 294 | "Created: $ctime\n".
|
---|
| 295 | "Updated: $mtime\n".
|
---|
[434] | 296 | "Updated-By: $IPDB::org_email\n";
|
---|
[371] | 297 | } # swip
|
---|
[324] | 298 |
|
---|
[371] | 299 | } # while $ssth->fetchrow_array()
|
---|
[324] | 300 |
|
---|
[371] | 301 | close MASTERFILE;
|
---|
[324] | 302 |
|
---|
[311] | 303 | $i++;
|
---|
[371] | 304 | } # while $msth->fetchrow_array()
|
---|
[2] | 305 |
|
---|
[371] | 306 | # Now we see if there's obsolete netdata directories to be deleted,
|
---|
| 307 | # and therefore an auth-area file to regenerate
|
---|
| 308 | foreach my $netdir (keys %rwhoisdirs) {
|
---|
| 309 | print "deleting obsolete directory $netdir...\n";
|
---|
[420] | 310 | rmtree ( "$IPDB::rwhoisDataPath/$netdir", { verbose => 1, error => \my $errlist } );
|
---|
[371] | 311 | for my $diag (@$errlist) {
|
---|
| 312 | my ($file, $message) = each %$diag;
|
---|
| 313 | if ($file eq '') {
|
---|
| 314 | print "general error: $message\n";
|
---|
| 315 | }
|
---|
| 316 | }
|
---|
| 317 | $authrw = 1; # there's probably a more efficient place to put this. Feh.
|
---|
| 318 | }
|
---|
[2] | 319 |
|
---|
[371] | 320 | # Regenerate rwhoisd.auth_area if needed
|
---|
| 321 | if ($authrw) {
|
---|
| 322 | print "Regenerating auth_area\n";
|
---|
[420] | 323 | open RWHOISDAUTH, ">$IPDB::rwhoisDataPath/rwhoisd.auth_area";
|
---|
[371] | 324 | print RWHOISDAUTH "# WARNING: This file is autogenerated! Any static nodes should\n".
|
---|
| 325 | "# be entered in /etc/rwhoisd/rwhoisd.auth_template\n";
|
---|
| 326 | if ($template_persist) {
|
---|
| 327 | print RWHOISDAUTH shift @autharea;
|
---|
| 328 | print RWHOISDAUTH "---\n";
|
---|
| 329 | }
|
---|
| 330 | # feh. we need to know when we're at the end of the loop, because then
|
---|
| 331 | # we DON'T want to write the separator...
|
---|
| 332 | for (;@autharea;) { # my head hurts.
|
---|
| 333 | print RWHOISDAUTH shift @autharea;
|
---|
| 334 | print RWHOISDAUTH "---\n" if @autharea;
|
---|
| 335 | }
|
---|
| 336 | close RWHOISDAUTH;
|
---|
| 337 |
|
---|
| 338 | # restart/reload rwhoisd
|
---|
[420] | 339 | if (-e "$IPDB::rwhoisDataPath/rwhoisd.pid") { # no pidfile, no restart.
|
---|
[371] | 340 | print "Restarting rwhoisd\n";
|
---|
[420] | 341 | open PIDFILE, "<$IPDB::rwhoisDataPath/rwhoisd.pid";
|
---|
[371] | 342 | my ($rwpid) = (<PIDFILE> =~ /^(\d+)/);
|
---|
| 343 | close PIDFILE;
|
---|
| 344 | kill 'HUP', $rwpid;
|
---|
| 345 | }
|
---|
| 346 | }
|
---|
| 347 |
|
---|
| 348 | # and finally
|
---|
[2] | 349 | $dbh->disconnect;
|
---|