Use var again instead of hard-coded filename.
[platform/upstream/curl.git] / lib / mk-ca-bundle.pl
1 #!/usr/bin/perl -w
2 # ***************************************************************************
3 # *                                  _   _ ____  _
4 # *  Project                     ___| | | |  _ \| |
5 # *                             / __| | | | |_) | |
6 # *                            | (__| |_| |  _ <| |___
7 # *                             \___|\___/|_| \_\_____|
8 # *
9 # * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, 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_h $opt_i $opt_l $opt_n $opt_q $opt_t $opt_u $opt_v);
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.14';
44
45 getopts('bhilnqtuv');
46
47 if ($opt_i) {
48   print ("=" x 78 . "\n");
49   print "Script Version            : $version\n";
50   print "Perl Version              : $]\n";
51   print "Operating System Name     : $^O\n";
52   print "Getopt::Std.pm Version    : ${Getopt::Std::VERSION}\n";
53   print "MIME::Base64.pm Version   : ${MIME::Base64::VERSION}\n";
54   print "LWP::UserAgent.pm Version : ${LWP::UserAgent::VERSION}\n";
55   print "LWP.pm Version            : ${LWP::VERSION}\n";
56   print ("=" x 78 . "\n");
57 }
58
59 $0 =~ s/\\/\//g;
60 $0 = substr($0, rindex($0, '/') + 1);
61 if ($opt_h) {
62   printf("Usage:\t%s [-b] [-i] [-l] [-n] [-q] [-t] [-u] [-v] [<outputfile>]\n", $0);
63   print "\t-b\tbackup an existing version of ca-bundle.crt\n";
64   print "\t-i\tprint version info about used modules\n";
65   print "\t-l\tprint license info about certdata.txt\n";
66   print "\t-n\tno download of certdata.txt (to use existing)\n";
67   print "\t-q\tbe really quiet (no progress output at all)\n";
68   print "\t-t\tinclude plain text listing of certificates\n";
69   print "\t-u\tunlink (remove) certdata.txt after processing\n";
70   print "\t-v\tbe verbose and print out processed CAs\n";
71   exit;
72 }
73
74 my $crt = $ARGV[0] || 'ca-bundle.crt';
75 my $txt = substr($url, rindex($url, '/') + 1);
76 $txt =~ s/\?.*//;
77
78 my $resp;
79
80 unless ($opt_n and -e $txt) {
81   print "Downloading '$txt' ...\n" if (!$opt_q);
82
83   my $ua  = new LWP::UserAgent(agent => "$0/$version");
84   $resp = $ua->mirror($url, $txt);
85 }
86
87 if ($resp && $resp->code eq '304') {
88     print "Not modified\n" unless $opt_q;
89     exit 0;
90 }
91
92 my $currentdate = scalar gmtime($resp ? $resp->last_modified : (stat($txt))[9]);
93
94 if ($opt_b && -e $crt) {
95   my $bk = 1;
96   while (-e "$crt.~${bk}~") {
97     $bk++;
98   }
99   rename $crt, "$crt.~${bk}~";
100 }
101
102 my $format = $opt_t ? "plain text and " : "";
103 open(CRT,">$crt") or die "Couldn't open $crt: $!";
104 print CRT <<EOT;
105 ##
106 ## $crt -- Bundle of CA Root Certificates
107 ##
108 ## Certificate data from Mozilla as of: ${currentdate}
109 ##
110 ## This is a bundle of X.509 certificates of public Certificate Authorities
111 ## (CA). These were automatically extracted from Mozilla's root certificates
112 ## file (certdata.txt).  This file can be found in the mozilla source tree:
113 ## '/mozilla/security/nss/lib/ckfw/builtins/certdata.txt'
114 ##
115 ## It contains the certificates in ${format}PEM format and therefore
116 ## can be directly used with curl / libcurl / php_curl, or with
117 ## an Apache+mod_ssl webserver for SSL client authentication.
118 ## Just configure this file as the SSLCACertificateFile.
119 ##
120
121 EOT
122
123 close(CRT) or die "Couldn't close $crt: $!";
124
125 print "Processing  '$txt' ...\n" if (!$opt_q);
126 my $caname;
127 my $certnum = 0;
128 open(TXT,"$txt") or die "Couldn't open $txt: $!";
129 while (<TXT>) {
130   if (/\*\*\*\*\* BEGIN LICENSE BLOCK \*\*\*\*\*/) {
131     open(CRT, ">>$crt") or die "Couldn't open $crt: $!";
132     print CRT;
133     print if ($opt_l);
134     while (<TXT>) {
135       print CRT;
136       print if ($opt_l);
137       last if (/\*\*\*\*\* END LICENSE BLOCK \*\*\*\*\*/);
138     }
139     close(CRT) or die "Couldn't close $crt: $!";
140   }
141   next if /^#|^\s*$/;
142   chomp;
143   if (/^CVS_ID\s+\"(.*)\"/) {
144     open(CRT, ">>$crt") or die "Couldn't open $crt: $!";
145     print CRT "# $1\n";
146     close(CRT) or die "Couldn't close $crt: $!";
147   }
148   if (/^CKA_LABEL\s+[A-Z0-9]+\s+\"(.*)\"/) {
149     $caname = $1;
150   }
151   if (/^CKA_VALUE MULTILINE_OCTAL/) {
152     my $data;
153     while (<TXT>) {
154       last if (/^END/);
155       chomp;
156       my @octets = split(/\\/);
157       shift @octets;
158       for (@octets) {
159         $data .= chr(oct);
160       }
161     }
162     my $pem = "-----BEGIN CERTIFICATE-----\n"
163             . MIME::Base64::encode($data)
164             . "-----END CERTIFICATE-----\n";
165     open(CRT, ">>$crt") or die "Couldn't open $crt: $!";
166     print CRT "\n$caname\n";
167     print CRT ("=" x length($caname) . "\n");
168     if (!$opt_t) {
169       print CRT $pem;
170     }
171     close(CRT) or die "Couldn't close $crt: $!";
172     if ($opt_t) {
173       open(TMP, "|$openssl x509 -md5 -fingerprint -text -inform PEM >> $crt") or die "Couldn't open openssl pipe: $!";
174       print TMP $pem;
175       close(TMP) or die "Couldn't close openssl pipe: $!";
176     }
177     print "Parsing: $caname\n" if ($opt_v);
178     $certnum ++;
179   }
180 }
181 close(TXT) or die "Couldn't close $txt: $!";
182 unlink $txt if ($opt_u);
183 print "Done ($certnum CA certs processed).\n" if (!$opt_q);
184
185 exit;
186
187