-
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 0xffffffffffffffff (and other more innocent addresses) #15861
Comments
The crashes point to memory corruption when running a finalizer. Where does your code call runtime.SetFinalizer? Do you use cgo or SWIG? Do you use unsafe? Look closely at code that uses objects for which runtime.SetFinalizer has been called, and make sure those objects are alive. See #13347 for the kinds of problems that can occur. |
We have a single runtime.SetFinalizer in all the code including every dependency (except the golang standard library). There is no cgo - we have a counter on the status page saying how many calls to cgo there have been which stays at 1. No SWIG either. No unsafe, I double checked because I was surprised we managed to remove every instance of it. The single finalizer (which is not needed and we should probably remove it) is unlikely to be called so early in the execution of the server. And even if it does it does not look like #13347 . The interesting thing here is that running it with start-stop-daemon and -u flag is the only thing that makes it crash. The documentation for start-stop-daemon says that it sets HOME to the user's home which was tried with sudo and no crash: HOME=/dev/null sudo -u user start-stop-daemon --start ./nedomi # yes the user home is /dev/null I'm gonna try to run a few more tests later today in hopes of giving better directions on how reproduce it from |
You can delete that finalizer, all os.File objects have a finalizer which On Mon, 30 May 2016, 18:00 Mihail Stoykov notifications@github.com wrote:
|
The docs I see for |
the manual for the start-stop-daemon used at the machine says that
The actual way that we found that nedomi runs at all on the server is that I ran it without anything to see how long it takes to crash. Unfortunately more pressing things at work mean that I can't actually investigate more on how it crashes. The installed star-stop-daemon should be build from this tree as it belongs to openrc-0.9.9.3 package |
After updating the go version from 1.5.1 to 1.6.2 our application crashed right after startup in production.
We run it with start-stop-daemon and use the '-u' flag to change the user. This is relevant because changing this to sudo-ing the start-stop-daemon to the user instead of using the flag the crash vanished. We figured this out trough experimentation.
go version
)?1.6.2
go env
)?Linux 3.2.12-gentoo 64bit
Update to golang 1.6.2 from 1.5.1
No difference :)
the address isn't the same between crashes
This stacktrace doesn't contain any relevant information for me. All the stackframes of the other goroutines don't seem the same between crashes.
It might be relevant (given the mfina.go in the stack) that this happened two times after the 9th gc and once after the 7th gc (GODEBUG="gctrace=2" is set)
The text was updated successfully, but these errors were encountered: