Coverage Report

Created: 2025-03-09 06:52

/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
16
{
21
16
    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
22
16
    return 1;
23
16
}
24
25
int FuzzerTestOneInput(const uint8_t *buf, size_t len)
26
2.32k
{
27
2.32k
    CONF *conf;
28
2.32k
    BIO *in;
29
2.32k
    long eline;
30
31
2.32k
    if (len == 0)
32
0
        return 0;
33
34
2.32k
    conf = NCONF_new(NULL);
35
2.32k
    in = BIO_new(BIO_s_mem());
36
2.32k
    OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
37
0
    NCONF_load_bio(conf, in, &eline);
38
2.32k
    NCONF_free(conf);
39
2.32k
    BIO_free(in);
40
2.32k
    ERR_clear_error();
41
42
2.32k
    return 0;
43
2.32k
}
44
45
void FuzzerCleanup(void)
46
0
{
47
0
}