c_rehash.in 6.0 KB
Newer Older
1
#!{- $config{perl} -}
2

R
Richard Levitte 已提交
3
# {- join("\n# ", @autowarntext) -}
R
Rich Salz 已提交
4 5 6 7 8 9
# Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the OpenSSL license (the "License").  You may not use
# this file except in compliance with the License.  You can obtain a copy
# in the file LICENSE in the source distribution or at
# https://www.openssl.org/source/license.html
R
Richard Levitte 已提交
10

11 12 13
# Perl c_rehash script, scan all files in a directory
# and add symbolic links to their hash values.

14 15
my $dir = {- quotify1($config{openssldir}) -};
my $prefix = {- quotify1($config{prefix}) -};
16

R
Rich Salz 已提交
17
my $errorcount = 0;
18 19 20 21 22 23 24 25 26
my $openssl = $ENV{OPENSSL} || "openssl";
my $pwd;
my $x509hash = "-subject_hash";
my $crlhash = "-hash";
my $verbose = 0;
my $symlink_exists=eval {symlink("",""); 1};
my $removelinks = 1;

##  Parse flags.
27
while ( $ARGV[0] =~ /^-/ ) {
28 29
    my $flag = shift @ARGV;
    last if ( $flag eq '--');
30
    if ( $flag eq '-old') {
31 32
	    $x509hash = "-subject_hash_old";
	    $crlhash = "-hash_old";
33
    } elsif ( $flag eq '-h') {
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
	    help();
    } elsif ( $flag eq '-n' ) {
	    $removelinks = 0;
    } elsif ( $flag eq '-v' ) {
	    $verbose++;
    }
    else {
	    print STDERR "Usage error; try -help.\n";
	    exit 1;
    }
}

sub help {
	print "Usage: c_rehash [-old] [-h] [-v] [dirs...]\n";
	print "   -old use old-style digest\n";
	print "   -h print this help text\n";
	print "   -v print files removed and linked\n";
	exit 0;
52 53
}

54 55 56 57
eval "require Cwd";
if (defined(&Cwd::getcwd)) {
	$pwd=Cwd::getcwd();
} else {
58 59
	$pwd=`pwd`;
	chomp($pwd);
60
}
61

62 63 64
# DOS/Win32 or Unix delimiter?  Prefix our installdir, then search.
my $path_delim = ($pwd =~ /^[a-z]\:/i) ? ';' : ':';
$ENV{PATH} = "$prefix/bin" . ($ENV{PATH} ? $path_delim . $ENV{PATH} : "");
65

66
if (! -x $openssl) {
67
	my $found = 0;
68
	foreach (split /$path_delim/, $ENV{PATH}) {
69
		if (-x "$_/$openssl") {
70
			$found = 1;
71
			$openssl = "$_/$openssl";
72 73 74
			last;
		}	
	}
75
	if ($found == 0) {
76 77 78 79 80
		print STDERR "c_rehash: rehashing skipped ('openssl' program not available)\n";
		exit 0;
	}
}

81
if (@ARGV) {
82
	@dirlist = @ARGV;
83
} elsif ($ENV{SSL_CERT_DIR}) {
84
	@dirlist = split /$path_delim/, $ENV{SSL_CERT_DIR};
85 86 87 88
} else {
	$dirlist[0] = "$dir/certs";
}

89 90 91 92 93
if (-d $dirlist[0]) {
	chdir $dirlist[0];
	$openssl="$pwd/$openssl" if (!-x $openssl);
	chdir $pwd;
}
94 95

foreach (@dirlist) {
96 97
	if (-d $_ ) {
            if ( -w $_) {
98
		hash_dir($_);
99 100
            } else {
                print "Skipping $_, can't write\n";
R
Rich Salz 已提交
101
                $errorcount++;
102
            }
103 104
	}
}
R
Rich Salz 已提交
105
exit($errorcount);
106 107 108 109 110

sub hash_dir {
	my %hashlist;
	print "Doing $_[0]\n";
	chdir $_[0];
R
Rich Salz 已提交
111
	opendir(DIR, ".");
R
Rich Salz 已提交
112
	my @flist = sort readdir(DIR);
R
Rich Salz 已提交
113
	closedir DIR;
114 115 116
	if ( $removelinks ) {
		# Delete any existing symbolic links
		foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) {
117
			if (-l $_) {
118
				print "unlink $_" if $verbose;
119
				unlink $_ || warn "Can't unlink $_, $!\n";
120
			}
121 122
		}
	}
123
	FILE: foreach $fname (grep {/\.(pem)|(crt)|(cer)|(crl)$/} @flist) {
124 125
		# Check to see if certificates and/or CRLs present.
		my ($cert, $crl) = check_file($fname);
126
		if (!$cert && !$crl) {
127 128 129
			print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n";
			next;
		}
130 131
		link_hash_cert($fname) if ($cert);
		link_hash_crl($fname) if ($crl);
132 133 134 135 136 137 138 139
	}
}

sub check_file {
	my ($is_cert, $is_crl) = (0,0);
	my $fname = $_[0];
	open IN, $fname;
	while(<IN>) {
140
		if (/^-----BEGIN (.*)-----/) {
141
			my $hdr = $1;
142
			if ($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) {
143
				$is_cert = 1;
144 145
				last if ($is_crl);
			} elsif ($hdr eq "X509 CRL") {
146
				$is_crl = 1;
147
				last if ($is_cert);
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
			}
		}
	}
	close IN;
	return ($is_cert, $is_crl);
}


# Link a certificate to its subject name hash value, each hash is of
# the form <hash>.<n> where n is an integer. If the hash value already exists
# then we need to up the value of n, unless its a duplicate in which
# case we skip the link. We check for duplicates by comparing the
# certificate fingerprints

sub link_hash_cert {
		my $fname = $_[0];
164
		$fname =~ s/'/'\\''/g;
165
		my ($hash, $fprint) = `"$openssl" x509 $x509hash -fingerprint -noout -in "$fname"`;
166 167 168 169 170 171 172 173
		chomp $hash;
		chomp $fprint;
		$fprint =~ s/^.*=//;
		$fprint =~ tr/://d;
		my $suffix = 0;
		# Search for an unused hash filename
		while(exists $hashlist{"$hash.$suffix"}) {
			# Hash matches: if fingerprint matches its a duplicate cert
174
			if ($hashlist{"$hash.$suffix"} eq $fprint) {
175 176 177 178 179 180
				print STDERR "WARNING: Skipping duplicate certificate $fname\n";
				return;
			}
			$suffix++;
		}
		$hash .= ".$suffix";
181
		if ($symlink_exists) {
182
			print "link $fname -> $hash\n" if $verbose;
183
			symlink $fname, $hash || warn "Can't symlink, $!";
184
		} else {
185
			print "copy $fname -> $hash\n" if $verbose;
186 187 188 189 190 191 192 193 194 195 196
                        if (open($in, "<", $fname)) {
                            if (open($out,">", $hash)) {
                                print $out $_ while (<$in>);
                                close $out;
                            } else {
                                warn "can't open $hash for write, $!";
                            }
                            close $in;
                        } else {
                            warn "can't open $fname for read, $!";
                        }
197
		}
198 199 200 201 202 203 204
		$hashlist{$hash} = $fprint;
}

# Same as above except for a CRL. CRL links are of the form <hash>.r<n>

sub link_hash_crl {
		my $fname = $_[0];
205
		$fname =~ s/'/'\\''/g;
206
		my ($hash, $fprint) = `"$openssl" crl $crlhash -fingerprint -noout -in '$fname'`;
207 208 209 210 211 212 213 214
		chomp $hash;
		chomp $fprint;
		$fprint =~ s/^.*=//;
		$fprint =~ tr/://d;
		my $suffix = 0;
		# Search for an unused hash filename
		while(exists $hashlist{"$hash.r$suffix"}) {
			# Hash matches: if fingerprint matches its a duplicate cert
215
			if ($hashlist{"$hash.r$suffix"} eq $fprint) {
216 217 218 219 220 221
				print STDERR "WARNING: Skipping duplicate CRL $fname\n";
				return;
			}
			$suffix++;
		}
		$hash .= ".r$suffix";
222
		if ($symlink_exists) {
223
			print "link $fname -> $hash\n" if $verbose;
224
			symlink $fname, $hash || warn "Can't symlink, $!";
225
		} else {
226
			print "cp $fname -> $hash\n" if $verbose;
227 228
			system ("cp", $fname, $hash);
                        warn "Can't copy, $!" if ($? >> 8) != 0;
229
		}
230 231
		$hashlist{$hash} = $fprint;
}