Skip to content

Commit e159073

Browse files
committed
tools: customize mk-ca-bundle.pl
Remove unneeded functionality and tweak the generated output so we can #include it in C++ source code.
1 parent 5ab863d commit e159073

File tree

1 file changed

+30
-70
lines changed

1 file changed

+30
-70
lines changed

tools/mk-ca-bundle.pl

Lines changed: 30 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030
# dependency is the OpenSSL commandline tool for optional text listing.
3131
# Hacked by Guenter Knauf.
3232
#
33+
use File::Basename 'dirname';
3334
use Getopt::Std;
3435
use MIME::Base64;
35-
use LWP::UserAgent;
3636
use strict;
37-
use vars qw($opt_b $opt_f $opt_h $opt_i $opt_l $opt_n $opt_q $opt_t $opt_u $opt_v $opt_w);
37+
use vars qw($opt_h $opt_i $opt_l $opt_q $opt_t $opt_v $opt_w);
3838

3939
my $url = 'http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1';
4040
# If the OpenSSL commandline is not in search path you can configure it here!
4141
my $openssl = 'openssl';
4242

4343
my $version = '1.19';
4444

45-
$opt_w = 76; # default base64 encoded lines length
45+
$opt_w = 72; # default base64 encoded lines length
4646

4747
$0 =~ s@.*(/|\\)@@;
4848
$Getopt::Std::STANDARD_HELP_VERSION = 1;
@@ -55,21 +55,15 @@
5555
print "Operating System Name : $^O\n";
5656
print "Getopt::Std.pm Version : ${Getopt::Std::VERSION}\n";
5757
print "MIME::Base64.pm Version : ${MIME::Base64::VERSION}\n";
58-
print "LWP::UserAgent.pm Version : ${LWP::UserAgent::VERSION}\n";
59-
print "LWP.pm Version : ${LWP::VERSION}\n";
6058
print ("=" x 78 . "\n");
6159
}
6260

6361
sub HELP_MESSAGE() {
64-
print "Usage:\t${0} [-b] [-f] [-i] [-l] [-n] [-q] [-t] [-u] [-v] [-w<l>] [<outputfile>]\n";
65-
print "\t-b\tbackup an existing version of ca-bundle.crt\n";
66-
print "\t-f\tforce rebuild even if certdata.txt is current\n";
62+
print "Usage:\t${0} [-i] [-l] [-q] [-t] [-v] [-w<l>] [<outputfile>]\n";
6763
print "\t-i\tprint version info about used modules\n";
6864
print "\t-l\tprint license info about certdata.txt\n";
69-
print "\t-n\tno download of certdata.txt (to use existing)\n";
7065
print "\t-q\tbe really quiet (no progress output at all)\n";
7166
print "\t-t\tinclude plain text listing of certificates\n";
72-
print "\t-u\tunlink (remove) certdata.txt after processing\n";
7367
print "\t-v\tbe verbose and print out processed CAs\n";
7468
print "\t-w <l>\twrap base64 output lines after <l> chars (default: ${opt_w})\n";
7569
exit;
@@ -81,56 +75,36 @@ ()
8175

8276
HELP_MESSAGE() if ($opt_h);
8377

84-
my $crt = $ARGV[0] || 'ca-bundle.crt';
85-
(my $txt = $url) =~ s@(.*/|\?.*)@@g;
78+
my $crt = $ARGV[0] || dirname(__FILE__) . '/../src/node_root_certs.h';
79+
my $txt = dirname(__FILE__) . '/certdata.txt';
8680

8781
my $stdout = $crt eq '-';
8882
my $resp;
8983
my $fetched;
9084

91-
unless ($opt_n and -e $txt) {
92-
print STDERR "Downloading '$txt' ...\n" if (!$opt_q);
93-
my $ua = new LWP::UserAgent(agent => "$0/$version");
94-
$ua->env_proxy();
95-
$resp = $ua->mirror($url, $txt);
96-
if ($resp && $resp->code eq '304') {
97-
print STDERR "Not modified\n" unless $opt_q;
98-
exit 0 if -e $crt && !$opt_f;
99-
} else {
100-
$fetched = 1;
101-
}
102-
if( !$resp || $resp->code !~ /^(?:200|304)$/ ) {
103-
print STDERR "Unable to download latest data: "
104-
. ($resp? $resp->code . ' - ' . $resp->message : "LWP failed") . "\n"
105-
unless $opt_q;
106-
exit 1 if -e $crt || ! -r $txt;
107-
}
108-
}
109-
11085
my $currentdate = scalar gmtime($fetched ? $resp->last_modified : (stat($txt))[9]);
11186

11287
my $format = $opt_t ? "plain text and " : "";
11388
if( $stdout ) {
11489
open(CRT, '> -') or die "Couldn't open STDOUT: $!\n";
11590
} else {
116-
open(CRT,">$crt.~") or die "Couldn't open $crt.~: $!\n";
91+
open(CRT,">$crt") or die "Couldn't open $crt: $!\n";
11792
}
11893
print CRT <<EOT;
119-
##
120-
## $crt -- Bundle of CA Root Certificates
121-
##
122-
## Certificate data from Mozilla as of: ${currentdate}
123-
##
124-
## This is a bundle of X.509 certificates of public Certificate Authorities
125-
## (CA). These were automatically extracted from Mozilla's root certificates
126-
## file (certdata.txt). This file can be found in the mozilla source tree:
127-
## ${url}
128-
##
129-
## It contains the certificates in ${format}PEM format and therefore
130-
## can be directly used with curl / libcurl / php_curl, or with
131-
## an Apache+mod_ssl webserver for SSL client authentication.
132-
## Just configure this file as the SSLCACertificateFile.
133-
##
94+
/* $crt -- Bundle of CA Root Certificates
95+
*
96+
* Certificate data from Mozilla as of: ${currentdate}
97+
*
98+
* This is a bundle of X.509 certificates of public Certificate Authorities
99+
* (CA). These were automatically extracted from Mozilla's root certificates
100+
* file (certdata.txt). This file can be found in the mozilla source tree:
101+
* ${url}
102+
*
103+
* It contains the certificates in ${format}PEM format and therefore
104+
* can be directly used with curl / libcurl / php_curl, or with
105+
* an Apache+mod_ssl webserver for SSL client authentication.
106+
* Just configure this file as the SSLCACertificateFile.
107+
*/
134108
135109
EOT
136110

@@ -154,7 +128,7 @@ ()
154128
next if /^#|^\s*$/;
155129
chomp;
156130
if (/^CVS_ID\s+\"(.*)\"/) {
157-
print CRT "# $1\n";
131+
print CRT "/* $1 */\n";
158132
}
159133

160134
# this is a match for the start of a certificate
@@ -192,25 +166,24 @@ ()
192166
$skipnum ++;
193167
} else {
194168
my $encoded = MIME::Base64::encode_base64($data, '');
195-
$encoded =~ s/(.{1,${opt_w}})/$1\n/g;
196-
my $pem = "-----BEGIN CERTIFICATE-----\n"
169+
$encoded =~ s/(.{1,${opt_w}})/"$1\\n"\n/g;
170+
my $pem = "\"-----BEGIN CERTIFICATE-----\\n\"\n"
197171
. $encoded
198-
. "-----END CERTIFICATE-----\n";
199-
print CRT "\n$caname\n";
200-
print CRT ("=" x length($caname) . "\n");
172+
. "\"-----END CERTIFICATE-----\\n\",\n";
173+
print CRT "\n/* $caname */\n";
201174
if (!$opt_t) {
202175
print CRT $pem;
203176
} else {
204177
my $pipe = "|$openssl x509 -md5 -fingerprint -text -inform PEM";
205178
if (!$stdout) {
206-
$pipe .= " >> $crt.~";
207-
close(CRT) or die "Couldn't close $crt.~: $!";
179+
$pipe .= " >> $crt";
180+
close(CRT) or die "Couldn't close $crt: $!";
208181
}
209182
open(TMP, $pipe) or die "Couldn't open openssl pipe: $!";
210183
print TMP $pem;
211184
close(TMP) or die "Couldn't close openssl pipe: $!";
212185
if (!$stdout) {
213-
open(CRT, ">>$crt.~") or die "Couldn't open $crt.~: $!";
186+
open(CRT, ">>$crt") or die "Couldn't open $crt: $!";
214187
}
215188
}
216189
print STDERR "Parsing: $caname\n" if ($opt_v);
@@ -220,20 +193,7 @@ ()
220193
}
221194
}
222195
close(TXT) or die "Couldn't close $txt: $!\n";
223-
close(CRT) or die "Couldn't close $crt.~: $!\n";
224-
unless( $stdout ) {
225-
if ($opt_b && -e $crt) {
226-
my $bk = 1;
227-
while (-e "$crt.~${bk}~") {
228-
$bk++;
229-
}
230-
rename $crt, "$crt.~${bk}~" or die "Failed to create backup $crt.~$bk}~: $!\n";
231-
} elsif( -e $crt ) {
232-
unlink( $crt ) or die "Failed to remove $crt: $!\n";
233-
}
234-
rename "$crt.~", $crt or die "Failed to rename $crt.~ to $crt: $!\n";
235-
}
236-
unlink $txt if ($opt_u);
196+
close(CRT) or die "Couldn't close $crt: $!\n";
237197
print STDERR "Done ($certnum CA certs processed, $skipnum untrusted skipped).\n" if (!$opt_q);
238198

239199
exit;

0 commit comments

Comments
 (0)