From: Dan Carpenter <dan.carpenter@oracle.com>
To: Marion & Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Cc: Colin King <colin.king@canonical.com>,
David Miller <davem@davemloft.net>,
linux-wireless@vger.kernel.org,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
Kernel Janitors <kernel-janitors@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH][next] ath11k: avoid null pointer dereference when pointer band is null
Date: Mon, 13 Jan 2020 08:47:53 +0000 [thread overview]
Message-ID: <20200113084753.GA9510@kadam> (raw)
In-Reply-To: <17571eee-9d72-98cb-00f5-d714a28b853b@wanadoo.fr>
On Sat, Jan 11, 2020 at 12:57:11PM +0100, Marion & Christophe JAILLET wrote:
> Le 11/01/2020 à 10:50, linmiaohe a écrit :
> > Colin Ian King<colin.king@canonical.com> wrote:
> > > From: Colin Ian King<colin.king@canonical.com>
> > >
> > > In the unlikely event that cap->supported_bands has neither WMI_HOST_WLAN_2G_CAP set or WMI_HOST_WLAN_5G_CAP set then pointer band is null and a null dereference occurs when assigning
> > > band->n_iftype_data. Move the assignment to the if blocks to
> > > avoid this. Cleans up static analysis warnings.
> > >
> > > Addresses-Coverity: ("Explicit null dereference")
> > > Fixes: 9f056ed8ee01 ("ath11k: add HE support")
> > > Signed-off-by: Colin Ian King<colin.king@canonical.com>
> > > ---
> > > drivers/net/wireless/ath/ath11k/mac.c | 8 ++++----
> > > 1 file changed, 4 insertions(+), 4 deletions(-)
> > It looks fine for me. Thanks.
> > Reviewed-by: Miaohe Lin<linmiaohe@huawei.com>
> (sorry for incomplete mail and mailing list addresses, my newsreader ate
> them, and I cannot get the list from get_maintainer.pl because my (outdated)
> tree does not have ath11k/...
> I've only including the ones in memory of my mail writer.
>
> Please forward if needed)
>
>
> Hi
>
> Shouldn't there be a
>
> |
>
> - band->n_iftype_data = count; at the end of the patch if the assignment
> is *moved*? Without it, 'band' (as well as 'count') could be un-initialized,
> and lead to memory corruption. Just my 2c. CJ |
You must be looking at different code. There is no uninitialized
variable. The patched code looks like:
drivers/net/wireless/ath/ath11k/mac.c
3520 static void ath11k_mac_setup_he_cap(struct ath11k *ar,
3521 struct ath11k_pdev_cap *cap)
3522 {
3523 struct ieee80211_supported_band *band;
3524 int count;
3525
3526 if (cap->supported_bands & WMI_HOST_WLAN_2G_CAP) {
3527 count = ath11k_mac_copy_he_cap(ar, cap,
3528 ar->mac.iftype[NL80211_BAND_2GHZ],
3529 NL80211_BAND_2GHZ);
3530 band = &ar->mac.sbands[NL80211_BAND_2GHZ];
3531 band->iftype_data = ar->mac.iftype[NL80211_BAND_2GHZ];
3532 band->n_iftype_data = count;
3533 }
3534
3535 if (cap->supported_bands & WMI_HOST_WLAN_5G_CAP) {
3536 count = ath11k_mac_copy_he_cap(ar, cap,
3537 ar->mac.iftype[NL80211_BAND_5GHZ],
3538 NL80211_BAND_5GHZ);
3539 band = &ar->mac.sbands[NL80211_BAND_5GHZ];
3540 band->iftype_data = ar->mac.iftype[NL80211_BAND_5GHZ];
3541 band->n_iftype_data = count;
3542 }
3543 }
regards,
dan carpenter
WARNING: multiple messages have this Message-ID (diff)
From: Dan Carpenter <dan.carpenter@oracle.com>
To: Marion & Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Cc: Colin King <colin.king@canonical.com>,
David Miller <davem@davemloft.net>,
linux-wireless@vger.kernel.org,
"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
Kernel Janitors <kernel-janitors@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH][next] ath11k: avoid null pointer dereference when pointer band is null
Date: Mon, 13 Jan 2020 11:47:53 +0300 [thread overview]
Message-ID: <20200113084753.GA9510@kadam> (raw)
In-Reply-To: <17571eee-9d72-98cb-00f5-d714a28b853b@wanadoo.fr>
On Sat, Jan 11, 2020 at 12:57:11PM +0100, Marion & Christophe JAILLET wrote:
> Le 11/01/2020 à 10:50, linmiaohe a écrit :
> > Colin Ian King<colin.king@canonical.com> wrote:
> > > From: Colin Ian King<colin.king@canonical.com>
> > >
> > > In the unlikely event that cap->supported_bands has neither WMI_HOST_WLAN_2G_CAP set or WMI_HOST_WLAN_5G_CAP set then pointer band is null and a null dereference occurs when assigning
> > > band->n_iftype_data. Move the assignment to the if blocks to
> > > avoid this. Cleans up static analysis warnings.
> > >
> > > Addresses-Coverity: ("Explicit null dereference")
> > > Fixes: 9f056ed8ee01 ("ath11k: add HE support")
> > > Signed-off-by: Colin Ian King<colin.king@canonical.com>
> > > ---
> > > drivers/net/wireless/ath/ath11k/mac.c | 8 ++++----
> > > 1 file changed, 4 insertions(+), 4 deletions(-)
> > It looks fine for me. Thanks.
> > Reviewed-by: Miaohe Lin<linmiaohe@huawei.com>
> (sorry for incomplete mail and mailing list addresses, my newsreader ate
> them, and I cannot get the list from get_maintainer.pl because my (outdated)
> tree does not have ath11k/...
> I've only including the ones in memory of my mail writer.
>
> Please forward if needed)
>
>
> Hi
>
> Shouldn't there be a
>
> |
>
> - band->n_iftype_data = count; at the end of the patch if the assignment
> is *moved*? Without it, 'band' (as well as 'count') could be un-initialized,
> and lead to memory corruption. Just my 2c. CJ |
You must be looking at different code. There is no uninitialized
variable. The patched code looks like:
drivers/net/wireless/ath/ath11k/mac.c
3520 static void ath11k_mac_setup_he_cap(struct ath11k *ar,
3521 struct ath11k_pdev_cap *cap)
3522 {
3523 struct ieee80211_supported_band *band;
3524 int count;
3525
3526 if (cap->supported_bands & WMI_HOST_WLAN_2G_CAP) {
3527 count = ath11k_mac_copy_he_cap(ar, cap,
3528 ar->mac.iftype[NL80211_BAND_2GHZ],
3529 NL80211_BAND_2GHZ);
3530 band = &ar->mac.sbands[NL80211_BAND_2GHZ];
3531 band->iftype_data = ar->mac.iftype[NL80211_BAND_2GHZ];
3532 band->n_iftype_data = count;
3533 }
3534
3535 if (cap->supported_bands & WMI_HOST_WLAN_5G_CAP) {
3536 count = ath11k_mac_copy_he_cap(ar, cap,
3537 ar->mac.iftype[NL80211_BAND_5GHZ],
3538 NL80211_BAND_5GHZ);
3539 band = &ar->mac.sbands[NL80211_BAND_5GHZ];
3540 band->iftype_data = ar->mac.iftype[NL80211_BAND_5GHZ];
3541 band->n_iftype_data = count;
3542 }
3543 }
regards,
dan carpenter
next prev parent reply other threads:[~2020-01-13 8:47 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-11 9:50 [PATCH][next] ath11k: avoid null pointer dereference when pointer band is null linmiaohe
2020-01-11 9:50 ` linmiaohe
2020-01-11 9:50 ` linmiaohe
2020-01-11 11:44 ` Christophe JAILLET
[not found] ` <64797126-0c77-4c2c-ad2b-29d7af452c13@wanadoo.fr>
2020-01-11 11:57 ` Marion & Christophe JAILLET
2020-01-11 11:57 ` Marion & Christophe JAILLET
2020-01-13 8:47 ` Dan Carpenter [this message]
2020-01-13 8:47 ` Dan Carpenter
-- strict thread matches above, loose matches on Subject: below --
2020-01-11 9:08 Colin King
2020-01-11 9:08 ` Colin King
2020-01-26 10:48 ` Kalle Valo
2020-01-26 10:48 ` Kalle Valo
2020-01-26 10:48 ` Kalle Valo
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=20200113084753.GA9510@kadam \
--to=dan.carpenter@oracle.com \
--cc=christophe.jaillet@wanadoo.fr \
--cc=colin.king@canonical.com \
--cc=davem@davemloft.net \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=netdev@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 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.