Coverage Report

Created: 2022-08-24 06:30

/src/libressl.fuzzers/conf.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License");
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>
16
#include <openssl/err.h>
17
#include "fuzzer.h"
18
19
int FuzzerInitialize(int *argc, char ***argv)
20
2
{
21
2
    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
22
2
    ERR_get_state();
23
2
    return 1;
24
2
}
25
26
int FuzzerTestOneInput(const uint8_t *buf, size_t len)
27
2.16k
{
28
2.16k
    CONF *conf;
29
2.16k
    BIO *in;
30
2.16k
    long eline;
31
32
2.16k
    if (len == 0)
33
0
        return 0;
34
35
2.16k
    conf = NCONF_new(NULL);
36
2.16k
    in = BIO_new(BIO_s_mem());
37
2.16k
    OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
38
2.16k
    NCONF_load_bio(conf, in, &eline);
39
2.16k
    NCONF_free(conf);
40
2.16k
    BIO_free(in);
41
2.16k
    ERR_clear_error();
42
43
2.16k
    return 0;
44
2.16k
}
45
46
void FuzzerCleanup(void)
47
0
{
48
0
}