diff options
author | Pauli <pauli@openssl.org> | 2021-12-14 01:08:00 +0100 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-12-17 04:39:20 +0100 |
commit | 27f7f527652e403177335eb2e3ba1ff6df13f193 (patch) | |
tree | a8250cd66cb8c73ce0e6fd4968d1fac4f7aee3c7 /test/hmactest.c | |
parent | evp: address a use after free state when using HMAC and MD copy. (diff) | |
download | openssl-27f7f527652e403177335eb2e3ba1ff6df13f193.tar.xz openssl-27f7f527652e403177335eb2e3ba1ff6df13f193.zip |
Add test case to verify that the use after free issue is fixed.
Test case based on reproducer by Guido Vranken.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17263)
Diffstat (limited to 'test/hmactest.c')
-rw-r--r-- | test/hmactest.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/hmactest.c b/test/hmactest.c index 63954a1183..8f5bf32f87 100644 --- a/test/hmactest.c +++ b/test/hmactest.c @@ -245,6 +245,36 @@ err: return ret; } +static int test_hmac_copy_uninited(void) +{ + const unsigned char key[24] = {0}; + const unsigned char ct[166] = {0}; + EVP_PKEY *pkey = NULL; + EVP_MD_CTX *ctx = NULL; + EVP_MD_CTX *ctx_tmp = NULL; + int res = 0; + + if (!TEST_ptr(ctx = EVP_MD_CTX_new()) + || !TEST_ptr(pkey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, NULL, + key, sizeof(key))) + || !TEST_true(EVP_DigestSignInit(ctx, NULL, EVP_sha1(), NULL, pkey)) + || !TEST_ptr(ctx_tmp = EVP_MD_CTX_new()) + || !TEST_true(EVP_MD_CTX_copy(ctx_tmp, ctx))) + goto err; + EVP_MD_CTX_free(ctx); + ctx = ctx_tmp; + ctx_tmp = NULL; + + if (!TEST_true(EVP_DigestSignUpdate(ctx, ct, sizeof(ct)))) + goto err; + res = 1; + err: + EVP_MD_CTX_free(ctx); + EVP_MD_CTX_free(ctx_tmp); + EVP_PKEY_free(pkey); + return res; +} + # ifndef OPENSSL_NO_MD5 static char *pt(unsigned char *md, unsigned int len) { @@ -266,6 +296,7 @@ int setup_tests(void) ADD_TEST(test_hmac_bad); ADD_TEST(test_hmac_run); ADD_TEST(test_hmac_copy); + ADD_TEST(test_hmac_copy_uninited); return 1; } |