wire

package
v0.31.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 8, 2022 License: MIT Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrInvalidReservedBits = errors.New("invalid reserved bits")

ErrInvalidReservedBits is returned when the reserved bits are incorrect. When this error is returned, parsing continues, and an ExtendedHeader is returned. This is necessary because we need to decrypt the packet in that case, in order to avoid a timing side-channel.

View Source
var ErrUnsupportedVersion = errors.New("unsupported version")

Functions

func ComposeVersionNegotiation

func ComposeVersionNegotiation(destConnID, srcConnID protocol.ArbitraryLenConnectionID, versions []protocol.VersionNumber) []byte

ComposeVersionNegotiation composes a Version Negotiation

func Is0RTTPacket added in v0.20.0

func Is0RTTPacket(b []byte) bool

Is0RTTPacket says if this is a 0-RTT packet. A packet sent with a version we don't understand can never be a 0-RTT packet.

func IsLongHeaderPacket added in v0.29.0

func IsLongHeaderPacket(firstByte byte) bool

IsLongHeaderPacket says if this is a Long Header packet

func IsVersionNegotiationPacket added in v0.11.0

func IsVersionNegotiationPacket(b []byte) bool

IsVersionNegotiationPacket says if this is a version negotiation packet

func LogFrame

func LogFrame(logger utils.Logger, frame Frame, sent bool)

LogFrame logs a frame, either sent or received

func LogShortHeader added in v0.30.0

func ParseArbitraryLenConnectionIDs added in v0.30.0

func ParseArbitraryLenConnectionIDs(data []byte) (bytesParsed int, dest, src protocol.ArbitraryLenConnectionID, _ error)

ParseArbitraryLenConnectionIDs parses the most general form of a Long Header packet, using only the version-independent packet format as described in Section 5.1 of RFC 8999: https://datatracker.ietf.org/doc/html/rfc8999#section-5.1. This function should only be called on Long Header packets for which we don't support the version.

func ParseConnectionID added in v0.11.0

func ParseConnectionID(data []byte, shortHeaderConnIDLen int) (protocol.ConnectionID, error)

ParseConnectionID parses the destination connection ID of a packet. It uses the data slice for the connection ID. That means that the connection ID must not be used after the packet buffer is released.

func ParseShortHeader added in v0.30.0

func ParseShortHeader(data []byte, connIDLen int) (length int, _ protocol.PacketNumber, _ protocol.PacketNumberLen, _ protocol.KeyPhaseBit, _ error)

func ParseVersion added in v0.30.0

func ParseVersion(data []byte) (protocol.VersionNumber, error)

ParseVersion parses the QUIC version. It should only be called for Long Header packets (Short Header packets don't contain a version number).

func ParseVersionNegotiationPacket added in v0.18.0

func ParseVersionNegotiationPacket(b []byte) (dest, src protocol.ArbitraryLenConnectionID, _ []protocol.VersionNumber, _ error)

ParseVersionNegotiationPacket parses a Version Negotiation packet.

func PutAckFrame added in v0.30.0

func PutAckFrame(f *AckFrame)

Types

type AckFrame

type AckFrame struct {
	AckRanges []AckRange // has to be ordered. The highest ACK range goes first, the lowest ACK range goes last
	DelayTime time.Duration

	ECT0, ECT1, ECNCE uint64
}

An AckFrame is an ACK frame

func GetAckFrame added in v0.30.0

func GetAckFrame() *AckFrame

func (*AckFrame) AcksPacket

func (f *AckFrame) AcksPacket(p protocol.PacketNumber) bool

AcksPacket determines if this ACK frame acks a certain packet number

func (*AckFrame) Append added in v0.30.0

func (f *AckFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

Append appends an ACK frame.

func (*AckFrame) HasMissingRanges

func (f *AckFrame) HasMissingRanges() bool

HasMissingRanges returns if this frame reports any missing packets

func (*AckFrame) LargestAcked

func (f *AckFrame) LargestAcked() protocol.PacketNumber

LargestAcked is the largest acked packet number

func (*AckFrame) Length added in v0.8.0

Length of a written frame

func (*AckFrame) LowestAcked

func (f *AckFrame) LowestAcked() protocol.PacketNumber

LowestAcked is the lowest acked packet number

type AckRange

type AckRange struct {
	Smallest protocol.PacketNumber
	Largest  protocol.PacketNumber
}

AckRange is an ACK range

func (AckRange) Len added in v0.8.0

func (r AckRange) Len() protocol.PacketNumber

Len returns the number of packets contained in this ACK range

type ConnectionCloseFrame

type ConnectionCloseFrame struct {
	IsApplicationError bool
	ErrorCode          uint64
	FrameType          uint64
	ReasonPhrase       string
}

A ConnectionCloseFrame is a CONNECTION_CLOSE frame

func (*ConnectionCloseFrame) Append added in v0.30.0

func (f *ConnectionCloseFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*ConnectionCloseFrame) Length added in v0.8.0

Length of a written frame

type CryptoFrame added in v0.11.0

type CryptoFrame struct {
	Offset protocol.ByteCount
	Data   []byte
}

A CryptoFrame is a CRYPTO frame

func (*CryptoFrame) Append added in v0.30.0

func (f *CryptoFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*CryptoFrame) Length added in v0.11.0

Length of a written frame

func (*CryptoFrame) MaxDataLen added in v0.11.0

func (f *CryptoFrame) MaxDataLen(maxSize protocol.ByteCount) protocol.ByteCount

MaxDataLen returns the maximum data length

func (*CryptoFrame) MaybeSplitOffFrame added in v0.15.0

func (f *CryptoFrame) MaybeSplitOffFrame(maxSize protocol.ByteCount, version protocol.VersionNumber) (*CryptoFrame, bool)

MaybeSplitOffFrame splits a frame such that it is not bigger than n bytes. It returns if the frame was actually split. The frame might not be split if: * the size is large enough to fit the whole frame * the size is too small to fit even a 1-byte frame. In that case, the frame returned is nil.

type DataBlockedFrame added in v0.11.0

type DataBlockedFrame struct {
	MaximumData protocol.ByteCount
}

A DataBlockedFrame is a DATA_BLOCKED frame

func (*DataBlockedFrame) Append added in v0.30.0

func (f *DataBlockedFrame) Append(b []byte, version protocol.VersionNumber) ([]byte, error)

func (*DataBlockedFrame) Length added in v0.11.0

Length of a written frame

type DatagramFrame added in v0.20.0

type DatagramFrame struct {
	DataLenPresent bool
	Data           []byte
}

A DatagramFrame is a DATAGRAM frame

func (*DatagramFrame) Append added in v0.30.0

func (f *DatagramFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*DatagramFrame) Length added in v0.20.0

Length of a written frame

func (*DatagramFrame) MaxDataLen added in v0.20.0

func (f *DatagramFrame) MaxDataLen(maxSize protocol.ByteCount, version protocol.VersionNumber) protocol.ByteCount

MaxDataLen returns the maximum data length

type ExtendedHeader added in v0.11.0

type ExtendedHeader struct {
	Header

	KeyPhase protocol.KeyPhaseBit

	PacketNumberLen protocol.PacketNumberLen
	PacketNumber    protocol.PacketNumber
	// contains filtered or unexported fields
}

ExtendedHeader is the header of a QUIC packet.

func (*ExtendedHeader) GetLength added in v0.11.0

GetLength determines the length of the Header.

func (*ExtendedHeader) Log added in v0.11.0

func (h *ExtendedHeader) Log(logger utils.Logger)

Log logs the Header

func (*ExtendedHeader) ParsedLen added in v0.15.0

func (h *ExtendedHeader) ParsedLen() protocol.ByteCount

ParsedLen returns the number of bytes that were consumed when parsing the header

func (*ExtendedHeader) Write added in v0.11.0

Write writes the Header.

type Frame

type Frame interface {
	Append(b []byte, version protocol.VersionNumber) ([]byte, error)
	Length(version protocol.VersionNumber) protocol.ByteCount
}

A Frame in QUIC

type FrameParser added in v0.11.0

type FrameParser interface {
	ParseNext([]byte, protocol.EncryptionLevel) (int, Frame, error)
	SetAckDelayExponent(uint8)
}

A FrameParser parses QUIC frames, one by one.

func NewFrameParser added in v0.11.0

func NewFrameParser(supportsDatagrams bool, v protocol.VersionNumber) FrameParser

NewFrameParser creates a new frame parser.

type HandshakeDoneFrame added in v0.15.0

type HandshakeDoneFrame struct{}

A HandshakeDoneFrame is a HANDSHAKE_DONE frame

func (*HandshakeDoneFrame) Append added in v0.30.0

func (f *HandshakeDoneFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*HandshakeDoneFrame) Length added in v0.15.0

Length of a written frame

type Header struct {
	IsLongHeader bool

	Type protocol.PacketType

	Version          protocol.VersionNumber
	SrcConnectionID  protocol.ConnectionID
	DestConnectionID protocol.ConnectionID

	Length protocol.ByteCount

	Token []byte
	// contains filtered or unexported fields
}

The Header is the version independent part of the header

func ParsePacket added in v0.11.0

func ParsePacket(data []byte, shortHeaderConnIDLen int) (*Header, []byte, []byte, error)

ParsePacket parses a packet. If the packet has a long header, the packet is cut according to the length field. If we understand the version, the packet is header up unto the packet number. Otherwise, only the invariant part of the header is parsed.

func (*Header) PacketType added in v0.14.0

func (h *Header) PacketType() string

PacketType is the type of the packet, for logging purposes

func (*Header) ParseExtended added in v0.11.0

func (h *Header) ParseExtended(b *bytes.Reader, ver protocol.VersionNumber) (*ExtendedHeader, error)

ParseExtended parses the version dependent part of the header. The Reader has to be set such that it points to the first byte of the header.

func (*Header) ParsedLen added in v0.11.0

func (h *Header) ParsedLen() protocol.ByteCount

ParsedLen returns the number of bytes that were consumed when parsing the header

type MaxDataFrame

type MaxDataFrame struct {
	MaximumData protocol.ByteCount
}

A MaxDataFrame carries flow control information for the connection

func (*MaxDataFrame) Append added in v0.30.0

func (f *MaxDataFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

Write writes a MAX_STREAM_DATA frame

func (*MaxDataFrame) Length added in v0.8.0

Length of a written frame

type MaxStreamDataFrame

type MaxStreamDataFrame struct {
	StreamID          protocol.StreamID
	MaximumStreamData protocol.ByteCount
}

A MaxStreamDataFrame is a MAX_STREAM_DATA frame

func (*MaxStreamDataFrame) Append added in v0.30.0

func (f *MaxStreamDataFrame) Append(b []byte, version protocol.VersionNumber) ([]byte, error)

func (*MaxStreamDataFrame) Length added in v0.8.0

Length of a written frame

type MaxStreamsFrame added in v0.11.0

type MaxStreamsFrame struct {
	Type         protocol.StreamType
	MaxStreamNum protocol.StreamNum
}

A MaxStreamsFrame is a MAX_STREAMS frame

func (*MaxStreamsFrame) Append added in v0.30.0

func (f *MaxStreamsFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*MaxStreamsFrame) Length added in v0.11.0

Length of a written frame

type NewConnectionIDFrame added in v0.11.0

type NewConnectionIDFrame struct {
	SequenceNumber      uint64
	RetirePriorTo       uint64
	ConnectionID        protocol.ConnectionID
	StatelessResetToken protocol.StatelessResetToken
}

A NewConnectionIDFrame is a NEW_CONNECTION_ID frame

func (*NewConnectionIDFrame) Append added in v0.30.0

func (f *NewConnectionIDFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*NewConnectionIDFrame) Length added in v0.11.0

Length of a written frame

type NewTokenFrame added in v0.11.0

type NewTokenFrame struct {
	Token []byte
}

A NewTokenFrame is a NEW_TOKEN frame

func (*NewTokenFrame) Append added in v0.30.0

func (f *NewTokenFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*NewTokenFrame) Length added in v0.11.0

Length of a written frame

type PathChallengeFrame added in v0.8.0

type PathChallengeFrame struct {
	Data [8]byte
}

A PathChallengeFrame is a PATH_CHALLENGE frame

func (*PathChallengeFrame) Append added in v0.30.0

func (f *PathChallengeFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*PathChallengeFrame) Length added in v0.8.0

Length of a written frame

type PathResponseFrame added in v0.8.0

type PathResponseFrame struct {
	Data [8]byte
}

A PathResponseFrame is a PATH_RESPONSE frame

func (*PathResponseFrame) Append added in v0.30.0

func (f *PathResponseFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*PathResponseFrame) Length added in v0.8.0

Length of a written frame

type PingFrame

type PingFrame struct{}

A PingFrame is a PING frame

func (*PingFrame) Append added in v0.30.0

func (f *PingFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*PingFrame) Length added in v0.8.0

Length of a written frame

type PreferredAddress added in v0.15.3

type PreferredAddress struct {
	IPv4                net.IP
	IPv4Port            uint16
	IPv6                net.IP
	IPv6Port            uint16
	ConnectionID        protocol.ConnectionID
	StatelessResetToken protocol.StatelessResetToken
}

PreferredAddress is the value encoding in the preferred_address transport parameter

type ResetStreamFrame added in v0.11.0

type ResetStreamFrame struct {
	StreamID  protocol.StreamID
	ErrorCode qerr.StreamErrorCode
	FinalSize protocol.ByteCount
}

A ResetStreamFrame is a RESET_STREAM frame in QUIC

func (*ResetStreamFrame) Append added in v0.30.0

func (f *ResetStreamFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*ResetStreamFrame) Length added in v0.11.0

Length of a written frame

type RetireConnectionIDFrame added in v0.11.0

type RetireConnectionIDFrame struct {
	SequenceNumber uint64
}

A RetireConnectionIDFrame is a RETIRE_CONNECTION_ID frame

func (*RetireConnectionIDFrame) Append added in v0.30.0

func (*RetireConnectionIDFrame) Length added in v0.11.0

Length of a written frame

type StopSendingFrame added in v0.7.0

type StopSendingFrame struct {
	StreamID  protocol.StreamID
	ErrorCode qerr.StreamErrorCode
}

A StopSendingFrame is a STOP_SENDING frame

func (*StopSendingFrame) Append added in v0.30.0

func (f *StopSendingFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*StopSendingFrame) Length added in v0.8.0

Length of a written frame

type StreamDataBlockedFrame added in v0.11.0

type StreamDataBlockedFrame struct {
	StreamID          protocol.StreamID
	MaximumStreamData protocol.ByteCount
}

A StreamDataBlockedFrame is a STREAM_DATA_BLOCKED frame

func (*StreamDataBlockedFrame) Append added in v0.30.0

func (*StreamDataBlockedFrame) Length added in v0.11.0

Length of a written frame

type StreamFrame

type StreamFrame struct {
	StreamID       protocol.StreamID
	Offset         protocol.ByteCount
	Data           []byte
	Fin            bool
	DataLenPresent bool
	// contains filtered or unexported fields
}

A StreamFrame of QUIC

func GetStreamFrame added in v0.13.0

func GetStreamFrame() *StreamFrame

func (*StreamFrame) Append added in v0.30.0

func (f *StreamFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

Write writes a STREAM frame

func (*StreamFrame) DataLen

func (f *StreamFrame) DataLen() protocol.ByteCount

DataLen gives the length of data in bytes

func (*StreamFrame) Length added in v0.8.0

Length returns the total length of the STREAM frame

func (*StreamFrame) MaxDataLen added in v0.8.0

func (f *StreamFrame) MaxDataLen(maxSize protocol.ByteCount, version protocol.VersionNumber) protocol.ByteCount

MaxDataLen returns the maximum data length If 0 is returned, writing will fail (a STREAM frame must contain at least 1 byte of data).

func (*StreamFrame) MaybeSplitOffFrame added in v0.8.0

func (f *StreamFrame) MaybeSplitOffFrame(maxSize protocol.ByteCount, version protocol.VersionNumber) (*StreamFrame, bool)

MaybeSplitOffFrame splits a frame such that it is not bigger than n bytes. It returns if the frame was actually split. The frame might not be split if: * the size is large enough to fit the whole frame * the size is too small to fit even a 1-byte frame. In that case, the frame returned is nil.

func (*StreamFrame) PutBack added in v0.13.0

func (f *StreamFrame) PutBack()

type StreamsBlockedFrame added in v0.11.0

type StreamsBlockedFrame struct {
	Type        protocol.StreamType
	StreamLimit protocol.StreamNum
}

A StreamsBlockedFrame is a STREAMS_BLOCKED frame

func (*StreamsBlockedFrame) Append added in v0.30.0

func (f *StreamsBlockedFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error)

func (*StreamsBlockedFrame) Length added in v0.11.0

Length of a written frame

type TransportParameters added in v0.15.3

type TransportParameters struct {
	InitialMaxStreamDataBidiLocal  protocol.ByteCount
	InitialMaxStreamDataBidiRemote protocol.ByteCount
	InitialMaxStreamDataUni        protocol.ByteCount
	InitialMaxData                 protocol.ByteCount

	MaxAckDelay      time.Duration
	AckDelayExponent uint8

	DisableActiveMigration bool

	MaxUDPPayloadSize protocol.ByteCount

	MaxUniStreamNum  protocol.StreamNum
	MaxBidiStreamNum protocol.StreamNum

	MaxIdleTimeout time.Duration

	PreferredAddress *PreferredAddress

	OriginalDestinationConnectionID protocol.ConnectionID
	InitialSourceConnectionID       protocol.ConnectionID
	RetrySourceConnectionID         *protocol.ConnectionID // use a pointer here to distinguish zero-length connection IDs from missing transport parameters

	StatelessResetToken     *protocol.StatelessResetToken
	ActiveConnectionIDLimit uint64

	MaxDatagramFrameSize protocol.ByteCount
}

TransportParameters are parameters sent to the peer during the handshake

func (*TransportParameters) Marshal added in v0.15.3

func (p *TransportParameters) Marshal(pers protocol.Perspective) []byte

Marshal the transport parameters

func (*TransportParameters) MarshalForSessionTicket added in v0.15.3

func (p *TransportParameters) MarshalForSessionTicket(b []byte) []byte

MarshalForSessionTicket marshals the transport parameters we save in the session ticket. When sending a 0-RTT enabled TLS session tickets, we need to save the transport parameters. The client will remember the transport parameters used in the last session, and apply those to the 0-RTT data it sends. Saving the transport parameters in the ticket gives the server the option to reject 0-RTT if the transport parameters changed. Since the session ticket is encrypted, the serialization format is defined by the server. For convenience, we use the same format that we also use for sending the transport parameters.

func (*TransportParameters) String added in v0.15.3

func (p *TransportParameters) String() string

String returns a string representation, intended for logging.

func (*TransportParameters) Unmarshal added in v0.15.3

func (p *TransportParameters) Unmarshal(data []byte, sentBy protocol.Perspective) error

Unmarshal the transport parameters

func (*TransportParameters) UnmarshalFromSessionTicket added in v0.15.3

func (p *TransportParameters) UnmarshalFromSessionTicket(r *bytes.Reader) error

UnmarshalFromSessionTicket unmarshals transport parameters from a session ticket.

func (*TransportParameters) ValidFor0RTT added in v0.15.3

func (p *TransportParameters) ValidFor0RTT(saved *TransportParameters) bool

ValidFor0RTT checks if the transport parameters match those saved in the session ticket.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL