From c8d15e98598b4e89829beaf1e70ee4c084a780fe Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Wed, 19 Jul 2023 13:19:46 -0400 Subject: [PATCH] valgrind: suppress uninitialized value in OpenSSL Fixes: https://tracker.ceph.com/issues/61566 Signed-off-by: Casey Bodley (cherry picked from commit ef61386862a507e993a05e23de75a88d7744f7b4) --- qa/valgrind.supp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/qa/valgrind.supp b/qa/valgrind.supp index 8baee4ef01a0c..b08942fff6a9c 100644 --- a/qa/valgrind.supp +++ b/qa/valgrind.supp @@ -677,6 +677,19 @@ ... } +# "Conditional jump or move depends on uninitialised value(s)" in OpenSSL +# https://github.com/openssl/openssl/issues/19719 +{ + uninitialized value in gcm_cipher_internal + Memcheck:Cond + ... + fun:gcm_cipher_internal + ... + fun:ossl_gcm_stream_final + fun:EVP_DecryptFinal_ex + ... +} + # "Conditional jump or move depends on uninitialised value(s)" in OpenSSL # while using aes-128-gcm with AES-NI enabled. Not observed while running # with `OPENSSL_ia32cap="~0x200000200000000"`. -- 2.39.5