mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
ackhandler: don't fail ECN validation if less than 10 testing packets are lost (#4088)
* ackhandler: don't fail ECN validation less than 10 testing packets lost * ackhandler: simplify checks for mangling and loss of all testing packets
This commit is contained in:
parent
9010cfd2bb
commit
c12f425803
2 changed files with 29 additions and 9 deletions
|
@ -125,6 +125,10 @@ func (e *ecnTracker) LostPacket(pn protocol.PacketNumber) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
e.numLostTesting++
|
e.numLostTesting++
|
||||||
|
// Only proceed if we have sent all 10 testing packets.
|
||||||
|
if e.state != ecnStateUnknown {
|
||||||
|
return
|
||||||
|
}
|
||||||
if e.numLostTesting >= e.numSentTesting {
|
if e.numLostTesting >= e.numSentTesting {
|
||||||
e.logger.Debugf("Disabling ECN. All testing packets were lost.")
|
e.logger.Debugf("Disabling ECN. All testing packets were lost.")
|
||||||
if e.tracer != nil && e.tracer.ECNStateUpdated != nil {
|
if e.tracer != nil && e.tracer.ECNStateUpdated != nil {
|
||||||
|
@ -223,16 +227,16 @@ func (e *ecnTracker) HandleNewlyAcked(packets []*packet, ect0, ect1, ecnce int64
|
||||||
e.numAckedECT1 = ect1
|
e.numAckedECT1 = ect1
|
||||||
e.numAckedECNCE = ecnce
|
e.numAckedECNCE = ecnce
|
||||||
|
|
||||||
if e.state == ecnStateTesting || e.state == ecnStateUnknown {
|
// Detect mangling (a path remarking all ECN-marked testing packets as CE),
|
||||||
// Detect mangling (a path remarking all ECN-marked testing packets as CE).
|
// once all 10 testing packets have been sent out.
|
||||||
if e.numSentECT0+e.numSentECT1 == e.numAckedECNCE && e.numAckedECNCE >= numECNTestingPackets {
|
if e.state == ecnStateUnknown && e.numSentECT0+e.numSentECT1 == e.numAckedECNCE {
|
||||||
if e.tracer != nil && e.tracer.ECNStateUpdated != nil {
|
if e.tracer != nil && e.tracer.ECNStateUpdated != nil {
|
||||||
e.tracer.ECNStateUpdated(logging.ECNStateFailed, logging.ECNFailedManglingDetected)
|
e.tracer.ECNStateUpdated(logging.ECNStateFailed, logging.ECNFailedManglingDetected)
|
||||||
}
|
}
|
||||||
e.state = ecnStateFailed
|
e.state = ecnStateFailed
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
if e.state == ecnStateTesting || e.state == ecnStateUnknown {
|
||||||
var ackedTestingPacket bool
|
var ackedTestingPacket bool
|
||||||
for _, p := range packets {
|
for _, p := range packets {
|
||||||
if e.isTestingPacket(p.PacketNumber) {
|
if e.isTestingPacket(p.PacketNumber) {
|
||||||
|
|
|
@ -71,6 +71,22 @@ var _ = Describe("ECN tracker", func() {
|
||||||
ecnTracker.LostPacket(16)
|
ecnTracker.LostPacket(16)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("only detects ECN mangling after sending all testing packets", func() {
|
||||||
|
tracer.EXPECT().ECNStateUpdated(logging.ECNStateTesting, logging.ECNTriggerNoTrigger)
|
||||||
|
for i := 0; i < 9; i++ {
|
||||||
|
Expect(ecnTracker.Mode()).To(Equal(protocol.ECT0))
|
||||||
|
ecnTracker.SentPacket(protocol.PacketNumber(i), protocol.ECT0)
|
||||||
|
ecnTracker.LostPacket(protocol.PacketNumber(i))
|
||||||
|
}
|
||||||
|
// Send the last testing packet, and receive a
|
||||||
|
tracer.EXPECT().ECNStateUpdated(logging.ECNStateUnknown, logging.ECNTriggerNoTrigger)
|
||||||
|
Expect(ecnTracker.Mode()).To(Equal(protocol.ECT0))
|
||||||
|
ecnTracker.SentPacket(9, protocol.ECT0)
|
||||||
|
// Now lose the last testing packet.
|
||||||
|
tracer.EXPECT().ECNStateUpdated(logging.ECNStateFailed, logging.ECNFailedLostAllTestingPackets)
|
||||||
|
ecnTracker.LostPacket(9)
|
||||||
|
})
|
||||||
|
|
||||||
It("passes ECN validation when a testing packet is acknowledged, while still in testing state", func() {
|
It("passes ECN validation when a testing packet is acknowledged, while still in testing state", func() {
|
||||||
tracer.EXPECT().ECNStateUpdated(logging.ECNStateTesting, logging.ECNTriggerNoTrigger)
|
tracer.EXPECT().ECNStateUpdated(logging.ECNStateTesting, logging.ECNTriggerNoTrigger)
|
||||||
for i := 0; i < 5; i++ {
|
for i := 0; i < 5; i++ {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue