Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [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 | * Test configuration parsing. |
| 13 | */ |
| 14 | |
| 15 | #include <openssl/conf.h> |
Kurt Roeckx | d69d8f9 | 2016-12-02 19:34:54 +0100 | [diff] [blame] | 16 | #include <openssl/err.h> |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 17 | #include "fuzzer.h" |
| 18 | |
Kurt Roeckx | f3e911d | 2016-11-19 17:10:35 +0100 | [diff] [blame] | 19 | int FuzzerInitialize(int *argc, char ***argv) |
| 20 | { |
Kurt Roeckx | d69d8f9 | 2016-12-02 19:34:54 +0100 | [diff] [blame] | 21 | OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL); |
| 22 | ERR_get_state(); |
Ben Laurie | 90d28f0 | 2016-06-04 16:10:49 +0100 | [diff] [blame] | 23 | return 1; |
| 24 | } |
| 25 | |
Kurt Roeckx | f3e911d | 2016-11-19 17:10:35 +0100 | [diff] [blame] | 26 | int FuzzerTestOneInput(const uint8_t *buf, size_t len) |
| 27 | { |
Kurt Roeckx | ea6199e | 2016-11-02 20:45:46 +0100 | [diff] [blame] | 28 | CONF *conf; |
| 29 | BIO *in; |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 30 | long eline; |
| 31 | |
Kurt Roeckx | ea6199e | 2016-11-02 20:45:46 +0100 | [diff] [blame] | 32 | if (len == 0) |
| 33 | return 0; |
| 34 | |
| 35 | conf = NCONF_new(NULL); |
| 36 | in = BIO_new(BIO_s_mem()); |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 37 | OPENSSL_assert((size_t)BIO_write(in, buf, len) == len); |
| 38 | NCONF_load_bio(conf, in, &eline); |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 39 | NCONF_free(conf); |
| 40 | BIO_free(in); |
Kurt Roeckx | d69d8f9 | 2016-12-02 19:34:54 +0100 | [diff] [blame] | 41 | ERR_clear_error(); |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 42 | |
| 43 | return 0; |
| 44 | } |
Kurt Roeckx | ad4da7f | 2016-11-19 17:13:10 +0100 | [diff] [blame] | 45 | |
| 46 | void FuzzerCleanup(void) |
| 47 | { |
| 48 | } |