mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH net v2] ppp_async: drop the errored frame instead of resetting its headroom
@ 2026-09-03  6:21 Vlatko Kosturjak
  2026-09-03  8:24 ` Qingfang Deng
  2026-09-03  8:44 ` Eric Dumazet
  0 siblings, 2 replies; 3+ messages in thread
From: Vlatko Kosturjak @ 2026-09-03  6:21 UTC (permalink / raw)
  To: linux-ppp, netdev
  Cc: Eric Dumazet, Andrew Lunn, David S. Miller, Jakub Kicinski,
	Paolo Abeni, linux-kernel

ppp_receive_nonmp_frame() prepends a two-byte direction tag before running
the pass/active BPF filters:

	*(__be16 *)skb_push(skb, 2) = htons(PPP_FILTER_INBOUND_TAG);

Nothing on the receive path guarantees those two bytes of headroom. The
frame-error path in ppp_async's process_input_packet() resets a reused skb's
headroom to zero while claiming to restore it to a freshly allocated state -
but a fresh skb from dev_alloc_skb() carries NET_SKB_PAD:

	err:
		if (skb) {
			/* make skb appear as freshly allocated */
			skb_trim(skb, 0);
			skb_reserve(skb, - skb_headroom(skb));
		}

ap->rpkt still points at that skb, so the next frame is reassembled into it
with no headroom at all. A peer that sends a bad-FCS frame followed by one
beginning ff 03 then leaves a single byte of headroom by the time the filter
tag is pushed, which lands one byte below skb->head:

  skbuff: skb_under_panic: len:49 put:2 head:ffff888003c10000
          data:ffff888003c0ffff tail:0x30 end:0x640 dev:<NULL>
  kernel BUG at net/core/skbuff.c:214!
  RIP: 0010:skb_panic+0x13e/0x230
  Call Trace:
   skb_push+0xbd/0x100
   ppp_receive_nonmp_frame+0x48a/0x1d10
   ppp_input+0x4e9/0x2f80
   ppp_async_process+0x2a/0xe0
   tasklet_action_common+0x20f/0x8a0
   handle_softirqs+0x18e/0x590
  Kernel panic - not syncing: Fatal exception in interrupt

Zeroing the headroom violates the NET_SKB_PAD guarantee that dev_alloc_skb()
gives the rest of the receive path. Besides the filter panic above, when CCP
compression is enabled ppp_decompress_frame() hands skb->data - 2 to
->decompress()/->incomp(), which then reads out of bounds before skb->head
for the same reason.

Rather than restore the headroom, drop the errored frame - as ppp_synctty
already does on its error path - and clear ap->rpkt so the next frame is
reassembled into a fresh skb with proper headroom. This is simpler and fixes
both the filter under-panic and the CCP out-of-bounds read.

The original V1 of this patch made room in ppp_receive_nonmp_frame() with
skb_cow_head(); Eric pointed out that fixing the root cause in the transport
is the right approach.

Found by fuzzing the PPP receive path with a mutating peer on a pty; it is an
interesting (remote) DoS: root configures PPP, the peer supplies two crashing
frames. The reproducer (repro-ppp-skb.c, unchanged from v1) panics in about a
second, and returns cleanly with this applied.

Fixes: 6722e78c9005 ("[PPP]: handle misaligned accesses")
Suggested-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Vlatko Kosturjak <kost@linux.hr>
---
v2:
 - drop the frame in ppp_async instead of making headroom in ppp_generic
   (Eric Dumazet); this also fixes the ppp_decompress_frame() skb->data - 2
   out-of-bounds read that the same headroom reset caused
 - Fixes: the commit that introduced the skb_reserve() reset, not 2.6.12-rc2
 - [PATCH net]

v1: https://lore.kernel.org/netdev/CAPAw8HE6QgnePG=UUfU2d9mYXNpY2O_kp5v0J82VuVoR6gwWOg@mail.gmail.com/

 drivers/net/ppp/ppp_async.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ppp/ppp_async.c b/drivers/net/ppp/ppp_async.c
--- a/drivers/net/ppp/ppp_async.c
+++ b/drivers/net/ppp/ppp_async.c
@@ -812,9 +812,6 @@ process_input_packet(struct asyncppp *ap)
  err:
 	/* frame had an error, remember that, reset SC_TOSS & SC_ESCAPE */
 	ap->state = SC_PREV_ERROR;
-	if (skb) {
-		/* make skb appear as freshly allocated */
-		skb_trim(skb, 0);
-		skb_reserve(skb, - skb_headroom(skb));
-	}
+	kfree_skb(skb);
+	ap->rpkt = NULL;
 }

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

* Re: [PATCH net v2] ppp_async: drop the errored frame instead of resetting its headroom
  2026-09-03  6:21 [PATCH net v2] ppp_async: drop the errored frame instead of resetting its headroom Vlatko Kosturjak
@ 2026-09-03  8:24 ` Qingfang Deng
  2026-09-03  8:44 ` Eric Dumazet
  1 sibling, 0 replies; 3+ messages in thread
From: Qingfang Deng @ 2026-09-03  8:24 UTC (permalink / raw)
  To: Vlatko Kosturjak, linux-ppp, netdev
  Cc: Eric Dumazet, Andrew Lunn, David S. Miller, Jakub Kicinski,
	Paolo Abeni, linux-kernel

Hi,

On 2026/9/3 14:21, Vlatko Kosturjak wrote:
> ppp_receive_nonmp_frame() prepends a two-byte direction tag before running
> the pass/active BPF filters:
>
> 	*(__be16 *)skb_push(skb, 2) = htons(PPP_FILTER_INBOUND_TAG);
>
> Nothing on the receive path guarantees those two bytes of headroom. The
> frame-error path in ppp_async's process_input_packet() resets a reused skb's
> headroom to zero while claiming to restore it to a freshly allocated state -
> but a fresh skb from dev_alloc_skb() carries NET_SKB_PAD:
>
> 	err:
> 		if (skb) {
> 			/* make skb appear as freshly allocated */
> 			skb_trim(skb, 0);
> 			skb_reserve(skb, - skb_headroom(skb));
> 		}
>
> ap->rpkt still points at that skb, so the next frame is reassembled into it
> with no headroom at all. A peer that sends a bad-FCS frame followed by one
> beginning ff 03 then leaves a single byte of headroom by the time the filter
> tag is pushed, which lands one byte below skb->head:
>
>    skbuff: skb_under_panic: len:49 put:2 head:ffff888003c10000
>            data:ffff888003c0ffff tail:0x30 end:0x640 dev:<NULL>
>    kernel BUG at net/core/skbuff.c:214!
>    RIP: 0010:skb_panic+0x13e/0x230
>    Call Trace:
>     skb_push+0xbd/0x100
>     ppp_receive_nonmp_frame+0x48a/0x1d10
>     ppp_input+0x4e9/0x2f80
>     ppp_async_process+0x2a/0xe0
>     tasklet_action_common+0x20f/0x8a0
>     handle_softirqs+0x18e/0x590
>    Kernel panic - not syncing: Fatal exception in interrupt
>
> Zeroing the headroom violates the NET_SKB_PAD guarantee that dev_alloc_skb()
> gives the rest of the receive path. Besides the filter panic above, when CCP
> compression is enabled ppp_decompress_frame() hands skb->data - 2 to
> ->decompress()/->incomp(), which then reads out of bounds before skb->head
> for the same reason.
>
> Rather than restore the headroom, drop the errored frame - as ppp_synctty
> already does on its error path - and clear ap->rpkt so the next frame is
> reassembled into a fresh skb with proper headroom. This is simpler and fixes
> both the filter under-panic and the CCP out-of-bounds read.
>
> The original V1 of this patch made room in ppp_receive_nonmp_frame() with
> skb_cow_head(); Eric pointed out that fixing the root cause in the transport
> is the right approach.
>
> Found by fuzzing the PPP receive path with a mutating peer on a pty; it is an
> interesting (remote) DoS: root configures PPP, the peer supplies two crashing
> frames. The reproducer (repro-ppp-skb.c, unchanged from v1) panics in about a
> second, and returns cleanly with this applied.
>
> Fixes: 6722e78c9005 ("[PPP]: handle misaligned accesses")

Nit: the skb->len == 0 alignment check introduced by said commit is now 
redundant and can be moved back into the allocation branch.

> Suggested-by: Eric Dumazet <edumazet@google.com>
> Signed-off-by: Vlatko Kosturjak <kost@linux.hr>
Kind regards,

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

* Re: [PATCH net v2] ppp_async: drop the errored frame instead of resetting its headroom
  2026-09-03  6:21 [PATCH net v2] ppp_async: drop the errored frame instead of resetting its headroom Vlatko Kosturjak
  2026-09-03  8:24 ` Qingfang Deng
@ 2026-09-03  8:44 ` Eric Dumazet
  1 sibling, 0 replies; 3+ messages in thread
From: Eric Dumazet @ 2026-09-03  8:44 UTC (permalink / raw)
  To: Vlatko Kosturjak
  Cc: linux-ppp, netdev, Andrew Lunn, David S. Miller, Jakub Kicinski,
	Paolo Abeni, linux-kernel

On Thu, Sep 3, 2026 at 8:21 AM Vlatko Kosturjak <kost@linux.hr> wrote:
>
> ppp_receive_nonmp_frame() prepends a two-byte direction tag before running
> the pass/active BPF filters:
>
>         *(__be16 *)skb_push(skb, 2) = htons(PPP_FILTER_INBOUND_TAG);
>
> Nothing on the receive path guarantees those two bytes of headroom. The
> frame-error path in ppp_async's process_input_packet() resets a reused skb's
> headroom to zero while claiming to restore it to a freshly allocated state -
> but a fresh skb from dev_alloc_skb() carries NET_SKB_PAD:
>

Reviewed-by: Eric Dumazet <edumazet@google.com>

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

end of thread, other threads:[~2026-09-03  8:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-03  6:21 [PATCH net v2] ppp_async: drop the errored frame instead of resetting its headroom Vlatko Kosturjak
2026-09-03  8:24 ` Qingfang Deng
2026-09-03  8:44 ` Eric Dumazet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®