main-sys.cpp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* SPDX-License-Identifier: BSD-2-Clause */
  2. /***********************************************************************
  3. * Copyright (c) 2018, Intel Corporation
  4. *
  5. * All rights reserved.
  6. ***********************************************************************/
  7. #ifdef HAVE_CONFIG_H
  8. #include <config.h>
  9. #endif
  10. #include <stdbool.h>
  11. #include <stdlib.h>
  12. #define LOGMODULE test
  13. extern "C" {
  14. #include "tss2_sys.h"
  15. #include "tss2_tcti.h"
  16. #include "util/log.h"
  17. #include "test.h"
  18. #include "test-options.h"
  19. #include "context-util.h"
  20. #include "tss2-sys/sysapi_util.h"
  21. #include "tcti/tcti-fuzzing.h"
  22. }
  23. extern "C"
  24. int
  25. LLVMFuzzerTestOneInput (
  26. const uint8_t *Data,
  27. size_t Size)
  28. {
  29. int ret;
  30. TSS2_SYS_CONTEXT *sys_context;
  31. _TSS2_SYS_CONTEXT_BLOB *ctx = NULL;
  32. TSS2_TCTI_FUZZING_CONTEXT *tcti_fuzzing = NULL;
  33. /* Use the fuzzing tcti */
  34. test_opts_t opts = {
  35. .tcti_type = FUZZING_TCTI,
  36. .device_file = DEVICE_PATH_DEFAULT,
  37. .socket_address = HOSTNAME_DEFAULT,
  38. .socket_port = PORT_DEFAULT,
  39. };
  40. get_test_opts_from_env (&opts);
  41. if (sanity_check_test_opts (&opts) != 0) {
  42. LOG_ERROR("Checking test options");
  43. exit(1); /* fatal error */
  44. }
  45. sys_context = sys_init_from_opts (&opts);
  46. if (sys_context == NULL) {
  47. LOG_ERROR("SYS context not initialized");
  48. exit(1); /* fatal error */
  49. }
  50. ctx = syscontext_cast (sys_context);
  51. tcti_fuzzing = tcti_fuzzing_context_cast (ctx->tctiContext);
  52. tcti_fuzzing->data = Data;
  53. tcti_fuzzing->size = Size;
  54. ret = test_invoke (sys_context);
  55. sys_teardown_full (sys_context);
  56. if (ret) {
  57. LOG_ERROR("Test failed");
  58. exit(1); /* fatal error */
  59. }
  60. return 0; // Non-zero return values are reserved for future use.
  61. }