forked from aws/s2n-tls
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
8 changed files
with
287 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: seccomp | ||
on: | ||
pull_request: | ||
branches: [main] | ||
merge_group: | ||
types: [checks_requested] | ||
branches: [main] | ||
|
||
jobs: | ||
ubuntu: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install cmake | ||
# For default libcrypto | ||
sudo apt install libssl-dev | ||
# For seccomp | ||
sudo apt install libseccomp-dev | ||
# For aws-lc | ||
sudo apt install clang golang | ||
- name: checkout s2n-tls | ||
uses: actions/checkout@v4 | ||
|
||
- name: checkout aws-lc | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: aws/aws-lc | ||
path: awslc | ||
|
||
- name: build awslc | ||
# See https://github.com/aws/aws-lc/blob/main/BUILDING.md#building | ||
working-directory: awslc | ||
run: | | ||
cmake -B build | ||
make -C build | ||
cmake --install build --prefix install | ||
- name: seccomp with default libcrypto | ||
run: | | ||
cmake -Bbuild \ | ||
-DSECCOMP=1 \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX=install | ||
cmake --build build -j $(nproc) | ||
CTEST_PARALLEL_LEVEL=$(nproc) ctest --test-dir build | ||
cmake --install build | ||
./build/bin/s2nc localhost 8000 | grep "libcrypto" | grep -v "AWS-LC" | ||
rm -rf build | ||
- name: seccomp with aws-lc | ||
run: | | ||
cmake -Bbuild \ | ||
-DSECCOMP=1 \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_PREFIX_PATH=awslc/install \ | ||
-DCMAKE_INSTALL_PREFIX=install | ||
cmake --build build -j $(nproc) | ||
CTEST_PARALLEL_LEVEL=$(nproc) ctest --test-dir build | ||
cmake --install build | ||
./build/bin/s2nc localhost 8000 | grep "libcrypto" | grep "AWS-LC" | ||
rm -rf build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* 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 "testlib/s2n_testlib.h" | ||
#include "utils/s2n_safety.h" | ||
|
||
#ifdef SECCOMP | ||
|
||
#include <seccomp.h> | ||
|
||
DEFINE_POINTER_CLEANUP_FUNC(scmp_filter_ctx, seccomp_release); | ||
|
||
extern bool s2n_use_color_in_output; | ||
|
||
bool s2n_is_seccomp_supported() | ||
{ | ||
return true; | ||
} | ||
|
||
S2N_RESULT s2n_seccomp_init() | ||
{ | ||
/* Using SCMP_ACT_TRAP instead of SCMP_ACT_KILL makes this test easier | ||
* to debug. GDB will report exactly which syscalls triggered the signal. | ||
*/ | ||
DEFER_CLEANUP(scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_TRAP), | ||
seccomp_release_pointer); | ||
RESULT_ENSURE_REF(ctx); | ||
|
||
/* Basic requirements */ | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(brk), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(close), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(exit_group), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fstat), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(read), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(write), 0)); | ||
|
||
/* Requirements for Ubuntu22 */ | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(clock_gettime), 0)); | ||
RESULT_GUARD_POSIX(seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(newfstatat), 0)); | ||
|
||
RESULT_GUARD_POSIX(seccomp_load(ctx)); | ||
s2n_use_color_in_output = false; | ||
return S2N_RESULT_OK; | ||
} | ||
|
||
#else | ||
|
||
bool s2n_is_seccomp_supported() | ||
{ | ||
return false; | ||
} | ||
|
||
S2N_RESULT s2n_seccomp_init() | ||
{ | ||
return S2N_RESULT_OK; | ||
} | ||
|
||
#endif |
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,62 @@ | ||
/* | ||
* 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 <signal.h> | ||
#include <stdio.h> | ||
#include <sys/stat.h> | ||
|
||
#include "s2n_test.h" | ||
#include "testlib/s2n_testlib.h" | ||
|
||
bool s2n_fstat_success = false; | ||
bool s2n_open_success = false; | ||
|
||
void s2n_detect_open_violation(int sig) | ||
{ | ||
EXPECT_EQUAL(sig, SIGSYS); | ||
|
||
EXPECT_TRUE(s2n_fstat_success); | ||
EXPECT_FALSE(s2n_open_success); | ||
|
||
END_TEST_PRINT(); | ||
exit(0); | ||
} | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
BEGIN_TEST(); | ||
|
||
if (!s2n_is_seccomp_supported()) { | ||
END_TEST(); | ||
} | ||
|
||
const struct sigaction action = { | ||
.sa_handler = s2n_detect_open_violation, | ||
}; | ||
EXPECT_EQUAL(sigaction(SIGSYS, &action, NULL), 0); | ||
|
||
EXPECT_OK(s2n_seccomp_init()); | ||
|
||
/* The seccomp filter allows fstat */ | ||
struct stat st = { 0 }; | ||
EXPECT_SUCCESS(fstat(0, &st)); | ||
s2n_fstat_success = true; | ||
|
||
/* The seccomp filter does NOT allow open */ | ||
fopen(S2N_DEFAULT_TEST_CERT_CHAIN, "r"); | ||
s2n_open_success = true; | ||
|
||
FAIL_MSG("test unexpectedly succeeded"); | ||
} |
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,73 @@ | ||
/* | ||
* 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 "api/s2n.h" | ||
#include "s2n_test.h" | ||
#include "testlib/s2n_testlib.h" | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
BEGIN_TEST(); | ||
|
||
/* We don't use s2n_test_cert_chain_and_key_new because we want to explicitly | ||
* only do the PEM file read before enabling seccomp. | ||
*/ | ||
char cert_chain_pem[S2N_MAX_TEST_PEM_SIZE] = { 0 }; | ||
char private_key_pem[S2N_MAX_TEST_PEM_SIZE] = { 0 }; | ||
EXPECT_SUCCESS(s2n_read_test_pem(S2N_DEFAULT_TEST_CERT_CHAIN, cert_chain_pem, S2N_MAX_TEST_PEM_SIZE)); | ||
EXPECT_SUCCESS(s2n_read_test_pem(S2N_DEFAULT_TEST_PRIVATE_KEY, private_key_pem, S2N_MAX_TEST_PEM_SIZE)); | ||
|
||
/* No unexpected syscalls allowed beyond this point */ | ||
EXPECT_OK(s2n_seccomp_init()); | ||
|
||
DEFER_CLEANUP(struct s2n_cert_chain_and_key *chain_and_key = s2n_cert_chain_and_key_new(), | ||
s2n_cert_chain_and_key_ptr_free); | ||
EXPECT_SUCCESS(s2n_cert_chain_and_key_load_pem(chain_and_key, cert_chain_pem, private_key_pem)); | ||
|
||
DEFER_CLEANUP(struct s2n_config *config = s2n_config_new_minimal(), s2n_config_ptr_free); | ||
EXPECT_SUCCESS(s2n_config_add_cert_chain_and_key_to_store(config, chain_and_key)); | ||
EXPECT_SUCCESS(s2n_config_add_pem_to_trust_store(config, cert_chain_pem)); | ||
|
||
const char *security_policies[] = { "default", "default_tls13" }; | ||
|
||
for (size_t i = 0; i < s2n_array_len(security_policies); i++) { | ||
DEFER_CLEANUP(struct s2n_connection *client = s2n_connection_new(S2N_CLIENT), | ||
s2n_connection_ptr_free); | ||
EXPECT_NOT_NULL(client); | ||
EXPECT_SUCCESS(s2n_connection_set_config(client, config)); | ||
EXPECT_SUCCESS(s2n_connection_set_cipher_preferences(client, security_policies[i])); | ||
EXPECT_SUCCESS(s2n_set_server_name(client, "localhost")); | ||
|
||
DEFER_CLEANUP(struct s2n_connection *server = s2n_connection_new(S2N_SERVER), | ||
s2n_connection_ptr_free); | ||
EXPECT_NOT_NULL(server); | ||
EXPECT_SUCCESS(s2n_connection_set_config(server, config)); | ||
EXPECT_SUCCESS(s2n_connection_set_cipher_preferences(server, security_policies[i])); | ||
|
||
DEFER_CLEANUP(struct s2n_test_io_stuffer_pair io_pair = { 0 }, s2n_io_stuffer_pair_free); | ||
EXPECT_OK(s2n_io_stuffer_pair_init(&io_pair)); | ||
EXPECT_OK(s2n_connections_set_io_stuffer_pair(client, server, &io_pair)); | ||
EXPECT_SUCCESS(s2n_negotiate_test_server_and_client(server, client)); | ||
|
||
const uint8_t data[] = "hello world"; | ||
uint8_t buffer[100] = { 0 }; | ||
s2n_blocked_status blocked = S2N_NOT_BLOCKED; | ||
EXPECT_EQUAL(s2n_send(client, data, sizeof(data), &blocked), sizeof(data)); | ||
EXPECT_EQUAL(s2n_recv(server, buffer, sizeof(buffer), &blocked), sizeof(data)); | ||
EXPECT_BYTEARRAY_EQUAL(buffer, data, sizeof(data)); | ||
} | ||
|
||
END_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