Fix SSL_CTX_set1_sigalgs fuzzer and make them all more type-safe.

The size of an int is 4, not 2. To avoid worrying about this, add a GetVector
counterpart to GetString that handles all this. Apply this uniformly to avoid
all the pointer casts. This is less important for vector<uint8_t>, but even
then we'll now notice a 1-byte OOB read since std::string is NUL-terminated.
Also it's shorter.

Change-Id: Ie96591cb8d8d52742f5fd30d70b6af0511109585
Reviewed-on: https://boringssl-review.googlesource.com/30864
Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
David Benjamin 2018-08-10 13:01:30 -05:00 committed by Adam Langley
parent a711b53e0b
commit 367115b056

View File

@ -14,6 +14,7 @@
#include <functional> #include <functional>
#include <string> #include <string>
#include <type_traits>
#include <vector> #include <vector>
#include <assert.h> #include <assert.h>
@ -233,6 +234,23 @@ static bool GetString(std::string *out, CBS *cbs) {
return true; return true;
} }
template <typename T>
static bool GetVector(std::vector<T> *out, CBS *cbs) {
static_assert(std::is_pod<T>::value,
"GetVector may only be called on POD types");
CBS child;
if (!CBS_get_u8_length_prefixed(cbs, &child)) {
return false;
}
size_t num = CBS_len(&child) / sizeof(T);
out->resize(num);
out->shrink_to_fit(); // Ensure ASan notices out-of-bounds reads.
OPENSSL_memcpy(out->data(), CBS_data(&child), num * sizeof(T));
return true;
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) { extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
constexpr size_t kMaxExpensiveAPIs = 100; constexpr size_t kMaxExpensiveAPIs = 100;
unsigned expensive_api_count = 0; unsigned expensive_api_count = 0;
@ -317,34 +335,26 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
SSL_CTX_get0_chain_certs(ctx, &chains); SSL_CTX_get0_chain_certs(ctx, &chains);
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string sct_data; std::vector<uint8_t> sct_data;
if (!GetString(&sct_data, cbs)) { if (!GetVector(&sct_data, cbs)) {
return; return;
} }
SSL_CTX_set_signed_cert_timestamp_list(ctx, sct_data.data(),
SSL_CTX_set_signed_cert_timestamp_list( sct_data.size());
ctx, reinterpret_cast<const uint8_t *>(sct_data.data()),
sct_data.size());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string ocsp_data; std::vector<uint8_t> ocsp_data;
if (!GetString(&ocsp_data, cbs)) { if (!GetVector(&ocsp_data, cbs)) {
return; return;
} }
SSL_CTX_set_ocsp_response(ctx, ocsp_data.data(), ocsp_data.size());
SSL_CTX_set_ocsp_response(
ctx, reinterpret_cast<const uint8_t *>(ocsp_data.data()),
ocsp_data.size());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string signing_algos; std::vector<uint16_t> algs;
if (!GetString(&signing_algos, cbs)) { if (!GetVector(&algs, cbs)) {
return; return;
} }
SSL_CTX_set_signing_algorithm_prefs(ctx, algs.data(), algs.size());
SSL_CTX_set_signing_algorithm_prefs(
ctx, reinterpret_cast<const uint16_t *>(signing_algos.data()),
signing_algos.size() / sizeof(uint16_t));
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string ciphers; std::string ciphers;
@ -361,23 +371,18 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
SSL_CTX_set_cipher_list(ctx, ciphers.c_str()); SSL_CTX_set_cipher_list(ctx, ciphers.c_str());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string verify_algos; std::vector<uint16_t> algs;
if (!GetString(&verify_algos, cbs)) { if (!GetVector(&algs, cbs)) {
return; return;
} }
SSL_CTX_set_verify_algorithm_prefs(ctx, algs.data(), algs.size());
SSL_CTX_set_verify_algorithm_prefs(
ctx, reinterpret_cast<const uint16_t *>(verify_algos.data()),
verify_algos.size() / sizeof(uint16_t));
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string ciphers; std::vector<uint8_t> id_ctx;
if (!GetString(&ciphers, cbs)) { if (!GetVector(&id_ctx, cbs)) {
return; return;
} }
SSL_CTX_set_session_id_context( SSL_CTX_set_session_id_context(ctx, id_ctx.data(), id_ctx.size());
ctx, reinterpret_cast<const uint8_t *>(ciphers.data()),
ciphers.size());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
uint32_t size; uint32_t size;
@ -396,20 +401,18 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
SSL_CTX_flush_sessions(ctx, time); SSL_CTX_flush_sessions(ctx, time);
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string keys; std::vector<uint8_t> keys;
if (!GetString(&keys, cbs)) { if (!GetVector(&keys, cbs)) {
return; return;
} }
SSL_CTX_set_tlsext_ticket_keys( SSL_CTX_set_tlsext_ticket_keys(ctx, keys.data(), keys.size());
ctx, reinterpret_cast<const uint8_t *>(keys.data()), keys.size());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string curves; std::vector<int> curves;
if (!GetString(&curves, cbs)) { if (!GetVector(&curves, cbs)) {
return; return;
} }
SSL_CTX_set1_curves(ctx, reinterpret_cast<const int *>(curves.data()), SSL_CTX_set1_curves(ctx, curves.data(), curves.size());
curves.size() / sizeof(int));
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string curves; std::string curves;
@ -431,13 +434,11 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
SSL_CTX_add_client_CA(ctx, g_state.cert_.get()); SSL_CTX_add_client_CA(ctx, g_state.cert_.get());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string protos; std::vector<uint8_t> protos;
if (!GetString(&protos, cbs)) { if (!GetVector(&protos, cbs)) {
return; return;
} }
SSL_CTX_set_alpn_protos( SSL_CTX_set_alpn_protos(ctx, protos.data(), protos.size());
ctx, reinterpret_cast<const uint8_t *>(protos.data()),
protos.size());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string profiles; std::string profiles;
@ -476,7 +477,11 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
SSL_CTX_set_grease_enabled(ctx, b); SSL_CTX_set_grease_enabled(ctx, b);
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
SSL_CTX_set1_sigalgs(ctx, (const int *)CBS_data(cbs), CBS_len(cbs) / 2); std::vector<int> sigalgs;
if (!GetVector(&sigalgs, cbs)) {
return;
}
SSL_CTX_set1_sigalgs(ctx, sigalgs.data(), sigalgs.size());
}, },
[](SSL_CTX *ctx, CBS *cbs) { [](SSL_CTX *ctx, CBS *cbs) {
std::string sigalgs; std::string sigalgs;