All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] Bluetooth: RFCOMM: Use skb_trim to trim checksum
@ 2022-06-10 11:07 Soenke Huster
  2022-06-10 11:57 ` [v2] " bluez.test.bot
  2022-06-10 13:59 ` [PATCH v2] " Eric Dumazet
  0 siblings, 2 replies; 7+ messages in thread
From: Soenke Huster @ 2022-06-10 11:07 UTC (permalink / raw)
  To: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
  Cc: Soenke Huster, linux-bluetooth, netdev, linux-kernel

As skb->tail might be zero, it can underflow. This leads to a page
fault: skb_tail_pointer simply adds skb->tail (which is now MAX_UINT)
to skb->head.

    BUG: unable to handle page fault for address: ffffed1021de29ff
    #PF: supervisor read access in kernel mode
    #PF: error_code(0x0000) - not-present page
    RIP: 0010:rfcomm_run+0x831/0x4040 (net/bluetooth/rfcomm/core.c:1751)

By using skb_trim instead of the direct manipulation, skb->tail
is reset. Thus, the correct pointer to the checksum is used.

Signed-off-by: Soenke Huster <soenke.huster@eknoes.de>
---
v2: Clarified how the bug triggers, minimize code change

 net/bluetooth/rfcomm/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index 7324764384b6..443b55edb3ab 100644
--- a/net/bluetooth/rfcomm/core.c
+++ b/net/bluetooth/rfcomm/core.c
@@ -1747,7 +1747,7 @@ static struct rfcomm_session *rfcomm_recv_frame(struct rfcomm_session *s,
 	type = __get_type(hdr->ctrl);
 
 	/* Trim FCS */
-	skb->len--; skb->tail--;
+	skb_trim(skb, skb->len - 1);
 	fcs = *(u8 *)skb_tail_pointer(skb);
 
 	if (__check_fcs(skb->data, type, fcs)) {
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-06-14 14:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-10 11:07 [PATCH v2] Bluetooth: RFCOMM: Use skb_trim to trim checksum Soenke Huster
2022-06-10 11:57 ` [v2] " bluez.test.bot
2022-06-10 13:59 ` [PATCH v2] " Eric Dumazet
2022-06-10 15:35   ` Sönke Huster
2022-06-10 16:55     ` Eric Dumazet
2022-06-14 13:42       ` Sönke Huster
2022-06-14 14:17         ` Eric Dumazet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.