Coverage Report

Created: 2022-08-24 06:30

/src/libressl.fuzzers/cms.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 CMS DER parsing.
13
 */
14
15
#include <openssl/bio.h>
16
#include <openssl/cms.h>
17
#include <openssl/err.h>
18
#include "fuzzer.h"
19
20
int FuzzerInitialize(int *argc, char ***argv)
21
2
{
22
2
    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
23
2
    ERR_get_state();
24
2
    return 1;
25
2
}
26
27
int FuzzerTestOneInput(const uint8_t *buf, size_t len)
28
5.73k
{
29
5.73k
    CMS_ContentInfo *cms;
30
5.73k
    BIO *in;
31
32
5.73k
    if (len == 0)
33
0
        return 0;
34
35
5.73k
    in = BIO_new(BIO_s_mem());
36
5.73k
    OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
37
5.73k
    cms = d2i_CMS_bio(in, NULL);
38
5.73k
    if (cms != NULL) {
39
1.50k
        BIO *out = BIO_new(BIO_s_null());
40
41
1.50k
        i2d_CMS_bio(out, cms);
42
1.50k
        BIO_free(out);
43
1.50k
        CMS_ContentInfo_free(cms);
44
1.50k
    }
45
46
5.73k
    BIO_free(in);
47
5.73k
    ERR_clear_error();
48
49
5.73k
    return 0;
50
5.73k
}
51
52
void FuzzerCleanup(void)
53
0
{
54
0
}