]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.23] runtime: uphold goroutine profile invariants in coroswitch
authorMichael Anthony Knyszek <mknyszek@google.com>
Wed, 23 Oct 2024 16:28:52 +0000 (16:28 +0000)
committerMichael Pratt <mpratt@google.com>
Wed, 30 Oct 2024 16:49:25 +0000 (16:49 +0000)
Goroutine profiles require checking in with the profiler before any
goroutine starts running. coroswitch is a place where a goroutine may
start running, but where we do not check in with the profiler, which
leads to crashes. Fix this by checking in with the profiler the same way
execute does.

For #69998.
Fixes #70001.

Change-Id: Idef6dd31b70a73dd1c967b56c307c7a46a26ba73
Reviewed-on: https://go-review.googlesource.com/c/go/+/622016
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
(cherry picked from commit 2a98a1849f059ffa94ab23a1ab7d8fa0fd0b48dd)
Reviewed-on: https://go-review.googlesource.com/c/go/+/622375
Reviewed-by: Michael Pratt <mpratt@google.com>
src/runtime/coro.go
src/runtime/pprof/pprof_test.go

index 30ada455e4985e1c92071aaa34bb3e890bbc2afc..d93817f92f1caa006e15d78111a733e36d380c8c 100644 (file)
@@ -208,6 +208,18 @@ func coroswitch_m(gp *g) {
        // directly if possible.
        setGNoWB(&mp.curg, gnext)
        setMNoWB(&gnext.m, mp)
+
+       // Synchronize with any out-standing goroutine profile. We're about to start
+       // executing, and an invariant of the profiler is that we tryRecordGoroutineProfile
+       // whenever a goroutine is about to start running.
+       //
+       // N.B. We must do this before transitioning to _Grunning but after installing gnext
+       // in curg, so that we have a valid curg for allocation (tryRecordGoroutineProfile
+       // may allocate).
+       if goroutineProfile.active {
+               tryRecordGoroutineProfile(gnext, nil, osyield)
+       }
+
        if !gnext.atomicstatus.CompareAndSwap(_Gwaiting, _Grunning) {
                // The CAS failed: use casgstatus, which will take care of
                // coordinating with the garbage collector about the state change.
index d16acf54dabd98c03d8f24702f0b28dccdd98ffa..41952ff147c4b7dc985a0fa7ab3fa6a57a02cc70 100644 (file)
@@ -15,6 +15,7 @@ import (
        "internal/syscall/unix"
        "internal/testenv"
        "io"
+       "iter"
        "math"
        "math/big"
        "os"
@@ -1754,6 +1755,50 @@ func TestGoroutineProfileConcurrency(t *testing.T) {
        }
 }
 
+// Regression test for #69998.
+func TestGoroutineProfileCoro(t *testing.T) {
+       testenv.MustHaveParallelism(t)
+
+       goroutineProf := Lookup("goroutine")
+
+       // Set up a goroutine to just create and run coroutine goroutines all day.
+       iterFunc := func() {
+               p, stop := iter.Pull2(
+                       func(yield func(int, int) bool) {
+                               for i := 0; i < 10000; i++ {
+                                       if !yield(i, i) {
+                                               return
+                                       }
+                               }
+                       },
+               )
+               defer stop()
+               for {
+                       _, _, ok := p()
+                       if !ok {
+                               break
+                       }
+               }
+       }
+       var wg sync.WaitGroup
+       done := make(chan struct{})
+       wg.Add(1)
+       go func() {
+               defer wg.Done()
+               for {
+                       iterFunc()
+                       select {
+                       case <-done:
+                       default:
+                       }
+               }
+       }()
+
+       // Take a goroutine profile. If the bug in #69998 is present, this will crash
+       // with high probability. We don't care about the output for this bug.
+       goroutineProf.WriteTo(io.Discard, 1)
+}
+
 func BenchmarkGoroutine(b *testing.B) {
        withIdle := func(n int, fn func(b *testing.B)) func(b *testing.B) {
                return func(b *testing.B) {