mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Avoid valgrind warnings in mod_ssl random number generator
We intentionally add uninitialized stack memory. To avoid warnings, make valgrind believe that the memory is defined. Add configure option to enable valgrind support git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1442307 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -29,6 +29,11 @@
|
||||
|
||||
#include "ssl_private.h"
|
||||
|
||||
#if HAVE_VALGRIND
|
||||
#include <valgrind.h>
|
||||
#include <memcheck.h>
|
||||
#endif
|
||||
|
||||
/* _________________________________________________________________
|
||||
**
|
||||
** Support for better seeding of SSL library's RNG
|
||||
@@ -113,6 +118,11 @@ int ssl_rand_seed(server_rec *s, apr_pool_t *p, ssl_rsctx_t nCtx, char *prefix)
|
||||
/*
|
||||
* seed in some current state of the run-time stack (128 bytes)
|
||||
*/
|
||||
#if HAVE_VALGRIND
|
||||
if (ssl_running_on_valgrind) {
|
||||
VALGRIND_MAKE_MEM_DEFINED(stackdata, sizeof(stackdata));
|
||||
}
|
||||
#endif
|
||||
n = ssl_rand_choosenum(0, sizeof(stackdata)-128-1);
|
||||
RAND_seed(stackdata+n, 128);
|
||||
nDone += 128;
|
||||
|
Reference in New Issue
Block a user