mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04:00
Linux Accurate ECN test sets using ACE counters and AccECN options to cover several scenarios: Connection teardown, different ACK conditions, counter wrapping, SACK space grabbing, fallback schemes, negotiation retransmission/reorder/loss, AccECN option drop/loss, different handshake reflectors, data with marking, and different sysctl values. The packetdrill used is commit cbe405666c9c8698ac1e72f5e8ffc551216dfa56 of repo: https://github.com/minuscat/packetdrill/tree/upstream_accecn. And corresponding patches are sent to google/packetdrill email list. Signed-off-by: Chia-Yu Chang <chia-yu.chang@nokia-bell-labs.com> Co-developed-by: Ilpo Järvinen <ij@kernel.org> Signed-off-by: Ilpo Järvinen <ij@kernel.org> Co-developed-by: Neal Cardwell <ncardwell@google.com> Signed-off-by: Neal Cardwell <ncardwell@google.com> Reviewed-by: Eric Dumazet <edumazet@google.com> Link: https://patch.msgid.link/20260131222515.8485-16-chia-yu.chang@nokia-bell-labs.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
71 lines
2.2 KiB
Plaintext
71 lines
2.2 KiB
Plaintext
// Test basic AccECN CEP/CEB/E0B/E1B functionality & CEP wrapping
|
|
|
|
`./defaults.sh
|
|
sysctl -q net.ipv4.tcp_ecn=3
|
|
`
|
|
|
|
0 socket(..., SOCK_STREAM, IPPROTO_TCP) = 3
|
|
+0 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
|
|
+0 bind(3, ..., ...) = 0
|
|
+0 listen(3, 1) = 0
|
|
|
|
+0 < SEWA 0:0(0) win 32792 <mss 1050,nop,nop,sackOK,nop,wscale 8>
|
|
+.002 > SW. 0:0(0) ack 1 <mss 1460,ECN e1b 1 ceb 0 e0b 1,nop,nop,nop,sackOK,nop,wscale 8>
|
|
+0.05 < [ect0] W. 1:1(0) ack 1 win 264 <ECN e0b 1 ceb 0 e1b 1,nop>
|
|
+.002 accept(3, ..., ...) = 4
|
|
|
|
+0.01 %{
|
|
assert tcpi_delivered_ce == 0, tcpi_delivered_ce
|
|
assert tcpi_delivered_ce_bytes == 0, tcpi_delivered_ce_bytes
|
|
}%
|
|
|
|
+0.01 write(4, ..., 1000) = 1000
|
|
+.002 > [ect0] EAP. 1:1001(1000) ack 1 <ECN e1b 1 ceb 0 e0b 1,nop>
|
|
// Fake CE
|
|
+0.05 < [ect0] WA. 1:1(0) ack 1001 win 264 <ECN e0b 1 ceb 1000 e1b 1,nop>
|
|
|
|
+0.01 %{
|
|
assert tcpi_delivered_ce == 1, tcpi_delivered_ce
|
|
assert tcpi_delivered_ce_bytes == 1000, tcpi_delivered_ce_bytes
|
|
}%
|
|
|
|
+0.01 write(4, ..., 1000) = 1000
|
|
+.002 > [ect0] EAP. 1001:2001(1000) ack 1 <ECN e1b 1 ceb 0 e0b 1,nop>
|
|
// Fake ect0
|
|
+0.05 < [ect0] WA. 1:1(0) ack 2001 win 264 <ECN e0b 1001 ceb 1000 e1b 1,nop>
|
|
|
|
+0.01 %{
|
|
assert tcpi_delivered_ce == 1, tcpi_delivered_ce
|
|
assert tcpi_delivered_e0_bytes == 1000, tcpi_delivered_e0_bytes
|
|
}%
|
|
|
|
+0.01 write(4, ..., 1000) = 1000
|
|
+.002 > [ect0] EAP. 2001:3001(1000) ack 1 <ECN e1b 1 ceb 0 e0b 1,nop>
|
|
// Fake ce
|
|
+0.05 < [ect0] EWA. 1:1(0) ack 3001 win 264 <ECN e0b 1001 ceb 2000 e1b 1,nop>
|
|
|
|
+0.01 %{
|
|
assert tcpi_delivered_ce == 2, tcpi_delivered_ce
|
|
assert tcpi_delivered_ce_bytes == 2000, tcpi_delivered_ce_bytes
|
|
}%
|
|
|
|
+0.01 write(4, ..., 1000) = 1000
|
|
+.002 > [ect0] EAP. 3001:4001(1000) ack 1 <ECN e1b 1 ceb 0 e0b 1,nop>
|
|
// Fake ect1
|
|
+0.05 < [ect0] EWA. 1:1(0) ack 4001 win 264 <ECN e0b 1001 ceb 2000 e1b 1001,nop>
|
|
|
|
+0.01 %{
|
|
assert tcpi_delivered_ce == 2, tcpi_delivered_ce
|
|
assert tcpi_delivered_e1_bytes == 1000, tcpi_delivered_e1_bytes
|
|
}%
|
|
|
|
+0.01 write(4, ..., 1000) = 1000
|
|
+.002 > [ect0] EAP. 4001:5001(1000) ack 1 <ECN e1b 1 ceb 0 e0b 1,nop>
|
|
// Fake ce
|
|
+0.05 < [ect0] . 1:1(0) ack 5001 win 264 <ECN e0b 1001 ceb 3000 e1b 1001,nop>
|
|
|
|
+0.01 %{
|
|
assert tcpi_delivered_ce == 3, tcpi_delivered_ce
|
|
assert tcpi_delivered_ce_bytes == 3000, tcpi_delivered_ce_bytes
|
|
}%
|