fix: 4 P0 concurrency races in forward + k8s

P0 #2 — currentConfig data race
  Manager.currentConfig was written without locking in Start/Reload but
  read from the health-checker callback goroutine. All accesses now go
  through workersMu (read or write as appropriate).

P0 #3 — Reload kills health checker permanently
  Reload's zero-forward branch called m.Stop() which tore down the
  health checker, watchdog, and event bus. After that, EnableForward
  silently registered callbacks against dead components. Now the branch
  stops only the running workers; the supervisory infrastructure stays
  alive across config changes.

P0 #4 — rest.Config write-write race
  executePortForward was mutating .Dial on the cached *rest.Config
  shared by all forwards in the same kube context. Cloning the config
  with rest.CopyConfig before mutation isolates per-forward dialers.

P0 #5 — ForwardWorker.Stop() double-close panic
  close(w.stopChan) is now wrapped in sync.Once, so concurrent Stop
  calls (Manager.Stop racing stopWorkerInternal) are safe.

New tests in internal/forward/concurrency_test.go exercise each fix
under -race: 16 concurrent worker Stops, repeated sequential Stops,
empty-Reload preserves infra pointers, and concurrent currentConfig
read/write.
This commit is contained in:
2026-05-06 10:45:10 +01:00
parent 614b6e6396
commit 7a33e01863
4 changed files with 229 additions and 19 deletions
+5 -1
View File
@@ -39,6 +39,7 @@ type ForwardWorker struct {
lastPod string
forward config.Forward
forwardCancelMu sync.Mutex
stopOnce sync.Once // Guards close(stopChan) against concurrent Stop() calls
verbose bool
}
@@ -97,9 +98,12 @@ func (w *ForwardWorker) Start() {
}
// Stop gracefully stops the port-forward worker.
// Safe to call concurrently and multiple times — stopChan is closed exactly once.
func (w *ForwardWorker) Stop() {
w.cancel()
close(w.stopChan)
w.stopOnce.Do(func() {
close(w.stopChan)
})
// Wait for worker to finish with timeout to prevent blocking forever
select {