]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/wrap.pl
Remove RSA SSLv23 padding mode
[thirdparty/openssl.git] / util / wrap.pl
CommitLineData
285e2991
RL
1#! /usr/bin/env perl
2
3use strict;
4use warnings;
5
6use File::Basename;
7use File::Spec::Functions;
8
9my $there = canonpath(catdir(dirname($0), updir()));
10my $std_engines = catdir($there, 'engines');
11my $std_providers = catdir($there, 'providers');
12my $unix_shlib_wrap = catfile($there, 'util/shlib_wrap.sh');
13
14$ENV{OPENSSL_ENGINES} = $std_engines
15 if ($ENV{OPENSSL_ENGINES} // '') eq '' && -d $std_engines;
16$ENV{OPENSSL_MODULES} = $std_providers
17 if ($ENV{OPENSSL_MODULES} // '') eq '' && -d $std_providers;
18
19my $use_system = 0;
20my @cmd;
21
5c33a6ba 22if (-x $unix_shlib_wrap) {
285e2991
RL
23 @cmd = ( $unix_shlib_wrap, @ARGV );
24} else {
25 # Hope for the best
26 @cmd = ( @ARGV );
27}
28
29# The exec() statement on MSWin32 doesn't seem to give back the exit code
30# from the call, so we resort to using system() instead.
31my $waitcode = system @cmd;
32
33# According to documentation, -1 means that system() couldn't run the command,
34# otherwise, the value is similar to the Unix wait() status value
35# (exitcode << 8 | signalcode)
36die "wrap.pl: Failed to execute '", join(' ', @cmd), "': $!\n"
37 if $waitcode == -1;
5f1adadc
RL
38
39# When the subprocess aborted on a signal, mimic what Unix shells do, by
40# converting the signal code to an exit code by setting the high bit.
41# This only happens on Unix flavored operating systems, the others don't
42# have this sort of signaling to date, and simply leave the low byte zero.
43exit(($? & 255) | 128) if ($? & 255) != 0;
44
45# When not a signal, just shift down the subprocess exit code and use that.
285e2991 46exit($? >> 8);