-
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: mexit leads to SIGSEGV due to g.m becoming nil #52394
Comments
This is also reproducible on FreeBSD 13 with Go 1.18:
Of interest, this is also a system/pthread created thread (entry is via
|
The reproducer is:
|
On FreeBSD and OpenBSD, the use of runtime.LockOSThread is resulting in segfaults within the Go runtime (see golang/go#52394) - while it should not be necessary, calling runtime.UnlockOSThread upon exit from handlePtraceFuncs avoids this issue and allows the tests to run correctly.
Thanks for the report. Could you please attach a more complete "go env" with hardware, OS version ,etc? Thanks. It would also help to understand which testpoint is the one that triggers the error. |
On openbsd/amd64:
On freebsd/amd64:
Another data point is that both of these are virtual machines that have a single vCPU.
As far as I can determine, there is no single test case that triggers it - I suspect it relates to the cycling of goroutines and threads that have called |
On FreeBSD and OpenBSD, the use of runtime.LockOSThread is resulting in segfaults within the Go runtime (see golang/go#52394) - while it should not be necessary, calling runtime.UnlockOSThread upon exit from handlePtraceFuncs avoids this issue and allows the tests to run correctly.
On FreeBSD and OpenBSD, the use of runtime.LockOSThread is resulting in segfaults within the Go runtime (see golang/go#52394) - while it should not be necessary, calling runtime.UnlockOSThread upon exit from handlePtraceFuncs avoids this issue and allows the tests to run correctly.
Issue is reproducible on openbsd/amd64 with both go1.17.7 and -tip.
While debugging test failures (for another software package - delve), the
go test
run will regularly hit aSIGSEGV
like the following:This is occurring due to
gp.m
becomingnil
during the following inmexit
(it is non-nil before this line and is nil immediately afterwards):The next piece of code is:
And this leads to a
gp.m.locks
dereference and hence aSIGSEGV
.This seems to be triggered by the fact that these tests run code that calls
runtime.LockOSThread
- adding a matchingruntime.UnlockOSThread
call makes the issue disappear, as does removing theruntime.LockOSThread
call. Additionally, theopenbsd/amd64
port uses system threads, which may play a part.So far I've been unsuccessful in reducing the test suite to provide a minimal reproducer. However, it is easy to trigger and I can provide further information as needed.
The text was updated successfully, but these errors were encountered: