From: Justin Iurman <justin.iurman@gmail.com>
To: Tom Herbert <tom@herbertland.com>,
davem@davemloft.net, kuba@kernel.org, netdev@vger.kernel.org
Subject: Re: [PATCH net-next v4 1/7] ipv6: Check of max HBH or DestOp sysctl is zero and drop if it is
Date: Fri, 23 Jan 2026 22:16:30 +0100 [thread overview]
Message-ID: <30e7ea41-ed0f-4049-b844-b0d0507deedb@gmail.com> (raw)
In-Reply-To: <20260121214925.112604-2-tom@herbertland.com>
On 1/21/26 22:49, Tom Herbert wrote:
> In IPv6 Destination options processing function check if
> net->ipv6.sysctl.max_dst_opts_cnt is zero up front. If it is zero then
> drop the packet since Destination Options processing is disabled.
>
> Similarly, in IPv6 hop-by-hop options processing function check if
> net->ipv6.sysctl.max_hbh_opts_cnt is zero up front. If it is zero then
> drop the packet since Hop-by-Hop Options processing is disabled.
>
> Signed-off-by: Tom Herbert <tom@herbertland.com>
> ---
> net/ipv6/exthdrs.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c
> index 54088fa0c09d..45bbad76f5de 100644
> --- a/net/ipv6/exthdrs.c
> +++ b/net/ipv6/exthdrs.c
> @@ -303,7 +303,8 @@ static int ipv6_destopt_rcv(struct sk_buff *skb)
> struct net *net = dev_net(skb->dev);
> int extlen;
>
> - if (!pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
> + if (!net->ipv6.sysctl.max_dst_opts_cnt ||
> + !pskb_may_pull(skb, skb_transport_offset(skb) + 8) ||
> !pskb_may_pull(skb, (skb_transport_offset(skb) +
> ((skb_transport_header(skb)[1] + 1) << 3)))) {
> __IP6_INC_STATS(dev_net(dst_dev(dst)), idev,
Hi Tom,
You should use READ_ONCE() and store it:
int max_dst_opts_cnt = READ_ONCE(net->ipv6.sysctl.max_dst_opts_cnt);
if (!max_dst_opts_cnt || ...)
[...]
if (ip6_parse_tlv(false, skb, max_dst_opts_cnt)) {
> @@ -1041,7 +1042,8 @@ int ipv6_parse_hopopts(struct sk_buff *skb)
> * sizeof(struct ipv6hdr) by definition of
> * hop-by-hop options.
> */
> - if (!pskb_may_pull(skb, sizeof(struct ipv6hdr) + 8) ||
> + if (!net->ipv6.sysctl.max_hbh_opts_cnt ||
> + !pskb_may_pull(skb, sizeof(struct ipv6hdr) + 8) ||
> !pskb_may_pull(skb, (sizeof(struct ipv6hdr) +
> ((skb_transport_header(skb)[1] + 1) << 3)))) {
> fail_and_free:
Same remark for max_hbh_opts_cnt.
next prev parent reply other threads:[~2026-01-23 21:16 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-21 21:49 [PATCH net-next v4 0/7] ipv6: Address ext hdr DoS vulnerabilities Tom Herbert
2026-01-21 21:49 ` [PATCH net-next v4 1/7] ipv6: Check of max HBH or DestOp sysctl is zero and drop if it is Tom Herbert
2026-01-23 21:16 ` Justin Iurman [this message]
2026-01-21 21:49 ` [PATCH net-next v4 2/7] ipv6: Cleanup IPv6 TLV definitions Tom Herbert
2026-01-23 21:19 ` Justin Iurman
2026-01-21 21:49 ` [PATCH net-next v4 3/7] ipv6: Add case for IPV6_TLV_TNL_ENCAP_LIMIT in EH TLV switch Tom Herbert
2026-01-21 21:49 ` [PATCH net-next v4 4/7] ipv6: Set HBH and DestOpt limits to 2 Tom Herbert
2026-01-21 21:49 ` [PATCH net-next v4 5/7] ipv6: Document defaults for max_{dst|hbh}_opts_number sysctls Tom Herbert
2026-01-21 21:49 ` [PATCH net-next v4 6/7] ipv6: Enforce Extension Header ordering Tom Herbert
2026-01-23 21:35 ` Justin Iurman
2026-01-26 16:56 ` Tom Herbert
2026-01-26 19:23 ` Justin Iurman
2026-01-26 19:38 ` Tom Herbert
2026-01-21 21:49 ` [PATCH net-next v4 7/7] ipv6: Document enforce_ext_hdr_order sysctl Tom Herbert
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=30e7ea41-ed0f-4049-b844-b0d0507deedb@gmail.com \
--to=justin.iurman@gmail.com \
--cc=davem@davemloft.net \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=tom@herbertland.com \
/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