protect against concurrent use of Stream.Write (#3381)

This commit is contained in:
Marten Seemann 2022-04-25 11:58:24 +01:00 committed by GitHub
parent ec118e440c
commit 8bcb6337d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,6 +50,7 @@ type sendStream struct {
nextFrame *wire.StreamFrame nextFrame *wire.StreamFrame
writeChan chan struct{} writeChan chan struct{}
writeOnce chan struct{}
deadline time.Time deadline time.Time
flowController flowcontrol.StreamFlowController flowController flowcontrol.StreamFlowController
@ -73,6 +74,7 @@ func newSendStream(
sender: sender, sender: sender,
flowController: flowController, flowController: flowController,
writeChan: make(chan struct{}, 1), writeChan: make(chan struct{}, 1),
writeOnce: make(chan struct{}, 1), // cap: 1, to protect against concurrent use of Write
version: version, version: version,
} }
s.ctx, s.ctxCancel = context.WithCancel(context.Background()) s.ctx, s.ctxCancel = context.WithCancel(context.Background())
@ -84,6 +86,12 @@ func (s *sendStream) StreamID() protocol.StreamID {
} }
func (s *sendStream) Write(p []byte) (int, error) { func (s *sendStream) Write(p []byte) (int, error) {
// Concurrent use of Write is not permitted (and doesn't make any sense),
// but sometimes people do it anyway.
// Make sure that we only execute one call at any given time to avoid hard to debug failures.
s.writeOnce <- struct{}{}
defer func() { <-s.writeOnce }()
s.mutex.Lock() s.mutex.Lock()
defer s.mutex.Unlock() defer s.mutex.Unlock()