summaryrefslogtreecommitdiffstats
path: root/fuzz/conf.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-12-02 19:34:54 +0100
committerKurt Roeckx <kurt@roeckx.be>2016-12-03 00:14:15 +0100
commitd69d8f904c9c558c7a9455ee816e494690d80ca8 (patch)
tree727e69f282ae7e060371ed0d0cff2d22e4fec7c4 /fuzz/conf.c
parent0282aeb690d63fab73a07191b63300a2fe30d212 (diff)
Make the fuzzers more reproducible
We want to be in the same global state each time we come in FuzzerTestOneInput(). There are various reasons why we might not be that include: - Initialization that happens on first use. This is mostly the RUN_ONCE() things, or loading of error strings. - Results that get cached. For instance a stack that is sorted, RSA blinding that has been set up, ... So I try to trigger as much as possible in FuzzerInitialize(), and for things I didn't find out how to trigger this it needs to happen in FuzzerTestOneInput(). Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
Diffstat (limited to 'fuzz/conf.c')
-rw-r--r--fuzz/conf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fuzz/conf.c b/fuzz/conf.c
index 27429c570f..87fe857099 100644
--- a/fuzz/conf.c
+++ b/fuzz/conf.c
@@ -13,10 +13,13 @@
*/
#include <openssl/conf.h>
+#include <openssl/err.h>
#include "fuzzer.h"
int FuzzerInitialize(int *argc, char ***argv)
{
+ OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
+ ERR_get_state();
return 1;
}
@@ -35,6 +38,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
NCONF_load_bio(conf, in, &eline);
NCONF_free(conf);
BIO_free(in);
+ ERR_clear_error();
return 0;
}