Skip to content
/ linux Public

Commit 224f467

Browse files
winmingregkh
authored andcommitted
nfnetlink_osf: validate individual option lengths in fingerprints
[ Upstream commit dbdfaae ] 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 KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007] RIP: 0010:nf_osf_match_one (net/netfilter/nfnetlink_osf.c:98) Call Trace: 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) 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: 11eeef4 ("netfilter: passive OS fingerprint xtables match") Reported-by: Xiang Mei <xmei5@asu.edu> Signed-off-by: Weiming Shi <bestswngs@gmail.com> Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent adee343 commit 224f467

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

net/netfilter/nfnetlink_osf.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,9 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
302302
{
303303
struct nf_osf_user_finger *f;
304304
struct nf_osf_finger *kf = NULL, *sf;
305+
unsigned int tot_opt_len = 0;
305306
int err = 0;
307+
int i;
306308

307309
if (!capable(CAP_NET_ADMIN))
308310
return -EPERM;
@@ -318,6 +320,17 @@ static int nfnl_osf_add_callback(struct sk_buff *skb,
318320
if (f->opt_num > ARRAY_SIZE(f->opt))
319321
return -EINVAL;
320322

323+
for (i = 0; i < f->opt_num; i++) {
324+
if (!f->opt[i].length || f->opt[i].length > MAX_IPOPTLEN)
325+
return -EINVAL;
326+
if (f->opt[i].kind == OSFOPT_MSS && f->opt[i].length < 4)
327+
return -EINVAL;
328+
329+
tot_opt_len += f->opt[i].length;
330+
if (tot_opt_len > MAX_IPOPTLEN)
331+
return -EINVAL;
332+
}
333+
321334
if (!memchr(f->genre, 0, MAXGENRELEN) ||
322335
!memchr(f->subtype, 0, MAXGENRELEN) ||
323336
!memchr(f->version, 0, MAXGENRELEN))

0 commit comments

Comments
 (0)