update HTTP/3 errors

This commit is contained in:
Marten Seemann 2019-09-04 12:02:04 +07:00
parent d689f9a392
commit f9bbac8b04
5 changed files with 54 additions and 73 deletions

View file

@ -9,80 +9,65 @@ import (
type errorCode quic.ErrorCode type errorCode quic.ErrorCode
const ( const (
errorNoError errorCode = 0x0 errorNoError errorCode = 0x100
errorWrongSettingsDirection errorCode = 0x1 errorGeneralProtocolError errorCode = 0x101
errorPushRefused errorCode = 0x2 errorInternalError errorCode = 0x102
errorInternalError errorCode = 0x3 errorStreamCreationError errorCode = 0x103
errorPushAlreadyInCache errorCode = 0x4 errorClosedCriticalStream errorCode = 0x104
errorRequestCanceled errorCode = 0x5 errorUnexpectedFrame errorCode = 0x105
errorIncompleteRequest errorCode = 0x6 errorFrameError errorCode = 0x106
errorConnectError errorCode = 0x7 errorExcessiveLoad errorCode = 0x107
errorExcessiveLoad errorCode = 0x8 errorWrongStream errorCode = 0x108
errorVersionFallback errorCode = 0x9 errorIDError errorCode = 0x109
errorWrongStream errorCode = 0xa errorSettingsError errorCode = 0x10a
errorLimitExceeded errorCode = 0xb errorMissingSettings errorCode = 0x10b
errorDuplicatePush errorCode = 0xc errorRequestRejected errorCode = 0x10c
errorUnknownStreamType errorCode = 0xd errorRequestCanceled errorCode = 0x10d
errorWrongStreamCount errorCode = 0xe errorRequestIncomplete errorCode = 0x10e
errorClosedCriticalStream errorCode = 0xf errorEarlyResponse errorCode = 0x10f
errorWrongStreamDirection errorCode = 0x10 errorConnectError errorCode = 0x110
errorEarlyResponse errorCode = 0x11 errorVersionFallback errorCode = 0x111
errorMissingSettings errorCode = 0x12
errorUnexpectedFrame errorCode = 0x13
errorRequestRejected errorCode = 0x14
errorGeneralProtocolError errorCode = 0xff
) )
func (e errorCode) String() string { func (e errorCode) String() string {
switch e { switch e {
case errorNoError: case errorNoError:
return "HTTP_NO_ERROR" return "HTTP_NO_ERROR"
case errorWrongSettingsDirection:
return "HTTP_WRONG_SETTING_DIRECTION"
case errorPushRefused:
return "HTTP_PUSH_REFUSED"
case errorInternalError:
return "HTTP_INTERNAL_ERROR"
case errorPushAlreadyInCache:
return "HTTP_PUSH_ALREADY_IN_CACHE"
case errorRequestCanceled:
return "HTTP_REQUEST_CANCELLED"
case errorIncompleteRequest:
return "HTTP_INCOMPLETE_REQUEST"
case errorConnectError:
return "HTTP_CONNECT_ERROR"
case errorExcessiveLoad:
return "HTTP_EXCESSIVE_LOAD"
case errorVersionFallback:
return "HTTP_VERSION_FALLBACK"
case errorWrongStream:
return "HTTP_WRONG_STREAM"
case errorLimitExceeded:
return "HTTP_LIMIT_EXCEEDED"
case errorDuplicatePush:
return "HTTP_DUPLICATE_PUSH"
case errorUnknownStreamType:
return "HTTP_UNKNOWN_STREAM_TYPE"
case errorWrongStreamCount:
return "HTTP_WRONG_STREAM_COUNT"
case errorClosedCriticalStream:
return "HTTP_CLOSED_CRITICAL_STREAM"
case errorWrongStreamDirection:
return "HTTP_WRONG_STREAM_DIRECTION"
case errorEarlyResponse:
return "HTTP_EARLY_RESPONSE"
case errorMissingSettings:
return "HTTP_MISSING_SETTINGS"
case errorUnexpectedFrame:
return "HTTP_UNEXPECTED_FRAME"
case errorRequestRejected:
return "HTTP_REQUEST_REJECTED"
case errorGeneralProtocolError: case errorGeneralProtocolError:
return "HTTP_GENERAL_PROTOCOL_ERROR" return "HTTP_GENERAL_PROTOCOL_ERROR"
case errorInternalError:
return "HTTP_INTERNAL_ERROR"
case errorStreamCreationError:
return "HTTP_STREAM_CREATION_ERROR"
case errorClosedCriticalStream:
return "HTTP_CLOSED_CRITICAL_STREAM"
case errorUnexpectedFrame:
return "HTTP_UNEXPECTED_FRAME"
case errorFrameError:
return "HTTP_FRAME_ERROR"
case errorExcessiveLoad:
return "HTTP_EXCESSIVE_LOAD"
case errorWrongStream:
return "HTTP_WRONG_STREAM"
case errorIDError:
return "HTTP_ID_ERROR"
case errorSettingsError:
return "HTTP_SETTINGS_ERROR"
case errorMissingSettings:
return "HTTP_MISSING_SETTINGS"
case errorRequestRejected:
return "HTTP_REQUEST_REJECTED"
case errorRequestCanceled:
return "HTTP_REQUEST_CANCELLED"
case errorRequestIncomplete:
return "HTTP_INCOMPLETE_REQUEST"
case errorEarlyResponse:
return "HTTP_EARLY_RESPONSE"
case errorConnectError:
return "HTTP_CONNECT_ERROR"
case errorVersionFallback:
return "HTTP_VERSION_FALLBACK"
default: default:
if e >= 0x100 && e < 0x200 {
return fmt.Sprintf("HTTP_MALFORMED_FRAME: %#x", uint16(e-0x100))
}
return fmt.Sprintf("unknown error code: %#x", uint16(e)) return fmt.Sprintf("unknown error code: %#x", uint16(e))
} }
} }

View file

@ -33,10 +33,6 @@ var _ = Describe("error codes", func() {
} }
}) })
It("has a string represenation for frame parsing errors", func() {
Expect(errorCode(0x142).String()).To(Equal("HTTP_MALFORMED_FRAME: 0x42"))
})
It("has a string representation for unknown error codes", func() { It("has a string representation for unknown error codes", func() {
Expect(errorCode(0x1337).String()).To(Equal("unknown error code: 0x1337")) Expect(errorCode(0x1337).String()).To(Equal("unknown error code: 0x1337"))
}) })

View file

@ -187,12 +187,12 @@ func (s *Server) handleRequest(str quic.Stream, decoder *qpack.Decoder) error {
return errors.New("expected first frame to be a headers frame") return errors.New("expected first frame to be a headers frame")
} }
if hf.Length > s.maxHeaderBytes() { if hf.Length > s.maxHeaderBytes() {
str.CancelWrite(quic.ErrorCode(errorLimitExceeded)) str.CancelWrite(quic.ErrorCode(errorFrameError))
return fmt.Errorf("Headers frame too large: %d bytes (max: %d)", hf.Length, s.maxHeaderBytes()) return fmt.Errorf("Headers frame too large: %d bytes (max: %d)", hf.Length, s.maxHeaderBytes())
} }
headerBlock := make([]byte, hf.Length) headerBlock := make([]byte, hf.Length)
if _, err := io.ReadFull(str, headerBlock); err != nil { if _, err := io.ReadFull(str, headerBlock); err != nil {
str.CancelWrite(quic.ErrorCode(errorIncompleteRequest)) str.CancelWrite(quic.ErrorCode(errorRequestIncomplete))
return err return err
} }
hfs, err := decoder.DecodeFull(headerBlock) hfs, err := decoder.DecodeFull(headerBlock)

View file

@ -197,7 +197,7 @@ var _ = Describe("Server", func() {
return responseBuf.Write(p) return responseBuf.Write(p)
}).AnyTimes() }).AnyTimes()
str.EXPECT().CancelWrite(quic.ErrorCode(errorLimitExceeded)) str.EXPECT().CancelWrite(quic.ErrorCode(errorFrameError))
err := s.handleRequest(str, qpackDecoder) err := s.handleRequest(str, qpackDecoder)
Expect(err).To(HaveOccurred()) Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("Headers frame too large")) Expect(err.Error()).To(ContainSubstring("Headers frame too large"))

View file

@ -202,7 +202,7 @@ var _ = Describe("HTTP tests", func() {
serr, ok := err.(streamCancelError) serr, ok := err.(streamCancelError)
Expect(ok).To(BeTrue()) Expect(ok).To(BeTrue())
Expect(serr.Canceled()).To(BeTrue()) Expect(serr.Canceled()).To(BeTrue())
Expect(serr.ErrorCode()).To(BeEquivalentTo(5)) Expect(serr.ErrorCode()).To(BeEquivalentTo(0x10d))
return return
} }
} }