mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
don't block sendQueue.Send() if the runloop already exited.
This can lead to a deadlock where session.shutdown() never exits because it is blocked on a Send() but the sendQueue has exited due to a write error.
This commit is contained in:
parent
84bf12bfda
commit
3c1e597858
2 changed files with 31 additions and 1 deletions
|
@ -18,7 +18,10 @@ func newSendQueue(conn connection) *sendQueue {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *sendQueue) Send(p *packetBuffer) {
|
func (h *sendQueue) Send(p *packetBuffer) {
|
||||||
h.queue <- p
|
select {
|
||||||
|
case h.queue <- p:
|
||||||
|
case <-h.runStopped:
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *sendQueue) Run() error {
|
func (h *sendQueue) Run() error {
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
package quic
|
package quic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
"github.com/golang/mock/gomock"
|
"github.com/golang/mock/gomock"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
@ -68,6 +70,31 @@ var _ = Describe("Send Queue", func() {
|
||||||
Eventually(done).Should(BeClosed())
|
Eventually(done).Should(BeClosed())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("does not block pending send after the queue has stopped running", func() {
|
||||||
|
done := make(chan struct{})
|
||||||
|
go func() {
|
||||||
|
defer GinkgoRecover()
|
||||||
|
q.Run()
|
||||||
|
close(done)
|
||||||
|
}()
|
||||||
|
|
||||||
|
// the run loop exits if there is a write error
|
||||||
|
testErr := errors.New("test error")
|
||||||
|
c.EXPECT().Write(gomock.Any()).Return(testErr)
|
||||||
|
q.Send(getPacket([]byte("foobar")))
|
||||||
|
Eventually(done).Should(BeClosed())
|
||||||
|
|
||||||
|
sent := make(chan struct{})
|
||||||
|
go func() {
|
||||||
|
defer GinkgoRecover()
|
||||||
|
q.Send(getPacket([]byte("raboof")))
|
||||||
|
q.Send(getPacket([]byte("quux")))
|
||||||
|
close(sent)
|
||||||
|
}()
|
||||||
|
|
||||||
|
Eventually(sent).Should(BeClosed())
|
||||||
|
})
|
||||||
|
|
||||||
It("blocks Close() until the packet has been sent out", func() {
|
It("blocks Close() until the packet has been sent out", func() {
|
||||||
written := make(chan []byte)
|
written := make(chan []byte)
|
||||||
c.EXPECT().Write(gomock.Any()).Do(func(p []byte) { written <- p })
|
c.EXPECT().Write(gomock.Any()).Do(func(p []byte) { written <- p })
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue