mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix overflow of the max_ack_delay when parsing transport parameters
This commit is contained in:
parent
2f736d3599
commit
d476067f65
3 changed files with 8 additions and 8 deletions
|
@ -71,7 +71,7 @@ const MaxAckDelayExponent = 20
|
|||
const DefaultMaxAckDelay = 25 * time.Millisecond
|
||||
|
||||
// MaxMaxAckDelay is the maximum max_ack_delay
|
||||
const MaxMaxAckDelay = 1 << 14 * time.Millisecond
|
||||
const MaxMaxAckDelay = (1<<14 - 1) * time.Millisecond
|
||||
|
||||
// MaxConnIDLen is the maximum length of the connection ID
|
||||
const MaxConnIDLen = 20
|
||||
|
|
|
@ -248,16 +248,16 @@ var _ = Describe("Transport Parameters", func() {
|
|||
Expect(err.Error()).To(ContainSubstring("TRANSPORT_PARAMETER_ERROR: inconsistent transport parameter length"))
|
||||
})
|
||||
|
||||
It("handles max_ack_delays that decode to a negative duration", func() {
|
||||
It("handles huge max_ack_delay values", func() {
|
||||
b := &bytes.Buffer{}
|
||||
val := uint64(math.MaxUint64) / 5
|
||||
utils.WriteVarInt(b, uint64(maxAckDelayParameterID))
|
||||
utils.WriteVarInt(b, uint64(utils.VarIntLen(val)))
|
||||
utils.WriteVarInt(b, val)
|
||||
addInitialSourceConnectionID(b)
|
||||
p := &TransportParameters{}
|
||||
Expect(p.Unmarshal(b.Bytes(), protocol.PerspectiveClient)).To(Succeed())
|
||||
Expect(p.MaxAckDelay).To(BeNumerically(">", 290*365*24*time.Hour))
|
||||
err := (&TransportParameters{}).Unmarshal(b.Bytes(), protocol.PerspectiveClient)
|
||||
Expect(err).To(HaveOccurred())
|
||||
Expect(err.Error()).To(ContainSubstring("invalid value for max_ack_delay"))
|
||||
})
|
||||
|
||||
It("skips unknown parameters", func() {
|
||||
|
|
|
@ -297,10 +297,10 @@ func (p *TransportParameters) readNumericTransportParameter(
|
|||
}
|
||||
p.AckDelayExponent = uint8(val)
|
||||
case maxAckDelayParameterID:
|
||||
maxAckDelay := time.Duration(val) * time.Millisecond
|
||||
if maxAckDelay >= protocol.MaxMaxAckDelay {
|
||||
return fmt.Errorf("invalid value for max_ack_delay: %dms (maximum %dms)", maxAckDelay/time.Millisecond, (protocol.MaxMaxAckDelay-time.Millisecond)/time.Millisecond)
|
||||
if val > uint64(protocol.MaxMaxAckDelay/time.Millisecond) {
|
||||
return fmt.Errorf("invalid value for max_ack_delay: %dms (maximum %dms)", val, protocol.MaxMaxAckDelay/time.Millisecond)
|
||||
}
|
||||
maxAckDelay := time.Duration(val) * time.Millisecond
|
||||
if maxAckDelay < 0 {
|
||||
maxAckDelay = utils.InfDuration
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue