move the ApplicationErrorCdoe to the qerr package

This commit is contained in:
Marten Seemann 2021-04-25 18:28:25 +07:00
parent 592fb9cad9
commit f5238bf7b1
18 changed files with 44 additions and 33 deletions

View file

@ -14,9 +14,10 @@ import (
"strconv" "strconv"
"time" "time"
quic "github.com/lucas-clemente/quic-go" "github.com/lucas-clemente/quic-go"
"github.com/lucas-clemente/quic-go/http3" "github.com/lucas-clemente/quic-go/http3"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/internal/testdata" "github.com/lucas-clemente/quic-go/internal/testdata"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
@ -26,7 +27,7 @@ import (
type streamCancelError interface { type streamCancelError interface {
Canceled() bool Canceled() bool
ErrorCode() protocol.ApplicationErrorCode ErrorCode() qerr.ApplicationErrorCode
} }
var _ = Describe("HTTP tests", func() { var _ = Describe("HTTP tests", func() {

View file

@ -9,6 +9,7 @@ import (
"github.com/lucas-clemente/quic-go/internal/handshake" "github.com/lucas-clemente/quic-go/internal/handshake"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/logging" "github.com/lucas-clemente/quic-go/logging"
) )
@ -66,7 +67,7 @@ type TokenStore interface {
// An ErrorCode is an application-defined error code. // An ErrorCode is an application-defined error code.
// Valid values range between 0 and MAX_UINT62. // Valid values range between 0 and MAX_UINT62.
type ErrorCode = protocol.ApplicationErrorCode type ErrorCode = qerr.ApplicationErrorCode
// Err0RTTRejected is the returned from: // Err0RTTRejected is the returned from:
// * Open{Uni}Stream{Sync} // * Open{Uni}Stream{Sync}

View file

@ -11,7 +11,7 @@ import (
gomock "github.com/golang/mock/gomock" gomock "github.com/golang/mock/gomock"
quic "github.com/lucas-clemente/quic-go" quic "github.com/lucas-clemente/quic-go"
protocol "github.com/lucas-clemente/quic-go/internal/protocol" qerr "github.com/lucas-clemente/quic-go/internal/qerr"
) )
// MockEarlySession is a mock of EarlySession interface. // MockEarlySession is a mock of EarlySession interface.
@ -68,7 +68,7 @@ func (mr *MockEarlySessionMockRecorder) AcceptUniStream(arg0 interface{}) *gomoc
} }
// CloseWithError mocks base method. // CloseWithError mocks base method.
func (m *MockEarlySession) CloseWithError(arg0 protocol.ApplicationErrorCode, arg1 string) error { func (m *MockEarlySession) CloseWithError(arg0 qerr.ApplicationErrorCode, arg1 string) error {
m.ctrl.T.Helper() m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "CloseWithError", arg0, arg1) ret := m.ctrl.Call(m, "CloseWithError", arg0, arg1)
ret0, _ := ret[0].(error) ret0, _ := ret[0].(error)

View file

@ -11,6 +11,7 @@ import (
gomock "github.com/golang/mock/gomock" gomock "github.com/golang/mock/gomock"
protocol "github.com/lucas-clemente/quic-go/internal/protocol" protocol "github.com/lucas-clemente/quic-go/internal/protocol"
qerr "github.com/lucas-clemente/quic-go/internal/qerr"
) )
// MockStream is a mock of Stream interface. // MockStream is a mock of Stream interface.
@ -37,7 +38,7 @@ func (m *MockStream) EXPECT() *MockStreamMockRecorder {
} }
// CancelRead mocks base method. // CancelRead mocks base method.
func (m *MockStream) CancelRead(arg0 protocol.ApplicationErrorCode) { func (m *MockStream) CancelRead(arg0 qerr.ApplicationErrorCode) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
m.ctrl.Call(m, "CancelRead", arg0) m.ctrl.Call(m, "CancelRead", arg0)
} }
@ -49,7 +50,7 @@ func (mr *MockStreamMockRecorder) CancelRead(arg0 interface{}) *gomock.Call {
} }
// CancelWrite mocks base method. // CancelWrite mocks base method.
func (m *MockStream) CancelWrite(arg0 protocol.ApplicationErrorCode) { func (m *MockStream) CancelWrite(arg0 qerr.ApplicationErrorCode) {
m.ctrl.T.Helper() m.ctrl.T.Helper()
m.ctrl.Call(m, "CancelWrite", arg0) m.ctrl.Call(m, "CancelWrite", arg0)
} }

View file

@ -52,9 +52,6 @@ const MaxByteCount = ByteCount(1<<62 - 1)
// InvalidByteCount is an invalid byte count // InvalidByteCount is an invalid byte count
const InvalidByteCount ByteCount = -1 const InvalidByteCount ByteCount = -1
// An ApplicationErrorCode is an application-defined error code.
type ApplicationErrorCode uint64
// A StatelessResetToken is a stateless reset token. // A StatelessResetToken is a stateless reset token.
type StatelessResetToken [16]byte type StatelessResetToken [16]byte

View file

@ -46,9 +46,12 @@ func (e *TransportError) Error() string {
return str + ": " + msg return str + ": " + msg
} }
// An ApplicationErrorCode is an application-defined error code.
type ApplicationErrorCode uint64
type ApplicationError struct { type ApplicationError struct {
Remote bool Remote bool
ErrorCode uint64 ErrorCode ApplicationErrorCode
ErrorMessage string ErrorMessage string
} }

View file

@ -4,13 +4,14 @@ import (
"bytes" "bytes"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/quicvarint" "github.com/lucas-clemente/quic-go/quicvarint"
) )
// A ResetStreamFrame is a RESET_STREAM frame in QUIC // A ResetStreamFrame is a RESET_STREAM frame in QUIC
type ResetStreamFrame struct { type ResetStreamFrame struct {
StreamID protocol.StreamID StreamID protocol.StreamID
ErrorCode protocol.ApplicationErrorCode ErrorCode qerr.ApplicationErrorCode
FinalSize protocol.ByteCount FinalSize protocol.ByteCount
} }
@ -38,7 +39,7 @@ func parseResetStreamFrame(r *bytes.Reader, _ protocol.VersionNumber) (*ResetStr
return &ResetStreamFrame{ return &ResetStreamFrame{
StreamID: streamID, StreamID: streamID,
ErrorCode: protocol.ApplicationErrorCode(errorCode), ErrorCode: qerr.ApplicationErrorCode(errorCode),
FinalSize: byteOffset, FinalSize: byteOffset,
}, nil }, nil
} }

View file

@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/quicvarint" "github.com/lucas-clemente/quic-go/quicvarint"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
@ -22,7 +23,7 @@ var _ = Describe("RESET_STREAM frame", func() {
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(frame.StreamID).To(Equal(protocol.StreamID(0xdeadbeef))) Expect(frame.StreamID).To(Equal(protocol.StreamID(0xdeadbeef)))
Expect(frame.FinalSize).To(Equal(protocol.ByteCount(0x987654321))) Expect(frame.FinalSize).To(Equal(protocol.ByteCount(0x987654321)))
Expect(frame.ErrorCode).To(Equal(protocol.ApplicationErrorCode(0x1337))) Expect(frame.ErrorCode).To(Equal(qerr.ApplicationErrorCode(0x1337)))
}) })
It("errors on EOFs", func() { It("errors on EOFs", func() {

View file

@ -4,13 +4,14 @@ import (
"bytes" "bytes"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/quicvarint" "github.com/lucas-clemente/quic-go/quicvarint"
) )
// A StopSendingFrame is a STOP_SENDING frame // A StopSendingFrame is a STOP_SENDING frame
type StopSendingFrame struct { type StopSendingFrame struct {
StreamID protocol.StreamID StreamID protocol.StreamID
ErrorCode protocol.ApplicationErrorCode ErrorCode qerr.ApplicationErrorCode
} }
// parseStopSendingFrame parses a STOP_SENDING frame // parseStopSendingFrame parses a STOP_SENDING frame
@ -30,7 +31,7 @@ func parseStopSendingFrame(r *bytes.Reader, _ protocol.VersionNumber) (*StopSend
return &StopSendingFrame{ return &StopSendingFrame{
StreamID: protocol.StreamID(streamID), StreamID: protocol.StreamID(streamID),
ErrorCode: protocol.ApplicationErrorCode(errorCode), ErrorCode: qerr.ApplicationErrorCode(errorCode),
}, nil }, nil
} }

View file

@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/quicvarint" "github.com/lucas-clemente/quic-go/quicvarint"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
@ -20,7 +21,7 @@ var _ = Describe("STOP_SENDING frame", func() {
frame, err := parseStopSendingFrame(b, versionIETFFrames) frame, err := parseStopSendingFrame(b, versionIETFFrames)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(frame.StreamID).To(Equal(protocol.StreamID(0xdecafbad))) Expect(frame.StreamID).To(Equal(protocol.StreamID(0xdecafbad)))
Expect(frame.ErrorCode).To(Equal(protocol.ApplicationErrorCode(0x1337))) Expect(frame.ErrorCode).To(Equal(qerr.ApplicationErrorCode(0x1337)))
Expect(b.Len()).To(BeZero()) Expect(b.Len()).To(BeZero())
}) })

View file

@ -216,7 +216,7 @@ func (p *packetPacker) PackConnectionClose(e *qerr.TransportError) (*coalescedPa
// PackApplicationClose packs a packet that closes the connection with an application error. // PackApplicationClose packs a packet that closes the connection with an application error.
func (p *packetPacker) PackApplicationClose(e *qerr.ApplicationError) (*coalescedPacket, error) { func (p *packetPacker) PackApplicationClose(e *qerr.ApplicationError) (*coalescedPacket, error) {
return p.packConnectionClose(true, e.ErrorCode, 0, e.ErrorMessage) return p.packConnectionClose(true, uint64(e.ErrorCode), 0, e.ErrorMessage)
} }
func (p *packetPacker) packConnectionClose( func (p *packetPacker) packConnectionClose(

View file

@ -119,7 +119,7 @@ var _ = Describe("Types", func() {
Expect(transportError(qerr.ConnectionIDLimitError).String()).To(Equal("connection_id_limit_error")) Expect(transportError(qerr.ConnectionIDLimitError).String()).To(Equal("connection_id_limit_error"))
Expect(transportError(qerr.ProtocolViolation).String()).To(Equal("protocol_violation")) Expect(transportError(qerr.ProtocolViolation).String()).To(Equal("protocol_violation"))
Expect(transportError(qerr.InvalidToken).String()).To(Equal("invalid_token")) Expect(transportError(qerr.InvalidToken).String()).To(Equal("invalid_token"))
Expect(transportError(qerr.ApplicationError).String()).To(Equal("application_error")) Expect(transportError(qerr.ApplicationErrorErrorCode).String()).To(Equal("application_error"))
Expect(transportError(qerr.CryptoBufferExceeded).String()).To(Equal("crypto_buffer_exceeded")) Expect(transportError(qerr.CryptoBufferExceeded).String()).To(Equal("crypto_buffer_exceeded"))
Expect(transportError(qerr.NoViablePathError).String()).To(Equal("no_viable_path")) Expect(transportError(qerr.NoViablePathError).String()).To(Equal("no_viable_path"))
Expect(transportError(1337).String()).To(BeEmpty()) Expect(transportError(1337).String()).To(BeEmpty())

View file

@ -8,6 +8,7 @@ import (
"github.com/lucas-clemente/quic-go/internal/flowcontrol" "github.com/lucas-clemente/quic-go/internal/flowcontrol"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/internal/utils" "github.com/lucas-clemente/quic-go/internal/utils"
"github.com/lucas-clemente/quic-go/internal/wire" "github.com/lucas-clemente/quic-go/internal/wire"
) )
@ -196,7 +197,7 @@ func (s *receiveStream) dequeueNextFrame() {
s.readPosInFrame = 0 s.readPosInFrame = 0
} }
func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) { func (s *receiveStream) CancelRead(errorCode qerr.ApplicationErrorCode) {
s.mutex.Lock() s.mutex.Lock()
completed := s.cancelReadImpl(errorCode) completed := s.cancelReadImpl(errorCode)
s.mutex.Unlock() s.mutex.Unlock()
@ -207,7 +208,7 @@ func (s *receiveStream) CancelRead(errorCode protocol.ApplicationErrorCode) {
} }
} }
func (s *receiveStream) cancelReadImpl(errorCode protocol.ApplicationErrorCode) bool /* completed */ { func (s *receiveStream) cancelReadImpl(errorCode qerr.ApplicationErrorCode) bool /* completed */ {
if s.finRead || s.canceledRead || s.resetRemotely { if s.finRead || s.canceledRead || s.resetRemotely {
return false return false
} }

View file

@ -9,6 +9,7 @@ import (
"github.com/golang/mock/gomock" "github.com/golang/mock/gomock"
"github.com/lucas-clemente/quic-go/internal/mocks" "github.com/lucas-clemente/quic-go/internal/mocks"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/internal/wire" "github.com/lucas-clemente/quic-go/internal/wire"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
@ -574,7 +575,7 @@ var _ = Describe("Receive Stream", func() {
Expect(err).To(MatchError("stream 1337 was reset with error code 1234")) Expect(err).To(MatchError("stream 1337 was reset with error code 1234"))
Expect(err).To(BeAssignableToTypeOf(streamCanceledError{})) Expect(err).To(BeAssignableToTypeOf(streamCanceledError{}))
Expect(err.(streamCanceledError).Canceled()).To(BeTrue()) Expect(err.(streamCanceledError).Canceled()).To(BeTrue())
Expect(err.(streamCanceledError).ErrorCode()).To(Equal(protocol.ApplicationErrorCode(1234))) Expect(err.(streamCanceledError).ErrorCode()).To(Equal(qerr.ApplicationErrorCode(1234)))
close(done) close(done)
}() }()
Consistently(done).ShouldNot(BeClosed()) Consistently(done).ShouldNot(BeClosed())
@ -598,7 +599,7 @@ var _ = Describe("Receive Stream", func() {
Expect(err).To(MatchError("stream 1337 was reset with error code 1234")) Expect(err).To(MatchError("stream 1337 was reset with error code 1234"))
Expect(err).To(BeAssignableToTypeOf(streamCanceledError{})) Expect(err).To(BeAssignableToTypeOf(streamCanceledError{}))
Expect(err.(streamCanceledError).Canceled()).To(BeTrue()) Expect(err.(streamCanceledError).Canceled()).To(BeTrue())
Expect(err.(streamCanceledError).ErrorCode()).To(Equal(protocol.ApplicationErrorCode(1234))) Expect(err.(streamCanceledError).ErrorCode()).To(Equal(qerr.ApplicationErrorCode(1234)))
}) })
It("errors when receiving a RESET_STREAM with an inconsistent offset", func() { It("errors when receiving a RESET_STREAM with an inconsistent offset", func() {

View file

@ -7,9 +7,9 @@ import (
"time" "time"
"github.com/lucas-clemente/quic-go/internal/ackhandler" "github.com/lucas-clemente/quic-go/internal/ackhandler"
"github.com/lucas-clemente/quic-go/internal/flowcontrol" "github.com/lucas-clemente/quic-go/internal/flowcontrol"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/internal/utils" "github.com/lucas-clemente/quic-go/internal/utils"
"github.com/lucas-clemente/quic-go/internal/wire" "github.com/lucas-clemente/quic-go/internal/wire"
) )
@ -407,12 +407,12 @@ func (s *sendStream) Close() error {
return nil return nil
} }
func (s *sendStream) CancelWrite(errorCode protocol.ApplicationErrorCode) { func (s *sendStream) CancelWrite(errorCode qerr.ApplicationErrorCode) {
s.cancelWriteImpl(errorCode, fmt.Errorf("Write on stream %d canceled with error code %d", s.streamID, errorCode)) s.cancelWriteImpl(errorCode, fmt.Errorf("Write on stream %d canceled with error code %d", s.streamID, errorCode))
} }
// must be called after locking the mutex // must be called after locking the mutex
func (s *sendStream) cancelWriteImpl(errorCode protocol.ApplicationErrorCode, writeErr error) { func (s *sendStream) cancelWriteImpl(errorCode qerr.ApplicationErrorCode, writeErr error) {
s.mutex.Lock() s.mutex.Lock()
if s.canceledWrite { if s.canceledWrite {
s.mutex.Unlock() s.mutex.Unlock()

View file

@ -12,6 +12,7 @@ import (
"github.com/lucas-clemente/quic-go/internal/ackhandler" "github.com/lucas-clemente/quic-go/internal/ackhandler"
"github.com/lucas-clemente/quic-go/internal/mocks" "github.com/lucas-clemente/quic-go/internal/mocks"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/internal/wire" "github.com/lucas-clemente/quic-go/internal/wire"
. "github.com/onsi/ginkgo" . "github.com/onsi/ginkgo"
@ -865,7 +866,7 @@ var _ = Describe("Send Stream", func() {
Expect(err).To(MatchError("stream 1337 was reset with error code 123")) Expect(err).To(MatchError("stream 1337 was reset with error code 123"))
Expect(err).To(BeAssignableToTypeOf(streamCanceledError{})) Expect(err).To(BeAssignableToTypeOf(streamCanceledError{}))
Expect(err.(streamCanceledError).Canceled()).To(BeTrue()) Expect(err.(streamCanceledError).Canceled()).To(BeTrue())
Expect(err.(streamCanceledError).ErrorCode()).To(Equal(protocol.ApplicationErrorCode(123))) Expect(err.(streamCanceledError).ErrorCode()).To(Equal(qerr.ApplicationErrorCode(123)))
close(done) close(done)
}() }()
waitForWrite() waitForWrite()
@ -887,7 +888,7 @@ var _ = Describe("Send Stream", func() {
Expect(err).To(MatchError("stream 1337 was reset with error code 123")) Expect(err).To(MatchError("stream 1337 was reset with error code 123"))
Expect(err).To(BeAssignableToTypeOf(streamCanceledError{})) Expect(err).To(BeAssignableToTypeOf(streamCanceledError{}))
Expect(err.(streamCanceledError).Canceled()).To(BeTrue()) Expect(err.(streamCanceledError).Canceled()).To(BeTrue())
Expect(err.(streamCanceledError).ErrorCode()).To(Equal(protocol.ApplicationErrorCode(123))) Expect(err.(streamCanceledError).ErrorCode()).To(Equal(qerr.ApplicationErrorCode(123)))
}) })
}) })
}) })

View file

@ -1284,7 +1284,7 @@ func (s *session) handleConnectionCloseFrame(frame *wire.ConnectionCloseFrame) {
if frame.IsApplicationError { if frame.IsApplicationError {
s.closeRemote(&qerr.ApplicationError{ s.closeRemote(&qerr.ApplicationError{
Remote: true, Remote: true,
ErrorCode: frame.ErrorCode, ErrorCode: qerr.ApplicationErrorCode(frame.ErrorCode),
ErrorMessage: frame.ReasonPhrase, ErrorMessage: frame.ReasonPhrase,
}) })
return return
@ -1477,7 +1477,7 @@ func (s *session) shutdown() {
func (s *session) CloseWithError(code ErrorCode, desc string) error { func (s *session) CloseWithError(code ErrorCode, desc string) error {
s.closeLocal(&qerr.ApplicationError{ s.closeLocal(&qerr.ApplicationError{
ErrorCode: uint64(code), ErrorCode: code,
ErrorMessage: desc, ErrorMessage: desc,
}) })
<-s.ctx.Done() <-s.ctx.Done()

View file

@ -9,6 +9,7 @@ import (
"github.com/lucas-clemente/quic-go/internal/ackhandler" "github.com/lucas-clemente/quic-go/internal/ackhandler"
"github.com/lucas-clemente/quic-go/internal/flowcontrol" "github.com/lucas-clemente/quic-go/internal/flowcontrol"
"github.com/lucas-clemente/quic-go/internal/protocol" "github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/lucas-clemente/quic-go/internal/qerr"
"github.com/lucas-clemente/quic-go/internal/wire" "github.com/lucas-clemente/quic-go/internal/wire"
) )
@ -88,11 +89,11 @@ var _ Stream = &stream{}
type streamCanceledError struct { type streamCanceledError struct {
error error
errorCode protocol.ApplicationErrorCode errorCode qerr.ApplicationErrorCode
} }
func (streamCanceledError) Canceled() bool { return true } func (streamCanceledError) Canceled() bool { return true }
func (e streamCanceledError) ErrorCode() protocol.ApplicationErrorCode { return e.errorCode } func (e streamCanceledError) ErrorCode() qerr.ApplicationErrorCode { return e.errorCode }
var _ StreamError = &streamCanceledError{} var _ StreamError = &streamCanceledError{}