From e09590a75c33afdba0d1439f911c972fddbc34e7 Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Wed, 14 Jun 2017 19:45:08 +0200 Subject: [PATCH] Fix stream framer race condition causing FC issues Fixes #672. --- stream_framer.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/stream_framer.go b/stream_framer.go index 2f41b538..20f82e3e 100644 --- a/stream_framer.go +++ b/stream_framer.go @@ -112,7 +112,8 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res [] maxLen := maxBytes - currentLen - frameHeaderBytes var sendWindowSize protocol.ByteCount - if s.lenOfDataForWriting() != 0 { + lenStreamData := s.lenOfDataForWriting() + if lenStreamData != 0 { sendWindowSize, _ = f.flowControlManager.SendWindowSize(s.streamID) maxLen = utils.MinByteCount(maxLen, sendWindowSize) } @@ -121,7 +122,12 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res [] return true, nil } - data := s.getDataForWriting(maxLen) + var data []byte + if lenStreamData != 0 { + // Only getDataForWriting() if we didn't have data earlier, so that we + // don't send without FC approval (if a Write() raced). + data = s.getDataForWriting(maxLen) + } // This is unlikely, but check it nonetheless, the scheduler might have jumped in. Seems to happen in ~20% of cases in the tests. shouldSendFin := s.shouldSendFin()