X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=tools%2Fc_rehash.in;h=ca3021ae8a4ff2ccf1a2f121a60f8ba6e20c9aef;hp=26db8999d8c8bf9173c99f5e29b10cfd87bdd3a5;hb=d8cdd1567f36105f365714673166000f798c9709;hpb=967d95f096e359174bb55733ff1cb56928710b07 diff --git a/tools/c_rehash.in b/tools/c_rehash.in index 26db8999d8..ca3021ae8a 100644 --- a/tools/c_rehash.in +++ b/tools/c_rehash.in @@ -15,12 +15,15 @@ if(defined $ENV{OPENSSL}) { $ENV{OPENSSL} = $openssl; } -$ENV{PATH} .= ":$dir/bin"; +my $pwd = `pwd`; chomp $pwd; +my $path_delim = ($pwd =~ /^[a-z]\:/i) ? ';' : ':'; # DOS/Win32 or Unix delimiter? -if(! -f $openssl) { +$ENV{PATH} .= "$path_delim$dir/bin"; + +if(! -x $openssl) { my $found = 0; - foreach (split /:/, $ENV{PATH}) { - if(-f "$_/$openssl") { + foreach (split /$path_delim/, $ENV{PATH}) { + if(-x "$_/$openssl") { $found = 1; last; } @@ -34,11 +37,16 @@ if(! -f $openssl) { if(@ARGV) { @dirlist = @ARGV; } elsif($ENV{SSL_CERT_DIR}) { - @dirlist = split /:/, $ENV{SSL_CERT_DIR}; + @dirlist = split /$path_delim/, $ENV{SSL_CERT_DIR}; } else { $dirlist[0] = "$dir/certs"; } +if (-d $dirlist[0]) { + chdir $dirlist[0]; + $openssl="$pwd/$openssl" if (!-x $openssl); + chdir $pwd; +} foreach (@dirlist) { if(-d $_ and -w $_) { @@ -100,7 +108,8 @@ sub check_file { sub link_hash_cert { my $fname = $_[0]; - my ($hash, $fprint) = `$openssl x509 -hash -fingerprint -noout -in $fname`; + $fname =~ s/'/'\\''/g; + my ($hash, $fprint) = `"$openssl" x509 -hash -fingerprint -noout -in "$fname"`; chomp $hash; chomp $fprint; $fprint =~ s/^.*=//; @@ -121,7 +130,11 @@ sub link_hash_cert { if ($symlink_exists) { symlink $fname, $hash; } else { - system ("cp", $fname, $hash); + open IN,"<$fname" or die "can't open $fname for read"; + open OUT,">$hash" or die "can't open $hash for write"; + print OUT ; # does the job for small text files + close OUT; + close IN; } $hashlist{$hash} = $fprint; } @@ -130,7 +143,8 @@ sub link_hash_cert { sub link_hash_crl { my $fname = $_[0]; - my ($hash, $fprint) = `$openssl crl -hash -fingerprint -noout -in $fname`; + $fname =~ s/'/'\\''/g; + my ($hash, $fprint) = `"$openssl" crl -hash -fingerprint -noout -in '$fname'`; chomp $hash; chomp $fprint; $fprint =~ s/^.*=//;