Skip to content

Commit

Permalink
io: fix PipeWriter.Close to wake up Writes
Browse files Browse the repository at this point in the history
Since commit cc62bed (CL 994043) the pipe deadlock when doing
Read+Close or Write+Close on same end was fixed, alas with test for
Read+Close case only.

Then commit 6d6f338 (CL 4252057) made a thinko: in the writer path
p.werr is checked for != nil and then err is set but there is no break
from waiting loop unlike break is there in similar condition for reader.
Together with having only Read+Close case tested that made it to leave
reintroduced Write+Close deadlock unnoticed.

Fix it.

Implicitly this also fixes net.Pipe to conform to semantic of net.Conn
interface where Close is documented to unblock any blocked Read or Write
operations.

No test added to net/ since net.Pipe tests are "Assuming that the
underlying io.Pipe implementation is solid and we're just testing the
net wrapping". The test added in this patch should be enough to cover
the breakage.

Fixes golang#18401
Updates golang#18170

Change-Id: I9e9460b3fd7d220bbe60b726accf86f352aed8d4
Reviewed-on: https://go-review.googlesource.com/34637
Run-TryBot: Russ Cox <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Russ Cox <[email protected]>
  • Loading branch information
navytux authored and rsc committed Dec 21, 2016
1 parent 0ef4815 commit d296c32
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/io/pipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ func (p *pipe) write(b []byte) (n int, err error) {
}
if p.werr != nil {
err = ErrClosedPipe
break
}
p.wwait.Wait()
}
Expand Down
12 changes: 12 additions & 0 deletions src/io/pipe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,18 @@ func TestPipeWriteClose(t *testing.T) {
}
}

// Test close on Write side during Write.
func TestPipeWriteClose2(t *testing.T) {
c := make(chan int, 1)
_, w := Pipe()
go delayClose(t, w, c, pipeTest{})
n, err := w.Write(make([]byte, 64))
<-c
if n != 0 || err != ErrClosedPipe {
t.Errorf("write to closed pipe: %v, %v want %v, %v", n, err, 0, ErrClosedPipe)
}
}

func TestWriteEmpty(t *testing.T) {
r, w := Pipe()
go func() {
Expand Down

0 comments on commit d296c32

Please sign in to comment.