fuzz_certs.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (C) 2017 Tobias Brunner
  3. * HSR Hochschule fuer Technik Rapperswil
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  13. * for more details.
  14. */
  15. #include <library.h>
  16. #include <utils/debug.h>
  17. int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len)
  18. {
  19. certificate_t *cert;
  20. chunk_t chunk;
  21. dbg_default_set_level(-1);
  22. library_init(NULL, "fuzz_certs");
  23. plugin_loader_add_plugindirs(PLUGINDIR, PLUGINS);
  24. if (!lib->plugins->load(lib->plugins, PLUGINS))
  25. {
  26. return 1;
  27. }
  28. chunk = chunk_create((u_char*)buf, len);
  29. cert = lib->creds->create(lib->creds, CRED_CERTIFICATE, CERT_X509,
  30. BUILD_BLOB, chunk, BUILD_END);
  31. DESTROY_IF(cert);
  32. lib->plugins->unload(lib->plugins);
  33. library_deinit();
  34. return 0;
  35. }