-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: gcWriteBarrier crashes in production system #42249
Comments
crashes happened occasionally in our production, 1-2 core dumps per day out of 1000 instances.
|
This looks like memory corruption. Please take a close look at your use of unsafe. Run your program under the race detector. I see that you are including backtraces from gdb. Does the program itself print anything? The program printout would provide more information about the crash. |
@ianlancetaylor thanks for your reply, will have a try of race detector.
|
That also suggests memory corruption of some sort. |
@ianlancetaylor Is there any tools that help to narrow down the first place of memory corruption? |
I'm not aware of any general tools for detecting memory corruption. Memory corruption is impossible when writing safe Go code that doesn't have race conditions. I can see from your code fragment that your code is unsafe (or at least it certainly looks unsafe), but what is the goal? Why are you using unsafe code? |
There are some |
@ianlancetaylor we are the large project, we re-write the http server with golang while leaving legacy business with c++ which exposed at shared object, thus cgo is used for between communicaiton. The golang part is hosting the process and provide goroutinue/thread infrastructure, calling in to c++ for processing the http request, thus the memory are need to be access by both golang and c++. |
I enabled -race and cgoCheck=2 but looks like no output yet |
You could try compiling your C++ code with |
Where I can find who is holding the bad pointer? |
I don't know of any way to do that, sorry. By the time of the crash memory has probably been corrupted for some time. |
It seems likely this was caused by memory corruption, and we don't have a reproducer, so there's not much to investigate here. I'm closing the issue. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Crashes at runtime.gcWriteBarrier, stack
Type 'help' for list of commands.
(dlv) bt
0 0x0000000000474781 in runtime.raise
at /usr/local/go/src/runtime/sys_linux_amd64.s:165
1 0x0000000000471160 in runtime.systemstack_switch
at /usr/local/go/src/runtime/asm_amd64.s:330
2 0x0000000000434de6 in runtime.wbBufFlush
at /usr/local/go/src/runtime/mwbbuf.go:206
3 0x000000000047300e in runtime.gcWriteBarrier
at /usr/local/go/src/runtime/asm_amd64.s:1461
4 0x0000000000473067 in runtime.gcWriteBarrierCX
at /usr/local/go/src/runtime/asm_amd64.s:1481
5 0x0000000000ac8669 in core.(*RequestContext).xxxRequestsBuf
at core/xxx_core.go:466
xxx_core.go:466
What did you expect to see?
runs no problem
What did you see instead?
crashes
The text was updated successfully, but these errors were encountered: