Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftest: packetdrill: Import opt34/*-trigger-rst.pkt.

This imports the non-experimental version of opt34/*-trigger-rst.pkt.

| accept() | SYN data |
-----------------------------------+----------+----------+
listener-closed-trigger-rst.pkt | no | unread |
unread-data-closed-trigger-rst.pkt | yes | unread |

Both files test that close()ing a SYN_RECV socket with unread SYN data
triggers RST.

The files are renamed to have the common prefix, trigger-rst.

Signed-off-by: Kuniyuki Iwashima <kuniyu@google.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Link: https://patch.msgid.link/20250927213022.1850048-11-kuniyu@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Kuniyuki Iwashima and committed by
Jakub Kicinski
21f7fb31 5920f154

+44
+21
tools/testing/selftests/net/packetdrill/tcp_fastopen_server_trigger-rst-listener-closed.pkt
··· 1 + // SPDX-License-Identifier: GPL-2.0 2 + // 3 + // Close a listener socket with pending TFO child. 4 + // This will trigger RST pkt to go out. 5 + 6 + `./defaults.sh` 7 + 8 + 0 socket(..., SOCK_STREAM|SOCK_NONBLOCK, IPPROTO_TCP) = 3 9 + +0 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0 10 + +0 bind(3, ..., ...) = 0 11 + +0 listen(3, 1) = 0 12 + +0 setsockopt(3, SOL_TCP, TCP_FASTOPEN, [1], 4) = 0 13 + 14 + +0 < S 0:10(10) win 32792 <mss 1460,sackOK,nop,nop,FO TFO_COOKIE,nop,nop> 15 + +0 > S. 0:0(0) ack 11 <mss 1460,nop,nop,sackOK> 16 + 17 + // RST pkt is generated for each not-yet-accepted TFO child. 18 + // inet_csk_listen_stop() -> inet_child_forget() -> tcp_disconnect() 19 + // -> tcp_need_reset() is true for SYN_RECV 20 + +0 close(3) = 0 21 + +0 > R. 1:1(0) ack 11
+23
tools/testing/selftests/net/packetdrill/tcp_fastopen_server_trigger-rst-unread-data-closed.pkt
··· 1 + // SPDX-License-Identifier: GPL-2.0 2 + // 3 + // Close a TFO socket with unread data. 4 + // This will trigger a RST pkt. 5 + 6 + `./defaults.sh` 7 + 8 + 0 socket(..., SOCK_STREAM|SOCK_NONBLOCK, IPPROTO_TCP) = 3 9 + +0 setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0 10 + +0 bind(3, ..., ...) = 0 11 + +0 listen(3, 1) = 0 12 + +0 setsockopt(3, SOL_TCP, TCP_FASTOPEN, [1], 4) = 0 13 + 14 + +0 < S 0:10(10) win 32792 <mss 1460,sackOK,nop,nop,FO TFO_COOKIE,nop,nop> 15 + +0 > S. 0:0(0) ack 11 <mss 1460,nop,nop,sackOK> 16 + 17 + +0 accept(3, ..., ...) = 4 18 + +0 %{ assert (tcpi_options & TCPI_OPT_SYN_DATA) != 0, tcpi_options }% 19 + +0 %{ assert tcpi_state == TCP_SYN_RECV, tcpi_state }% 20 + 21 + // data_was_unread == true in __tcp_close() 22 + +0 close(4) = 0 23 + +0 > R. 1:1(0) ack 11