-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for mbedTLS 3.6.2 #651
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -24,16 +24,23 @@ | |||||||||||||||||||||||||||||||||||||||
#include "api/oc_tcp_internal.h" | ||||||||||||||||||||||||||||||||||||||||
#include "messaging/coap/coap_internal.h" | ||||||||||||||||||||||||||||||||||||||||
#include "port/oc_allocator_internal.h" | ||||||||||||||||||||||||||||||||||||||||
#include "port/oc_random.h" | ||||||||||||||||||||||||||||||||||||||||
#include "tests/gtest/Endpoint.h" | ||||||||||||||||||||||||||||||||||||||||
#include "util/oc_features.h" | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
#ifdef OC_OSCORE | ||||||||||||||||||||||||||||||||||||||||
#include "messaging/coap/oscore_internal.h" | ||||||||||||||||||||||||||||||||||||||||
#endif /* OC_OSCORE */ | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
#ifdef OC_SECURITY | ||||||||||||||||||||||||||||||||||||||||
#include "security/oc_entropy_internal.h" | ||||||||||||||||||||||||||||||||||||||||
#endif /* OC_SECURITY */ | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
#include "gtest/gtest.h" | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
#ifdef OC_SECURITY | ||||||||||||||||||||||||||||||||||||||||
#include "mbedtls/build_info.h" | ||||||||||||||||||||||||||||||||||||||||
#include "mbedtls/ctr_drbg.h" | ||||||||||||||||||||||||||||||||||||||||
#include "mbedtls/ssl.h" | ||||||||||||||||||||||||||||||||||||||||
#endif /* OC_SECURITY */ | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
@@ -56,10 +63,12 @@ class TCPMessage : public testing::Test { | |||||||||||||||||||||||||||||||||||||||
#ifdef OC_HAS_FEATURE_ALLOCATOR_MUTEX | ||||||||||||||||||||||||||||||||||||||||
oc_allocator_mutex_init(); | ||||||||||||||||||||||||||||||||||||||||
#endif /* OC_HAS_FEATURE_ALLOCATOR_MUTEX */ | ||||||||||||||||||||||||||||||||||||||||
oc_random_init(); | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
static void TearDownTestCase() | ||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||
oc_random_destroy(); | ||||||||||||||||||||||||||||||||||||||||
#ifdef OC_HAS_FEATURE_ALLOCATOR_MUTEX | ||||||||||||||||||||||||||||||||||||||||
oc_allocator_mutex_destroy(); | ||||||||||||||||||||||||||||||||||||||||
#endif /* OC_HAS_FEATURE_ALLOCATOR_MUTEX */ | ||||||||||||||||||||||||||||||||||||||||
|
@@ -267,6 +276,15 @@ TEST_F(TCPMessage, GetTotalLength) | |||||||||||||||||||||||||||||||||||||||
mbedtls_ssl_conf_min_version(&conf, MBEDTLS_SSL_MAJOR_VERSION_3, | ||||||||||||||||||||||||||||||||||||||||
MBEDTLS_SSL_MINOR_VERSION_3); | ||||||||||||||||||||||||||||||||||||||||
#endif /* MBEDTLS_VERSION_NUMBER <= 0x03010000 */ | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ctr_drbg_context ctr_drbg; | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ctr_drbg_init(&ctr_drbg); | ||||||||||||||||||||||||||||||||||||||||
mbedtls_entropy_context entropy_ctx; | ||||||||||||||||||||||||||||||||||||||||
mbedtls_entropy_init(&entropy_ctx); | ||||||||||||||||||||||||||||||||||||||||
oc_entropy_add_source(&entropy_ctx); | ||||||||||||||||||||||||||||||||||||||||
std::vector<unsigned char> pers = { 't', 'e', 's', 't', '\0' }; | ||||||||||||||||||||||||||||||||||||||||
ASSERT_EQ(0, mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, | ||||||||||||||||||||||||||||||||||||||||
&entropy_ctx, pers.data(), pers.size())); | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ssl_conf_rng(&conf, mbedtls_ctr_drbg_random, &ctr_drbg); | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+279
to
+287
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add error handling for entropy seeding. The entropy seeding operation could fail, but the error code is not checked. Apply this diff to add error handling: mbedtls_ctr_drbg_init(&ctr_drbg);
mbedtls_entropy_context entropy_ctx;
mbedtls_entropy_init(&entropy_ctx);
oc_entropy_add_source(&entropy_ctx);
std::vector<unsigned char> pers = { 't', 'e', 's', 't', '\0' };
- ASSERT_EQ(0, mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func,
- &entropy_ctx, pers.data(), pers.size()));
+ int ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func,
+ &entropy_ctx, pers.data(), pers.size());
+ ASSERT_EQ(0, ret) << "CTR-DRBG seeding failed with error: " << ret; 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
mbedtls_ssl_context ssl; | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ssl_init(&ssl); | ||||||||||||||||||||||||||||||||||||||||
ASSERT_EQ(0, mbedtls_ssl_setup(&ssl, &conf)); | ||||||||||||||||||||||||||||||||||||||||
|
@@ -296,6 +314,8 @@ TEST_F(TCPMessage, GetTotalLength) | |||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
oc_message_unref(message); | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ssl_free(&ssl); | ||||||||||||||||||||||||||||||||||||||||
mbedtls_entropy_free(&entropy_ctx); | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ctr_drbg_free(&ctr_drbg); | ||||||||||||||||||||||||||||||||||||||||
mbedtls_ssl_config_free(&conf); | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
#define SSL_MAJOR_VERSION_3 (3) | ||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why ON ?