From: Sven Eckelmann <sven@narfation.org>
To: marek.lindner@mailbox.org, sw@simonwunderlich.de, antonio@mandelbit.com
Cc: "David Lee" <david.lee@trailofbits.com>,
"Kyle Zeng" <kylebot@openai.com>,
"Dominik 'Disconnect3d' Czarnota"
<dominik.czarnota@trailofbits.com>,
b.a.t.m.a.n@lists.open-mesh.org, linux-kernel@vger.kernel.org,
"David S. Miller" <davem@davemloft.net>,
"Eric Dumazet" <edumazet@google.com>,
"Jakub Kicinski" <kuba@kernel.org>,
"Paolo Abeni" <pabeni@redhat.com>,
netdev@vger.kernel.org,
"Linus Lüssing" <linus.luessing@c0d3.blue>
Subject: Re: [PATCH] batman-adv: reject unrepresentable multicast TVLV offsets
Date: Fri, 31 Jul 2026 21:05:22 +0200 [thread overview]
Message-ID: <4820667.LvFx2qVVIh@sven-desktop> (raw)
In-Reply-To: <178551276854.62695.15966621050711216654.b4-review@b4>
[-- Attachment #1: Type: text/plain, Size: 1377 bytes --]
On Friday, 31 July 2026 17:46:08 CEST Sven Eckelmann wrote:
> >
> >
> > diff --git a/net/batman-adv/tvlv.c b/net/batman-adv/tvlv.c
> > index 5600aaf00627c..8354c62bd86a7 100644
> > --- a/net/batman-adv/tvlv.c
> > +++ b/net/batman-adv/tvlv.c
> > @@ -437,6 +437,9 @@ static int batadv_tvlv_call_handler(struct batadv_priv *bat_priv,
> > return NET_RX_SUCCESS;
> >
> > tvlv_offset = (unsigned char *)tvlv_value - skb->data;
> > + if (skb_headroom(skb) + tvlv_offset + tvlv_value_len >= U16_MAX)
> > + return -EINVAL;
> > +
>
> Just for documentation purposes:
>
> This is (skb->data - skb->head) + tvlv_offset + tvlv_value_len
>
> The calculation in skb_set_transport_header():
>
> offset = skb->data - skb->head
> offset += (tvlv_offset + tvlv_value_len)
>
> > skb_set_network_header(skb, tvlv_offset);
> > skb_set_transport_header(skb, tvlv_offset + tvlv_value_len);
> >
I've checked a little bit further and it might not be the preferred solution.
Please check Eric Dumazet's
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=d45cf1e7d7180256e17c9ce88e32e8061a7887fe
for a similar problem in IPv6. It is basically the same but without the
additional offset parameter which skb_set_transport_header_careful would need.
Regards,
Sven
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
prev parent reply other threads:[~2026-07-31 19:05 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260731135222.566367-1-david.lee@trailofbits.com>
2026-07-31 15:46 ` [PATCH] batman-adv: reject unrepresentable multicast TVLV offsets Sven Eckelmann
2026-07-31 19:05 ` Sven Eckelmann [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4820667.LvFx2qVVIh@sven-desktop \
--to=sven@narfation.org \
--cc=antonio@mandelbit.com \
--cc=b.a.t.m.a.n@lists.open-mesh.org \
--cc=davem@davemloft.net \
--cc=david.lee@trailofbits.com \
--cc=dominik.czarnota@trailofbits.com \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=kylebot@openai.com \
--cc=linus.luessing@c0d3.blue \
--cc=linux-kernel@vger.kernel.org \
--cc=marek.lindner@mailbox.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sw@simonwunderlich.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox