Skip to content

Commit 21f7fb3

Browse files
q2venkuba-moo
authored andcommitted
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>
1 parent 5920f15 commit 21f7fb3

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

0 commit comments

Comments
 (0)