[GIT PULL] random number generator fixes for 6.2-rc1, part 2

From: Jason A. Donenfeld
Date: Mon Dec 19 2022 - 21:25:50 EST


Hi Linus,

As mentioned in the first pull for 6.2-rc1, this second late pull request has
two remaining changes that are now possible after you merged a few other
trees:

- #include <asm/archrandom.h> can be removed from random.h now, making the
direct use of the arch_random_* API more of a private implementation detail
between the archs and random.c, rather than something for general consumers.

- Two additional uses of prandom_u32_max() snuck in during the initial phase
of pulls, so these have been converted to get_random_u32_below(), and now
the deprecated prandom_u32_max() alias -- which was just a wrapper around
get_random_u32_below() -- can be removed.

In addition, there is one fix:

- Check efi_rt_services_supported() before attempting to use an EFI runtime
function. This affected EFI systems that disable runtime services yet still
boot via EFI (e.g. the reporter's Dell arm64 laptop), as well systems where
EFI runtime services have been forcibly disabled, such as on PREEMPT_RT. On
those machines, a very early and hard to diagnose crash would happen,
preventing boot.

Please pull.

Thanks,
Jason

The following changes since commit 6feb57c2fd7c787aecf2846a535248899e7b70fa:

Merge tag 'kbuild-v6.2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild (2022-12-19 12:33:32 -0600)

are available in the Git repository at:

https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git tags/random-6.2-rc1-for-linus

for you to fetch changes up to 3c202d14a9d73fb63c3dccb18feac5618c21e1c4:

prandom: remove prandom_u32_max() (2022-12-20 03:13:45 +0100)

----------------------------------------------------------------
Random number generator fixes for Linux 6.2-rc1.
----------------------------------------------------------------

Jason A. Donenfeld (2):
random: do not include <asm/archrandom.h> from random.h
prandom: remove prandom_u32_max()

Johan Hovold (1):
efi: random: fix NULL-deref when refreshing seed

arch/powerpc/kernel/setup-common.c | 1 +
arch/s390/kernel/setup.c | 1 +
arch/x86/mm/cpu_entry_area.c | 2 +-
drivers/char/hw_random/powernv-rng.c | 1 +
drivers/char/hw_random/s390-trng.c | 1 +
drivers/char/random.c | 1 +
drivers/firmware/efi/efi.c | 4 +++-
include/linux/prandom.h | 6 ------
include/linux/random.h | 2 --
net/ipv4/tcp_plb.c | 2 +-
10 files changed, 10 insertions(+), 11 deletions(-)