Skip to content

Commit fc14c55

Browse files
authored
Add OpenVPN to CI (#1705)
### Description of changes: 1. Added patch for TLS1_PRF to use alternative codepath in OpenVPN (for versions <= 2.6.x) 2. integration script and workflow for Github CI ### Call-outs: - We anchor to tip of the minor version 2.6.x. We can not support OpenVPN versions > 2.6 as tip of main has removed the alternate codepath for TLS1_PRF that we currently rely on. This change should be pulled into the next minor version of OpenVPN and will break AWS-LC compatibility. - Management interface is disabled when building openVPN, this will be changed in a later PR once we add in support. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
1 parent b7d7a99 commit fc14c55

File tree

4 files changed

+129
-27
lines changed

4 files changed

+129
-27
lines changed

.github/workflows/integrations.yml

+15
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,21 @@ jobs:
175175
- name: Run strongswan build
176176
run: |
177177
./tests/ci/integration/run_strongswan_integration.sh
178+
openvpn:
179+
if: github.repository_owner == 'aws'
180+
runs-on: ubuntu-latest
181+
steps:
182+
- name: Install OS Dependencies
183+
run: |
184+
sudo apt-get update
185+
sudo apt-get -y --no-install-recommends install \
186+
cmake gcc ninja-build golang libnl-3-dev libnl-genl-3-dev \
187+
libcap-ng-dev liblz4-dev liblzo2-dev libpam-dev libcmocka-dev \
188+
python3-docutils
189+
- uses: actions/checkout@v4
190+
- name: Run openvpn build
191+
run: |
192+
./tests/ci/integration/run_openvpn_integration.sh
178193
libevent:
179194
if: github.repository_owner == 'aws'
180195
runs-on: ubuntu-latest

tests/ci/integration/openvpn_patch/aws-lc-openvpn-cert.patch

-23
This file was deleted.

tests/ci/integration/openvpn_patch/aws-lc-openvpn.patch tests/ci/integration/openvpn_patch/aws-lc-openvpn2-6-x.patch

+32-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
diff --git a/src/openvpn/crypto_openssl.c b/src/openvpn/crypto_openssl.c
2-
index 50683b67..eef80d54 100644
2+
index fbc95ff7..e174ed76 100644
33
--- a/src/openvpn/crypto_openssl.c
44
+++ b/src/openvpn/crypto_openssl.c
5-
@@ -1460,7 +1460,12 @@ tls1_P_hash(const EVP_MD *md, const unsigned char *sec,
5+
@@ -1398,7 +1398,7 @@ memcmp_constant_time(const void *a, const void *b, size_t size)
6+
return CRYPTO_memcmp(a, b, size);
7+
}
8+
9+
-#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER)
10+
+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER) && !defined(OPENSSL_IS_AWSLC)
11+
bool
12+
ssl_tls1_PRF(const uint8_t *seed, int seed_len, const uint8_t *secret,
13+
int secret_len, uint8_t *output, int output_len)
14+
@@ -1478,7 +1478,12 @@ tls1_P_hash(const EVP_MD *md, const unsigned char *sec,
615
int ret = false;
716

817
chunk = EVP_MD_size(md);
@@ -29,10 +38,29 @@ index c9fa7196..a48ef391 100644
2938
#endif
3039

3140
diff --git a/src/openvpn/ssl_openssl.c b/src/openvpn/ssl_openssl.c
32-
index 4383e981..bd2039d3 100644
41+
index 2595f878..cf99c3ec 100644
3342
--- a/src/openvpn/ssl_openssl.c
3443
+++ b/src/openvpn/ssl_openssl.c
35-
@@ -2314,7 +2314,7 @@ show_available_tls_ciphers_list(const char *cipher_list,
44+
@@ -1658,8 +1658,10 @@ tls_ctx_load_ca(struct tls_root_ctx *ctx, const char *ca_file,
45+
sk_X509_INFO_pop_free(info_stack, X509_INFO_free);
46+
}
47+
48+
+ int cnum;
49+
if (tls_server)
50+
{
51+
+ cnum = sk_X509_NAME_num(cert_names);
52+
SSL_CTX_set_client_CA_list(ctx->ctx, cert_names);
53+
}
54+
55+
@@ -1672,7 +1674,6 @@ tls_ctx_load_ca(struct tls_root_ctx *ctx, const char *ca_file,
56+
57+
if (tls_server)
58+
{
59+
- int cnum = sk_X509_NAME_num(cert_names);
60+
if (cnum != added)
61+
{
62+
crypto_msg(M_FATAL, "Cannot load CA certificate file %s (only %d "
63+
@@ -2234,7 +2235,7 @@ show_available_tls_ciphers_list(const char *cipher_list,
3664
crypto_msg(M_FATAL, "Cannot create SSL object");
3765
}
3866

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
#!/usr/bin/env bash
2+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
# SPDX-License-Identifier: Apache-2.0 OR ISC
4+
5+
set -exu
6+
7+
source tests/ci/common_posix_setup.sh
8+
9+
# Set up environment.
10+
11+
# SYS_ROOT
12+
# - SRC_ROOT(aws-lc)
13+
# - SCRATCH_FOLDER
14+
# - OPENVPN_SRC_FOLDER
15+
# - AWS_LC_BUILD_FOLDER
16+
# - AWS_LC_INSTALL_FOLDER
17+
18+
# Assumes script is executed from the root of aws-lc directory
19+
SCRATCH_FOLDER="${SRC_ROOT}/OPENVPN_BUILD_ROOT"
20+
OPENVPN_SRC_FOLDER="${SCRATCH_FOLDER}/openvpn"
21+
OPENVPN_BUILD_PREFIX="${OPENVPN_SRC_FOLDER}/build/install"
22+
OPENVPN_BUILD_EPREFIX="${OPENVPN_SRC_FOLDER}/build/exec-install"
23+
OPENVPN_PATCH_BUILD_FOLDER="${SRC_ROOT}/tests/ci/integration/openvpn_patch"
24+
25+
AWS_LC_BUILD_FOLDER="${SCRATCH_FOLDER}/aws-lc-build"
26+
AWS_LC_INSTALL_FOLDER="${SCRATCH_FOLDER}/aws-lc-install"
27+
28+
29+
mkdir -p ${SCRATCH_FOLDER}
30+
rm -rf "${SCRATCH_FOLDER:?}"/*
31+
cd ${SCRATCH_FOLDER}
32+
33+
function openvpn_build() {
34+
autoreconf -ivf
35+
36+
OPENSSL_CFLAGS="-I/${AWS_LC_INSTALL_FOLDER}/include" \
37+
OPENSSL_LIBS="-L/${AWS_LC_INSTALL_FOLDER}/lib -lssl -lcrypto" \
38+
./configure \
39+
--prefix="$OPENVPN_BUILD_PREFIX" \
40+
--exec-prefix="$OPENVPN_BUILD_EPREFIX" \
41+
--with-crypto-library=openssl \
42+
--with-openssl-engine=no \
43+
--disable-management
44+
45+
make -j install
46+
47+
export LD_LIBRARY_PATH="${AWS_LC_INSTALL_FOLDER}/lib"
48+
49+
local openvpn_executable="${OPENVPN_SRC_FOLDER}/build/exec-install/sbin/openvpn"
50+
ldd ${openvpn_executable} \
51+
| grep "${AWS_LC_INSTALL_FOLDER}/lib/libcrypto.so" || exit 1
52+
}
53+
54+
# TODO: Remove this when we make an upstream contribution.
55+
function openvpn_patch_build() {
56+
for patchfile in $(find -L "${OPENVPN_PATCH_BUILD_FOLDER}" -type f -name '*.patch'); do
57+
echo "Apply patch $patchfile..."
58+
patch -p1 --quiet -i "$patchfile"
59+
done
60+
}
61+
62+
function openvpn_run_tests() {
63+
# Explicitly running as sudo and passing in LD_LIBRARY_PATH as some OpenVPN
64+
# tests run as sudo and LD_LIBRARY_PATH doesn't get inherited.
65+
sudo LD_LIBRARY_PATH="${AWS_LC_INSTALL_FOLDER}/lib" make check
66+
}
67+
68+
git clone https://github.com/OpenVPN/openvpn.git ${OPENVPN_SRC_FOLDER}
69+
70+
# anchoring to tip of minor release 2.6.x for OpenVPN, currently not compatible
71+
# with tip of main
72+
cd ${OPENVPN_SRC_FOLDER} && git checkout release/2.6
73+
mkdir -p ${AWS_LC_BUILD_FOLDER} ${AWS_LC_INSTALL_FOLDER}
74+
ls
75+
76+
aws_lc_build "$SRC_ROOT" "$AWS_LC_BUILD_FOLDER" "$AWS_LC_INSTALL_FOLDER" -DBUILD_TESTING=OFF -DBUILD_TOOL=OFF -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=1
77+
78+
# Build openvpn from source.
79+
pushd ${OPENVPN_SRC_FOLDER}
80+
openvpn_patch_build
81+
openvpn_build
82+
openvpn_run_tests

0 commit comments

Comments
 (0)