You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
srs/trunk/research/st
Winlin 8f48a0e2d1
ASAN: Support coroutine context switching and stack tracing (#4153)
For coroutine, we should use `__sanitizer_start_switch_fiber` which
similar to`VALGRIND_STACK_REGISTER`, see
https://github.com/google/sanitizers/issues/189#issuecomment-1346243598
for details. If not fix this, asan will output warning:

```
==72269==WARNING: ASan is ignoring requested __asan_handle_no_return: stack type: default top: 0x00016f638000; bottom 0x000106bec000; size: 0x000068a4c000 (1755627520)
False positive error reports may follow
For details see https://github.com/google/sanitizers/issues/189
```

It will cause asan failed to get the stack, see
`research/st/asan-switch.cpp` for example:

```
==71611==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x000103600733 at pc 0x0001009d3d7c bp 0x000100b4bd40 sp 0x000100b4bd38
WRITE of size 1 at 0x000103600733 thread T0
    #0 0x1009d3d78 in foo(void*) asan-switch.cpp:13
```

After fix this issue, it should provide the full stack when crashing:

```
==73437==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x000103300733 at pc 0x000100693d7c bp 0x00016f76f550 sp 0x00016f76f548
WRITE of size 1 at 0x000103300733 thread T0
    #0 0x100693d78 in foo(void*) asan-switch.cpp:13
    #1 0x100693df4 in main asan-switch.cpp:23
    #2 0x195aa20dc  (<unknown module>)
```

For primordial coroutine, if not set the stack by
`st_set_primordial_stack`, then the stack is NULL and asan can't get the
stack tracing. Note that it's optional and only make it fail to display
the stack information, no other errors.

---

Co-authored-by: john <hondaxiao@tencent.com>
5 months ago
..
.gitignore ASAN: Support coroutine context switching and stack tracing (#4153) 5 months ago
asan-switch.cpp ASAN: Support coroutine context switching and stack tracing (#4153) 5 months ago
cost.cpp Clock: Update stat. Insert timer to execute first 4 years ago
exceptions.cpp ST: Research adds examples that demos pthread and helloworld. v6.0.118 (#3989) 10 months ago
hello-st.cpp ST: Research adds examples that demos pthread and helloworld. v6.0.118 (#3989) 10 months ago
hello-thread.cpp ASAN: Support coroutine context switching and stack tracing (#4153) 5 months ago
hello-world.cpp ST: Research adds examples that demos pthread and helloworld. v6.0.118 (#3989) 10 months ago
hello.c ASAN: Support coroutine context switching and stack tracing (#4153) 5 months ago
hello.cpp ST: Research adds examples that demos pthread and helloworld. v6.0.118 (#3989) 10 months ago
huge-threads.cpp Update 4 years ago
pthreads.cpp ST: Research adds examples that demos pthread and helloworld. v6.0.118 (#3989) 10 months ago
st-cond.cpp ST: Replace macros with explicit code for better understanding. v7.0.7 (#4149) 5 months ago
thread-join.cpp SmartPtr: Support detect memory leak by valgrind. v6.0.132 (#4102) 7 months ago
udp-client.cpp Add research for UDP binding 4 years ago
udp-server.cpp Add research for UDP binding 4 years ago