]> www.infradead.org Git - users/jedix/linux-maple.git/commit
tls: fix handling of zero-length records on the rx_list
authorJakub Kicinski <kuba@kernel.org>
Wed, 20 Aug 2025 02:19:51 +0000 (19:19 -0700)
committerJakub Kicinski <kuba@kernel.org>
Thu, 21 Aug 2025 14:52:30 +0000 (07:52 -0700)
commit62708b9452f8eb77513115b17c4f8d1a22ebf843
treee2d891a5fb8f3ca90a60b26f3678e80a2d9dd651
parent9f6b606b6b37e61427412708411e8e04b1a858e8
tls: fix handling of zero-length records on the rx_list

Each recvmsg() call must process either
 - only contiguous DATA records (any number of them)
 - one non-DATA record

If the next record has different type than what has already been
processed we break out of the main processing loop. If the record
has already been decrypted (which may be the case for TLS 1.3 where
we don't know type until decryption) we queue the pending record
to the rx_list. Next recvmsg() will pick it up from there.

Queuing the skb to rx_list after zero-copy decrypt is not possible,
since in that case we decrypted directly to the user space buffer,
and we don't have an skb to queue (darg.skb points to the ciphertext
skb for access to metadata like length).

Only data records are allowed zero-copy, and we break the processing
loop after each non-data record. So we should never zero-copy and
then find out that the record type has changed. The corner case
we missed is when the initial record comes from rx_list, and it's
zero length.

Reported-by: Muhammad Alifa Ramdhan <ramdhan@starlabs.sg>
Reported-by: Billy Jheng Bing-Jhong <billy@starlabs.sg>
Fixes: 84c61fe1a75b ("tls: rx: do not use the standard strparser")
Reviewed-by: Sabrina Dubroca <sd@queasysnail.net>
Link: https://patch.msgid.link/20250820021952.143068-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/tls/tls_sw.c