|
| 1 | +#!/usr/bin/perl -w |
| 2 | +# *************************************************************************** |
| 3 | +# * _ _ ____ _ |
| 4 | +# * Project ___| | | | _ \| | |
| 5 | +# * / __| | | | |_) | | |
| 6 | +# * | (__| |_| | _ <| |___ |
| 7 | +# * \___|\___/|_| \_\_____| |
| 8 | +# * |
| 9 | +# * Copyright (C) 1998 - 2013, Daniel Stenberg, <[email protected]>, et al. |
| 10 | +# * |
| 11 | +# * This software is licensed as described in the file COPYING, which |
| 12 | +# * you should have received as part of this distribution. The terms |
| 13 | +# * are also available at http://curl.haxx.se/docs/copyright.html. |
| 14 | +# * |
| 15 | +# * You may opt to use, copy, modify, merge, publish, distribute and/or sell |
| 16 | +# * copies of the Software, and permit persons to whom the Software is |
| 17 | +# * furnished to do so, under the terms of the COPYING file. |
| 18 | +# * |
| 19 | +# * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 20 | +# * KIND, either express or implied. |
| 21 | +# * |
| 22 | +# *************************************************************************** |
| 23 | +# This Perl script creates a fresh ca-bundle.crt file for use with libcurl. |
| 24 | +# It downloads certdata.txt from Mozilla's source tree (see URL below), |
| 25 | +# then parses certdata.txt and extracts CA Root Certificates into PEM format. |
| 26 | +# These are then processed with the OpenSSL commandline tool to produce the |
| 27 | +# final ca-bundle.crt file. |
| 28 | +# The script is based on the parse-certs script written by Roland Krikava. |
| 29 | +# This Perl script works on almost any platform since its only external |
| 30 | +# dependency is the OpenSSL commandline tool for optional text listing. |
| 31 | +# Hacked by Guenter Knauf. |
| 32 | +# |
| 33 | +use Getopt::Std; |
| 34 | +use MIME::Base64; |
| 35 | +use LWP::UserAgent; |
| 36 | +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); |
| 38 | + |
| 39 | +my $url = 'http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1'; |
| 40 | +# If the OpenSSL commandline is not in search path you can configure it here! |
| 41 | +my $openssl = 'openssl'; |
| 42 | + |
| 43 | +my $version = '1.19'; |
| 44 | + |
| 45 | +$opt_w = 76; # default base64 encoded lines length |
| 46 | + |
| 47 | +$0 =~ s@.*(/|\\)@@; |
| 48 | +$Getopt::Std::STANDARD_HELP_VERSION = 1; |
| 49 | +getopts('bfhilnqtuvw:'); |
| 50 | + |
| 51 | +if ($opt_i) { |
| 52 | + print ("=" x 78 . "\n"); |
| 53 | + print "Script Version : $version\n"; |
| 54 | + print "Perl Version : $]\n"; |
| 55 | + print "Operating System Name : $^O\n"; |
| 56 | + print "Getopt::Std.pm Version : ${Getopt::Std::VERSION}\n"; |
| 57 | + 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"; |
| 60 | + print ("=" x 78 . "\n"); |
| 61 | +} |
| 62 | + |
| 63 | +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"; |
| 67 | + print "\t-i\tprint version info about used modules\n"; |
| 68 | + print "\t-l\tprint license info about certdata.txt\n"; |
| 69 | + print "\t-n\tno download of certdata.txt (to use existing)\n"; |
| 70 | + print "\t-q\tbe really quiet (no progress output at all)\n"; |
| 71 | + print "\t-t\tinclude plain text listing of certificates\n"; |
| 72 | + print "\t-u\tunlink (remove) certdata.txt after processing\n"; |
| 73 | + print "\t-v\tbe verbose and print out processed CAs\n"; |
| 74 | + print "\t-w <l>\twrap base64 output lines after <l> chars (default: ${opt_w})\n"; |
| 75 | + exit; |
| 76 | +} |
| 77 | + |
| 78 | +sub VERSION_MESSAGE() { |
| 79 | + print "${0} version ${version} running Perl ${]} on ${^O}\n"; |
| 80 | +} |
| 81 | + |
| 82 | +HELP_MESSAGE() if ($opt_h); |
| 83 | + |
| 84 | +my $crt = $ARGV[0] || 'ca-bundle.crt'; |
| 85 | +(my $txt = $url) =~ s@(.*/|\?.*)@@g; |
| 86 | + |
| 87 | +my $stdout = $crt eq '-'; |
| 88 | +my $resp; |
| 89 | +my $fetched; |
| 90 | + |
| 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 | + |
| 110 | +my $currentdate = scalar gmtime($fetched ? $resp->last_modified : (stat($txt))[9]); |
| 111 | + |
| 112 | +my $format = $opt_t ? "plain text and " : ""; |
| 113 | +if( $stdout ) { |
| 114 | + open(CRT, '> -') or die "Couldn't open STDOUT: $!\n"; |
| 115 | +} else { |
| 116 | + open(CRT,">$crt.~") or die "Couldn't open $crt.~: $!\n"; |
| 117 | +} |
| 118 | +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 | +## |
| 134 | +
|
| 135 | +EOT |
| 136 | + |
| 137 | +print STDERR "Processing '$txt' ...\n" if (!$opt_q); |
| 138 | +my $caname; |
| 139 | +my $certnum = 0; |
| 140 | +my $skipnum = 0; |
| 141 | +my $start_of_cert = 0; |
| 142 | + |
| 143 | +open(TXT,"$txt") or die "Couldn't open $txt: $!\n"; |
| 144 | +while (<TXT>) { |
| 145 | + if (/\*\*\*\*\* BEGIN LICENSE BLOCK \*\*\*\*\*/) { |
| 146 | + print CRT; |
| 147 | + print if ($opt_l); |
| 148 | + while (<TXT>) { |
| 149 | + print CRT; |
| 150 | + print if ($opt_l); |
| 151 | + last if (/\*\*\*\*\* END LICENSE BLOCK \*\*\*\*\*/); |
| 152 | + } |
| 153 | + } |
| 154 | + next if /^#|^\s*$/; |
| 155 | + chomp; |
| 156 | + if (/^CVS_ID\s+\"(.*)\"/) { |
| 157 | + print CRT "# $1\n"; |
| 158 | + } |
| 159 | + |
| 160 | + # this is a match for the start of a certificate |
| 161 | + if (/^CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE/) { |
| 162 | + $start_of_cert = 1 |
| 163 | + } |
| 164 | + if ($start_of_cert && /^CKA_LABEL UTF8 \"(.*)\"/) { |
| 165 | + $caname = $1; |
| 166 | + } |
| 167 | + my $untrusted = 1; |
| 168 | + if ($start_of_cert && /^CKA_VALUE MULTILINE_OCTAL/) { |
| 169 | + my $data; |
| 170 | + while (<TXT>) { |
| 171 | + last if (/^END/); |
| 172 | + chomp; |
| 173 | + my @octets = split(/\\/); |
| 174 | + shift @octets; |
| 175 | + for (@octets) { |
| 176 | + $data .= chr(oct); |
| 177 | + } |
| 178 | + } |
| 179 | + # scan forwards until the trust part |
| 180 | + while (<TXT>) { |
| 181 | + last if (/^CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST/); |
| 182 | + chomp; |
| 183 | + } |
| 184 | + # now scan the trust part for untrusted certs |
| 185 | + while (<TXT>) { |
| 186 | + last if (/^#/); |
| 187 | + if (/^CKA_TRUST_SERVER_AUTH\s+CK_TRUST\s+CKT_NSS_TRUSTED_DELEGATOR$/) { |
| 188 | + $untrusted = 0; |
| 189 | + } |
| 190 | + } |
| 191 | + if ($untrusted) { |
| 192 | + $skipnum ++; |
| 193 | + } else { |
| 194 | + my $encoded = MIME::Base64::encode_base64($data, ''); |
| 195 | + $encoded =~ s/(.{1,${opt_w}})/$1\n/g; |
| 196 | + my $pem = "-----BEGIN CERTIFICATE-----\n" |
| 197 | + . $encoded |
| 198 | + . "-----END CERTIFICATE-----\n"; |
| 199 | + print CRT "\n$caname\n"; |
| 200 | + print CRT ("=" x length($caname) . "\n"); |
| 201 | + if (!$opt_t) { |
| 202 | + print CRT $pem; |
| 203 | + } else { |
| 204 | + my $pipe = "|$openssl x509 -md5 -fingerprint -text -inform PEM"; |
| 205 | + if (!$stdout) { |
| 206 | + $pipe .= " >> $crt.~"; |
| 207 | + close(CRT) or die "Couldn't close $crt.~: $!"; |
| 208 | + } |
| 209 | + open(TMP, $pipe) or die "Couldn't open openssl pipe: $!"; |
| 210 | + print TMP $pem; |
| 211 | + close(TMP) or die "Couldn't close openssl pipe: $!"; |
| 212 | + if (!$stdout) { |
| 213 | + open(CRT, ">>$crt.~") or die "Couldn't open $crt.~: $!"; |
| 214 | + } |
| 215 | + } |
| 216 | + print STDERR "Parsing: $caname\n" if ($opt_v); |
| 217 | + $certnum ++; |
| 218 | + $start_of_cert = 0; |
| 219 | + } |
| 220 | + } |
| 221 | +} |
| 222 | +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); |
| 237 | +print STDERR "Done ($certnum CA certs processed, $skipnum untrusted skipped).\n" if (!$opt_q); |
| 238 | + |
| 239 | +exit; |
| 240 | + |
| 241 | + |
0 commit comments