mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
84 lines
2.3 KiB
Go
84 lines
2.3 KiB
Go
package wire
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
"github.com/lucas-clemente/quic-go/internal/qerr"
|
|
"github.com/lucas-clemente/quic-go/quicvarint"
|
|
)
|
|
|
|
// A ConnectionCloseFrame is a CONNECTION_CLOSE frame
|
|
type ConnectionCloseFrame struct {
|
|
IsApplicationError bool
|
|
ErrorCode qerr.ErrorCode
|
|
FrameType uint64
|
|
ReasonPhrase string
|
|
}
|
|
|
|
func parseConnectionCloseFrame(r *bytes.Reader, _ protocol.VersionNumber) (*ConnectionCloseFrame, error) {
|
|
typeByte, err := r.ReadByte()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
f := &ConnectionCloseFrame{IsApplicationError: typeByte == 0x1d}
|
|
ec, err := quicvarint.ReadVarInt(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
f.ErrorCode = qerr.ErrorCode(ec)
|
|
// read the Frame Type, if this is not an application error
|
|
if !f.IsApplicationError {
|
|
ft, err := quicvarint.ReadVarInt(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
f.FrameType = ft
|
|
}
|
|
var reasonPhraseLen uint64
|
|
reasonPhraseLen, err = quicvarint.ReadVarInt(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// shortcut to prevent the unnecessary allocation of dataLen bytes
|
|
// if the dataLen is larger than the remaining length of the packet
|
|
// reading the whole reason phrase would result in EOF when attempting to READ
|
|
if int(reasonPhraseLen) > r.Len() {
|
|
return nil, io.EOF
|
|
}
|
|
|
|
reasonPhrase := make([]byte, reasonPhraseLen)
|
|
if _, err := io.ReadFull(r, reasonPhrase); err != nil {
|
|
// this should never happen, since we already checked the reasonPhraseLen earlier
|
|
return nil, err
|
|
}
|
|
f.ReasonPhrase = string(reasonPhrase)
|
|
return f, nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *ConnectionCloseFrame) Length(version protocol.VersionNumber) protocol.ByteCount {
|
|
length := 1 + quicvarint.VarIntLen(uint64(f.ErrorCode)) + quicvarint.VarIntLen(uint64(len(f.ReasonPhrase))) + protocol.ByteCount(len(f.ReasonPhrase))
|
|
if !f.IsApplicationError {
|
|
length += quicvarint.VarIntLen(f.FrameType) // for the frame type
|
|
}
|
|
return length
|
|
}
|
|
|
|
func (f *ConnectionCloseFrame) Write(b *bytes.Buffer, version protocol.VersionNumber) error {
|
|
if f.IsApplicationError {
|
|
b.WriteByte(0x1d)
|
|
} else {
|
|
b.WriteByte(0x1c)
|
|
}
|
|
|
|
quicvarint.WriteVarInt(b, uint64(f.ErrorCode))
|
|
if !f.IsApplicationError {
|
|
quicvarint.WriteVarInt(b, f.FrameType)
|
|
}
|
|
quicvarint.WriteVarInt(b, uint64(len(f.ReasonPhrase)))
|
|
b.WriteString(f.ReasonPhrase)
|
|
return nil
|
|
}
|