Skip to content
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: can't semacquire from the M stack #8749

Closed
randall77 opened this issue Sep 16, 2014 · 3 comments
Closed

runtime: can't semacquire from the M stack #8749

randall77 opened this issue Sep 16, 2014 · 3 comments

Comments

@randall77
Copy link
Contributor

From a failing net/http test:

runtime stack:
runtime.gothrow(0x9d3ed0, 0x24)
    c:/go/src/runtime/panic.go:409 +0x8e fp=0x44bfd68 sp=0x44bfd50
runtime.badmcall(0xa469b8)
    c:/go/src/runtime/proc.go:184 +0x3b fp=0x44bfd80 sp=0x44bfd68
runtime.gopark(0x4365f0, 0x155d380, 0x97e2f0, 0xa)
    c:/go/src/runtime/proc.go:129 +0x116 fp=0x44bfdc0 sp=0x44bfd80
runtime.goparkunlock(0x155d380, 0x97e2f0, 0xa)
    c:/go/src/runtime/proc.go:135 +0x4f fp=0x44bfde8 sp=0x44bfdc0
runtime.semacquire(0x1540310, 0x27b5e100)
    c:/go/src/runtime/sema.go:84 +0x203 fp=0x44bfe20 sp=0x44bfde8
readmemstats_m()
    c:/go/src/runtime/mgc0.c:1438 +0x7b fp=0x44bfe48 sp=0x44bfe20
runtime.onM(0xc082015200)
    c:/go/src/runtime/asm_amd64.s:257 +0x6d fp=0x44bfe50 sp=0x44bfe48
runtime.mstart()
    c:/go/src/runtime/proc.c:828 fp=0x44bfe58 sp=0x44bfe50

goroutine 269 [running]:
runtime.switchtoM()
    c:/go/src/runtime/asm_amd64.s:198 fp=0xc082083ec8 sp=0xc082083ec0
runtime.ReadMemStats(0x15633e0)
    c:/go/src/runtime/mgc0.c:1423 +0x41 fp=0xc082083ee0 sp=0xc082083ec8
testing.(*B).StopTimer(0xc082064400)
    c:/go/src/testing/benchmark.go:74 +0x136 fp=0xc082083f50 sp=0xc082083ee0
testing.(*B).runN(0xc082064400, 0x2)
    c:/go/src/testing/benchmark.go:125 +0x100 fp=0xc082083f60 sp=0xc082083f50
testing.(*B).launch(0xc082064400)
    c:/go/src/testing/benchmark.go:216 +0x1d1 fp=0xc082083fd8 sp=0xc082083f60
runtime.goexit()
    c:/go/src/runtime/proc.c:1705 fp=0xc082083fe0 sp=0xc082083fd8
created by testing.(*B).run
    c:/go/src/testing/benchmark.go:179 +0x53

There is a call to ReadMemStats.  It switches to the M stack and then tries to stop the
world.  The first part of stopping the world involves acquiring the worldsema.  That
calls semacquire, and that calls goparkunlock.  We can't goparkunlock from the M stack -
we need a clean G stack to suspend the current execution.

gopark correctly asserts that it can't run from the M stack.  We need to convert all
calls to semacquire to come from the G stack.

This currently happens in the following 3 routines:
gomaxprocs_m
readmemstats_m
writeheapdump_m

So I think we have to move the semacquire in these routines earlier, to the other side
of the G/M switch.

Then we need to assert at the start of semacquire that we are still on the G stack.
@gopherbot
Copy link
Contributor

Comment 1:

CL https://golang.org/cl/144940043 mentions this issue.

@randall77
Copy link
Contributor Author

Comment 2:

Issue #8735 has been merged into this issue.

@randall77
Copy link
Contributor Author

Comment 3:

This issue was closed by revision da8cf54.

Status changed to Fixed.

@golang golang locked and limited conversation to collaborators Jun 25, 2016
wheatman pushed a commit to wheatman/go-akaros that referenced this issue Jun 25, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
semacquire might need to park the currently running G.  It can
only park if called from the G stack (because it has no way of
saving the M stack state).  So all calls to semacquire must come
from the G stack.

The three violators are GOMAXPROCS, ReadMemStats, and WriteHeapDump.
This change moves the semacquire call earlier, out of their C code
and into their Go code.

This seldom caused bugs because semacquire seldom actually had
to park the caller.  But it did happen intermittently.

Fixes golang#8749

LGTM=dvyukov
R=golang-codereviews, dvyukov, bradfitz
CC=golang-codereviews
https://golang.org/cl/144940043
wheatman pushed a commit to wheatman/go-akaros that referenced this issue Jul 9, 2018
semacquire might need to park the currently running G.  It can
only park if called from the G stack (because it has no way of
saving the M stack state).  So all calls to semacquire must come
from the G stack.

The three violators are GOMAXPROCS, ReadMemStats, and WriteHeapDump.
This change moves the semacquire call earlier, out of their C code
and into their Go code.

This seldom caused bugs because semacquire seldom actually had
to park the caller.  But it did happen intermittently.

Fixes golang#8749

LGTM=dvyukov
R=golang-codereviews, dvyukov, bradfitz
CC=golang-codereviews
https://golang.org/cl/144940043
wheatman pushed a commit to wheatman/go-akaros that referenced this issue Jul 30, 2018
semacquire might need to park the currently running G.  It can
only park if called from the G stack (because it has no way of
saving the M stack state).  So all calls to semacquire must come
from the G stack.

The three violators are GOMAXPROCS, ReadMemStats, and WriteHeapDump.
This change moves the semacquire call earlier, out of their C code
and into their Go code.

This seldom caused bugs because semacquire seldom actually had
to park the caller.  But it did happen intermittently.

Fixes golang#8749

LGTM=dvyukov
R=golang-codereviews, dvyukov, bradfitz
CC=golang-codereviews
https://golang.org/cl/144940043
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants