From: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
tglx@linutronix.de, arnd@arndb.de, Theodore Ts'o <tytso@mit.edu>,
Dominik Brodowski <linux@dominikbrodowski.net>,
Russell King <linux@armlinux.org.uk>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
"David S . Miller" <davem@davemloft.net>,
Richard Weinberger <richard@nod.at>,
Anton Ivanov <anton.ivanov@cambridgegreys.com>,
Johannes Berg <johannes@sipsolutions.net>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"H . Peter Anvin" <hpa@zytor.com>,
Chris Zankel <chris@zankel.net>,
Max Filippov <jcmvbkbc@gmail.com>,
John Stultz <john.stultz@linaro.org>,
Stephen Boyd <sboyd@kernel.org>,
Dinh Nguyen <dinguyen@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-m68k@lists.linux-m68k.org, linux-mips@vger.kernel.org,
linux-riscv@lists.infradead.org, sparclinux@vger.kernel.org,
linux-um@lists.infradead.org, x86@kernel.org,
linux-xtensa@linux-xtensa.org
Subject: Re: [PATCH v4 04/11] mips: use fallback for random_get_entropy() instead of zero
Date: Wed, 13 Apr 2022 14:25:46 +0200 [thread overview]
Message-ID: <20220413122546.GA11860@alpha.franken.de> (raw)
In-Reply-To: <20220413115411.21489-5-Jason@zx2c4.com>
On Wed, Apr 13, 2022 at 01:54:04PM +0200, Jason A. Donenfeld wrote:
> In the event that random_get_entropy() can't access a cycle counter or
> similar, falling back to returning 0 is really not the best we can do.
> Instead, at least calling random_get_entropy_fallback() would be
> preferable, because that always needs to return _something_, even
> falling back to jiffies eventually. It's not as though
> random_get_entropy_fallback() is super high precision or guaranteed to
> be entropic, but basically anything that's not zero all the time is
> better than returning zero all the time.
>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
> ---
> arch/mips/include/asm/timex.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/mips/include/asm/timex.h b/arch/mips/include/asm/timex.h
> index b05bb70a2e46..abc60a6395e3 100644
> --- a/arch/mips/include/asm/timex.h
> +++ b/arch/mips/include/asm/timex.h
> @@ -94,7 +94,7 @@ static inline unsigned long random_get_entropy(void)
> else if (likely(imp != PRID_IMP_R6000 && imp != PRID_IMP_R6000A))
> return read_c0_random();
> else
> - return 0; /* no usable register */
> + return random_get_entropy_fallback(); /* no usable register */
> }
> #define random_get_entropy random_get_entropy
>
> --
> 2.35.1
Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
--
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea. [ RFC1925, 2.3 ]
WARNING: multiple messages have this Message-ID (diff)
From: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
tglx@linutronix.de, arnd@arndb.de, Theodore Ts'o <tytso@mit.edu>,
Dominik Brodowski <linux@dominikbrodowski.net>,
Russell King <linux@armlinux.org.uk>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
"David S . Miller" <davem@davemloft.net>,
Richard Weinberger <richard@nod.at>,
Anton Ivanov <anton.ivanov@cambridgegreys.com>,
Johannes Berg <johannes@sipsolutions.net>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"H . Peter Anvin" <hpa@zytor.com>,
Chris Zankel <chris@zankel.net>,
Max Filippov <jcmvbkbc@gmail.com>,
John Stultz <john.stultz@linaro.org>,
Stephen Boyd <sboyd@kernel.org>,
Dinh Nguyen <dinguyen@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-m68k@lists.linux-m68k.org, linux-mips@vger.kernel.org,
linux-riscv@lists.infradead.org, sparclinux@vger.kernel.org,
linux-um@lists.infradead.org, x86@kernel.org,
linux-xtensa@linux-xtensa.org
Subject: Re: [PATCH v4 04/11] mips: use fallback for random_get_entropy() instead of zero
Date: Wed, 13 Apr 2022 14:25:46 +0200 [thread overview]
Message-ID: <20220413122546.GA11860@alpha.franken.de> (raw)
In-Reply-To: <20220413115411.21489-5-Jason@zx2c4.com>
On Wed, Apr 13, 2022 at 01:54:04PM +0200, Jason A. Donenfeld wrote:
> In the event that random_get_entropy() can't access a cycle counter or
> similar, falling back to returning 0 is really not the best we can do.
> Instead, at least calling random_get_entropy_fallback() would be
> preferable, because that always needs to return _something_, even
> falling back to jiffies eventually. It's not as though
> random_get_entropy_fallback() is super high precision or guaranteed to
> be entropic, but basically anything that's not zero all the time is
> better than returning zero all the time.
>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
> ---
> arch/mips/include/asm/timex.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/mips/include/asm/timex.h b/arch/mips/include/asm/timex.h
> index b05bb70a2e46..abc60a6395e3 100644
> --- a/arch/mips/include/asm/timex.h
> +++ b/arch/mips/include/asm/timex.h
> @@ -94,7 +94,7 @@ static inline unsigned long random_get_entropy(void)
> else if (likely(imp != PRID_IMP_R6000 && imp != PRID_IMP_R6000A))
> return read_c0_random();
> else
> - return 0; /* no usable register */
> + return random_get_entropy_fallback(); /* no usable register */
> }
> #define random_get_entropy random_get_entropy
>
> --
> 2.35.1
Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
--
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea. [ RFC1925, 2.3 ]
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
tglx@linutronix.de, arnd@arndb.de, Theodore Ts'o <tytso@mit.edu>,
Dominik Brodowski <linux@dominikbrodowski.net>,
Russell King <linux@armlinux.org.uk>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
"David S . Miller" <davem@davemloft.net>,
Richard Weinberger <richard@nod.at>,
Anton Ivanov <anton.ivanov@cambridgegreys.com>,
Johannes Berg <johannes@sipsolutions.net>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"H . Peter Anvin" <hpa@zytor.com>,
Chris Zankel <chris@zankel.net>,
Max Filippov <jcmvbkbc@gmail.com>,
John Stultz <john.stultz@linaro.org>,
Stephen Boyd <sboyd@kernel.org>,
Dinh Nguyen <dinguyen@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-m68k@lists.linux-m68k.org, linux-mips@vger.kernel.org,
linux-riscv@lists.infradead.org, sparclinux@vger.kernel.org,
linux-um@lists.infradead.org, x86@kernel.org,
linux-xtensa@linux-xtensa.org
Subject: Re: [PATCH v4 04/11] mips: use fallback for random_get_entropy() instead of zero
Date: Wed, 13 Apr 2022 14:25:46 +0200 [thread overview]
Message-ID: <20220413122546.GA11860@alpha.franken.de> (raw)
In-Reply-To: <20220413115411.21489-5-Jason@zx2c4.com>
On Wed, Apr 13, 2022 at 01:54:04PM +0200, Jason A. Donenfeld wrote:
> In the event that random_get_entropy() can't access a cycle counter or
> similar, falling back to returning 0 is really not the best we can do.
> Instead, at least calling random_get_entropy_fallback() would be
> preferable, because that always needs to return _something_, even
> falling back to jiffies eventually. It's not as though
> random_get_entropy_fallback() is super high precision or guaranteed to
> be entropic, but basically anything that's not zero all the time is
> better than returning zero all the time.
>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
> ---
> arch/mips/include/asm/timex.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/mips/include/asm/timex.h b/arch/mips/include/asm/timex.h
> index b05bb70a2e46..abc60a6395e3 100644
> --- a/arch/mips/include/asm/timex.h
> +++ b/arch/mips/include/asm/timex.h
> @@ -94,7 +94,7 @@ static inline unsigned long random_get_entropy(void)
> else if (likely(imp != PRID_IMP_R6000 && imp != PRID_IMP_R6000A))
> return read_c0_random();
> else
> - return 0; /* no usable register */
> + return random_get_entropy_fallback(); /* no usable register */
> }
> #define random_get_entropy random_get_entropy
>
> --
> 2.35.1
Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
--
Crap can work. Given enough thrust pigs will fly, but it's not necessarily a
good idea. [ RFC1925, 2.3 ]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-04-13 12:27 UTC|newest]
Thread overview: 103+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-13 11:54 [PATCH v4 00/11] archs/random: fallback to best raw ktime when no cycle counter Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 01/11] timekeeping: add raw clock fallback for random_get_entropy() Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 14:32 ` Rob Herring
2022-04-13 14:32 ` Rob Herring
2022-04-13 14:32 ` Rob Herring
2022-04-13 22:38 ` Jason A. Donenfeld
2022-04-13 22:38 ` Jason A. Donenfeld
2022-04-13 22:38 ` Jason A. Donenfeld
2022-04-14 20:41 ` Rob Herring
2022-04-14 20:41 ` Rob Herring
2022-04-14 20:41 ` Rob Herring
2022-04-14 21:49 ` H. Peter Anvin
2022-04-14 21:49 ` H. Peter Anvin
2022-04-14 21:49 ` H. Peter Anvin
2022-04-14 10:12 ` Russell King (Oracle)
2022-04-14 10:12 ` Russell King (Oracle)
2022-04-14 10:12 ` Russell King (Oracle)
2022-04-14 11:56 ` Jason A. Donenfeld
2022-04-14 11:56 ` Jason A. Donenfeld
2022-04-14 11:56 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 02/11] m68k: use fallback for random_get_entropy() instead of zero Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 03/11] riscv: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 14:40 ` Rob Herring
2022-04-13 14:40 ` Rob Herring
2022-04-13 14:40 ` Rob Herring
2022-04-13 22:40 ` Jason A. Donenfeld
2022-04-13 22:40 ` Jason A. Donenfeld
2022-04-13 22:40 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 04/11] mips: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 12:25 ` Thomas Bogendoerfer [this message]
2022-04-13 12:25 ` Thomas Bogendoerfer
2022-04-13 12:25 ` Thomas Bogendoerfer
2022-04-13 12:46 ` Maciej W. Rozycki
2022-04-13 12:46 ` Maciej W. Rozycki
2022-04-13 12:46 ` Maciej W. Rozycki
2022-04-13 22:35 ` Jason A. Donenfeld
2022-04-13 22:35 ` Jason A. Donenfeld
2022-04-13 22:35 ` Jason A. Donenfeld
2022-04-14 1:16 ` Maciej W. Rozycki
2022-04-14 1:16 ` Maciej W. Rozycki
2022-04-14 1:16 ` Maciej W. Rozycki
2022-04-14 9:27 ` Jason A. Donenfeld
2022-04-14 9:27 ` Jason A. Donenfeld
2022-04-14 9:27 ` Jason A. Donenfeld
2022-04-15 12:26 ` Maciej W. Rozycki
2022-04-15 12:26 ` Maciej W. Rozycki
2022-04-15 12:26 ` Maciej W. Rozycki
2022-04-16 11:09 ` Jason A. Donenfeld
2022-04-16 11:09 ` Jason A. Donenfeld
2022-04-16 11:09 ` Jason A. Donenfeld
2022-04-16 14:44 ` Maciej W. Rozycki
2022-04-16 14:44 ` Maciej W. Rozycki
2022-04-16 14:44 ` Maciej W. Rozycki
2022-04-16 22:54 ` Jason A. Donenfeld
2022-04-16 22:54 ` Jason A. Donenfeld
2022-04-16 22:54 ` Jason A. Donenfeld
2022-04-18 7:10 ` Thomas Bogendoerfer
2022-04-18 7:10 ` Thomas Bogendoerfer
2022-04-18 7:10 ` Thomas Bogendoerfer
2022-04-18 7:10 ` Thomas Bogendoerfer
2022-04-23 23:33 ` Maciej W. Rozycki
2022-04-23 23:33 ` Maciej W. Rozycki
2022-04-23 23:33 ` Maciej W. Rozycki
2022-04-24 8:15 ` Jason A. Donenfeld
2022-04-24 8:15 ` Jason A. Donenfeld
2022-04-24 8:15 ` Jason A. Donenfeld
2022-04-24 10:51 ` Maciej W. Rozycki
2022-04-24 10:51 ` Maciej W. Rozycki
2022-04-24 10:51 ` Maciej W. Rozycki
2022-04-13 11:54 ` [PATCH v4 05/11] arm: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 06/11] nios2: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-05-23 13:58 ` Dinh Nguyen
2022-05-23 13:58 ` Dinh Nguyen
2022-05-23 13:58 ` Dinh Nguyen
2022-04-13 11:54 ` [PATCH v4 07/11] x86: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 08/11] um: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 09/11] sparc: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 10/11] xtensa: " Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` [PATCH v4 11/11] random: insist on random_get_entropy() existing in order to simplify Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
2022-04-13 11:54 ` Jason A. Donenfeld
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=20220413122546.GA11860@alpha.franken.de \
--to=tsbogend@alpha.franken.de \
--cc=Jason@zx2c4.com \
--cc=anton.ivanov@cambridgegreys.com \
--cc=aou@eecs.berkeley.edu \
--cc=arnd@arndb.de \
--cc=bp@alien8.de \
--cc=catalin.marinas@arm.com \
--cc=chris@zankel.net \
--cc=dave.hansen@linux.intel.com \
--cc=davem@davemloft.net \
--cc=dinguyen@kernel.org \
--cc=geert@linux-m68k.org \
--cc=hpa@zytor.com \
--cc=jcmvbkbc@gmail.com \
--cc=johannes@sipsolutions.net \
--cc=john.stultz@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-m68k@lists.linux-m68k.org \
--cc=linux-mips@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-um@lists.infradead.org \
--cc=linux-xtensa@linux-xtensa.org \
--cc=linux@armlinux.org.uk \
--cc=linux@dominikbrodowski.net \
--cc=mingo@redhat.com \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=richard@nod.at \
--cc=sboyd@kernel.org \
--cc=sparclinux@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=tytso@mit.edu \
--cc=will@kernel.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 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.