]> git.ipfire.org Git - thirdparty/openssl.git/blame - fuzz/conf.c
Fix race for X509 store found by thread sanitizer
[thirdparty/openssl.git] / fuzz / conf.c
CommitLineData
c38bb727
BL
1/*
2 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
0642931f 4 * Licensed under the Apache License 2.0 (the "License");
c38bb727
BL
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * https://www.openssl.org/source/license.html
8 * or in the file LICENSE in the source distribution.
9 */
10
11/*
12 * Test configuration parsing.
13 */
14
15#include <openssl/conf.h>
d69d8f90 16#include <openssl/err.h>
c38bb727
BL
17#include "fuzzer.h"
18
f3e911d5
KR
19int FuzzerInitialize(int *argc, char ***argv)
20{
d69d8f90 21 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
e5d4233f 22 ERR_clear_error();
90d28f05
BL
23 return 1;
24}
25
f3e911d5
KR
26int FuzzerTestOneInput(const uint8_t *buf, size_t len)
27{
ea6199ea
KR
28 CONF *conf;
29 BIO *in;
c38bb727
BL
30 long eline;
31
ea6199ea
KR
32 if (len == 0)
33 return 0;
34
35 conf = NCONF_new(NULL);
36 in = BIO_new(BIO_s_mem());
c38bb727
BL
37 OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
38 NCONF_load_bio(conf, in, &eline);
c38bb727
BL
39 NCONF_free(conf);
40 BIO_free(in);
d69d8f90 41 ERR_clear_error();
c38bb727
BL
42
43 return 0;
44}
ad4da7fb
KR
45
46void FuzzerCleanup(void)
47{
48}