mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
fix parsing of the Header type byte
In order to determine if a packet is a Version Negotiation Packet, it is not sufficient to just look at bit 0x1. Other packet types also have that bit set, e.g. the Retry packet (packet type 0x3). Instead, we have to look at the last 3 bits. This fix will work as long as IETF QUIC doesn't define more than 8 long header types.
This commit is contained in:
parent
df9d28cf30
commit
7c3d6abb4b
2 changed files with 22 additions and 6 deletions
|
@ -19,7 +19,7 @@ var _ = Describe("Header", func() {
|
|||
)
|
||||
|
||||
Context("parsing", func() {
|
||||
It("parses an IETF draft header, when the QUIC version supports TLS", func() {
|
||||
It("parses an IETF draft Short Header, when the QUIC version supports TLS", func() {
|
||||
buf := &bytes.Buffer{}
|
||||
// use a short header, which isn't distinguishable from the gQUIC Public Header when looking at the type byte
|
||||
err := (&Header{
|
||||
|
@ -51,6 +51,21 @@ var _ = Describe("Header", func() {
|
|||
Expect(hdr.isPublicHeader).To(BeFalse())
|
||||
})
|
||||
|
||||
It("doens't mistake packets with a Short Header for Version Negotiation Packets", func() {
|
||||
// make sure this packet could be mistaken for a Version Negotiation Packet, if we only look at the 0x1 bit
|
||||
buf := &bytes.Buffer{}
|
||||
err := (&Header{
|
||||
IsLongHeader: false,
|
||||
PacketNumberLen: protocol.PacketNumberLen1,
|
||||
PacketNumber: 0x42,
|
||||
}).writeHeader(buf)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(buf.Bytes()[0] & 0x1).To(BeEquivalentTo(0x1))
|
||||
hdr, err := ParseHeaderSentByServer(bytes.NewReader(buf.Bytes()), versionIETFHeader)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(hdr.isPublicHeader).To(BeFalse())
|
||||
})
|
||||
|
||||
It("parses a gQUIC Public Header, when the version is not known", func() {
|
||||
buf := &bytes.Buffer{}
|
||||
err := (&Header{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue