From: Jesse Brandeburg <jesse.brandeburg@intel.com>
To: Natalia Petrova <n.petrova@fintech.ru>, <stable@vger.kernel.org>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>
Cc: Tony Nguyen <anthony.l.nguyen@intel.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
<intel-wired-lan@lists.osuosl.org>, <netdev@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <lvc-project@linuxtesting.org>
Subject: Re: [PATCH 5.10 1/1] i40e: Add checking for null for nlmsg_find_attr()
Date: Thu, 26 Jan 2023 11:59:37 -0800 [thread overview]
Message-ID: <287458c5-3e56-8a0b-f993-92e2b6ba9adb@intel.com> (raw)
In-Reply-To: <a23c80c4-933c-9be0-6d36-4d4238b13f23@intel.com>
On 1/26/2023 11:55 AM, Jesse Brandeburg wrote:
> On 1/26/2023 5:55 AM, Natalia Petrova wrote:
>> The result of nlmsg_find_attr() 'br_spec' is dereferenced in
>> nla_for_each_nested(), but it can take null value in nla_find() function,
>> which will result in an error.
>>
>> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>>
>> Fixes: 51616018dd1b ("i40e: Add support for getlink, setlink ndo ops")
>> Signed-off-by: Natalia Petrova <n.petrova@fintech.ru>
>> ---
>> drivers/net/ethernet/intel/i40e/i40e_main.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c
>> b/drivers/net/ethernet/intel/i40e/i40e_main.c
>> index 53d0083e35da..4626d2a1af91 100644
>> --- a/drivers/net/ethernet/intel/i40e/i40e_main.c
>> +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
>> @@ -13167,6 +13167,8 @@ static int i40e_ndo_bridge_setlink(struct
>> net_device *dev,
>> }
>> br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg),
>> IFLA_AF_SPEC);
>> + if (!br_spec)
>> + return -EINVAL;
>> nla_for_each_nested(attr, br_spec, rem) {
>> __u16 mode;
>
> Makes sense to me. Thanks.
>
> Reviewed-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
>
I presume that you meant this to be targeted to the "net" tree, which
you should indicate with the subject line:
[PATCH net ...]
as per the netdev rules published [1], and generally you don't need a
cover letter for a single patch.
[1] https://www.kernel.org/doc/html/v5.10/networking/netdev-FAQ.html
next prev parent reply other threads:[~2023-01-26 19:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-26 13:55 [PATCH 5.10 0/1] " Natalia Petrova
2023-01-26 13:55 ` [PATCH 5.10 1/1] " Natalia Petrova
2023-01-26 19:55 ` Jesse Brandeburg
2023-01-26 19:59 ` Jesse Brandeburg [this message]
2023-01-27 7:32 ` Greg Kroah-Hartman
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=287458c5-3e56-8a0b-f993-92e2b6ba9adb@intel.com \
--to=jesse.brandeburg@intel.com \
--cc=anthony.l.nguyen@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lvc-project@linuxtesting.org \
--cc=n.petrova@fintech.ru \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=stable@vger.kernel.org \
/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
all inboxes | Powered by JetHome®