linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] md: md2: fix an incorrect NULL check on list iterator
@ 2022-03-27  8:01 Xiaomeng Tong
  2022-03-28  2:57 ` Guoqing Jiang
  0 siblings, 1 reply; 3+ messages in thread
From: Xiaomeng Tong @ 2022-03-27  8:01 UTC (permalink / raw)
  To: song, rgoldwyn; +Cc: linux-raid, linux-kernel, Xiaomeng Tong, stable

The bug is here:
	if (!rdev || rdev->desc_nr != nr) {

The list iterator value 'rdev' will *always* be set and non-NULL
by rdev_for_each_rcu(), so it is incorrect to assume that the
iterator value will be NULL if the list is empty or no element
found (In fact, it will be a bogus pointer to an invalid struct
object containing the HEAD). Otherwise it will bypass the check
and lead to invalid memory access passing the check.

To fix the bug, use a new variable 'iter' as the list iterator,
while use the original variable 'pdev' as a dedicated pointer to
point to the found element.

Cc: stable@vger.kernel.org
Fixes: 70bcecdb1534 ("amd-cluster: Improve md_reload_sb to be less error prone")
Signed-off-by: Xiaomeng Tong <xiam0nd.tong@gmail.com>
---
 drivers/md/md.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/md/md.c b/drivers/md/md.c
index 7476fc204172..f156678c08bc 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -9794,16 +9794,18 @@ static int read_rdev(struct mddev *mddev, struct md_rdev *rdev)
 
 void md_reload_sb(struct mddev *mddev, int nr)
 {
-	struct md_rdev *rdev;
+	struct md_rdev *rdev = NULL, *iter;
 	int err;
 
 	/* Find the rdev */
-	rdev_for_each_rcu(rdev, mddev) {
-		if (rdev->desc_nr == nr)
+	rdev_for_each_rcu(iter, mddev) {
+		if (iter->desc_nr == nr) {
+			rdev = iter;
 			break;
+		}
 	}
 
-	if (!rdev || rdev->desc_nr != nr) {
+	if (!rdev) {
 		pr_warn("%s: %d Could not find rdev with nr %d\n", __func__, __LINE__, nr);
 		return;
 	}
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] md: md2: fix an incorrect NULL check on list iterator
  2022-03-27  8:01 [PATCH] md: md2: fix an incorrect NULL check on list iterator Xiaomeng Tong
@ 2022-03-28  2:57 ` Guoqing Jiang
  2022-03-28  7:56   ` Xiaomeng Tong
  0 siblings, 1 reply; 3+ messages in thread
From: Guoqing Jiang @ 2022-03-28  2:57 UTC (permalink / raw)
  To: Xiaomeng Tong, song, rgoldwyn; +Cc: linux-raid, linux-kernel, stable

Hi Xiaomeng,

I'd suggest to rephrase the subject to "md: fix an incorrect NULL check 
in md_reload_sb".

On 3/27/22 4:01 PM, Xiaomeng Tong wrote:
> The bug is here:
> 	if (!rdev || rdev->desc_nr != nr) {
>
> The list iterator value 'rdev' will *always* be set and non-NULL
> by rdev_for_each_rcu(), so it is incorrect to assume that the
> iterator value will be NULL if the list is empty or no element
> found (In fact, it will be a bogus pointer to an invalid struct
> object containing the HEAD). Otherwise it will bypass the check
> and lead to invalid memory access passing the check.
>
> To fix the bug, use a new variable 'iter' as the list iterator,
> while use the original variable 'pdev' as a dedicated pointer to
> point to the found element.
>
> Cc:stable@vger.kernel.org
> Fixes: 70bcecdb1534 ("amd-cluster: Improve md_reload_sb to be less error prone")

amd-cluster? 😉

> Signed-off-by: Xiaomeng Tong<xiam0nd.tong@gmail.com>
> ---
>   drivers/md/md.c | 10 ++++++----
>   1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index 7476fc204172..f156678c08bc 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -9794,16 +9794,18 @@ static int read_rdev(struct mddev *mddev, struct md_rdev *rdev)
>   
>   void md_reload_sb(struct mddev *mddev, int nr)
>   {
> -	struct md_rdev *rdev;
> +	struct md_rdev *rdev = NULL, *iter;
>   	int err;
>   
>   	/* Find the rdev */
> -	rdev_for_each_rcu(rdev, mddev) {
> -		if (rdev->desc_nr == nr)
> +	rdev_for_each_rcu(iter, mddev) {
> +		if (iter->desc_nr == nr) {
> +			rdev = iter;
>   			break;
> +		}
>   	}
>   
> -	if (!rdev || rdev->desc_nr != nr) {
> +	if (!rdev) {
>   		pr_warn("%s: %d Could not find rdev with nr %d\n", __func__, __LINE__, nr);
>   		return;
>   	}

I guess we only need to check desc_nr since rdev should always be valid 
, and IMO the fix tag
is not necessary.

@@ -9800,7 +9800,7 @@ void md_reload_sb(struct mddev *mddev, int nr)
                         break;
         }

-       if (!rdev || rdev->desc_nr != nr) {
+       if (rdev->desc_nr != nr) {

Thanks,
Guoqing

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] md: md2: fix an incorrect NULL check on list iterator
  2022-03-28  2:57 ` Guoqing Jiang
@ 2022-03-28  7:56   ` Xiaomeng Tong
  0 siblings, 0 replies; 3+ messages in thread
From: Xiaomeng Tong @ 2022-03-28  7:56 UTC (permalink / raw)
  To: guoqing.jiang
  Cc: linux-kernel, linux-raid, rgoldwyn, song, stable, xiam0nd.tong

> I'd suggest to rephrase the subject to "md: fix an incorrect NULL check 
> in md_reload_sb".

Thank you for the suggestion, i will take it in PATCH v2.

> > -	if (!rdev || rdev->desc_nr != nr) {
> > +	if (!rdev) {
> >   		pr_warn("%s: %d Could not find rdev with nr %d\n", __func__, __LINE__, nr);
> >   		return;
> >   	}
> 
> I guess we only need to check desc_nr since rdev should always be valid 
> , and IMO the fix tag
> is not necessary.

No. At least from the pr_warn log, the list can be empty or no element found in it.
If this cases happen, the 'rdev' will be an invalid pointer that point to a invalid
struct containning the HEAD '&((mddev)->disks)'. So this fix is necessary.

--
Xiaomeng Tong

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-28  7:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-27  8:01 [PATCH] md: md2: fix an incorrect NULL check on list iterator Xiaomeng Tong
2022-03-28  2:57 ` Guoqing Jiang
2022-03-28  7:56   ` Xiaomeng Tong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).