-
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: unexpected fault address 0xdfe1bd #11792
Comments
CC @aclements @RLH This may be optimistic thinking, but it's possible that this is another instance of #11617 . |
This one looks similar:
Core dump: https://cl.ly/2S1O1y202f2T |
@titanous, can you reproduce any of these faults outside of Vagrant? The instruction at PC 0x46daf2 doesn't even access memory, so it makes no sense for it to trigger a SIGSEGV. (FWIW, I tried reproducing by just running go build of salsa20/salsa from another one of your issues in a loop and wasn't able to trigger any failures after ~40,000 runs.) |
@aclements I have not attempted to. I will run a build loop on a real machine. |
Collectively, your recently filed bugs look like somehow the instruction memory for the Go binary is being lost, or not loaded correctly to begin with. All the failures are very early in the life of a program, possibly the first time a particular instruction page is hit. This sounds like possibly a kernel problem or a virtual hardware problem (you're running Vagrant; is it backed by QEMU?). Maybe something Go does tickles a bug that most C binaries do not. One thing maybe worth trying is to turn off hugepage support, which seems to be
And then see whether the failure rate changes. Go does unmap data memory, so possibly Go could get confused and unmap text memory, but there is nothing in the core file maps to support that, and the failures happen so early in the lifetime of the program that the unmapper almost certainly hasn't gotten a chance to run. It seems more likely that the instruction pages are somehow not being loaded into memory properly. If that's true, the question is why and whether we can do anything to Go binaries to work around the problem. Thanks. |
I'm using VirtualBox 4.3.28 on OS X 10.10.4. I've been unable to reproduce this on another bare metal host with an older kernel (3.16). I'll continue to test by doing the following:
|
Preliminary testing indicates the following:
I'll leave the builders running for a few more hours, but I'm almost satisfied that this is caused by a bug in VirtualBox 4.3.28 (and possibly older versions). |
I'm now confident that this issue is only reproducible in VirtualBox 4.3.28 and possibly older versions. I'll leave it to you folks to determine if this is an issue, but since I can just update to 4.3.30 or 5.0 I don't consider it to be a problem. |
Will close then. Please ping if you see it on raw hardware. |
While running
go test
:Core dump: https://cl.ly/3O2A112y3w3b
This happens pretty rarely (less than 1 in 1000 builds).
The text was updated successfully, but these errors were encountered: