asan_hacks.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2019 Jan Van Winkel <jan.van_winkel@dxplore.eu>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #if defined(CONFIG_64BIT) && defined(__GNUC__) && !defined(__clang__)
  7. const char *__asan_default_options(void)
  8. {
  9. /* Running leak detection at exit could lead to a deadlock on
  10. * 64-bit boards if GCC is used.
  11. * https://github.com/zephyrproject-rtos/zephyr/issues/20122
  12. */
  13. return "leak_check_at_exit=0:";
  14. }
  15. #endif
  16. #ifdef CONFIG_HAS_SDL
  17. const char *__lsan_default_suppressions(void)
  18. {
  19. /* The SDL2 library does not clean-up all it resources on exit,
  20. * as such suppress all memory leaks coming from libSDL2 and the
  21. * underlying X11 library
  22. */
  23. return "leak:libX11\nleak:libSDL2\n";
  24. }
  25. #endif /* CONFIG_HAS_SDL */
  26. #ifdef CONFIG_ASAN_NOP_DLCLOSE
  27. /* LSAN has a known limitation that if dlcose is called before performing the
  28. * leak check; "<unknown module>" is reported in the stack traces during the
  29. * leak check and these can not be suppressed, see
  30. * https://github.com/google/sanitizers/issues/89 for more info.
  31. *
  32. * A workaround for this is to implement a NOP version of dlclose.
  33. */
  34. int dlclose(void *handler)
  35. {
  36. return 0;
  37. }
  38. #endif /* CONFIG_ASAN_NOP_DLCLOSE */