Coverage Report

Created: 2022-08-24 06:31

/src/libressl.fuzzers/client.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2016-2018 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
#include <time.h>
12
#include <openssl/rand.h>
13
#include <openssl/ssl.h>
14
#include <openssl/rsa.h>
15
#include <openssl/dsa.h>
16
#include <openssl/ec.h>
17
#include <openssl/dh.h>
18
#include <openssl/err.h>
19
#include "fuzzer.h"
20
21
#include "rand.inc"
22
23
/* unused, to avoid warning. */
24
static int idx;
25
26
18.2k
#define FUZZTIME 1485898104
27
28
18.2k
#define TIME_IMPL(t) { if (t != NULL) *t = FUZZTIME; return FUZZTIME; }
29
30
/*
31
 * This might not work in all cases (and definitely not on Windows
32
 * because of the way linkers are) and callees can still get the
33
 * current time instead of the fixed time. This will just result
34
 * in things not being fully reproducible and have a slightly
35
 * different coverage.
36
 */
37
#if !defined(_WIN32)
38
time_t time(time_t *t) TIME_IMPL(t)
39
#endif
40
41
int FuzzerInitialize(int *argc, char ***argv)
42
4
{
43
4
    STACK_OF(SSL_COMP) *comp_methods;
44
45
4
    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS | OPENSSL_INIT_ASYNC, NULL);
46
4
    OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL);
47
4
    ERR_get_state();
48
4
    idx = SSL_get_ex_data_X509_STORE_CTX_idx();
49
4
    FuzzerSetRand();
50
4
    comp_methods = SSL_COMP_get_compression_methods();
51
4
    if (comp_methods != NULL)
52
4
        sk_SSL_COMP_sort(comp_methods);
53
54
4
    return 1;
55
4
}
56
57
int FuzzerTestOneInput(const uint8_t *buf, size_t len)
58
6.76k
{
59
6.76k
    SSL *client;
60
6.76k
    BIO *in;
61
6.76k
    BIO *out;
62
6.76k
    SSL_CTX *ctx;
63
64
6.76k
    if (len == 0)
65
0
        return 0;
66
67
    /*
68
     * TODO: use the ossltest engine (optionally?) to disable crypto checks.
69
     */
70
71
    /* This only fuzzes the initial flow from the client so far. */
72
6.76k
    ctx = SSL_CTX_new(SSLv23_method());
73
74
6.76k
    client = SSL_new(ctx);
75
6.76k
    OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1);
76
6.76k
    OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL") == 1);
77
6.76k
    SSL_set_tlsext_host_name(client, "localhost");
78
6.76k
    in = BIO_new(BIO_s_mem());
79
6.76k
    out = BIO_new(BIO_s_mem());
80
6.76k
    SSL_set_bio(client, in, out);
81
6.76k
    SSL_set_connect_state(client);
82
6.76k
    OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
83
6.76k
    if (SSL_do_handshake(client) == 1) {
84
        /* Keep reading application data until error or EOF. */
85
0
        uint8_t tmp[1024];
86
0
        for (;;) {
87
0
            if (SSL_read(client, tmp, sizeof(tmp)) <= 0) {
88
0
                break;
89
0
            }
90
0
        }
91
0
    }
92
6.76k
    SSL_free(client);
93
6.76k
    ERR_clear_error();
94
6.76k
    SSL_CTX_free(ctx);
95
96
6.76k
    return 0;
97
6.76k
}
98
99
void FuzzerCleanup(void)
100
0
{
101
0
}