mirror of
https://github.com/soheilhy/cmux.git
synced 2024-11-10 03:31:52 +08:00
Closing the root listener closes child listeners
Partially reverts b90740dfa9b286c06f58fa798929e2d2cb1299e5; the same protection is now afforded by an RWMutex which protects the channels while they are being served on.
This commit is contained in:
parent
44b568c84b
commit
ff7a91405b
@ -4,6 +4,7 @@ import (
|
||||
"bytes"
|
||||
"io"
|
||||
"net"
|
||||
"sync"
|
||||
"testing"
|
||||
)
|
||||
|
||||
@ -17,8 +18,6 @@ func (c *mockConn) Read(b []byte) (n int, err error) {
|
||||
}
|
||||
|
||||
func BenchmarkCMuxConn(b *testing.B) {
|
||||
b.StopTimer()
|
||||
|
||||
benchHTTPPayload := make([]byte, 4096)
|
||||
copy(benchHTTPPayload, []byte("GET http://www.w3.org/ HTTP/1.1"))
|
||||
|
||||
@ -33,12 +32,14 @@ func BenchmarkCMuxConn(b *testing.B) {
|
||||
}
|
||||
}()
|
||||
|
||||
b.StartTimer()
|
||||
var mu sync.RWMutex
|
||||
|
||||
b.ResetTimer()
|
||||
|
||||
for i := 0; i < b.N; i++ {
|
||||
c := &mockConn{
|
||||
r: bytes.NewReader(benchHTTPPayload),
|
||||
}
|
||||
m.serve(c)
|
||||
m.serve(c, &mu)
|
||||
}
|
||||
}
|
||||
|
37
cmux.go
37
cmux.go
@ -5,6 +5,7 @@ import (
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"sync"
|
||||
)
|
||||
|
||||
// Matcher matches a connection based on its content.
|
||||
@ -81,16 +82,20 @@ func (m *cMux) Match(matchers ...Matcher) (l net.Listener) {
|
||||
ml := muxListener{
|
||||
Listener: m.root,
|
||||
connc: make(chan net.Conn, m.bufLen),
|
||||
donec: make(chan struct{}),
|
||||
}
|
||||
m.sls = append(m.sls, matchersListener{ss: matchers, l: ml})
|
||||
return ml
|
||||
}
|
||||
|
||||
func (m *cMux) Serve() error {
|
||||
var mu sync.RWMutex
|
||||
|
||||
defer func() {
|
||||
mu.Lock()
|
||||
defer mu.Unlock()
|
||||
|
||||
for _, sl := range m.sls {
|
||||
close(sl.l.donec)
|
||||
close(sl.l.connc)
|
||||
}
|
||||
}()
|
||||
|
||||
@ -103,35 +108,30 @@ func (m *cMux) Serve() error {
|
||||
continue
|
||||
}
|
||||
|
||||
go m.serve(c)
|
||||
go m.serve(c, &mu)
|
||||
}
|
||||
}
|
||||
|
||||
func (m *cMux) serve(c net.Conn) {
|
||||
func (m *cMux) serve(c net.Conn, mu *sync.RWMutex) {
|
||||
mu.RLock()
|
||||
defer mu.RUnlock()
|
||||
|
||||
muc := newMuxConn(c)
|
||||
matched := false
|
||||
for _, sl := range m.sls {
|
||||
for _, s := range sl.ss {
|
||||
matched = s(muc.sniffer())
|
||||
matched := s(muc.sniffer())
|
||||
muc.reset()
|
||||
if matched {
|
||||
select {
|
||||
// TODO(soheil): threre is a possiblity of having unclosed connection.
|
||||
case sl.l.connc <- muc:
|
||||
case <-sl.l.donec:
|
||||
c.Close()
|
||||
}
|
||||
sl.l.connc <- muc
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if !matched {
|
||||
c.Close()
|
||||
err := ErrNotMatched{c: c}
|
||||
if !m.handleErr(err) {
|
||||
m.root.Close()
|
||||
}
|
||||
c.Close()
|
||||
err := ErrNotMatched{c: c}
|
||||
if !m.handleErr(err) {
|
||||
m.root.Close()
|
||||
}
|
||||
}
|
||||
|
||||
@ -154,7 +154,6 @@ func (m *cMux) handleErr(err error) bool {
|
||||
type muxListener struct {
|
||||
net.Listener
|
||||
connc chan net.Conn
|
||||
donec chan struct{}
|
||||
}
|
||||
|
||||
func (l muxListener) Accept() (c net.Conn, err error) {
|
||||
|
16
cmux_test.go
16
cmux_test.go
@ -169,15 +169,13 @@ func TestErrorHandler(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
type closerConn struct {
|
||||
net.Conn
|
||||
}
|
||||
func TestClose(t *testing.T) {
|
||||
l, _ := testListener(t)
|
||||
|
||||
func (c closerConn) Close() error { return nil }
|
||||
muxl := New(l)
|
||||
anyl := muxl.Match(Any())
|
||||
|
||||
func TestClosed(t *testing.T) {
|
||||
mux := &cMux{}
|
||||
lis := mux.Match(Any()).(muxListener)
|
||||
close(lis.donec)
|
||||
mux.serve(closerConn{})
|
||||
l.Close()
|
||||
muxl.Serve()
|
||||
anyl.Accept()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user