From: Aaron Conole <aconole@redhat.com>
To: Dan Carpenter <dan.carpenter@linaro.org>
Cc: William Tu <u9012063@gmail.com>,
dev@openvswitch.org, netdev@vger.kernel.org,
kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org,
Eric Dumazet <edumazet@google.com>,
Simon Horman <horms@kernel.org>,
Jakub Kicinski <kuba@kernel.org>,
Paolo Abeni <pabeni@redhat.com>,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [ovs-dev] [PATCH net] net: ovs: prevent underflow in queue_userspace_packet()
Date: Fri, 24 Jan 2025 19:42:26 -0500 [thread overview]
Message-ID: <f7th65nhggd.fsf@redhat.com> (raw)
In-Reply-To: <4d6d9d9e-b4d9-42f1-aa78-1a5979679b2e@stanley.mountain> (Dan Carpenter's message of "Fri, 24 Jan 2025 17:49:05 +0300")
Dan Carpenter <dan.carpenter@linaro.org> writes:
> If "hlen" less than "cutlen" then when we call upcall_msg_size()
> the "hlen - cutlen" parameter will be a very high positive
> number.
>
> Later in the function we use "skb->len - cutlen" but this change
> addresses that potential underflow since skb->len is always going to
> be greater than or equal to hlen.
>
> Fixes: f2a4d086ed4c ("openvswitch: Add packet truncation support.")
> Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
> ---
> From code review not testing.
I think it's pretty difficult to trigger this case. 'cutlen' will only
be set by a TRUNC action attribute, which does a length check there.
> net/openvswitch/datapath.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c
> index 225f6048867f..bb25a2bbe8a0 100644
> --- a/net/openvswitch/datapath.c
> +++ b/net/openvswitch/datapath.c
> @@ -477,6 +477,11 @@ static int queue_userspace_packet(struct datapath *dp, struct sk_buff *skb,
> else
> hlen = skb->len;
>
> + if (hlen < cutlen) {
> + err = -EINVAL;
> + goto out;
> + }
> +
I think the right change would be more like:
if (hlen < cutlen)
cutlen = 0;
Since trunc is supposed to be a cap on the length to trim
the packet. If the cut length would be longer than the
packet, then the whole packet should fit.
> len = upcall_msg_size(upcall_info, hlen - cutlen,
> OVS_CB(skb)->acts_origlen);
> user_skb = genlmsg_new(len, GFP_ATOMIC);
next prev parent reply other threads:[~2025-01-25 0:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-24 14:49 [PATCH net] net: ovs: prevent underflow in queue_userspace_packet() Dan Carpenter
2025-01-25 0:42 ` Aaron Conole [this message]
2025-01-27 8:08 ` [ovs-dev] " Dan Carpenter
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=f7th65nhggd.fsf@redhat.com \
--to=aconole@redhat.com \
--cc=dan.carpenter@linaro.org \
--cc=davem@davemloft.net \
--cc=dev@openvswitch.org \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=u9012063@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.