2018-11-20 17:51:25 -05:00
|
|
|
package quic
|
|
|
|
|
|
|
|
import (
|
2019-01-14 14:52:10 -05:00
|
|
|
"errors"
|
2018-11-20 17:51:25 -05:00
|
|
|
"fmt"
|
2019-01-14 14:52:10 -05:00
|
|
|
"net"
|
2018-11-20 17:51:25 -05:00
|
|
|
|
2019-01-17 09:33:18 -05:00
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/flowcontrol"
|
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/handshake"
|
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/wire"
|
2018-11-20 17:51:25 -05:00
|
|
|
)
|
|
|
|
|
2019-01-14 14:52:10 -05:00
|
|
|
type streamOpenErr struct{ error }
|
|
|
|
|
|
|
|
var _ net.Error = &streamOpenErr{}
|
|
|
|
|
|
|
|
func (e streamOpenErr) Temporary() bool { return e.error == errTooManyOpenStreams }
|
|
|
|
func (streamOpenErr) Timeout() bool { return false }
|
|
|
|
|
|
|
|
// errTooManyOpenStreams is used internally by the outgoing streams maps.
|
|
|
|
var errTooManyOpenStreams = errors.New("too many open streams")
|
|
|
|
|
2018-11-20 17:51:25 -05:00
|
|
|
type streamsMap struct {
|
|
|
|
perspective protocol.Perspective
|
|
|
|
|
|
|
|
sender streamSender
|
|
|
|
newFlowController func(protocol.StreamID) flowcontrol.StreamFlowController
|
|
|
|
|
|
|
|
outgoingBidiStreams *outgoingBidiStreamsMap
|
|
|
|
outgoingUniStreams *outgoingUniStreamsMap
|
|
|
|
incomingBidiStreams *incomingBidiStreamsMap
|
|
|
|
incomingUniStreams *incomingUniStreamsMap
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ streamManager = &streamsMap{}
|
|
|
|
|
|
|
|
func newStreamsMap(
|
|
|
|
sender streamSender,
|
|
|
|
newFlowController func(protocol.StreamID) flowcontrol.StreamFlowController,
|
2018-11-23 11:04:53 -05:00
|
|
|
maxIncomingStreams uint64,
|
|
|
|
maxIncomingUniStreams uint64,
|
2018-11-20 17:51:25 -05:00
|
|
|
perspective protocol.Perspective,
|
|
|
|
version protocol.VersionNumber,
|
|
|
|
) streamManager {
|
|
|
|
m := &streamsMap{
|
|
|
|
perspective: perspective,
|
|
|
|
newFlowController: newFlowController,
|
|
|
|
sender: sender,
|
|
|
|
}
|
|
|
|
newBidiStream := func(id protocol.StreamID) streamI {
|
|
|
|
return newStream(id, m.sender, m.newFlowController(id), version)
|
|
|
|
}
|
|
|
|
newUniSendStream := func(id protocol.StreamID) sendStreamI {
|
|
|
|
return newSendStream(id, m.sender, m.newFlowController(id), version)
|
|
|
|
}
|
|
|
|
newUniReceiveStream := func(id protocol.StreamID) receiveStreamI {
|
|
|
|
return newReceiveStream(id, m.sender, m.newFlowController(id), version)
|
|
|
|
}
|
|
|
|
m.outgoingBidiStreams = newOutgoingBidiStreamsMap(
|
2018-11-23 11:04:53 -05:00
|
|
|
protocol.FirstStream(protocol.StreamTypeBidi, perspective),
|
2018-11-20 17:51:25 -05:00
|
|
|
newBidiStream,
|
|
|
|
sender.queueControlFrame,
|
|
|
|
)
|
|
|
|
m.incomingBidiStreams = newIncomingBidiStreamsMap(
|
2018-11-23 11:04:53 -05:00
|
|
|
protocol.FirstStream(protocol.StreamTypeBidi, perspective.Opposite()),
|
|
|
|
protocol.MaxStreamID(protocol.StreamTypeBidi, maxIncomingStreams, perspective.Opposite()),
|
2018-11-20 17:51:25 -05:00
|
|
|
maxIncomingStreams,
|
|
|
|
sender.queueControlFrame,
|
|
|
|
newBidiStream,
|
|
|
|
)
|
|
|
|
m.outgoingUniStreams = newOutgoingUniStreamsMap(
|
2018-11-23 11:04:53 -05:00
|
|
|
protocol.FirstStream(protocol.StreamTypeUni, perspective),
|
2018-11-20 17:51:25 -05:00
|
|
|
newUniSendStream,
|
|
|
|
sender.queueControlFrame,
|
|
|
|
)
|
|
|
|
m.incomingUniStreams = newIncomingUniStreamsMap(
|
2018-11-23 11:04:53 -05:00
|
|
|
protocol.FirstStream(protocol.StreamTypeUni, perspective.Opposite()),
|
|
|
|
protocol.MaxStreamID(protocol.StreamTypeUni, maxIncomingUniStreams, perspective.Opposite()),
|
2018-11-20 17:51:25 -05:00
|
|
|
maxIncomingUniStreams,
|
|
|
|
sender.queueControlFrame,
|
|
|
|
newUniReceiveStream,
|
|
|
|
)
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) OpenStream() (Stream, error) {
|
|
|
|
return m.outgoingBidiStreams.OpenStream()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) OpenStreamSync() (Stream, error) {
|
|
|
|
return m.outgoingBidiStreams.OpenStreamSync()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) OpenUniStream() (SendStream, error) {
|
|
|
|
return m.outgoingUniStreams.OpenStream()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) OpenUniStreamSync() (SendStream, error) {
|
|
|
|
return m.outgoingUniStreams.OpenStreamSync()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) AcceptStream() (Stream, error) {
|
|
|
|
return m.incomingBidiStreams.AcceptStream()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) AcceptUniStream() (ReceiveStream, error) {
|
|
|
|
return m.incomingUniStreams.AcceptStream()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) DeleteStream(id protocol.StreamID) error {
|
2018-11-23 11:04:53 -05:00
|
|
|
switch id.Type() {
|
|
|
|
case protocol.StreamTypeUni:
|
|
|
|
if id.InitiatedBy() == m.perspective {
|
|
|
|
return m.outgoingUniStreams.DeleteStream(id)
|
|
|
|
}
|
2018-11-20 17:51:25 -05:00
|
|
|
return m.incomingUniStreams.DeleteStream(id)
|
2018-11-23 11:04:53 -05:00
|
|
|
case protocol.StreamTypeBidi:
|
|
|
|
if id.InitiatedBy() == m.perspective {
|
|
|
|
return m.outgoingBidiStreams.DeleteStream(id)
|
|
|
|
}
|
|
|
|
return m.incomingBidiStreams.DeleteStream(id)
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
2018-11-23 11:04:53 -05:00
|
|
|
panic("")
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) GetOrOpenReceiveStream(id protocol.StreamID) (receiveStreamI, error) {
|
2018-11-23 11:04:53 -05:00
|
|
|
switch id.Type() {
|
|
|
|
case protocol.StreamTypeUni:
|
|
|
|
if id.InitiatedBy() == m.perspective {
|
|
|
|
// an outgoing unidirectional stream is a send stream, not a receive stream
|
|
|
|
return nil, fmt.Errorf("peer attempted to open receive stream %d", id)
|
|
|
|
}
|
2018-11-20 17:51:25 -05:00
|
|
|
return m.incomingUniStreams.GetOrOpenStream(id)
|
2018-11-23 11:04:53 -05:00
|
|
|
case protocol.StreamTypeBidi:
|
|
|
|
if id.InitiatedBy() == m.perspective {
|
|
|
|
return m.outgoingBidiStreams.GetStream(id)
|
|
|
|
}
|
|
|
|
return m.incomingBidiStreams.GetOrOpenStream(id)
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
2018-11-23 11:04:53 -05:00
|
|
|
panic("")
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) GetOrOpenSendStream(id protocol.StreamID) (sendStreamI, error) {
|
2018-11-23 11:04:53 -05:00
|
|
|
switch id.Type() {
|
|
|
|
case protocol.StreamTypeUni:
|
|
|
|
if id.InitiatedBy() == m.perspective {
|
|
|
|
return m.outgoingUniStreams.GetStream(id)
|
|
|
|
}
|
2018-11-20 17:51:25 -05:00
|
|
|
// an incoming unidirectional stream is a receive stream, not a send stream
|
|
|
|
return nil, fmt.Errorf("peer attempted to open send stream %d", id)
|
2018-11-23 11:04:53 -05:00
|
|
|
case protocol.StreamTypeBidi:
|
|
|
|
if id.InitiatedBy() == m.perspective {
|
|
|
|
return m.outgoingBidiStreams.GetStream(id)
|
|
|
|
}
|
|
|
|
return m.incomingBidiStreams.GetOrOpenStream(id)
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
2018-11-23 11:04:53 -05:00
|
|
|
panic("")
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
|
|
|
|
2018-11-23 11:04:53 -05:00
|
|
|
func (m *streamsMap) HandleMaxStreamsFrame(f *wire.MaxStreamsFrame) error {
|
|
|
|
id := protocol.MaxStreamID(f.Type, f.MaxStreams, m.perspective)
|
|
|
|
switch id.Type() {
|
|
|
|
case protocol.StreamTypeUni:
|
2018-11-20 17:51:25 -05:00
|
|
|
m.outgoingUniStreams.SetMaxStream(id)
|
2018-11-23 11:04:53 -05:00
|
|
|
case protocol.StreamTypeBidi:
|
|
|
|
fmt.Printf("")
|
|
|
|
m.outgoingBidiStreams.SetMaxStream(id)
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
2018-11-23 11:04:53 -05:00
|
|
|
return nil
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) UpdateLimits(p *handshake.TransportParameters) {
|
|
|
|
// Max{Uni,Bidi}StreamID returns the highest stream ID that the peer is allowed to open.
|
2018-11-23 11:04:53 -05:00
|
|
|
m.outgoingBidiStreams.SetMaxStream(protocol.MaxStreamID(protocol.StreamTypeBidi, p.MaxBidiStreams, m.perspective))
|
|
|
|
m.outgoingUniStreams.SetMaxStream(protocol.MaxStreamID(protocol.StreamTypeUni, p.MaxUniStreams, m.perspective))
|
2018-11-20 17:51:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *streamsMap) CloseWithError(err error) {
|
|
|
|
m.outgoingBidiStreams.CloseWithError(err)
|
|
|
|
m.outgoingUniStreams.CloseWithError(err)
|
|
|
|
m.incomingBidiStreams.CloseWithError(err)
|
|
|
|
m.incomingUniStreams.CloseWithError(err)
|
|
|
|
}
|