-
-
Couldn't load subscription status.
- Fork 33.3k
Description
Bug report
Bug Description:
A memory leak has been detected in the hmac module when running test_hmac. The issue appears to be specific to the Hacl_Streaming_HMAC implementation, as indicated by the stack traces from the AddressSanitizer (ASan) report. The leaks occur within functions responsible for HMAC digest computation (_Py_LibHacl_Hacl_Streaming_HMAC_digest, hmac_digest_compute_locked), suggesting that memory allocated during these operations is not being properly deallocated.
Steps to Reproduce:
-
Configure the build with the following flags to enable debugging and AddressSanitizer:
CC=clang CXX=clang++ \ ./configure \ --disable-optimizations \ --with-valgrind \ --with-pydebug \ --enable-pystats \ --with-address-sanitizer
-
Build CPython:
make -j$(nproc) -
Run the
hmactest suite:./python -m test test_hmac
System Information:
- OS:
Ubuntu 25.04 (Plucky Puffin) - Kernel:
Linux huawei 6.14.0-33-generic #33-Ubuntu SMP PREEMPT_DYNAMIC Wed Sep 17 23:22:02 UTC 2025 x86_64 - Clang Version:
Ubuntu clang version 20.1.2 (0ubuntu1)
ASan Leak Report:
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux