-
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: fatal error: bad pointer in write barrier in Cgo #15293
Comments
Most likely your C code is somehow corrupting the Go heap. Try running your program with the environment variable GODEBUG set to cgocheck=2. Try running your program with the address sanitizer (-fsanitize=address). |
@ianlancetaylor I tried the following command |
The GODEBUG setting is correct, though I guess it didn't help. The -fsanitize=address option is not. I was suggesting that you use that option when compiling your C code. This problem looks like memory corruption, which is almost certainly coming from the C code; you need to figure out what the C code is doing wrong. |
@ianlancetaylor Actually, I have tested my C code by using |
The stack trace shows that a value that Go thinks should hold a pointer actually holds the value 0x20, which is not a valid pointer value. That is why the Go runtime is crashing. My first guess would be memory corruption. But it is also possible that you are using a Go pointer to hold a value returned from C, and for some reason C is returning the value 0x20. That could cause this problem. |
@ianlancetaylor I have a basic question. How to analyse the runtime stack? For example, my Go code is |
The stack traceback maps to the arguments. A string is two words, a pointer, and a length, so in your example 0xc8202bfe78 is the string pointer and I never thought that |
This has been opened for years and it's hard to investigate without a reproducer. As Ian said, it seems likely that the crash is caused by issues in cgo code; I'm closing this issue. |
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?What operating system and processor architecture are you using (
go env
)?I posted my question in stackoverflow, please take a look.
http://stackoverflow.com/questions/36591069/fatal-error-bad-pointer-in-write-barrier-in-cgo
Is that possible the address allocated by C is out the space of Golang?
The text was updated successfully, but these errors were encountered: