-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c38bde
commit 1c26d11
Showing
6 changed files
with
147 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
#include <dlfcn.h> | ||
#include <pthread.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
|
||
static void *s2n_load_dynamic_lib(void *ctx) | ||
{ | ||
const char *s2n_so_path = ctx; | ||
|
||
void *s2n_so = dlopen(s2n_so_path, RTLD_NOW); | ||
if (!s2n_so) { | ||
exit(1); | ||
} | ||
|
||
int (*s2n_init_dl)(void) = NULL; | ||
*(void **) (&s2n_init_dl) = dlsym(s2n_so, "s2n_init"); | ||
if (dlerror()) { | ||
exit(1); | ||
} | ||
|
||
int (*s2n_cleanup_dl)(void) = NULL; | ||
*(void **) (&s2n_cleanup_dl) = dlsym(s2n_so, "s2n_cleanup"); | ||
if (dlerror()) { | ||
exit(1); | ||
} | ||
|
||
if ((*s2n_init_dl)()) { | ||
exit(1); | ||
} | ||
if ((*s2n_cleanup_dl)()) { | ||
exit(1); | ||
} | ||
|
||
if (dlclose(s2n_so)) { | ||
exit(1); | ||
} | ||
|
||
return NULL; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
if (argc != 2) { | ||
printf("Usage: s2n_dynamic_load_test <path to s2n shared object>\n"); | ||
exit(1); | ||
} | ||
|
||
/* s2n-tls library can be dynamically loaded and cleaned up safely | ||
* | ||
* We can't use any s2n test macros because this test doesn't get linked to | ||
* s2n during compile-time. | ||
*/ | ||
{ | ||
pthread_t thread_id = { 0 }; | ||
if (pthread_create(&thread_id, NULL, &s2n_load_dynamic_lib, argv[1])) { | ||
exit(1); | ||
} | ||
if (pthread_join(thread_id, NULL)) { | ||
exit(1); | ||
} | ||
} | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env bash | ||
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# A copy of the License is located at | ||
# | ||
# http://aws.amazon.com/apache2.0 | ||
# | ||
# or in the "license" file accompanying this file. This file is distributed | ||
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
# express or implied. See the License for the specific language governing | ||
# permissions and limitations under the License. | ||
# | ||
|
||
# This script compiles s2n-tls as a shared library and compiles a test | ||
# without linking to the library. This enables us to test behavior when | ||
# s2n-tls is dynamically loaded. | ||
|
||
WORK_DIR=$1 | ||
|
||
if [ ! -z "$NIX_STORE" ]; then | ||
OPENSSL=$(which openssl) | ||
LIBCRYPTO_ROOT=$(nix-store --query $OPENSSL) | ||
else | ||
source codebuild/bin/s2n_setup_env.sh | ||
fi | ||
|
||
S2N_BUILD_ARGS=(-H. -DCMAKE_PREFIX_PATH=$LIBCRYPTO_ROOT -DBUILD_TESTING=OFF) | ||
|
||
# create installation dir with libs2n.so | ||
if [ ! -d $WORK_DIR/s2n-install-shared ]; then | ||
(set -x; cmake -B$WORK_DIR/s2n-build-shared -DCMAKE_INSTALL_PREFIX=$WORK_DIR/s2n-install-shared -DBUILD_SHARED_LIBS=ON ${S2N_BUILD_ARGS[@]}) | ||
(set -x; cmake --build $WORK_DIR/s2n-build-shared --target install -- -j $(nproc)) | ||
fi | ||
|
||
# Compile the test file | ||
$CC -Wl,-rpath $LIBCRYPTO_ROOT -o s2n_dynamic_load_test codebuild/bin/s2n_dynamic_load_test.c -ldl -lpthread | ||
|
||
LDD_OUTPUT=$(ldd s2n_dynamic_load_test) | ||
|
||
# Confirm executable doesn't have libs2n.so loaded | ||
if echo "$LDD_OUTPUT" | grep -q libs2n; then | ||
echo "test failure: libs2n should not appear in ldd output" | ||
exit 1 | ||
fi | ||
|
||
# Run the test with the path to libs2n | ||
echo "Running s2n_dynamic_load_test" | ||
LD_LIBRARY_PATH=$LIBCRYPTO_ROOT/lib ./s2n_dynamic_load_test $WORK_DIR/s2n-install-shared/lib/libs2n.so | ||
returncode=$? | ||
if [ $returncode -ne 0 ]; then | ||
echo "test failure: s2n_dynamic_load_test did not succeed" | ||
exit 1 | ||
fi | ||
echo "Passed s2n_dynamic_load_test" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters