Ben Laurie | 4a2c4c1 | 2016-06-03 11:07:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. |
| 3 | * |
| 4 | * Licensed under the OpenSSL licenses, (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 | * Fuzz the SCT parser. |
| 13 | */ |
| 14 | |
| 15 | #include <stdio.h> |
| 16 | #include <openssl/ct.h> |
Kurt Roeckx | d69d8f9 | 2016-12-02 19:34:54 +0100 | [diff] [blame] | 17 | #include <openssl/err.h> |
Ben Laurie | 4a2c4c1 | 2016-06-03 11:07:42 +0100 | [diff] [blame] | 18 | #include "fuzzer.h" |
| 19 | |
Kurt Roeckx | f3e911d | 2016-11-19 17:10:35 +0100 | [diff] [blame] | 20 | int FuzzerInitialize(int *argc, char ***argv) |
| 21 | { |
Kurt Roeckx | d69d8f9 | 2016-12-02 19:34:54 +0100 | [diff] [blame] | 22 | OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL); |
| 23 | CRYPTO_free_ex_index(0, -1); |
| 24 | ERR_get_state(); |
Ben Laurie | 90d28f0 | 2016-06-04 16:10:49 +0100 | [diff] [blame] | 25 | return 1; |
| 26 | } |
| 27 | |
Kurt Roeckx | f3e911d | 2016-11-19 17:10:35 +0100 | [diff] [blame] | 28 | int FuzzerTestOneInput(const uint8_t *buf, size_t len) |
| 29 | { |
Ben Laurie | 4a2c4c1 | 2016-06-03 11:07:42 +0100 | [diff] [blame] | 30 | const uint8_t **pp = &buf; |
Kurt Roeckx | e10aeee | 2016-07-16 13:41:33 +0200 | [diff] [blame] | 31 | unsigned char *der = NULL; |
Ben Laurie | 4a2c4c1 | 2016-06-03 11:07:42 +0100 | [diff] [blame] | 32 | STACK_OF(SCT) *scts = d2i_SCT_LIST(NULL, pp, len); |
Kurt Roeckx | e10aeee | 2016-07-16 13:41:33 +0200 | [diff] [blame] | 33 | if (scts != NULL) { |
| 34 | BIO *bio = BIO_new(BIO_s_null()); |
| 35 | SCT_LIST_print(scts, bio, 4, "\n", NULL); |
| 36 | BIO_free(bio); |
| 37 | |
Matt Caswell | 33e49fd | 2016-07-18 10:28:45 +0100 | [diff] [blame] | 38 | if (i2d_SCT_LIST(scts, &der)) { |
| 39 | /* Silence unused result warning */ |
| 40 | } |
Kurt Roeckx | e10aeee | 2016-07-16 13:41:33 +0200 | [diff] [blame] | 41 | OPENSSL_free(der); |
| 42 | |
| 43 | SCT_LIST_free(scts); |
| 44 | } |
Kurt Roeckx | d69d8f9 | 2016-12-02 19:34:54 +0100 | [diff] [blame] | 45 | ERR_clear_error(); |
Ben Laurie | 4a2c4c1 | 2016-06-03 11:07:42 +0100 | [diff] [blame] | 46 | return 0; |
| 47 | } |
Kurt Roeckx | ad4da7f | 2016-11-19 17:13:10 +0100 | [diff] [blame] | 48 | |
| 49 | void FuzzerCleanup(void) |
| 50 | { |
| 51 | } |