-
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: bad p & random crashes since 1.14 on linux 3.18.11 #40722
Comments
Wild guess could be #35777 or similar bad effects due to signals from async preemption. It seems Debian 8 LTS support ended June 2020. Im not sure how new/patched the kernel is on that system. |
Thanks, I am puzzled though, #35777 mentions recent (5.x) kernels, while this case is about kernel 3.18.11. Unfortunately I have no control over my user's kernel or command invocation. Shall I stick to go1.13.15 for my production builds? Or can we programmatically disable asyncpreempt to maximize compatibility with older kernels? |
I think the next step is to figure out why async preemption interacts badly with the 3.18.11 kernel here (Debian 8). For now you can programmatically disable asyncpreemption by setting |
Thanks. Unfortunately, I have no control over the system/env, and it seems that debug.asyncpreemptoff cannot be set from within a Go program, so I'll stick with 1.13 then. https://golang.org/src/runtime/runtime1.go?h=asyncpreemptoff#L340 |
https://www.kernel.org/category/releases.html seems to suggest 3.18.11 is not supported anymore and quite old same for the debian installation. So im not sure how effective it will be finding the bug and if it is on the linux side it may likely not get fixed. There may however be interest in learning what the issue is and if it could be reproduced on newer kernels/linux installations (or reintroduced if not careful) if it isnt related to a known issue like: #35777 If you have control over your systems go installation you could change the go runtime code to have debug.asyncpreemptoff be always true regardless of GODEBUG. |
This certainly looks like memory corruption. It can't be exactly the same cause as #35777, but it could be related. Is it possible for you to change |
Sorry, problem persists, using 1.15 and: func osArchInit() {
gsignalInitQuirk = mlockGsignal
if m0.gsignal != nil {
throw("gsignal quirk too late")
}
throwReportQuirk = throwBadKernel
} FYI @ianlancetaylor the error output was |
Thanks for trying that. So this still looks like memory corruption, and it seems to be related to signal handling, and as far as we know it only happens on older Linux kernels. I'm not sure what to suggest. |
it looks like golang is unstable when using the win32 api similar to golang/go#40722. Some error messages: - Segmentation fault - Bad p - Missing stack in shrinkstack Added logging to help debug. It looks like it is related to the frequency of paint or InvalidateRect. Increasing the refresh speed to 10ms can reliably reproduce the problem, at 500ms it seems pretty stable
Summary: a simple test program built with go1.14 & go1.15 crashes randomly (~92% cases) on a specific Linux server. No problem with 1.13.15.
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Working builds:
1.13.7
1.13.15
Crashing builds:
1.14
1.14.4
1.14.6
1.15
What operating system and processor architecture are you using (
go env
)?Build environment:
go env
OutputRuntime environment:
What did you do?
crashtest.go:
Test runner:
What did you see instead?
When ran with a few hundred tests, it crashes in ~92% of cases. As you can see, the error message differs. For 200 tests, these are the counted first lines of the errors:
Sample stacktrace:
The text was updated successfully, but these errors were encountered: