Commit fece36a
committed
BUG/MINOR: quic: Malformed probing packet with already acked frames
If a packet building was asked to probe the peer with frames which have just
been acked, the frames building run by qc_build_frms() could be cancelled returning
0 by qc_stream_frm_is_acked() which ckeck that these frames have been already
acknowledged. In this case the packet building run by qc_do_build_pkt() is not
interrupted, leading to the build of an empty packet which should be ack-eliciting.
This is a bug detected by the BUG_ON() statement in qc_do_build_pk():
BUG_ON(qel->pktns->tx.pto_probe &&
!(pkt->flags & QUIC_FL_TX_PACKET_ACK_ELICITING));
Thank you to @Tristan971 for having reported this issue in GH #2709
This is an old bug which must be backported as far as 2.6.1 parent 22bd92a commit fece36a
1 file changed
+14
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2012 | 2012 | | |
2013 | 2013 | | |
2014 | 2014 | | |
2015 | | - | |
| 2015 | + | |
| 2016 | + | |
| 2017 | + | |
| 2018 | + | |
| 2019 | + | |
| 2020 | + | |
| 2021 | + | |
| 2022 | + | |
| 2023 | + | |
| 2024 | + | |
| 2025 | + | |
| 2026 | + | |
| 2027 | + | |
| 2028 | + | |
2016 | 2029 | | |
2017 | 2030 | | |
2018 | 2031 | | |
| |||
0 commit comments