2016-06-18 21:56:49 +08:00
|
|
|
/*
|
2021-02-18 22:57:13 +08:00
|
|
|
* Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2016-06-18 21:56:49 +08:00
|
|
|
*
|
2018-12-06 21:07:47 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License");
|
2016-06-18 21:56:49 +08:00
|
|
|
* 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"
|
|
|
|
|
2016-11-20 00:10:35 +08:00
|
|
|
int FuzzerInitialize(int *argc, char ***argv)
|
|
|
|
{
|
2020-12-10 10:04:58 +08:00
|
|
|
FuzzerSetRand();
|
2016-12-03 02:34:54 +08:00
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
|
2019-07-27 00:11:55 +08:00
|
|
|
ERR_clear_error();
|
2016-12-03 02:34:54 +08:00
|
|
|
CRYPTO_free_ex_index(0, -1);
|
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);
|
|
|
|
|
2021-02-11 00:36:57 +08:00
|
|
|
X509_issuer_and_serial_hash(x509);
|
|
|
|
|
2016-06-18 21:56:49 +08:00
|
|
|
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)
|
|
|
|
{
|
2020-12-10 10:04:58 +08:00
|
|
|
FuzzerClearRand();
|
2016-11-20 00:13:10 +08:00
|
|
|
}
|