* [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints
@ 2026-03-19 7:32 bestswngs
2026-03-19 7:54 ` Florian Westphal
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: bestswngs @ 2026-03-19 7:32 UTC (permalink / raw)
To: security
Cc: edumazet, davem, kuba, pabeni, horms, netdev, linux-kernel, xmei5,
Weiming Shi
From: Weiming Shi <bestswngs@gmail.com>
nfnl_osf_add_callback() validates opt_num bounds and string
NUL-termination but does not check individual option length fields.
A zero-length option causes nf_osf_match_one() to enter the option
matching loop even when foptsize sums to zero, which matches packets
with no TCP options where ctx->optp is NULL:
Oops: general protection fault, probably for non-canonical address 0xdffffc0000000000: 0000 [#1] SMP KASAN NOPTI
KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
RIP: 0010:nf_osf_match_one (net/netfilter/nfnetlink_osf.c:98)
Call Trace:
<IRQ>
nf_osf_match (net/netfilter/nfnetlink_osf.c:227)
xt_osf_match_packet (net/netfilter/xt_osf.c:32)
ipt_do_table (net/ipv4/netfilter/ip_tables.c:293)
nf_hook_slow (net/netfilter/core.c:623)
ip_local_deliver (net/ipv4/ip_input.c:262)
ip_rcv (net/ipv4/ip_input.c:573)
</IRQ>
Kernel panic - not syncing: Fatal exception in interrupt
Additionally, an MSS option (kind=2) with length < 4 causes
out-of-bounds reads when nf_osf_match_one() unconditionally accesses
optp[2] and optp[3] for MSS value extraction. While RFC 9293
section 3.2 specifies that the MSS option is always exactly 4
bytes (Kind=2, Length=4), the check uses "< 4" rather than
"!= 4" because lengths greater than 4 do not cause memory
safety issues -- the buffer is guaranteed to be at least
foptsize bytes by the ctx->optsize == foptsize check.
Reject fingerprints where any option has zero length, or where an MSS
option has length less than 4, at add time rather than trusting these
values in the packet matching hot path.
Fixes: 11eeef41d5f6 ("netfilter: passive OS fingerprint xtables match")
Reported-by: Xiang Mei <xmei5@asu.edu>
Signed-off-by: Weiming Shi <bestswngs@gmail.com>
---
net/netfilter/nfnetlink_osf.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/net/netfilter/nfnetlink_osf.c b/net/netfilter/nfnetlink_osf.c
index 94e3eac5743a..c35b831dac5a 100644
--- a/net/netfilter/nfnetlink_osf.c
+++ b/net/netfilter/nfnetlink_osf.c
@@ -303,6 +303,7 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
struct nf_osf_user_finger *f;
struct nf_osf_finger *kf = NULL, *sf;
int err = 0;
+ int i;
if (!capable(CAP_NET_ADMIN))
return -EPERM;
@@ -318,6 +319,13 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
if (f->opt_num > ARRAY_SIZE(f->opt))
return -EINVAL;
+ for (i = 0; i < f->opt_num; i++) {
+ if (!f->opt[i].length)
+ return -EINVAL;
+ if (f->opt[i].kind == OSFOPT_MSS && f->opt[i].length < 4)
+ return -EINVAL;
+ }
+
if (!memchr(f->genre, 0, MAXGENRELEN) ||
!memchr(f->subtype, 0, MAXGENRELEN) ||
!memchr(f->version, 0, MAXGENRELEN))
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints
2026-03-19 7:32 [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints bestswngs
@ 2026-03-19 7:54 ` Florian Westphal
2026-03-19 7:55 ` Greg KH
2026-03-19 8:04 ` Florian Westphal
2 siblings, 0 replies; 5+ messages in thread
From: Florian Westphal @ 2026-03-19 7:54 UTC (permalink / raw)
To: bestswngs
Cc: security, edumazet, davem, kuba, pabeni, horms, netdev,
linux-kernel, xmei5
bestswngs@gmail.com <bestswngs@gmail.com> wrote:
> From: Weiming Shi <bestswngs@gmail.com>
>
> nfnl_osf_add_callback() validates opt_num bounds and string
> NUL-termination but does not check individual option length fields.
> A zero-length option causes nf_osf_match_one() to enter the option
> matching loop even when foptsize sums to zero, which matches packets
> with no TCP options where ctx->optp is NULL:
Applied, thanks.
How many people still use this feature?
Does this even work reliably in 2026?
I'm considering deprecation notice + eventual removal of this feature.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints
2026-03-19 7:32 [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints bestswngs
2026-03-19 7:54 ` Florian Westphal
@ 2026-03-19 7:55 ` Greg KH
2026-03-19 8:04 ` Florian Westphal
2 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2026-03-19 7:55 UTC (permalink / raw)
To: bestswngs
Cc: security, edumazet, davem, kuba, pabeni, horms, netdev,
linux-kernel, xmei5
On Thu, Mar 19, 2026 at 03:32:44PM +0800, bestswngs@gmail.com wrote:
> From: Weiming Shi <bestswngs@gmail.com>
>
> nfnl_osf_add_callback() validates opt_num bounds and string
> NUL-termination but does not check individual option length fields.
> A zero-length option causes nf_osf_match_one() to enter the option
> matching loop even when foptsize sums to zero, which matches packets
> with no TCP options where ctx->optp is NULL:
>
> Oops: general protection fault, probably for non-canonical address 0xdffffc0000000000: 0000 [#1] SMP KASAN NOPTI
> KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
> RIP: 0010:nf_osf_match_one (net/netfilter/nfnetlink_osf.c:98)
> Call Trace:
> <IRQ>
> nf_osf_match (net/netfilter/nfnetlink_osf.c:227)
> xt_osf_match_packet (net/netfilter/xt_osf.c:32)
> ipt_do_table (net/ipv4/netfilter/ip_tables.c:293)
> nf_hook_slow (net/netfilter/core.c:623)
> ip_local_deliver (net/ipv4/ip_input.c:262)
> ip_rcv (net/ipv4/ip_input.c:573)
> </IRQ>
> Kernel panic - not syncing: Fatal exception in interrupt
>
> Additionally, an MSS option (kind=2) with length < 4 causes
> out-of-bounds reads when nf_osf_match_one() unconditionally accesses
> optp[2] and optp[3] for MSS value extraction. While RFC 9293
> section 3.2 specifies that the MSS option is always exactly 4
> bytes (Kind=2, Length=4), the check uses "< 4" rather than
> "!= 4" because lengths greater than 4 do not cause memory
> safety issues -- the buffer is guaranteed to be at least
> foptsize bytes by the ctx->optsize == foptsize check.
>
> Reject fingerprints where any option has zero length, or where an MSS
> option has length less than 4, at add time rather than trusting these
> values in the packet matching hot path.
>
> Fixes: 11eeef41d5f6 ("netfilter: passive OS fingerprint xtables match")
> Reported-by: Xiang Mei <xmei5@asu.edu>
> Signed-off-by: Weiming Shi <bestswngs@gmail.com>
> ---
> net/netfilter/nfnetlink_osf.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/net/netfilter/nfnetlink_osf.c b/net/netfilter/nfnetlink_osf.c
> index 94e3eac5743a..c35b831dac5a 100644
> --- a/net/netfilter/nfnetlink_osf.c
> +++ b/net/netfilter/nfnetlink_osf.c
> @@ -303,6 +303,7 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
> struct nf_osf_user_finger *f;
> struct nf_osf_finger *kf = NULL, *sf;
> int err = 0;
> + int i;
>
> if (!capable(CAP_NET_ADMIN))
> return -EPERM;
> @@ -318,6 +319,13 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
> if (f->opt_num > ARRAY_SIZE(f->opt))
> return -EINVAL;
>
> + for (i = 0; i < f->opt_num; i++) {
> + if (!f->opt[i].length)
> + return -EINVAL;
> + if (f->opt[i].kind == OSFOPT_MSS && f->opt[i].length < 4)
> + return -EINVAL;
> + }
> +
> if (!memchr(f->genre, 0, MAXGENRELEN) ||
> !memchr(f->subtype, 0, MAXGENRELEN) ||
> !memchr(f->version, 0, MAXGENRELEN))
> --
> 2.43.0
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- You have marked a patch with a "Fixes:" tag for a commit that is in an
older released kernel, yet you do not have a cc: stable line in the
signed-off-by area at all, which means that the patch will not be
applied to any older kernel releases. To properly fix this, please
follow the documented rules in the
Documentation/process/stable-kernel-rules.rst file for how to resolve
this.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints
2026-03-19 7:32 [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints bestswngs
2026-03-19 7:54 ` Florian Westphal
2026-03-19 7:55 ` Greg KH
@ 2026-03-19 8:04 ` Florian Westphal
2026-03-19 8:26 ` Weiming Shi
2 siblings, 1 reply; 5+ messages in thread
From: Florian Westphal @ 2026-03-19 8:04 UTC (permalink / raw)
To: bestswngs
Cc: security, edumazet, davem, kuba, pabeni, horms, netdev,
linux-kernel, xmei5
bestswngs@gmail.com <bestswngs@gmail.com> wrote:
> From: Weiming Shi <bestswngs@gmail.com>
>
> nfnl_osf_add_callback() validates opt_num bounds and string
> NUL-termination but does not check individual option length fields.
> A zero-length option causes nf_osf_match_one() to enter the option
> matching loop even when foptsize sums to zero, which matches packets
> with no TCP options where ctx->optp is NULL:
Would you mind if i squash:
diff --git a/net/netfilter/nfnetlink_osf.c b/net/netfilter/nfnetlink_osf.c
--- a/net/netfilter/nfnetlink_osf.c
+++ b/net/netfilter/nfnetlink_osf.c
@@ -302,6 +302,7 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
{
struct nf_osf_user_finger *f;
struct nf_osf_finger *kf = NULL, *sf;
+ unsigned int tot_opt_len = 0;
int err = 0;
int i;
@@ -320,10 +321,14 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
return -EINVAL;
for (i = 0; i < f->opt_num; i++) {
- if (!f->opt[i].length)
+ if (!f->opt[i].length || f->opt[i].length > MAX_IPOPTLEN)
return -EINVAL;
if (f->opt[i].kind == OSFOPT_MSS && f->opt[i].length < 4)
return -EINVAL;
+
+ tot_opt_len += f->opt[i].length;
+ if (tot_opt_len > MAX_IPOPTLEN)
+ return -EINVAL;
}
if (!memchr(f->genre, 0, MAXGENRELEN) ||
There is a runtime check (WTF) for this already, but arguably it
better belongs here.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints
2026-03-19 8:04 ` Florian Westphal
@ 2026-03-19 8:26 ` Weiming Shi
0 siblings, 0 replies; 5+ messages in thread
From: Weiming Shi @ 2026-03-19 8:26 UTC (permalink / raw)
To: Florian Westphal
Cc: edumazet, davem, kuba, pabeni, horms, netdev, linux-kernel, xmei5
On 26-03-19 09:04, Florian Westphal wrote:
> bestswngs@gmail.com <bestswngs@gmail.com> wrote:
> > From: Weiming Shi <bestswngs@gmail.com>
> >
> > nfnl_osf_add_callback() validates opt_num bounds and string
> > NUL-termination but does not check individual option length fields.
> > A zero-length option causes nf_osf_match_one() to enter the option
> > matching loop even when foptsize sums to zero, which matches packets
> > with no TCP options where ctx->optp is NULL:
>
> Would you mind if i squash:
>
> diff --git a/net/netfilter/nfnetlink_osf.c b/net/netfilter/nfnetlink_osf.c
> --- a/net/netfilter/nfnetlink_osf.c
> +++ b/net/netfilter/nfnetlink_osf.c
> @@ -302,6 +302,7 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
> {
> struct nf_osf_user_finger *f;
> struct nf_osf_finger *kf = NULL, *sf;
> + unsigned int tot_opt_len = 0;
> int err = 0;
> int i;
>
> @@ -320,10 +321,14 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
> return -EINVAL;
>
> for (i = 0; i < f->opt_num; i++) {
> - if (!f->opt[i].length)
> + if (!f->opt[i].length || f->opt[i].length > MAX_IPOPTLEN)
> return -EINVAL;
> if (f->opt[i].kind == OSFOPT_MSS && f->opt[i].length < 4)
> return -EINVAL;
> +
> + tot_opt_len += f->opt[i].length;
> + if (tot_opt_len > MAX_IPOPTLEN)
> + return -EINVAL;
> }
>
> if (!memchr(f->genre, 0, MAXGENRELEN) ||
>
> There is a runtime check (WTF) for this already, but arguably it
> better belongs here.
Hi Florian,
No problem, please go ahead. Thanks for improving it.
Weiming Shi
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-03-19 8:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-19 7:32 [PATCH net] nfnetlink_osf: validate individual option lengths in fingerprints bestswngs
2026-03-19 7:54 ` Florian Westphal
2026-03-19 7:55 ` Greg KH
2026-03-19 8:04 ` Florian Westphal
2026-03-19 8:26 ` Weiming Shi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox