Skip to content

Commit

Permalink
random: make consistent usage of crng_ready()
Browse files Browse the repository at this point in the history
commit a96cfe2 upstream.

Rather than sometimes checking `crng_init < 2`, we should always use the
crng_ready() macro, so that should we change anything later, it's
consistent. Additionally, that macro already has a likely() around it,
which means we don't need to open code our own likely() and unlikely()
annotations.

Cc: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
zx2c4 authored and gregkh committed May 30, 2022
1 parent 95a1c94 commit 9891211
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions drivers/char/random.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,13 @@ static void try_to_generate_entropy(void);
*/
int wait_for_random_bytes(void)
{
if (likely(crng_ready()))
return 0;

do {
while (!crng_ready()) {
int ret;
ret = wait_event_interruptible_timeout(crng_init_wait, crng_ready(), HZ);
if (ret)
return ret > 0 ? 0 : ret;

try_to_generate_entropy();
} while (!crng_ready());

}
return 0;
}
EXPORT_SYMBOL(wait_for_random_bytes);
Expand Down Expand Up @@ -293,7 +288,7 @@ static void crng_reseed(void)
++next_gen;
WRITE_ONCE(base_crng.generation, next_gen);
WRITE_ONCE(base_crng.birth, jiffies);
if (crng_init < 2) {
if (!crng_ready()) {
crng_init = 2;
finalize_init = true;
}
Expand Down Expand Up @@ -361,7 +356,7 @@ static void crng_make_state(u32 chacha_state[CHACHA_STATE_WORDS],
* ready, we do fast key erasure with the base_crng directly, because
* this is what crng_pre_init_inject() mutates during early init.
*/
if (unlikely(!crng_ready())) {
if (!crng_ready()) {
bool ready;

spin_lock_irqsave(&base_crng.lock, flags);
Expand Down Expand Up @@ -804,7 +799,7 @@ static void credit_entropy_bits(size_t nbits)
entropy_count = min_t(unsigned int, POOL_BITS, orig + add);
} while (cmpxchg(&input_pool.entropy_count, orig, entropy_count) != orig);

if (crng_init < 2 && entropy_count >= POOL_MIN_BITS)
if (!crng_ready() && entropy_count >= POOL_MIN_BITS)
crng_reseed();
}

Expand Down Expand Up @@ -961,7 +956,7 @@ int __init rand_initialize(void)
extract_entropy(base_crng.key, sizeof(base_crng.key));
++base_crng.generation;

if (arch_init && trust_cpu && crng_init < 2) {
if (arch_init && trust_cpu && !crng_ready()) {
crng_init = 2;
pr_notice("crng init done (trusting CPU's manufacturer)\n");
}
Expand Down Expand Up @@ -1550,7 +1545,7 @@ static long random_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
case RNDRESEEDCRNG:
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
if (crng_init < 2)
if (!crng_ready())
return -ENODATA;
crng_reseed();
return 0;
Expand Down

0 comments on commit 9891211

Please sign in to comment.