From: Borislav Petkov <bp@suse.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Pu Wen <puwen@hygon.cn>, Thomas Gleixner <tglx@linutronix.de>,
Tom Lendacky <thomas.lendacky@amd.com>,
Linux List Kernel Mailing <linux-kernel@vger.kernel.org>,
the arch/x86 maintainers <x86@kernel.org>
Subject: Re: [GIT pull] x86/urgent for 5.3-rc5
Date: Mon, 26 Aug 2019 14:53:42 +0200 [thread overview]
Message-ID: <20190826125342.GC28610@zn.tnic> (raw)
In-Reply-To: <20190825201723.GG20639@zn.tnic>
On Sun, Aug 25, 2019 at 10:17:23PM +0200, Borislav Petkov wrote:
> > I think WARN_ONCE() is good. It's big enough that it will show up in
> > dmesg if anybody looks, and if nobody looks I think distros still have
> > logging for things like that, don't they?
>
> Probably. Lemme research that.
So there's a whole bunch of daemons doing desktop notifications along with a
desktop notifications spec, yadda yadda:
https://wiki.archlinux.org/index.php/Desktop_notifications
but installing an openSUSE Leap 15.1 in a guest and that is a default
desktop installation doesn't give me any notifications. I installed
notification-daemon and whatnot but nada.
Which means, that we cannot guarantee that every user would see it.
There might be installations which miss it.
So the only thing I can think of right now is to make that single line
pr_emerg() so that it atleast spews into the terminals when suspending:
linux-6qfo:~ # echo "suspend" > /sys/power/disk
linux-6qfo:~ # echo "mem" > /sys/power/state
<--- resume guest.
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.416145] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.423091] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.427426] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.434699] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.442587] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.449047] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.456328] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.462198] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.470120] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.477302] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.484605] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.490115] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.497508] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.505350] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
Message from syslogd@linux-6qfo at Aug 26 14:48:05 ...
kernel:[ 40.513336] RDRAND gives funky smelling output, might consider not using it by booting with "nordrand"
---
Assuming the user has at least a single terminal open. But someone might
have a better idea.
Current diff:
---
commit d46b23c4be1b4acae7d21c97be189131e200f6d0 (HEAD -> refs/heads/rc5+1-rdrand)
Author: Borislav Petkov <bp@suse.de>
Date: Sun Aug 25 22:50:18 2019 +0200
WIP
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
diff --git a/arch/x86/kernel/cpu/rdrand.c b/arch/x86/kernel/cpu/rdrand.c
index 5c900f9527ff..b02d1ce91081 100644
--- a/arch/x86/kernel/cpu/rdrand.c
+++ b/arch/x86/kernel/cpu/rdrand.c
@@ -29,7 +29,8 @@ __setup("nordrand", x86_rdrand_setup);
#ifdef CONFIG_ARCH_RANDOM
void x86_init_rdrand(struct cpuinfo_x86 *c)
{
- unsigned long tmp;
+ unsigned int changed = 0;
+ unsigned long tmp, prev;
int i;
if (!cpu_has(c, X86_FEATURE_RDRAND))
@@ -42,5 +43,27 @@ void x86_init_rdrand(struct cpuinfo_x86 *c)
return;
}
}
+
+ /*
+ * Stupid sanity-check whether RDRAND does *actually* generate
+ * some at least random-looking data.
+ */
+ prev = tmp;
+ for (i = 0; i < SANITY_CHECK_LOOPS; i++) {
+ if (rdrand_long(&tmp)) {
+ if (prev != tmp)
+ changed++;
+
+ prev = tmp;
+ }
+ }
+
+ if (!changed) {
+ pr_emerg(
+"RDRAND gives funky smelling output, might consider not using it by booting with \"nordrand\"");
+ WARN_ON_ONCE(1);
+ }
+
+
}
#endif
---
--
Regards/Gruss,
Boris.
SUSE Software Solutions Germany GmbH, GF: Felix Imendörffer, HRB 247165, AG München
next prev parent reply other threads:[~2019-08-26 12:53 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-25 9:43 [GIT pull] irq/urgent for 5.3-rc5 Thomas Gleixner
2019-08-25 9:43 ` [GIT pull] timers/urgent " Thomas Gleixner
2019-08-25 17:40 ` pr-tracker-bot
2019-08-25 9:43 ` [GIT pull] sched/urgent " Thomas Gleixner
2019-08-25 17:40 ` pr-tracker-bot
2019-08-25 9:43 ` [GIT pull] x86/urgent " Thomas Gleixner
2019-08-25 17:18 ` Linus Torvalds
2019-08-25 17:30 ` Borislav Petkov
2019-08-25 17:37 ` Linus Torvalds
2019-08-25 18:29 ` Borislav Petkov
2019-08-25 18:38 ` Linus Torvalds
2019-08-25 19:32 ` Borislav Petkov
2019-08-25 19:35 ` Linus Torvalds
2019-08-25 19:49 ` Borislav Petkov
2019-08-25 19:59 ` Linus Torvalds
2019-08-25 20:17 ` Borislav Petkov
2019-08-26 12:53 ` Borislav Petkov [this message]
2019-08-27 16:55 ` Linus Torvalds
2019-08-27 17:39 ` Borislav Petkov
2019-08-27 17:46 ` Linus Torvalds
2019-08-27 17:59 ` Borislav Petkov
2019-08-28 15:20 ` David Sterba
2019-08-28 15:53 ` David Sterba
2019-10-02 19:09 ` [tip: x86/cpu] x86/rdrand: Sanity-check RDRAND output tip-bot2 for Borislav Petkov
2019-08-25 17:40 ` [GIT pull] x86/urgent for 5.3-rc5 pr-tracker-bot
2019-08-25 9:43 ` [GIT pull] perf/urgent " Thomas Gleixner
2019-08-25 17:40 ` pr-tracker-bot
2019-08-25 17:40 ` [GIT pull] irq/urgent " pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2019-08-18 11:34 [GIT pull] efi/urgent " Thomas Gleixner
2019-08-18 11:34 ` [GIT pull] x86/urgent " Thomas Gleixner
2019-08-18 16:55 ` pr-tracker-bot
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=20190826125342.GC28610@zn.tnic \
--to=bp@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=puwen@hygon.cn \
--cc=tglx@linutronix.de \
--cc=thomas.lendacky@amd.com \
--cc=torvalds@linux-foundation.org \
--cc=x86@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