Dong Chenchen
55a43bae08
net: Remove acked SYN flag from packet in the transmit queue correctly
...
[ Upstream commit f99cd56230f56c8b6b33713c5be4da5d6766be1f ]
syzkaller report:
kernel BUG at net/core/skbuff.c:3452!
invalid opcode: 0000 [#1 ] PREEMPT SMP KASAN PTI
CPU: 0 PID: 0 Comm: swapper/0 Not tainted 6.7.0-rc4-00009-gbee0e7762ad2-dirty #135
RIP: 0010:skb_copy_and_csum_bits (net/core/skbuff.c:3452)
Call Trace:
icmp_glue_bits (net/ipv4/icmp.c:357)
__ip_append_data.isra.0 (net/ipv4/ip_output.c:1165)
ip_append_data (net/ipv4/ip_output.c:1362 net/ipv4/ip_output.c:1341)
icmp_push_reply (net/ipv4/icmp.c:370)
__icmp_send (./include/net/route.h:252 net/ipv4/icmp.c:772)
ip_fragment.constprop.0 (./include/linux/skbuff.h:1234 net/ipv4/ip_output.c:592 net/ipv4/ip_output.c:577)
__ip_finish_output (net/ipv4/ip_output.c:311 net/ipv4/ip_output.c:295)
ip_output (net/ipv4/ip_output.c:427)
__ip_queue_xmit (net/ipv4/ip_output.c:535)
__tcp_transmit_skb (net/ipv4/tcp_output.c:1462)
__tcp_retransmit_skb (net/ipv4/tcp_output.c:3387)
tcp_retransmit_skb (net/ipv4/tcp_output.c:3404)
tcp_retransmit_timer (net/ipv4/tcp_timer.c:604)
tcp_write_timer (./include/linux/spinlock.h:391 net/ipv4/tcp_timer.c:716)
The panic issue was trigered by tcp simultaneous initiation.
The initiation process is as follows:
TCP A TCP B
1. CLOSED CLOSED
2. SYN-SENT --> <SEQ=100><CTL=SYN> ...
3. SYN-RECEIVED <-- <SEQ=300><CTL=SYN> <-- SYN-SENT
4. ... <SEQ=100><CTL=SYN> --> SYN-RECEIVED
5. SYN-RECEIVED --> <SEQ=100><ACK=301><CTL=SYN,ACK> ...
// TCP B: not send challenge ack for ack limit or packet loss
// TCP A: close
tcp_close
tcp_send_fin
if (!tskb && tcp_under_memory_pressure(sk))
tskb = skb_rb_last(&sk->tcp_rtx_queue); //pick SYN_ACK packet
TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN; // set FIN flag
6. FIN_WAIT_1 --> <SEQ=100><ACK=301><END_SEQ=102><CTL=SYN,FIN,ACK> ...
// TCP B: send challenge ack to SYN_FIN_ACK
7. ... <SEQ=301><ACK=101><CTL=ACK> <-- SYN-RECEIVED //challenge ack
// TCP A: <SND.UNA=101>
8. FIN_WAIT_1 --> <SEQ=101><ACK=301><END_SEQ=102><CTL=SYN,FIN,ACK> ... // retransmit panic
__tcp_retransmit_skb //skb->len=0
tcp_trim_head
len = tp->snd_una - TCP_SKB_CB(skb)->seq // len=101-100
__pskb_trim_head
skb->data_len -= len // skb->len=-1, wrap around
... ...
ip_fragment
icmp_glue_bits //BUG_ON
If we use tcp_trim_head() to remove acked SYN from packet that contains data
or other flags, skb->len will be incorrectly decremented. We can remove SYN
flag that has been acked from rtx_queue earlier than tcp_trim_head(), which
can fix the problem mentioned above.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Co-developed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Dong Chenchen <dongchenchen2@huawei.com>
Link: https://lore.kernel.org/r/20231210020200.1539875-1-dongchenchen2@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2023-12-20 17:00:18 +01:00
..
2023-03-17 08:50:25 +01:00
2023-10-25 12:03:12 +02:00
2022-09-29 07:17:59 +02:00
2023-10-10 22:00:42 +02:00
2022-09-10 17:27:32 -07:00
2022-07-08 12:10:33 +01:00
2023-08-30 16:11:02 +02:00
2023-09-19 12:28:08 +02:00
2023-06-28 11:12:29 +02:00
2023-10-25 12:03:06 +02:00
2023-03-22 13:33:50 +01:00
2022-04-30 15:12:58 +01:00
2023-10-25 12:03:11 +02:00
2023-10-25 12:03:11 +02:00
2022-08-29 12:47:15 +01:00
2022-08-25 10:33:21 +02:00
2023-04-13 16:55:21 +02:00
2023-12-08 08:51:17 +01:00
2023-10-25 12:03:12 +02:00
2023-08-11 12:08:14 +02:00
2022-04-30 15:12:58 +01:00
2023-11-28 17:07:04 +00:00
2023-07-27 08:50:45 +02:00
2022-07-08 12:10:33 +01:00
2022-07-15 11:49:55 +01:00
2023-12-13 18:39:09 +01:00
2023-09-19 12:28:01 +02:00
2023-10-10 22:00:42 +02:00
2023-08-11 12:08:15 +02:00
2023-08-16 18:27:27 +02:00
2023-03-22 13:33:46 +01:00
2023-08-23 17:52:32 +02:00
2022-09-29 07:18:00 +02:00
2022-08-04 11:31:20 -07:00
2022-10-03 07:59:06 +01:00
2022-06-24 11:34:38 +01:00
2022-09-22 13:02:10 -07:00
2022-11-16 13:02:04 +00:00
2023-02-01 08:34:45 +01:00
2022-05-16 13:03:29 +02:00
2023-10-10 22:00:42 +02:00
2023-04-13 16:55:24 +02:00
2022-09-20 10:21:49 -07:00
2023-04-13 16:55:23 +02:00
2023-08-11 12:08:15 +02:00
2023-12-03 07:32:07 +01:00
2023-11-20 11:51:54 +01:00
2023-10-19 23:08:54 +02:00
2022-07-21 20:59:42 -07:00
2022-04-06 12:05:41 -07:00
2023-10-25 12:03:13 +02:00
2022-10-16 15:27:07 -07:00
2022-04-07 20:33:15 -07:00
2022-07-21 20:59:42 -07:00
2022-07-21 20:59:42 -07:00
2022-09-20 10:21:49 -07:00
2023-07-27 08:50:49 +02:00
2022-04-06 12:05:41 -07:00
2022-04-06 12:05:41 -07:00
2022-04-06 12:05:41 -07:00
2022-04-06 12:05:41 -07:00
2023-12-13 18:39:11 +01:00
2023-10-25 12:03:04 +02:00
2022-04-06 12:05:41 -07:00
2023-11-20 11:51:53 +01:00
2023-07-27 08:50:45 +02:00
2022-04-06 12:05:41 -07:00
2023-06-14 11:15:20 +02:00
2023-12-20 17:00:18 +01:00
2022-04-28 13:02:01 -07:00
2023-10-25 12:03:06 +02:00
2022-04-06 12:05:41 -07:00
2023-09-13 09:42:32 +02:00
2023-01-24 07:24:43 +01:00
2022-04-06 12:05:41 -07:00
2022-04-06 12:05:41 -07:00
2022-04-06 12:05:41 -07:00
2022-04-06 12:05:41 -07:00
2023-12-13 18:39:09 +01:00
2023-03-17 08:50:24 +01:00
2022-04-12 15:00:25 +02:00
2021-11-24 17:21:42 -08:00
2022-12-31 13:32:27 +01:00
2023-11-20 11:51:52 +01:00
2023-05-30 14:03:20 +01:00
2023-06-28 11:12:28 +02:00
2022-06-09 21:52:55 -07:00
2022-06-08 10:10:13 -07:00
2022-09-29 07:18:00 +02:00