2016-06-18 21:56:49 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the OpenSSL licenses, (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
* or in the file LICENSE in the source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/bio.h>
|
2016-12-03 02:34:54 +08:00
|
|
|
#include <openssl/err.h>
|
2017-02-20 00:04:11 +08:00
|
|
|
#include <openssl/rand.h>
|
2016-06-18 21:56:49 +08:00
|
|
|
#include "fuzzer.h"
|
|
|
|
|
2017-08-11 20:22:22 +08:00
|
|
|
#include "rand.inc"
|
|
|
|
|
2016-11-20 00:10:35 +08:00
|
|
|
int FuzzerInitialize(int *argc, char ***argv)
|
|
|
|
{
|
2016-12-03 02:34:54 +08:00
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
|
|
|
|
ERR_get_state();
|
|
|
|
CRYPTO_free_ex_index(0, -1);
|
2017-07-27 02:27:30 +08:00
|
|
|
FuzzerSetRand();
|
2016-07-01 22:42:15 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-11-20 00:10:35 +08:00
|
|
|
int FuzzerTestOneInput(const uint8_t *buf, size_t len)
|
|
|
|
{
|
2016-06-18 21:56:49 +08:00
|
|
|
const unsigned char *p = buf;
|
|
|
|
unsigned char *der = NULL;
|
|
|
|
|
|
|
|
X509 *x509 = d2i_X509(NULL, &p, len);
|
|
|
|
if (x509 != NULL) {
|
|
|
|
BIO *bio = BIO_new(BIO_s_null());
|
2016-06-26 22:37:03 +08:00
|
|
|
/* This will load and print the public key as well as extensions */
|
2016-06-18 21:56:49 +08:00
|
|
|
X509_print(bio, x509);
|
|
|
|
BIO_free(bio);
|
|
|
|
|
|
|
|
i2d_X509(x509, &der);
|
|
|
|
OPENSSL_free(der);
|
|
|
|
|
|
|
|
X509_free(x509);
|
|
|
|
}
|
2016-12-03 02:34:54 +08:00
|
|
|
ERR_clear_error();
|
2016-06-18 21:56:49 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2016-11-20 00:13:10 +08:00
|
|
|
|
|
|
|
void FuzzerCleanup(void)
|
|
|
|
{
|
|
|
|
}
|