blob: 887e9271254e49857e8bee23aaed9e79a971df27 [file] [log] [blame]
Dr. Stephen Henson439df502000-05-18 00:33:00 +00001#!/usr/local/bin/perl
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002
Dr. Stephen Henson439df502000-05-18 00:33:00 +00003# Perl c_rehash script, scan all files in a directory
4# and add symbolic links to their hash values.
Ralf S. Engelschall13e91dd1998-12-22 15:59:57 +00005
Dr. Stephen Henson439df502000-05-18 00:33:00 +00006my $dir;
Dr. Stephen Henson45078e62010-04-14 23:07:12 +00007my $prefix;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00008
Matthias Andreea787c252014-09-07 18:45:02 -04009my $openssl = $ENV{OPENSSL} || "openssl";
10my $pwd;
11my $x509hash = "-subject_hash";
12my $crlhash = "-hash";
13my $verbose = 0;
14my $symlink_exists=eval {symlink("",""); 1};
15my $removelinks = 1;
16
17## Parse flags.
18while ( $ARGV[0] =~ '-.*' ) {
19 my $flag = shift @ARGV;
20 last if ( $flag eq '--');
21 if ( $flag =~ /-old/) {
22 $x509hash = "-subject_hash_old";
23 $crlhash = "-hash_old";
24 } elsif ( $flag =~ /-h/) {
25 help();
26 } elsif ( $flag eq '-n' ) {
27 $removelinks = 0;
28 } elsif ( $flag eq '-v' ) {
29 $verbose++;
30 }
31 else {
32 print STDERR "Usage error; try -help.\n";
33 exit 1;
34 }
Dr. Stephen Henson439df502000-05-18 00:33:00 +000035}
36
Matthias Andreea787c252014-09-07 18:45:02 -040037sub help {
38 print "Usage: c_rehash [-old] [-h] [-v] [dirs...]\n";
39 print " -old use old-style digest\n";
40 print " -h print this help text\n";
41 print " -v print files removed and linked\n";
42 exit 0;
43}
44
Andy Polyakova2688c82006-10-26 10:52:12 +000045eval "require Cwd";
46if (defined(&Cwd::getcwd)) {
47 $pwd=Cwd::getcwd();
48} else {
Matthias Andreea787c252014-09-07 18:45:02 -040049 $pwd=`pwd`;
50 chomp($pwd);
Andy Polyakova2688c82006-10-26 10:52:12 +000051}
Andy Polyakovd8cdd152006-10-21 16:28:03 +000052
Matthias Andreea787c252014-09-07 18:45:02 -040053# DOS/Win32 or Unix delimiter? Prefix our installdir, then search.
54my $path_delim = ($pwd =~ /^[a-z]\:/i) ? ';' : ':';
55$ENV{PATH} = "$prefix/bin" . ($ENV{PATH} ? $path_delim . $ENV{PATH} : "");
Dr. Stephen Henson439df502000-05-18 00:33:00 +000056
Richard Levitte127dca42002-06-13 19:59:40 +000057if(! -x $openssl) {
Dr. Stephen Henson439df502000-05-18 00:33:00 +000058 my $found = 0;
Andy Polyakovd8cdd152006-10-21 16:28:03 +000059 foreach (split /$path_delim/, $ENV{PATH}) {
Richard Levitte127dca42002-06-13 19:59:40 +000060 if(-x "$_/$openssl") {
Dr. Stephen Henson439df502000-05-18 00:33:00 +000061 $found = 1;
Dr. Stephen Hensonef236ec2009-04-23 16:32:42 +000062 $openssl = "$_/$openssl";
Dr. Stephen Henson439df502000-05-18 00:33:00 +000063 last;
64 }
65 }
66 if($found == 0) {
67 print STDERR "c_rehash: rehashing skipped ('openssl' program not available)\n";
68 exit 0;
69 }
70}
71
72if(@ARGV) {
73 @dirlist = @ARGV;
74} elsif($ENV{SSL_CERT_DIR}) {
Andy Polyakovd8cdd152006-10-21 16:28:03 +000075 @dirlist = split /$path_delim/, $ENV{SSL_CERT_DIR};
Dr. Stephen Henson439df502000-05-18 00:33:00 +000076} else {
77 $dirlist[0] = "$dir/certs";
78}
79
Andy Polyakovd8cdd152006-10-21 16:28:03 +000080if (-d $dirlist[0]) {
81 chdir $dirlist[0];
82 $openssl="$pwd/$openssl" if (!-x $openssl);
83 chdir $pwd;
84}
Dr. Stephen Henson439df502000-05-18 00:33:00 +000085
86foreach (@dirlist) {
87 if(-d $_ and -w $_) {
88 hash_dir($_);
89 }
90}
91
92sub hash_dir {
93 my %hashlist;
94 print "Doing $_[0]\n";
95 chdir $_[0];
Rich Salz6f46c3c2014-09-11 13:08:30 -040096 opendir(DIR, ".");
97 my @flist = readdir(DIR);
98 closedir DIR;
Matthias Andreea787c252014-09-07 18:45:02 -040099 if ( $removelinks ) {
Matthias Andreea787c252014-09-07 18:45:02 -0400100 # Delete any existing symbolic links
101 foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) {
102 if(-l $_) {
103 unlink $_;
104 print "unlink $_" if $verbose;
105 }
Dr. Stephen Henson439df502000-05-18 00:33:00 +0000106 }
107 }
Matthias Andreea787c252014-09-07 18:45:02 -0400108 FILE: foreach $fname (grep {/\.(pem)|(crt)|(cer)|(crl)$/} @flist) {
Dr. Stephen Henson439df502000-05-18 00:33:00 +0000109 # Check to see if certificates and/or CRLs present.
110 my ($cert, $crl) = check_file($fname);
111 if(!$cert && !$crl) {
112 print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n";
113 next;
114 }
115 link_hash_cert($fname) if($cert);
116 link_hash_crl($fname) if($crl);
117 }
118}
119
120sub check_file {
121 my ($is_cert, $is_crl) = (0,0);
122 my $fname = $_[0];
123 open IN, $fname;
124 while(<IN>) {
125 if(/^-----BEGIN (.*)-----/) {
126 my $hdr = $1;
127 if($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) {
128 $is_cert = 1;
129 last if($is_crl);
130 } elsif($hdr eq "X509 CRL") {
131 $is_crl = 1;
132 last if($is_cert);
133 }
134 }
135 }
136 close IN;
137 return ($is_cert, $is_crl);
138}
139
140
141# Link a certificate to its subject name hash value, each hash is of
142# the form <hash>.<n> where n is an integer. If the hash value already exists
143# then we need to up the value of n, unless its a duplicate in which
144# case we skip the link. We check for duplicates by comparing the
145# certificate fingerprints
146
147sub link_hash_cert {
148 my $fname = $_[0];
Richard Levitteb7910992002-10-11 11:34:20 +0000149 $fname =~ s/'/'\\''/g;
Matthias Andreea787c252014-09-07 18:45:02 -0400150 my ($hash, $fprint) = `"$openssl" x509 $x509hash -fingerprint -noout -in "$fname"`;
Dr. Stephen Henson439df502000-05-18 00:33:00 +0000151 chomp $hash;
152 chomp $fprint;
153 $fprint =~ s/^.*=//;
154 $fprint =~ tr/://d;
155 my $suffix = 0;
156 # Search for an unused hash filename
157 while(exists $hashlist{"$hash.$suffix"}) {
158 # Hash matches: if fingerprint matches its a duplicate cert
159 if($hashlist{"$hash.$suffix"} eq $fprint) {
160 print STDERR "WARNING: Skipping duplicate certificate $fname\n";
161 return;
162 }
163 $suffix++;
164 }
165 $hash .= ".$suffix";
Richard Levitte967d95f2001-04-04 15:50:30 +0000166 if ($symlink_exists) {
167 symlink $fname, $hash;
Matthias Andreea787c252014-09-07 18:45:02 -0400168 print "link $fname -> $hash\n" if $verbose;
Richard Levitte967d95f2001-04-04 15:50:30 +0000169 } else {
Andy Polyakovd8cdd152006-10-21 16:28:03 +0000170 open IN,"<$fname" or die "can't open $fname for read";
171 open OUT,">$hash" or die "can't open $hash for write";
172 print OUT <IN>; # does the job for small text files
173 close OUT;
174 close IN;
Matthias Andreea787c252014-09-07 18:45:02 -0400175 print "copy $fname -> $hash\n" if $verbose;
Richard Levitte967d95f2001-04-04 15:50:30 +0000176 }
Dr. Stephen Henson439df502000-05-18 00:33:00 +0000177 $hashlist{$hash} = $fprint;
178}
179
180# Same as above except for a CRL. CRL links are of the form <hash>.r<n>
181
182sub link_hash_crl {
183 my $fname = $_[0];
Richard Levittecaa4f472002-10-11 20:28:23 +0000184 $fname =~ s/'/'\\''/g;
Matthias Andreea787c252014-09-07 18:45:02 -0400185 my ($hash, $fprint) = `"$openssl" crl $crlhash -fingerprint -noout -in '$fname'`;
Dr. Stephen Henson439df502000-05-18 00:33:00 +0000186 chomp $hash;
187 chomp $fprint;
188 $fprint =~ s/^.*=//;
189 $fprint =~ tr/://d;
190 my $suffix = 0;
191 # Search for an unused hash filename
192 while(exists $hashlist{"$hash.r$suffix"}) {
193 # Hash matches: if fingerprint matches its a duplicate cert
194 if($hashlist{"$hash.r$suffix"} eq $fprint) {
195 print STDERR "WARNING: Skipping duplicate CRL $fname\n";
196 return;
197 }
198 $suffix++;
199 }
200 $hash .= ".r$suffix";
Richard Levitte967d95f2001-04-04 15:50:30 +0000201 if ($symlink_exists) {
202 symlink $fname, $hash;
Matthias Andreea787c252014-09-07 18:45:02 -0400203 print "link $fname -> $hash\n" if $verbose;
Richard Levitte967d95f2001-04-04 15:50:30 +0000204 } else {
205 system ("cp", $fname, $hash);
Matthias Andreea787c252014-09-07 18:45:02 -0400206 print "cp $fname -> $hash\n" if $verbose;
Richard Levitte967d95f2001-04-04 15:50:30 +0000207 }
Dr. Stephen Henson439df502000-05-18 00:33:00 +0000208 $hashlist{$hash} = $fprint;
209}
210