Skip to content

Commit b3122fe

Browse files
authored
feat: Improvements to the message decryption process (#708)
See GHSA-r8cc-xhh9-rg65.
1 parent 01ba9ba commit b3122fe

36 files changed

+1184
-355
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2.2.0 -- 2021-05-27
4+
5+
* Improvements to the message decryption process.
6+
7+
See <https://github.com/aws/aws-encryption-sdk-c/security/advisories/GHSA-r8cc-xhh9-rg65>
8+
39
## 2.0.0 -- 2020-09-24
410

511
* Updates to the AWS Encryption SDK. c43d706

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ set(PROJECT_NAME aws-encryption-sdk)
5050

5151
# Version number of the SDK to be consumed by C code and Doxygen
5252
set(MAJOR 2)
53-
set(MINOR 0)
53+
set(MINOR 2)
5454
set(PATCH 0)
5555

5656
# Compiler feature tests and feature flags

aws-encryption-sdk-cpp/CMakeLists.txt

+10
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,16 @@ if (AWS_ENC_SDK_END_TO_END_TESTS)
8484
)
8585
set_target_properties(t_commitment_known_answer PROPERTIES CXX_STANDARD 11 C_STANDARD 99)
8686
aws_add_test(commitment_known_answer ${VALGRIND} ${CMAKE_CURRENT_BINARY_DIR}/t_commitment_known_answer ${TEST_DATA}/commitment_known_answer_tests.json)
87+
88+
add_executable(t_max_encrypted_data_keys tests/integration/t_max_encrypted_data_keys.cpp)
89+
target_link_libraries(t_max_encrypted_data_keys testlibcpp)
90+
target_include_directories(t_max_encrypted_data_keys PUBLIC ${PROJECT_SOURCE_DIR}/tests/lib
91+
${PROJECT_SOURCE_DIR}/tests/unit
92+
${PROJECT_SOURCE_DIR}/tests/integration
93+
$<INSTALL_INTERFACE:include>
94+
)
95+
set_target_properties(t_max_encrypted_data_keys PROPERTIES CXX_STANDARD 11 C_STANDARD 99)
96+
aws_add_test(integration_max_edks ${VALGRIND} ${CMAKE_CURRENT_BINARY_DIR}/t_max_encrypted_data_keys)
8797
else()
8898
message(STATUS "End to end tests off")
8999
endif()

aws-encryption-sdk-cpp/tests/integration/t_commitment_known_answer.cpp

+3-63
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <aws/cryptosdk/raw_aes_keyring.h>
3333

3434
#include "edks_utils.h"
35+
#include "logutils.h"
3536
#include "test_crypto.h"
3637
#include "testutil.h"
3738

@@ -49,67 +50,6 @@ const char *CLASS_CTAG = "Test KMS";
4950
const char *KEY_ARN_STR1 = "arn:aws:kms:us-west-2:658956600833:key/b3537ef1-d8dc-4780-9f5a-55776cbb2f7f";
5051
const char *KEY_ARN_STR1_REGION = Aws::Region::US_WEST_2;
5152

52-
/*
53-
* These RAII-style logging classes will buffer log entries until .clear() is called on the LoggingRAII object.
54-
* If a test fails, RUN_TEST will return from main without calling clear, and the destructor on LoggingRAII will dump
55-
* the buffered log entries for the specific failed test to stderr before exiting.
56-
*/
57-
namespace {
58-
class BufferedLogSystem : public Aws::Utils::Logging::FormattedLogSystem {
59-
private:
60-
std::mutex logMutex;
61-
std::vector<Aws::String> buffer;
62-
63-
public:
64-
void clear() {
65-
std::lock_guard<std::mutex> guard(logMutex);
66-
67-
buffer.clear();
68-
}
69-
70-
void dump() {
71-
std::lock_guard<std::mutex> guard(logMutex);
72-
73-
for (auto &str : buffer) {
74-
std::cerr << str;
75-
}
76-
}
77-
78-
void Flush() {}
79-
80-
BufferedLogSystem(Aws::Utils::Logging::LogLevel logLevel) : FormattedLogSystem(logLevel) {}
81-
82-
protected:
83-
// Overrides FormattedLogSystem pure virtual function
84-
virtual void ProcessFormattedStatement(Aws::String &&statement) {
85-
std::lock_guard<std::mutex> guard(logMutex);
86-
87-
buffer.push_back(std::move(statement));
88-
}
89-
};
90-
91-
class LoggingRAII {
92-
std::shared_ptr<BufferedLogSystem> logSystem;
93-
94-
public:
95-
LoggingRAII() {
96-
logSystem = Aws::MakeShared<BufferedLogSystem>("LoggingRAII", Aws::Utils::Logging::LogLevel::Info);
97-
98-
Aws::Utils::Logging::InitializeAWSLogging(logSystem);
99-
}
100-
101-
void clear() {
102-
logSystem->clear();
103-
}
104-
105-
~LoggingRAII() {
106-
Aws::Utils::Logging::ShutdownAWSLogging();
107-
108-
logSystem->dump();
109-
}
110-
};
111-
} // namespace
112-
11353
Aws::String run_single_test(aws_cryptosdk_keyring *kr, const JsonView &test) {
11454
auto pt_frames_obj = test.GetObject("plaintext-frames");
11555
bool have_pt_frames = pt_frames_obj.IsListType();
@@ -228,7 +168,7 @@ AWS_STRING_FROM_LITERAL(PROVIDER_NAME, "ProviderName");
228168
AWS_STRING_FROM_LITERAL(KEY_ID, "KeyId");
229169
static uint8_t ZERO_KEY[32] = { 0 };
230170

231-
bool known_answer_tests(LoggingRAII &logging, const char *filename) {
171+
bool known_answer_tests(Aws::Cryptosdk::Testing::LoggingRAII &logging, const char *filename) {
232172
std::fstream file(filename);
233173
JsonValue test_dataset(file);
234174
JsonView dataset_view = test_dataset.View();
@@ -276,7 +216,7 @@ int main(int argc, char **argv) {
276216
aws_common_library_init(aws_default_allocator());
277217
aws_cryptosdk_load_error_strings();
278218

279-
LoggingRAII logging;
219+
Aws::Cryptosdk::Testing::LoggingRAII logging;
280220

281221
SDKOptions options;
282222
Aws::InitAPI(options);

aws-encryption-sdk-cpp/tests/integration/t_integration_kms_keyring.cpp

+2-62
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include <aws/cryptosdk/enc_ctx.h>
2222

2323
#include "edks_utils.h"
24+
#include "logutils.h"
2425
#include "test_crypto.h"
2526
#include "testutil.h"
2627

@@ -603,71 +604,10 @@ int dataKeyDecrypt_discoveryFilterPartitionMismatch_returnErr() {
603604

604605
// todo add more tests for grantTokens
605606

606-
/*
607-
* These RAII-style logging classes will buffer log entries until .clear() is called on the LoggingRAII object.
608-
* If a test fails, RUN_TEST will return from main without calling clear, and the destructor on LoggingRAII will dump
609-
* the buffered log entries for the specific failed test to stderr before exiting.
610-
*/
611-
namespace {
612-
class BufferedLogSystem : public Aws::Utils::Logging::FormattedLogSystem {
613-
private:
614-
std::mutex logMutex;
615-
std::vector<Aws::String> buffer;
616-
617-
public:
618-
void clear() {
619-
std::lock_guard<std::mutex> guard(logMutex);
620-
621-
buffer.clear();
622-
}
623-
624-
void dump() {
625-
std::lock_guard<std::mutex> guard(logMutex);
626-
627-
for (auto &str : buffer) {
628-
std::cerr << str;
629-
}
630-
}
631-
632-
void Flush() {}
633-
634-
BufferedLogSystem(Aws::Utils::Logging::LogLevel logLevel) : FormattedLogSystem(logLevel) {}
635-
636-
protected:
637-
// Overrides FormattedLogSystem pure virtual function
638-
virtual void ProcessFormattedStatement(Aws::String &&statement) {
639-
std::lock_guard<std::mutex> guard(logMutex);
640-
641-
buffer.push_back(std::move(statement));
642-
}
643-
};
644-
645-
class LoggingRAII {
646-
std::shared_ptr<BufferedLogSystem> logSystem;
647-
648-
public:
649-
LoggingRAII() {
650-
logSystem = Aws::MakeShared<BufferedLogSystem>("LoggingRAII", Aws::Utils::Logging::LogLevel::Trace);
651-
652-
Aws::Utils::Logging::InitializeAWSLogging(logSystem);
653-
}
654-
655-
void clear() {
656-
logSystem->clear();
657-
}
658-
659-
~LoggingRAII() {
660-
Aws::Utils::Logging::ShutdownAWSLogging();
661-
662-
logSystem->dump();
663-
}
664-
};
665-
} // namespace
666-
667607
int main() {
668608
aws_cryptosdk_load_error_strings();
669609

670-
LoggingRAII logging;
610+
Aws::Cryptosdk::Testing::LoggingRAII logging;
671611

672612
SDKOptions options;
673613
Aws::InitAPI(options);

0 commit comments

Comments
 (0)