From: Neil Brown <neilb@suse.de>
To: Andre Noll <maan@systemlinux.org>
Cc: linux-raid@vger.kernel.org
Subject: Re: [PATCH 4/8] md: analyze_sbs(): Fix potential NULL-pointer dereference.
Date: Wed, 9 Jul 2008 09:09:01 +1000 [thread overview]
Message-ID: <18547.62349.86619.101004@notabene.brown> (raw)
In-Reply-To: message from Andre Noll on Tuesday March 25
On Tuesday March 25, maan@systemlinux.org wrote:
> If no device in the array contains a valid super block, "freshest"
> will be NULL, but we happily dereference that pointer in the subsequent
> call to validate_super().
>
> Fix it by returning early in this case.
>
> Signed-off-by: Andre Noll <maan@systemlinux.org>
> ---
> drivers/md/md.c | 4 ++++
> 1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index 7943df1..bf1499c 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -2249,6 +2249,10 @@ static void analyze_sbs(mddev_t * mddev)
> kick_rdev_from_array(rdev);
> }
>
> + if (!freshest) {
> + printk(KERN_ERR "md: no valid devices found\n");
> + return;
> + }
>
> super_types[mddev->major_version].
> validate_super(mddev, freshest);
This shouldn't actually be possible. But I've got to rush off just
now. I'll have a deeper look later.
Thanks,
NeilBrown
next prev parent reply other threads:[~2008-07-08 23:09 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-08 15:55 [PATCH 0/8] md: More patches for md.c Andre Noll
2008-03-23 15:09 ` [PATCH 1/8] md: Simplify uuid_equal() Andre Noll
2008-03-23 15:21 ` [PATCH 2/8] md: Simplify sb_equal() Andre Noll
2008-07-08 22:54 ` Neil Brown
2008-03-25 19:55 ` [PATCH 3/8] md: alloc_disk_sb(): Return proper error value Andre Noll
2008-03-25 20:38 ` [PATCH 4/8] md: analyze_sbs(): Fix potential NULL-pointer dereference Andre Noll
2008-07-08 23:09 ` Neil Brown [this message]
2008-03-26 0:25 ` [PATCH 5/8] md: Simplify restart_array() Andre Noll
2008-03-29 19:12 ` [PATCH 6/8] md: get_disk_info(): Don't convert between signed and unsigned and back Andre Noll
2008-04-05 13:54 ` [PATCH 7/8] md: update_size(): Remove useless variable "fit" Andre Noll
2008-07-08 23:08 ` Neil Brown
2008-07-09 9:14 ` Andre Noll
2008-07-09 9:39 ` Neil Brown
2008-04-25 18:20 ` [PATCH 8/8] md: Simplify update_size() Andre Noll
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=18547.62349.86619.101004@notabene.brown \
--to=neilb@suse.de \
--cc=linux-raid@vger.kernel.org \
--cc=maan@systemlinux.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;
as well as URLs for NNTP newsgroup(s).