2017-05-12 17:21:45 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2015-07-17 11:01:33 +02:00
|
|
|
# License GPLv2, see ../LICENSE
|
2017-05-12 17:21:45 +02:00
|
|
|
#
|
|
|
|
# instructions @ https://github.com/drwetter/testssl.sh/tree/2.9dev/bin
|
|
|
|
|
2015-07-17 11:01:33 +02:00
|
|
|
|
2017-05-12 17:21:45 +02:00
|
|
|
echo
|
2015-07-20 12:48:24 +02:00
|
|
|
echo "###################################################################"
|
|
|
|
echo "####### Build script for Peter Mosmans openssl #######"
|
|
|
|
echo "####### which contains all broken and all advanced features #######"
|
|
|
|
echo "###################################################################"
|
2017-05-12 17:21:45 +02:00
|
|
|
echo
|
2015-07-20 12:48:24 +02:00
|
|
|
sleep 3
|
2015-06-10 08:15:28 +02:00
|
|
|
|
2015-07-20 12:48:24 +02:00
|
|
|
STDOPTIONS="--prefix=/usr/ --openssldir=/etc/ssl -DOPENSSL_USE_BUILD_DATE enable-zlib \
|
|
|
|
enable-ssl2 enable-ssl3 enable-ssl-trace enable-rc5 enable-rc2 \
|
2015-07-20 21:46:04 +02:00
|
|
|
enable-gost enable-cms enable-md2 enable-mdc2 enable-ec enable-ec2m enable-ecdh enable-ecdsa \
|
2016-06-23 11:04:58 +02:00
|
|
|
enable-seed enable-camellia enable-idea enable-rfc3779 experimental-jpake"
|
2015-06-10 08:15:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
error() {
|
2017-05-12 17:21:45 +02:00
|
|
|
tput bold
|
|
|
|
echo "### ERROR $1 ###"
|
|
|
|
tput sgr0
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
|
|
|
clean() {
|
|
|
|
case $NOCLEAN in
|
|
|
|
yes|Y|YES) ;;
|
|
|
|
*) make clean
|
|
|
|
[ $? -ne 0 ] && error "no openssl directory"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
return 0
|
2015-06-10 08:15:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
makeall() {
|
2017-05-12 17:21:45 +02:00
|
|
|
make depend || error "depend"
|
|
|
|
make || error "making"
|
|
|
|
make report || error "testing/make report"
|
|
|
|
#FIXME: we need another error handler, as of now a failure doesn't mean a return status of != 0
|
|
|
|
# see https://github.com/openssl/openssl/pull/336
|
|
|
|
return 0
|
2015-06-10 08:15:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
copyfiles() {
|
2017-05-12 17:21:45 +02:00
|
|
|
local ret
|
|
|
|
local target=../openssl.$(uname).$(uname -m).$1
|
|
|
|
|
|
|
|
echo; apps/openssl version -a; echo
|
|
|
|
if [ -e "$target" ]; then
|
|
|
|
case $(uname) in
|
|
|
|
*BSD|*Darwin)
|
|
|
|
mv $target $target-$(stat -f "%Sm" -t "%Y-%m-%d %H:%M" "$target" | sed -e 's/ .*$//' -e 's/-//g')
|
|
|
|
;;
|
|
|
|
*) mv $target $target-$(stat -c %y $target | awk '{ print $1 }' | sed -e 's/ .*$//' -e 's/-//g') ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
cp -pf apps/openssl ../openssl.$(uname).$(uname -m).$1
|
|
|
|
ret=$?
|
|
|
|
echo
|
|
|
|
ls -l apps/openssl ../openssl.$(uname).$(uname -m).$1
|
|
|
|
return $ret
|
2015-06-10 08:15:28 +02:00
|
|
|
}
|
|
|
|
|
2016-06-23 11:04:58 +02:00
|
|
|
testv6_patch() {
|
2017-05-12 17:21:45 +02:00
|
|
|
if grep -q 'ending bracket for IPv6' apps/s_socket.c; then
|
|
|
|
STDOPTIONS="$STDOPTIONS -DOPENSSL_USE_IPV6"
|
|
|
|
echo "detected IPv6 patch thus compiling in IPv6 support"
|
2015-06-10 08:15:28 +02:00
|
|
|
echo
|
2017-05-12 17:21:45 +02:00
|
|
|
else
|
|
|
|
echo
|
|
|
|
echo "no IPv6 patch (Fedora) detected!! -- Press ^C and dl & apply from"
|
|
|
|
echo "https://github.com/drwetter/testssl.sh/blob/master/bin/fedora-dirk-ipv6.diff"
|
|
|
|
echo "or press any key to ignore"
|
|
|
|
echo
|
|
|
|
read a
|
|
|
|
fi
|
2016-06-23 11:04:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
testv6_patch
|
|
|
|
|
|
|
|
case $(uname) in
|
2017-05-12 17:21:45 +02:00
|
|
|
Linux|FreeBSD)
|
2016-06-23 11:04:58 +02:00
|
|
|
case $(uname -m) in
|
2017-05-12 17:21:45 +02:00
|
|
|
i686|armv7l) clean
|
|
|
|
if [ "$1" == krb ]; then
|
2016-06-23 11:04:58 +02:00
|
|
|
name2add=krb
|
|
|
|
./config $STDOPTIONS no-ec_nistp_64_gcc_128 --with-krb5-flavor=MIT
|
|
|
|
else
|
|
|
|
name2add=static
|
|
|
|
./config $STDOPTIONS no-ec_nistp_64_gcc_128 -static
|
|
|
|
fi
|
|
|
|
[ $? -ne 0 ] && error "configuring"
|
|
|
|
makeall && copyfiles "$name2add"
|
|
|
|
[ $? -ne 0 ] && error "copying files"
|
2017-05-12 17:21:45 +02:00
|
|
|
echo "\n(w/o 4 GOST ciphers): $(apps/openssl ciphers -V 'ALL:COMPLEMENTOFALL' | wc -l)"
|
2016-06-23 11:04:58 +02:00
|
|
|
echo
|
|
|
|
echo "------------ all ok ------------"
|
2017-05-12 17:21:45 +02:00
|
|
|
echo
|
2016-06-23 11:04:58 +02:00
|
|
|
;;
|
2017-05-12 17:21:45 +02:00
|
|
|
x86_64|amd64) clean
|
|
|
|
if [ "$1" = krb ]; then
|
2016-06-23 11:04:58 +02:00
|
|
|
name2add=krb
|
|
|
|
./config $STDOPTIONS enable-ec_nistp_64_gcc_128 --with-krb5-flavor=MIT
|
|
|
|
else
|
|
|
|
name2add=static
|
|
|
|
./config $STDOPTIONS enable-ec_nistp_64_gcc_128 -static
|
|
|
|
fi
|
|
|
|
[ $? -ne 0 ] && error "configuring"
|
|
|
|
makeall && copyfiles "$name2add"
|
|
|
|
[ $? -ne 0 ] && error "copying files"
|
2017-05-12 17:21:45 +02:00
|
|
|
echo "\n(w/o 4 GOST ciphers): $(apps/openssl ciphers -V 'ALL:COMPLEMENTOFALL' | wc -l)"
|
2016-06-23 11:04:58 +02:00
|
|
|
echo
|
|
|
|
echo "------------ all ok ------------"
|
2017-05-12 17:21:45 +02:00
|
|
|
echo
|
2016-06-23 11:04:58 +02:00
|
|
|
;;
|
2017-05-12 17:21:45 +02:00
|
|
|
*) echo " Sorry, don't know this architecture $(uname -m)"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
Darwin)
|
|
|
|
case $(uname -m) in
|
|
|
|
x86_64) clean
|
|
|
|
echo "FIXME"
|
|
|
|
;;
|
|
|
|
i386) clean
|
|
|
|
echo "FIXME"
|
2016-06-23 11:04:58 +02:00
|
|
|
;;
|
|
|
|
esac
|
2015-06-10 08:15:28 +02:00
|
|
|
;;
|
2017-05-12 17:21:45 +02:00
|
|
|
*) echo " Sorry, don't know this OS $(uname)"
|
|
|
|
;;
|
2015-06-10 08:15:28 +02:00
|
|
|
esac
|
|
|
|
|
2017-05-12 17:21:45 +02:00
|
|
|
|
|
|
|
# vim:ts=5:sw=5
|
|
|
|
# $Id: make-openssl.sh,v 1.18 2017/05/12 15:03:00 dirkw Exp $
|
2015-06-10 08:15:28 +02:00
|
|
|
|