* [PATCH net v4] ipv6: sr: enforce exact attribute length for SEG6_ATTR_DST
@ 2026-09-24 9:36 Hui Peng
2026-09-24 16:00 ` Andrea Mayer
0 siblings, 1 reply; 2+ messages in thread
From: Hui Peng @ 2026-09-24 9:36 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni, dsahern
Cc: netdev, linux-kernel, stable, andrea.mayer, hangbin.liu, leitao,
Hui Peng
In seg6_genl_policy, SEG6_ATTR_DST is defined with .type = NLA_BINARY and
.len = sizeof(struct in6_addr). For NLA_BINARY, .len only enforces the
maximum payload length and permits shorter payloads (e.g., 0 bytes).
When seg6_genl_set_tunsrc() copies sizeof(struct in6_addr) bytes via
kmemdup(val, sizeof(*val), GFP_KERNEL), a short SEG6_ATTR_DST attribute
triggers a 16-byte out-of-bounds read past skb->tail into uninitialized
skb->head memory, which is stored in sdata->tun_src and leaked back to
userspace via SEG6_CMD_GET_TUNSRC.
Switch SEG6_ATTR_DST in seg6_genl_policy to
NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)) so that generic netlink
validation rejects any attribute whose length is not exactly
sizeof(struct in6_addr) with -ERANGE.
Tested in QEMU against Linux 7.3.0-rc3 by sending a SEG6_CMD_SET_TUNSRC
Generic Netlink message with a 0-byte SEG6_ATTR_DST attribute followed
by SEG6_CMD_GET_TUNSRC. On the unfixed kernel, SEG6_CMD_SET_TUNSRC
succeeds (err = 0) and SEG6_CMD_GET_TUNSRC leaks 16 bytes of
uninitialized kernel heap memory; with this patch applied,
SEG6_CMD_SET_TUNSRC is rejected by netlink policy validation with
-ERANGE (-34) and tun_src remains zeroed.
Fixes: 915d7e5e5930 ("ipv6: sr: add code base for control plane support of SR-IPv6")
Cc: stable@vger.kernel.org
Reviewed-by: Andrea Mayer <andrea.mayer@uniroma2.it>
Reviewed-by: Hangbin Liu <hangbin.liu@linux.dev>
Reviewed-by: Breno Leitao <leitao@debian.org>
Assisted-by: LLM
Signed-off-by: Hui Peng <benquike@gmail.com>
---
Changes in v4:
- Drop raw hex memory dump string from commit message as suggested by Breno
Leitao.
- Add Reviewed-by tag from Breno Leitao.
Changes in v3:
- Add Reviewed-by tag from Andrea Mayer.
- Send as a fresh standalone thread (no In-Reply-To header) as requested by
Jakub Kicinski.
Changes in v2:
- Drop the redundant nla_len(info->attrs[SEG6_ATTR_DST]) !=
sizeof(struct in6_addr) check in seg6_genl_set_tunsrc() since
NLA_POLICY_EXACT_LEN() in seg6_genl_policy already enforces the exact
length, as pointed out by Hangbin Liu.
net/ipv6/seg6.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/ipv6/seg6.c b/net/ipv6/seg6.c
index 62a7eb779202..8c2b156c227a 100644
--- a/net/ipv6/seg6.c
+++ b/net/ipv6/seg6.c
@@ -138,8 +138,8 @@ void seg6_icmp_srh(struct sk_buff *skb, struct inet6_skb_parm *opt)
static struct genl_family seg6_genl_family;
static const struct nla_policy seg6_genl_policy[SEG6_ATTR_MAX + 1] = {
- [SEG6_ATTR_DST] = { .type = NLA_BINARY,
- .len = sizeof(struct in6_addr) },
+ [SEG6_ATTR_DST] =
+ NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)),
[SEG6_ATTR_HMACKEYID] = { .type = NLA_U32, },
[SEG6_ATTR_SECRET] = { .type = NLA_BINARY, },
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH net v4] ipv6: sr: enforce exact attribute length for SEG6_ATTR_DST
2026-09-24 9:36 [PATCH net v4] ipv6: sr: enforce exact attribute length for SEG6_ATTR_DST Hui Peng
@ 2026-09-24 16:00 ` Andrea Mayer
0 siblings, 0 replies; 2+ messages in thread
From: Andrea Mayer @ 2026-09-24 16:00 UTC (permalink / raw)
To: Hui Peng
Cc: davem, edumazet, kuba, pabeni, dsahern, netdev, linux-kernel,
stable, hangbin.liu, leitao, Andrea Mayer
On Thu, 24 Sep 2026 09:36:10 +0000
Hui Peng <benquike@gmail.com> wrote:
> In seg6_genl_policy, SEG6_ATTR_DST is defined with .type = NLA_BINARY and
> .len = sizeof(struct in6_addr). For NLA_BINARY, .len only enforces the
> maximum payload length and permits shorter payloads (e.g., 0 bytes).
> When seg6_genl_set_tunsrc() copies sizeof(struct in6_addr) bytes via
> kmemdup(val, sizeof(*val), GFP_KERNEL), a short SEG6_ATTR_DST attribute
> triggers a 16-byte out-of-bounds read past skb->tail into uninitialized
> skb->head memory, which is stored in sdata->tun_src and leaked back to
> userspace via SEG6_CMD_GET_TUNSRC.
>
> Switch SEG6_ATTR_DST in seg6_genl_policy to
> NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)) so that generic netlink
> validation rejects any attribute whose length is not exactly
> sizeof(struct in6_addr) with -ERANGE.
>
> Tested in QEMU against Linux 7.3.0-rc3 by sending a SEG6_CMD_SET_TUNSRC
> Generic Netlink message with a 0-byte SEG6_ATTR_DST attribute followed
> by SEG6_CMD_GET_TUNSRC. On the unfixed kernel, SEG6_CMD_SET_TUNSRC
> succeeds (err = 0) and SEG6_CMD_GET_TUNSRC leaks 16 bytes of
> uninitialized kernel heap memory; with this patch applied,
> SEG6_CMD_SET_TUNSRC is rejected by netlink policy validation with
> -ERANGE (-34) and tun_src remains zeroed.
>
> Fixes: 915d7e5e5930 ("ipv6: sr: add code base for control plane support of SR-IPv6")
> Cc: stable@vger.kernel.org
> Reviewed-by: Andrea Mayer <andrea.mayer@uniroma2.it>
> Reviewed-by: Hangbin Liu <hangbin.liu@linux.dev>
> Reviewed-by: Breno Leitao <leitao@debian.org>
> Assisted-by: LLM
> Signed-off-by: Hui Peng <benquike@gmail.com>
> ---
> Changes in v4:
> - Drop raw hex memory dump string from commit message as suggested by Breno
> Leitao.
> - Add Reviewed-by tag from Breno Leitao.
>
> Changes in v3:
> - Add Reviewed-by tag from Andrea Mayer.
> - Send as a fresh standalone thread (no In-Reply-To header) as requested by
> Jakub Kicinski.
>
> Changes in v2:
> - Drop the redundant nla_len(info->attrs[SEG6_ATTR_DST]) !=
> sizeof(struct in6_addr) check in seg6_genl_set_tunsrc() since
> NLA_POLICY_EXACT_LEN() in seg6_genl_policy already enforces the exact
> length, as pointed out by Hangbin Liu.
>
> net/ipv6/seg6.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
The v2 was applied to netdev/net.git (main) as commit 2d959c75c27f
("ipv6: sr: enforce exact attribute length for SEG6_ATTR_DST"):
https://git.kernel.org/netdev/net/c/2d959c75c27f90e9ec489d18ce5ee6b852ad4741
One general note for your future postings, not about this patch which is
already applied: please do not repost a patch less than 24 hours after
the previous posting. See the "Resending after review" section of
Documentation/process/maintainer-netdev.rst:
https://docs.kernel.org/process/maintainer-netdev.html#resending-after-review
Ciao,
Andrea
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-24 16:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-24 9:36 [PATCH net v4] ipv6: sr: enforce exact attribute length for SEG6_ATTR_DST Hui Peng
2026-09-24 16:00 ` Andrea Mayer
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®