asn1parse.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright 2016-2021 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. * Fuzz the parser used for dumping ASN.1 using "openssl asn1parse".
  12. */
  13. #include <stdio.h>
  14. #include <openssl/asn1.h>
  15. #include <openssl/x509.h>
  16. #include <openssl/x509v3.h>
  17. #include <openssl/err.h>
  18. #include "fuzzer.h"
  19. static BIO *bio_out;
  20. int FuzzerInitialize(int *argc, char ***argv)
  21. {
  22. bio_out = BIO_new(BIO_s_null()); /* output will be ignored */
  23. if (bio_out == NULL)
  24. return 0;
  25. OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
  26. ERR_clear_error();
  27. CRYPTO_free_ex_index(0, -1);
  28. return 1;
  29. }
  30. int FuzzerTestOneInput(const uint8_t *buf, size_t len)
  31. {
  32. (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
  33. ERR_clear_error();
  34. return 0;
  35. }
  36. void FuzzerCleanup(void)
  37. {
  38. BIO_free(bio_out);
  39. }