From eb7916eb5351d8fa6a18f597fb7c3a06add10762 Mon Sep 17 00:00:00 2001 From: Aaron Lehmann Date: Thu, 3 Dec 2015 16:04:58 -0800 Subject: [PATCH] Fix race in RunCommandWithOutputForDuration This function was starting a goroutine that modifies one of its return values. The intent is for the goroutine to only influence the return value when it's causing the function to return, but it's racy and can also modify the return value when the function is returning due to the timeout. Fix the goroutine to not modify return values directly. Also, give the channel a buffer so that the goroutine doesn't block forever after a timeout. Fixes #18305 Signed-off-by: Aaron Lehmann --- integration/utils.go | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/integration/utils.go b/integration/utils.go index 6fe1c0a..330a533 100644 --- a/integration/utils.go +++ b/integration/utils.go @@ -104,19 +104,25 @@ func RunCommandWithOutputForDuration(cmd *exec.Cmd, duration time.Duration) (out } cmd.Stderr = &outputBuffer - done := make(chan error) - // Start the command in the main thread.. err = cmd.Start() if err != nil { err = fmt.Errorf("Fail to start command %v : %v", cmd, err) } + type exitInfo struct { + exitErr error + exitCode int + } + + done := make(chan exitInfo, 1) + go func() { // And wait for it to exit in the goroutine :) - exitErr := cmd.Wait() - exitCode = ProcessExitCode(exitErr) - done <- exitErr + info := exitInfo{} + info.exitErr = cmd.Wait() + info.exitCode = ProcessExitCode(info.exitErr) + done <- info }() select { @@ -126,9 +132,9 @@ func RunCommandWithOutputForDuration(cmd *exec.Cmd, duration time.Duration) (out fmt.Printf("failed to kill (pid=%d): %v\n", cmd.Process.Pid, killErr) } timedOut = true - break - case err = <-done: - break + case info := <-done: + err = info.exitErr + exitCode = info.exitCode } output = outputBuffer.String() return