mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
return an error when parsing a too long connection ID from a header (#3533)
This commit is contained in:
parent
7023b52e13
commit
31995601a9
2 changed files with 12 additions and 0 deletions
|
@ -29,6 +29,9 @@ func ParseConnectionID(data []byte, shortHeaderConnIDLen int) (protocol.Connecti
|
||||||
return protocol.ConnectionID{}, io.EOF
|
return protocol.ConnectionID{}, io.EOF
|
||||||
}
|
}
|
||||||
destConnIDLen := int(data[5])
|
destConnIDLen := int(data[5])
|
||||||
|
if destConnIDLen > protocol.MaxConnIDLen {
|
||||||
|
return protocol.ConnectionID{}, protocol.ErrInvalidConnectionIDLen
|
||||||
|
}
|
||||||
if len(data) < 6+destConnIDLen {
|
if len(data) < 6+destConnIDLen {
|
||||||
return protocol.ConnectionID{}, io.EOF
|
return protocol.ConnectionID{}, io.EOF
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,6 +86,15 @@ var _ = Describe("Header Parsing", func() {
|
||||||
Expect(err).To(MatchError(io.EOF))
|
Expect(err).To(MatchError(io.EOF))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("errors when encountering a too long connection ID", func() {
|
||||||
|
b := []byte{0x80, 0, 0, 0, 0}
|
||||||
|
binary.BigEndian.PutUint32(b[1:], uint32(protocol.Version1))
|
||||||
|
b = append(b, 21) // dest conn id len
|
||||||
|
b = append(b, make([]byte, 21)...)
|
||||||
|
_, err := ParseConnectionID(b, 4)
|
||||||
|
Expect(err).To(MatchError(protocol.ErrInvalidConnectionIDLen))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("identifying 0-RTT packets", func() {
|
Context("identifying 0-RTT packets", func() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue