-
Notifications
You must be signed in to change notification settings - Fork 207
/
libssh.sh
executable file
·143 lines (118 loc) · 5.17 KB
/
libssh.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/usr/bin/env bash
# Copyright (C) Viktor Szakats. See LICENSE.md
# SPDX-License-Identifier: MIT
# WARNING: libssh uses hard-coded world-writable paths (/etc/..., ~/.ssh/) to
# read its configuration from, making it vulnerable to attacks on
# Windows. Do not use this component till there is a fix for these.
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail
export _NAM _VER _OUT _BAS _DST
_NAM="$(basename "$0" | cut -f 1 -d '.')"
_VER="$1"
(
cd "${_NAM}" || exit 0
rm -r -f "${_PKGDIRS:?}" "${_BLDDIR:?}"
CPPFLAGS=''
LIBS=''
options=''
# Hack to force pthread to remain undetected and force falling back to Windows
# native threading. If there is a better way, I could not find it. Tried these
# without success:
# -DCMAKE_THREAD_PREFER_PTHREADS=OFF
# -DTHREADS_PREFER_PTHREAD_FLAG=OFF
# -DCMAKE_USE_WIN32_THREADS_INIT=ON
CPPFLAGS+=' -Dpthread_create=func_not_existing'
if [ -n "${_ZLIB}" ] && [ -d "../${_ZLIB}/${_PP}" ]; then
options+=" -DZLIB_INCLUDE_DIR=${_TOP}/${_ZLIB}/${_PP}/include"
options+=" -DZLIB_LIBRARY=${_TOP}/${_ZLIB}/${_PP}/lib/libz.a"
else
options+=' -DWITH_ZLIB=OFF'
fi
if [ -n "${_OPENSSL}" ] && [ -d "../${_OPENSSL}/${_PP}" ]; then
options+=" -DOPENSSL_ROOT_DIR=${_TOP}/${_OPENSSL}/${_PP}"
if [ "${_OPENSSL}" = 'boringssl' ] || [ "${_OPENSSL}" = 'awslc' ]; then
# FIXME (upstream):
# - It collides with wincrypt.h macros. Workaround:
CPPFLAGS+=' -DNOCRYPT -D__WINCRYPT_H__'
# - Wants to compile libcrypto_compat.c and assumes pre-OpenSSL 1.1
# non-opaque structures. Workaround:
echo > src/libcrypto-compat.c
# - Detects HAVE_OPENSSL_CRYPTO_CTR128_ENCRYPT, and assumes it means
# openssl/modes.h also exists, but with BoringSSL, it does not. Workaround:
[ -d include/openssl ] || mkdir -p include/openssl
touch include/openssl/modes.h
# - libssh 0.10.0 started to enforce specific OpenSSL version numbers,
# but CMake's version detection (as of 3.27.1) is not aware of BoringSSL
# and fails to detect it. Work this around by the horrible hack of copying
# the necessary PP line where CMake is looking for it:
i="${_TOP}/${_OPENSSL}/${_PP}/include/openssl"
v="${i}/opensslv.h"
if ! grep -q -a 'OPENSSL_VERSION_NUMBER' "${v}"; then
l="$(grep --no-filename -a 'OPENSSL_VERSION_NUMBER' "${i}"/* | head -n 1)"
tmp="${l}.tmp"
touch -r "${v}" "${tmp}"
printf '\n#if 0\n%s\n#endif\n' "${l}" >> "${v}"
touch -r "${tmp}" "${v}"
rm -f "${tmp}"
fi
if [ "${_OS}" = 'win' ]; then
CPPFLAGS+=' -DWIN32_LEAN_AND_MEAN'
fi
LIBS+=' -lpthread' # to detect EVP_aes_128_*
elif [ "${_OPENSSL}" = 'libressl' ]; then
# FIXME (upstream):
# - Public function explicit_bzero() clashes with libressl.
# Workaround: put -lssh before -lcrypto.
# - error: use of undeclared identifier 'EVP_PKEY_POLY1305'
[ "${_OS}" = 'win' ] && CPPFLAGS+=' -DLIBRESSL_DISABLE_OVERRIDE_WINCRYPT_DEFINES_WARNING'
if [ "${_OS}" = 'win' ]; then
LIBS+=' -lbcrypt'
LIBS+=' -lws2_32' # to detect EVP_aes_128_*
fi
elif [ "${_OPENSSL}" = 'quictls' ] || [ "${_OPENSSL}" = 'openssl' ]; then
CPPFLAGS+=' -DOPENSSL_SUPPRESS_DEPRECATED'
if [ "${_OS}" = 'win' ]; then
LIBS+=' -lbcrypt'
LIBS+=' -lws2_32' # to detect EVP_aes_128_*
fi
fi
fi
if [ "${_OS}" = 'win' ]; then
_my_prefix='C:/Windows/System32/ssh'
else
_my_prefix='/etc/ssh'
fi
# shellcheck disable=SC2086
cmake -B "${_BLDDIR}" ${_CMAKE_GLOBAL} ${_CMAKE_CXX_GLOBAL} ${options} \
"-DGLOBAL_CLIENT_CONFIG=${_my_prefix}/ssh_config" \
"-DGLOBAL_BIND_CONFIG=${_my_prefix}/libssh_server_config" \
'-DBUILD_SHARED_LIBS=OFF' \
'-DWITH_GSSAPI=OFF' \
'-DWITH_NACL=OFF' \
'-DWITH_SERVER=OFF' \
'-DWITH_EXAMPLES=OFF' \
'-DUNIT_TESTING=OFF' \
"-DCMAKE_C_FLAGS=${_CFLAGS_GLOBAL_CMAKE} ${_CFLAGS_GLOBAL} ${_CPPFLAGS_GLOBAL} ${CPPFLAGS} ${_LDFLAGS_GLOBAL} ${LIBS}" \
"-DCMAKE_CXX_FLAGS=${_CFLAGS_GLOBAL_CMAKE} ${_CFLAGS_GLOBAL} ${_CPPFLAGS_GLOBAL} ${CPPFLAGS} ${_LDFLAGS_GLOBAL} ${LIBS} ${_CXXFLAGS_GLOBAL} ${_LDFLAGS_CXX_GLOBAL}"
cmake --build "${_BLDDIR}"
cmake --install "${_BLDDIR}" --prefix "${_PPS}"
# Make steps for determinism
readonly _ref='ChangeLog'
# shellcheck disable=SC2086
"${_STRIP_LIB}" ${_STRIPFLAGS_LIB} "${_PPS}"/lib/*.a
touch -c -r "${_ref}" "${_PPS}"/include/libssh/*.h
touch -c -r "${_ref}" "${_PPS}"/lib/*.a
# Create package
_OUT="${_NAM}-${_VER}${_REVSUFFIX}${_PKGSUFFIX}"
_BAS="${_NAM}-${_VER}${_PKGSUFFIX}"
_DST="$(pwd)/_pkg"; rm -r -f "${_DST}"
mkdir -p "${_DST}/include/libssh"
mkdir -p "${_DST}/lib"
cp -f -p "${_PPS}"/include/libssh/*.h "${_DST}/include/libssh/"
cp -f -p "${_PPS}"/lib/*.a "${_DST}/lib/"
cp -f -p ChangeLog "${_DST}/ChangeLog.txt"
cp -f -p AUTHORS "${_DST}/AUTHORS.txt"
cp -f -p COPYING "${_DST}/COPYING.txt"
cp -f -p README "${_DST}/README.txt"
../_pkg.sh "$(pwd)/${_ref}"
)