mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Borislav Petkov <bp@suse.de>
To: Colin King <colin.king@canonical.com>
Cc: Yazen Ghannam <Yazen.Ghannam@amd.com>,
	linux-kernel@vger.kernel.org,
	Aravind Gopalakrishnan <aravindksg.lkml@gmail.com>
Subject: Re: [PATCH][V2][Fix commit message] x86/RAS/mce_amd_inj: fix signed wrap around when decrementing index i
Date: Sat, 17 Sep 2016 09:35:11 +0200	[thread overview]
Message-ID: <20160917073511.GA29030@nazgul.tnic> (raw)
In-Reply-To: <20160916112223.32398-1-colin.king@canonical.com>

(drop peterz from CC).

On Fri, Sep 16, 2016 at 12:22:23PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Integer index i needs to be a signed int rather than unsigned to avoid
> a wrap-around when decrementing in the while loop.  For example, if the

Damn corner cases :-\

> debugfs_create_file fails when i is zero, the current situation will
> predecrement i in the while loop, wrapping i to the maximum signed
> integer and cause multiple out of bounds reads on dfs_fls[i].d as
> the loop interates to zero.
> 
> Also add (int) cast to fix warning that the original fix attempted
> to fix.

Thanks, that's a good catch!

But, can we keep the unsigned-ness of i as it is an index and do this
instead?

(Oh, and make it return ENODEV - that ENOMEM is just plain wrong most of
the time).

---
diff --git a/arch/x86/ras/mce_amd_inj.c b/arch/x86/ras/mce_amd_inj.c
index cd318d93099e..a2dafca467e6 100644
--- a/arch/x86/ras/mce_amd_inj.c
+++ b/arch/x86/ras/mce_amd_inj.c
@@ -457,8 +457,12 @@ static int __init init_mce_inject(void)
 						    &i_mce,
 						    dfs_fls[i].fops);
 
-		if (!dfs_fls[i].d)
+		if (!dfs_fls[i].d) {
+			if (!i)
+				return -ENODEV;
+
 			goto err_dfs_add;
+		}
 	}
 
 	return 0;
@@ -470,7 +474,7 @@ err_dfs_add:
 	debugfs_remove(dfs_inj);
 	dfs_inj = NULL;
 
-	return -ENOMEM;
+	return -ENODEV;
 }
 
 static void __exit exit_mce_inject(void)

-- 
Regards/Gruss,
    Boris.

SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg)
-- 

      reply	other threads:[~2016-09-17  7:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-16 11:22 Colin King
2016-09-17  7:35 ` Borislav Petkov [this message]

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=20160917073511.GA29030@nazgul.tnic \
    --to=bp@suse.de \
    --cc=Yazen.Ghannam@amd.com \
    --cc=aravindksg.lkml@gmail.com \
    --cc=colin.king@canonical.com \
    --cc=linux-kernel@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®