hwasan_interface.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. //===-- sanitizer/asan_interface.h ------------------------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file is a part of HWAddressSanitizer.
  10. //
  11. // Public interface header.
  12. //===----------------------------------------------------------------------===//
  13. #ifndef SANITIZER_HWASAN_INTERFACE_H
  14. #define SANITIZER_HWASAN_INTERFACE_H
  15. #include <sanitizer/common_interface_defs.h>
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. // Libc hook for program startup in statically linked executables.
  20. // Initializes enough of the runtime to run instrumented code. This function
  21. // should only be called in statically linked executables because it modifies
  22. // the GOT, which won't work in regular binaries because RELRO will already
  23. // have been applied by the time the function is called. This also means that
  24. // the function should be called before libc applies RELRO.
  25. // Does not call libc unless there is an error.
  26. // Can be called multiple times.
  27. void __hwasan_init_static(void);
  28. // This function may be optionally provided by user and should return
  29. // a string containing HWASan runtime options. See asan_flags.h for details.
  30. const char* __hwasan_default_options(void);
  31. void __hwasan_enable_allocator_tagging(void);
  32. void __hwasan_disable_allocator_tagging(void);
  33. // Mark region of memory with the given tag. Both address and size need to be
  34. // 16-byte aligned.
  35. void __hwasan_tag_memory(const volatile void *p, unsigned char tag,
  36. size_t size);
  37. /// Set pointer tag. Previous tag is lost.
  38. void *__hwasan_tag_pointer(const volatile void *p, unsigned char tag);
  39. // Set memory tag from the current SP address to the given address to zero.
  40. // This is meant to annotate longjmp and other non-local jumps.
  41. // This function needs to know the (almost) exact destination frame address;
  42. // clearing shadow for the entire thread stack like __asan_handle_no_return
  43. // does would cause false reports.
  44. void __hwasan_handle_longjmp(const void *sp_dst);
  45. // Set memory tag for the part of the current thread stack below sp_dst to
  46. // zero. Call this in vfork() before returning in the parent process.
  47. void __hwasan_handle_vfork(const void *sp_dst);
  48. // Libc hook for thread creation. Should be called in the child thread before
  49. // any instrumented code.
  50. void __hwasan_thread_enter();
  51. // Libc hook for thread destruction. No instrumented code should run after
  52. // this call.
  53. void __hwasan_thread_exit();
  54. // Print shadow and origin for the memory range to stderr in a human-readable
  55. // format.
  56. void __hwasan_print_shadow(const volatile void *x, size_t size);
  57. // Print one-line report about the memory usage of the current process.
  58. void __hwasan_print_memory_usage();
  59. /* Returns the offset of the first byte in the memory range that can not be
  60. * accessed through the pointer in x, or -1 if the whole range is good. */
  61. intptr_t __hwasan_test_shadow(const volatile void *x, size_t size);
  62. /* Sets the callback function to be called during HWASan error reporting. */
  63. void __hwasan_set_error_report_callback(void (*callback)(const char *));
  64. int __sanitizer_posix_memalign(void **memptr, size_t alignment, size_t size);
  65. void * __sanitizer_memalign(size_t alignment, size_t size);
  66. void * __sanitizer_aligned_alloc(size_t alignment, size_t size);
  67. void * __sanitizer___libc_memalign(size_t alignment, size_t size);
  68. void * __sanitizer_valloc(size_t size);
  69. void * __sanitizer_pvalloc(size_t size);
  70. void __sanitizer_free(void *ptr);
  71. void __sanitizer_cfree(void *ptr);
  72. size_t __sanitizer_malloc_usable_size(const void *ptr);
  73. struct mallinfo __sanitizer_mallinfo();
  74. int __sanitizer_mallopt(int cmd, int value);
  75. void __sanitizer_malloc_stats(void);
  76. void * __sanitizer_calloc(size_t nmemb, size_t size);
  77. void * __sanitizer_realloc(void *ptr, size_t size);
  78. void * __sanitizer_reallocarray(void *ptr, size_t nmemb, size_t size);
  79. void * __sanitizer_malloc(size_t size);
  80. #ifdef __cplusplus
  81. } // extern "C"
  82. #endif
  83. #endif // SANITIZER_HWASAN_INTERFACE_H