This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrootrdap.pl
executable file
·478 lines (378 loc) · 14.1 KB
/
rootrdap.pl
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#!/usr/bin/perl
# Copyright (c) 2018-2023 CentralNic Ltd and contributors. All rights reserved.
# This program is free software; you can redistribute it and/or modify it under
# the same terms as Perl itself.
use Cwd;
use Data::Mirror qw(mirror_fh mirror_json);
use DateTime;
use File::Slurp;
use File::stat;
use Getopt::Long;
use IO::Socket;
use JSON::XS;
use Object::Anon;
use POSIX qw(floor);
use Pod::Usage;
use constant WHOIS_HOST => 'whois.iana.org';
use constant WHOIS_PORT => 43;
use open qw(:utf8);
use utf8;
use strict;
my $VERSION = '0.1';
my $help;
GetOptions('help' => \$help);
pod2usage() if ($help);
my $dir = $ARGV[0] || getcwd();
if (!-e $dir || !-d $dir) {
printf(STDERR "Error: %s doesn't exist, please create it first\n");
exit(1);
}
my $json = JSON::XS->new->utf8->pretty->canonical;
my @tlds = map { chomp ; lc } grep { /^[A-Z0-9-]+$/ } mirror_fh('https://data.iana.org/TLD/tlds-alpha-by-domain.txt')->getlines;
my $status = {
'active' => 1,
'removed' => 1,
'former' => 1,
};
my $rdap_servers;
foreach my $service (@{anon(mirror_json('https://data.iana.org/rdap/dns.json'))->services}) {
my @tlds = @{$service->[0]};
my @urls = @{$service->[1]};
my $url = (grep { $_ =~ /^https:/ } @urls, @urls)[0];
foreach my $tld (@tlds) {
$rdap_servers->{$tld} = $url;
}
}
my $gtlds;
foreach my $gtld (@{anon(mirror_json('https://www.icann.org/resources/registries/gtlds/v2/gtlds.json'))->gTLDs}) {
$gtlds->{$gtld->gTLD} = $gtld;
}
print STDERR "Generating files\n";
my $all = {
'rdapConformance' => [ 'rdap_level_0' ],
'domainSearchResults' => [],
};
foreach my $tld (@tlds) {
my $file = sprintf('%s/%s.txt', $dir, $tld);
my @data;
if (-e $file && stat($file)->mtime >= time()-86400) {
@data = read_file($file);
} else {
printf(STDERR "Updating data for .%s\n", uc($tld));
my $socket = IO::Socket::INET->new(
'PeerAddr' => WHOIS_HOST,
'PeerPort' => WHOIS_PORT,
'Type' => SOCK_STREAM,
'Proto' => 'tcp',
'Timeout' => 5,
);
if (!$socket) {
warn($@);
} else {
$socket->print(sprintf("%s\r\n", $tld));
@data = $socket->getlines;
$socket->close;
if (!write_file($file, @data)) {
printf(STDERR "Unable to write data to '%s': %s\n", $file, $!);
exit(1);
}
}
}
#
# the first set of contact information we see in the response is the
# sponsoring organisation (the "registrant" of the TLD)
#
my $contact = 'registrant';
#
# initialise JSON object
#
my $data = {
'objectClassName' => 'domain',
'ldhName' => $tld,
'handle' => $tld,
'port43' => WHOIS_HOST,
'rdapConformance' => [ 'rdap_level_0' ],
};
#
# we put entity information into this hashref, we need to
# pre-populate the registrant object
#
my $entities = {
$contact => {
'objectClassName' => 'entity',
'handle' => sprintf('%s-%s', $tld, $contact),
'vcardArray' => empty_vcard_array(),
'roles' => [ $contact ]
},
};
my @comments;
my $url;
foreach my $line (@data) {
chomp($line);
if ($line =~ /^% *(.+)/) {
#
# push comment lines into an array for later inclusion
#
push(@comments, $1);
} elsif (length($line) < 1) {
#
# ignore empty line
#
next;
} else {
my ($key, $value) = split(/\: */, $line, 2);
if ('domain' eq $key || 'domain-ace' eq $key) {
# discard
} elsif ('source' eq $key) {
push(@{$data->{'remarks'}}, {
'title' => 'Source',
'description' => [ $value ],
});
} elsif ('nserver' eq $key) {
#
# value consists of hostname followed by one or more IPs
#
my ($ns, @ips) = split(/ /, $value);
push(@{$data->{'nameservers'}}, {
'objectClassName' => 'nameserver',
'ldhName' => $ns,
'ipAddresses' => {
'v4' => [ grep { /\./ } @ips ], # use simplistic regexp to
'v6' => [ grep { /:/ } @ips ], # split IPs into families
},
});
} elsif ('ds-rdata' eq $key) {
#
# value is a DS record in presentation format
#
my ($tag, $alg, $digestType, $digest) = split(/ /, $value, 4);
$data->{'secureDNS'}->{'delegationSigned'} = \1;
push(@{$data->{'secureDNS'}->{'dsData'}}, {
'keyTag' => $tag,
'algorithm' => $alg,
'digest' => $digest,
'digestType' => $digestType,
});
} elsif ('status' eq $key) {
if (!defined($status->{lc($value)})) {
printf(STDERR "Unknown status '%s'\n", $value);
exit(1);
} else {
push(@{$data->{'status'}}, lc($value));
}
} elsif ('created' eq $key) {
push(@{$data->{'events'}}, {
'eventAction' => 'registration',
'eventDate' => $value,
});
} elsif ('changed' eq $key) {
push(@{$data->{'events'}}, {
'eventAction' => 'last changed',
'eventDate' => $value,
});
} elsif ('remarks' eq $key) {
my $remark = {
'title' => 'Remark',
'description' => [ $value ]
};
if ($value =~ /Registration information: (https?:\/\/.+)/i) {
$url = $1;
$remark->{'links'} = [{
'title' => 'URL for registration services',
'rel' => 'related',
'href' => $url,
}];
}
push(@{$data->{'remarks'}}, $remark);
} elsif ('contact' eq $key) {
#
# signifies the start of a new contact, so change the value of
# $contact and initialise a new object in $entities
#
$contact = $value;
$entities->{$contact} = {
'objectClassName' => 'entity',
'handle' => sprintf('%s-%s', $tld, $contact),
'vcardArray' => empty_vcard_array(),
'roles' => [ $value ]
};
} elsif ('name' eq $key) {
push(@{$entities->{$contact}->{'vcardArray'}->[1]}, [ 'fn', {}, 'text', $value ]);
} elsif ('organisation' eq $key) {
push(@{$entities->{$contact}->{'vcardArray'}->[1]}, [ 'org', {}, 'text', $value ]);
} elsif ('address' eq $key) {
#
# look for an existing address node in the vcard
#
my $adr = (grep { $_->[0] eq 'adr' } @{$entities->{$contact}->{'vcardArray'}->[1]})[0];
#
# create one if not found
#
if (!defined($adr)) {
$adr = [ 'adr', { 'label' => '' }, 'text', [ '', '', '', '', '', '', '' ] ];
push(@{$entities->{$contact}->{'vcardArray'}->[1]}, $adr);
}
#
# append the line to the address
#
if (length($adr->[1]->{'label'}) < 1) {
$adr->[1]->{'label'} = $value;
} else {
$adr->[1]->{'label'} .= "\n".$value;
}
} elsif ('phone' eq $key) {
push(@{$entities->{$contact}->{'vcardArray'}->[1]}, ['tel', {}, 'text', $value ]);
} elsif ('fax-no' eq $key) {
push(@{$entities->{$contact}->{'vcardArray'}->[1]}, ['tel', { 'type' => 'fax' }, 'text', $value ]);
} elsif ('e-mail' eq $key) {
push(@{$entities->{$contact}->{'vcardArray'}->[1]}, ['email', {}, 'text', $value ]);
} elsif ('whois' eq $key) {
push(@{$data->{'remarks'}}, {
'title' => 'Whois Service',
'description' => [ sprintf('The port-43 whois service for this TLD is %s.', uc($value || ($gtlds->{$tld} ? sprintf('whois.nic.%s', $tld) : ''))) ]
});
} else {
printf(STDERR "Unknown key '%s'\n", $key);
exit(1);
}
}
}
push(@{$data->{'events'}}, {
'eventAction' => 'last update of RDAP database',
'eventDate' => DateTime->now->iso8601,
});
$data->{'notices'} = [
{
'title' => 'About This Service',
'description' => [
'Please note that this RDAP service is NOT provided by the IANA.',
'',
'For more information, please see https://about.rdap.org',
],
}
];
#
# insert comments as a notice
#
push(@{$data->{'notices'}}, {'title' => 'Comments', 'description' => \@comments }) if (scalar(@comments) > 0);
#
# add some links
#
$data->{'links'} = [
{
'title' => 'Entry for this TLD in the Root Zone Database',
'rel' => 'related',
'href' => sprintf('https://www.iana.org/domains/root/db/%s.html', $tld),
},
{
'title' => 'About RDAP',
'rel' => 'related',
'href' => 'https://about.rdap.org',
}
];
push(@{$data->{'links'}}, {
'title' => 'URL for registration services',
'rel' => 'related',
'href' => $url,
}) if ($url);
if ($rdap_servers->{$tld}) {
push(@{$data->{'remarks'}}, {
'title' => 'RDAP Service',
'description' => [ sprintf('The RDAP Base URL for this TLD is %s.', $rdap_servers->{$tld}) ],
'links' => [
{
'rel' => 'related',
'title' => 'RDAP Base URL',
'href' => $rdap_servers->{$tld},
}
],
});
push(@{$data->{'links'}}, {
'title' => 'RDAP Base URL',
'rel' => 'related',
'href' => $rdap_servers->{$tld},
}) if ($url);
}
if ($gtlds->{$tld}) {
push(@{$data->{'links'}}, {
'title' => 'gTLD Registry Agreement',
'rel' => 'related',
'href' => sprintf('https://www.icann.org/en/registry-agreements/details/%s', $tld),
});
push(@{$data->{'remarks'}}, {
'title' => 'gTLD Application ID',
'description' => [ $gtlds->{$tld}->applicationId ],
}) if ($gtlds->{$tld}->applicationId);
push(@{$data->{'remarks'}}, {
'title' => 'Specification 13 (Code of Conduct) Exemption',
'description' => [
'This TLD has an exemption from Specification 13 of the Registry Agreement.',
'This usually means that it is a Single Registrant or "brand" TLD.',
],
'links' => [
{
'rel' => 'related',
'title' => 'More information about Specification 13 exemptions',
'href' => 'https://newgtlds.icann.org/en/applicants/agb/base-agreement-contracting/specification-13-applications',
}
],
}) if ($gtlds->{$tld}->specification13);
$data->{'unicodeName'} = $gtlds->{$tld}->uLabel if ($gtlds->{$tld}->uLabel);
}
#
# insert entities
#
$data->{'entities'} = [map { $entities->{$_} } sort(keys(%{$entities}))];
#
# write RDAP object to disk
#
my $jfile = sprintf('%s/%s.json', $dir, $tld);
if (!write_file($jfile, $json->encode($data))) {
printf(STDERR "Unable to write to '%s': %s\n", $jfile, $!);
exit(1);
}
$all->{'notices'} = $data->{'notices'} unless (defined($all->{'notices'}));
delete($data->{'notices'});
delete($data->{'rdapConformance'});
push(@{$all->{'domainSearchResults'}}, $data);
}
#
# write RDAP object to disk
#
my $jfile = sprintf('%s/_all.json', $dir);
if (!write_file($jfile, $json->encode($all))) {
printf(STDERR "Unable to write to '%s': %s\n", $jfile, $!);
exit(1);
}
print STDERR "done\n";
#
# returns an arrayref containing an empty jcard-compliant data structure
#
sub empty_vcard_array { [ 'vcard', [ [ 'version', {}, 'text', '4.0' ] ] ] }
__END__
=pod
=head1 NAME
C<rootrdap.pl> - a script to generate a set of RDAP responses from the IANA root zone database.
=head1 DESCRIPTION
As of writing, the Internet Assigned Numbers Authority (IANA) provides a port-43 service for the
root zone database (the list of top-level domains), but does not provide an RDAP service.
This script scrapes data from the IANA whois service and generates RDAP responses for each TLD.
The RDAP responses are written to disk in a directory which can then be exposed through a web
server.
An example of an RDAP service which provides access to this data may be found at
L<https://root.rdap.org>, for example:
=over
=item * L<https://root.rdap.org/domain/xyz>
=back
=head1 USAGE
rootrdap.pl DIRECTORY
C<DIRECTORY> is the location on disk where the files should be written. C<rootrdap.pl> will write
its working files to this directory as well as the finished .json files.
If C<DIRECTORY> is not provided, the current directory is used.
=head1 COPYRIGHT
Copyright (c) 2018-2023 CentralNic Ltd and contributors. All rights reserved.
=head1 LICENSE
Copyright (c) 2018-2023 CentralNic Ltd and contributors. All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut