1. 08 6月, 2022 3 次提交
  2. 07 6月, 2022 1 次提交
    • C
      fixed 07d61e4e from https://gitee.com/caoruihong/third_party_musl/pulls/319 · fa83650b
      Caoruihong 提交于
      fix(asan): fix the deadlock issue of musl dlopen in clang asan runtime
      
      musl的dlopen实现在ld-musl-aarch64-asan.so.1库中,因为这个库是linker,
      比asan运行时库libclang_rt.asan.so更早被执行,dlopen中因为使用了动态内存分配,
      在asan的hook生效前就已经调用了calloc,等到asan hook生效后再触发了调用realloc,
      被asan检测到realloc的内存地址不在asan的动态内存管理范围内从而触发报告asan错误日志,
      而asan报告错误日志时正好又需要调用到dl相关函数(dl_iterate_phdr)进行函数栈回溯,
      进而导致死锁。
      本PR中的修改方法是将linker中使用的内存操作函数进行本地绑定,不让asan运行时库接管,
      进而避免此问题场景的出现,本修改仅影响asan版本,正常版本不受影响。
      Signed-off-by: NCaoruihong <crh.cao@huawei.com>
      Change-Id: I499228c658e23ee47c51e18a91cb4b9cbec57722
      fa83650b
  3. 30 5月, 2022 2 次提交
  4. 27 5月, 2022 1 次提交
  5. 23 5月, 2022 4 次提交
  6. 19 5月, 2022 1 次提交
  7. 10 5月, 2022 2 次提交
  8. 06 5月, 2022 1 次提交
  9. 05 5月, 2022 2 次提交
  10. 29 4月, 2022 1 次提交
  11. 28 4月, 2022 4 次提交
  12. 26 4月, 2022 1 次提交
  13. 22 4月, 2022 1 次提交
  14. 21 4月, 2022 4 次提交
  15. 20 4月, 2022 4 次提交
  16. 19 4月, 2022 1 次提交
  17. 18 4月, 2022 3 次提交
  18. 13 4月, 2022 1 次提交
  19. 11 4月, 2022 2 次提交
  20. 08 4月, 2022 1 次提交