mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
327 lines
8.4 KiB
Go
327 lines
8.4 KiB
Go
package quic
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/refraction-networking/uquic/internal/flowcontrol"
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
"github.com/refraction-networking/uquic/internal/qerr"
|
|
"github.com/refraction-networking/uquic/internal/utils"
|
|
"github.com/refraction-networking/uquic/internal/wire"
|
|
)
|
|
|
|
type receiveStreamI interface {
|
|
ReceiveStream
|
|
|
|
handleStreamFrame(*wire.StreamFrame) error
|
|
handleResetStreamFrame(*wire.ResetStreamFrame) error
|
|
closeForShutdown(error)
|
|
getWindowUpdate() protocol.ByteCount
|
|
}
|
|
|
|
type receiveStream struct {
|
|
mutex sync.Mutex
|
|
|
|
streamID protocol.StreamID
|
|
|
|
sender streamSender
|
|
|
|
frameQueue *frameSorter
|
|
finalOffset protocol.ByteCount
|
|
|
|
currentFrame []byte
|
|
currentFrameDone func()
|
|
readPosInFrame int
|
|
currentFrameIsLast bool // is the currentFrame the last frame on this stream
|
|
|
|
finRead bool // set once we read a frame with a Fin
|
|
closeForShutdownErr error
|
|
cancelReadErr error
|
|
resetRemotelyErr *StreamError
|
|
|
|
readChan chan struct{}
|
|
readOnce chan struct{} // cap: 1, to protect against concurrent use of Read
|
|
deadline time.Time
|
|
|
|
flowController flowcontrol.StreamFlowController
|
|
}
|
|
|
|
var (
|
|
_ ReceiveStream = &receiveStream{}
|
|
_ receiveStreamI = &receiveStream{}
|
|
)
|
|
|
|
func newReceiveStream(
|
|
streamID protocol.StreamID,
|
|
sender streamSender,
|
|
flowController flowcontrol.StreamFlowController,
|
|
) *receiveStream {
|
|
return &receiveStream{
|
|
streamID: streamID,
|
|
sender: sender,
|
|
flowController: flowController,
|
|
frameQueue: newFrameSorter(),
|
|
readChan: make(chan struct{}, 1),
|
|
readOnce: make(chan struct{}, 1),
|
|
finalOffset: protocol.MaxByteCount,
|
|
}
|
|
}
|
|
|
|
func (s *receiveStream) StreamID() protocol.StreamID {
|
|
return s.streamID
|
|
}
|
|
|
|
// Read implements io.Reader. It is not thread safe!
|
|
func (s *receiveStream) Read(p []byte) (int, error) {
|
|
// Concurrent use of Read 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.readOnce <- struct{}{}
|
|
defer func() { <-s.readOnce }()
|
|
|
|
s.mutex.Lock()
|
|
completed, n, err := s.readImpl(p)
|
|
s.mutex.Unlock()
|
|
|
|
if completed {
|
|
s.sender.onStreamCompleted(s.streamID)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
func (s *receiveStream) readImpl(p []byte) (bool /*stream completed */, int, error) {
|
|
if s.finRead {
|
|
return false, 0, io.EOF
|
|
}
|
|
if s.cancelReadErr != nil {
|
|
return false, 0, s.cancelReadErr
|
|
}
|
|
if s.resetRemotelyErr != nil {
|
|
return false, 0, s.resetRemotelyErr
|
|
}
|
|
if s.closeForShutdownErr != nil {
|
|
return false, 0, s.closeForShutdownErr
|
|
}
|
|
|
|
var bytesRead int
|
|
var deadlineTimer *utils.Timer
|
|
for bytesRead < len(p) {
|
|
if s.currentFrame == nil || s.readPosInFrame >= len(s.currentFrame) {
|
|
s.dequeueNextFrame()
|
|
}
|
|
if s.currentFrame == nil && bytesRead > 0 {
|
|
return false, bytesRead, s.closeForShutdownErr
|
|
}
|
|
|
|
for {
|
|
// Stop waiting on errors
|
|
if s.closeForShutdownErr != nil {
|
|
return false, bytesRead, s.closeForShutdownErr
|
|
}
|
|
if s.cancelReadErr != nil {
|
|
return false, bytesRead, s.cancelReadErr
|
|
}
|
|
if s.resetRemotelyErr != nil {
|
|
return false, bytesRead, s.resetRemotelyErr
|
|
}
|
|
|
|
deadline := s.deadline
|
|
if !deadline.IsZero() {
|
|
if !time.Now().Before(deadline) {
|
|
return false, bytesRead, errDeadline
|
|
}
|
|
if deadlineTimer == nil {
|
|
deadlineTimer = utils.NewTimer()
|
|
defer deadlineTimer.Stop()
|
|
}
|
|
deadlineTimer.Reset(deadline)
|
|
}
|
|
|
|
if s.currentFrame != nil || s.currentFrameIsLast {
|
|
break
|
|
}
|
|
|
|
s.mutex.Unlock()
|
|
if deadline.IsZero() {
|
|
<-s.readChan
|
|
} else {
|
|
select {
|
|
case <-s.readChan:
|
|
case <-deadlineTimer.Chan():
|
|
deadlineTimer.SetRead()
|
|
}
|
|
}
|
|
s.mutex.Lock()
|
|
if s.currentFrame == nil {
|
|
s.dequeueNextFrame()
|
|
}
|
|
}
|
|
|
|
if bytesRead > len(p) {
|
|
return false, bytesRead, fmt.Errorf("BUG: bytesRead (%d) > len(p) (%d) in stream.Read", bytesRead, len(p))
|
|
}
|
|
if s.readPosInFrame > len(s.currentFrame) {
|
|
return false, bytesRead, fmt.Errorf("BUG: readPosInFrame (%d) > frame.DataLen (%d) in stream.Read", s.readPosInFrame, len(s.currentFrame))
|
|
}
|
|
|
|
m := copy(p[bytesRead:], s.currentFrame[s.readPosInFrame:])
|
|
s.readPosInFrame += m
|
|
bytesRead += m
|
|
|
|
// when a RESET_STREAM was received, the flow controller was already
|
|
// informed about the final byteOffset for this stream
|
|
if s.resetRemotelyErr == nil {
|
|
s.flowController.AddBytesRead(protocol.ByteCount(m))
|
|
}
|
|
|
|
if s.readPosInFrame >= len(s.currentFrame) && s.currentFrameIsLast {
|
|
s.finRead = true
|
|
s.currentFrame = nil
|
|
if s.currentFrameDone != nil {
|
|
s.currentFrameDone()
|
|
}
|
|
return true, bytesRead, io.EOF
|
|
}
|
|
}
|
|
return false, bytesRead, nil
|
|
}
|
|
|
|
func (s *receiveStream) dequeueNextFrame() {
|
|
var offset protocol.ByteCount
|
|
// We're done with the last frame. Release the buffer.
|
|
if s.currentFrameDone != nil {
|
|
s.currentFrameDone()
|
|
}
|
|
offset, s.currentFrame, s.currentFrameDone = s.frameQueue.Pop()
|
|
s.currentFrameIsLast = offset+protocol.ByteCount(len(s.currentFrame)) >= s.finalOffset
|
|
s.readPosInFrame = 0
|
|
}
|
|
|
|
func (s *receiveStream) CancelRead(errorCode StreamErrorCode) {
|
|
s.mutex.Lock()
|
|
completed := s.cancelReadImpl(errorCode)
|
|
s.mutex.Unlock()
|
|
|
|
if completed {
|
|
s.flowController.Abandon()
|
|
s.sender.onStreamCompleted(s.streamID)
|
|
}
|
|
}
|
|
|
|
func (s *receiveStream) cancelReadImpl(errorCode qerr.StreamErrorCode) bool /* completed */ {
|
|
if s.finRead || s.cancelReadErr != nil || s.resetRemotelyErr != nil {
|
|
return false
|
|
}
|
|
s.cancelReadErr = &StreamError{StreamID: s.streamID, ErrorCode: errorCode, Remote: false}
|
|
s.signalRead()
|
|
s.sender.queueControlFrame(&wire.StopSendingFrame{
|
|
StreamID: s.streamID,
|
|
ErrorCode: errorCode,
|
|
})
|
|
// We're done with this stream if the final offset was already received.
|
|
return s.finalOffset != protocol.MaxByteCount
|
|
}
|
|
|
|
func (s *receiveStream) handleStreamFrame(frame *wire.StreamFrame) error {
|
|
s.mutex.Lock()
|
|
completed, err := s.handleStreamFrameImpl(frame)
|
|
s.mutex.Unlock()
|
|
|
|
if completed {
|
|
s.flowController.Abandon()
|
|
s.sender.onStreamCompleted(s.streamID)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s *receiveStream) handleStreamFrameImpl(frame *wire.StreamFrame) (bool /* completed */, error) {
|
|
maxOffset := frame.Offset + frame.DataLen()
|
|
if err := s.flowController.UpdateHighestReceived(maxOffset, frame.Fin); err != nil {
|
|
return false, err
|
|
}
|
|
var newlyRcvdFinalOffset bool
|
|
if frame.Fin {
|
|
newlyRcvdFinalOffset = s.finalOffset == protocol.MaxByteCount
|
|
s.finalOffset = maxOffset
|
|
}
|
|
if s.cancelReadErr != nil {
|
|
return newlyRcvdFinalOffset, nil
|
|
}
|
|
if err := s.frameQueue.Push(frame.Data, frame.Offset, frame.PutBack); err != nil {
|
|
return false, err
|
|
}
|
|
s.signalRead()
|
|
return false, nil
|
|
}
|
|
|
|
func (s *receiveStream) handleResetStreamFrame(frame *wire.ResetStreamFrame) error {
|
|
s.mutex.Lock()
|
|
completed, err := s.handleResetStreamFrameImpl(frame)
|
|
s.mutex.Unlock()
|
|
|
|
if completed {
|
|
s.flowController.Abandon()
|
|
s.sender.onStreamCompleted(s.streamID)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s *receiveStream) handleResetStreamFrameImpl(frame *wire.ResetStreamFrame) (bool /*completed */, error) {
|
|
if s.closeForShutdownErr != nil {
|
|
return false, nil
|
|
}
|
|
if err := s.flowController.UpdateHighestReceived(frame.FinalSize, true); err != nil {
|
|
return false, err
|
|
}
|
|
newlyRcvdFinalOffset := s.finalOffset == protocol.MaxByteCount
|
|
s.finalOffset = frame.FinalSize
|
|
|
|
// ignore duplicate RESET_STREAM frames for this stream (after checking their final offset)
|
|
if s.resetRemotelyErr != nil {
|
|
return false, nil
|
|
}
|
|
s.resetRemotelyErr = &StreamError{
|
|
StreamID: s.streamID,
|
|
ErrorCode: frame.ErrorCode,
|
|
Remote: true,
|
|
}
|
|
s.signalRead()
|
|
return newlyRcvdFinalOffset, nil
|
|
}
|
|
|
|
func (s *receiveStream) CloseRemote(offset protocol.ByteCount) {
|
|
s.handleStreamFrame(&wire.StreamFrame{Fin: true, Offset: offset})
|
|
}
|
|
|
|
func (s *receiveStream) SetReadDeadline(t time.Time) error {
|
|
s.mutex.Lock()
|
|
s.deadline = t
|
|
s.mutex.Unlock()
|
|
s.signalRead()
|
|
return nil
|
|
}
|
|
|
|
// CloseForShutdown closes a stream abruptly.
|
|
// It makes Read unblock (and return the error) immediately.
|
|
// The peer will NOT be informed about this: the stream is closed without sending a FIN or RESET.
|
|
func (s *receiveStream) closeForShutdown(err error) {
|
|
s.mutex.Lock()
|
|
s.closeForShutdownErr = err
|
|
s.mutex.Unlock()
|
|
s.signalRead()
|
|
}
|
|
|
|
func (s *receiveStream) getWindowUpdate() protocol.ByteCount {
|
|
return s.flowController.GetWindowUpdate()
|
|
}
|
|
|
|
// signalRead performs a non-blocking send on the readChan
|
|
func (s *receiveStream) signalRead() {
|
|
select {
|
|
case s.readChan <- struct{}{}:
|
|
default:
|
|
}
|
|
}
|