提交 c99d689e 编写于 作者: J Jason A. Donenfeld 提交者: Zheng Zengkai

random: do not use batches when !crng_ready()

stable inclusion
from stable-v5.10.119
commit 273aebb50be6ce16e1b056cf9b39447821a5ac35
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I5L6BB

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=273aebb50be6ce16e1b056cf9b39447821a5ac35

--------------------------------

commit cbe89e5a upstream.

It's too hard to keep the batches synchronized, and pointless anyway,
since in !crng_ready(), we're updating the base_crng key really often,
where batching only hurts. So instead, if the crng isn't ready, just
call into get_random_bytes(). At this stage nothing is performance
critical anyhow.

Cc: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: NDominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: NJason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
Acked-by: NXie XiuQi <xiexiuqi@huawei.com>
上级 3bf269a3
......@@ -467,10 +467,8 @@ static void crng_pre_init_inject(const void *input, size_t len, bool account)
if (account) {
crng_init_cnt += min_t(size_t, len, CRNG_INIT_CNT_THRESH - crng_init_cnt);
if (crng_init_cnt >= CRNG_INIT_CNT_THRESH) {
++base_crng.generation;
if (crng_init_cnt >= CRNG_INIT_CNT_THRESH)
crng_init = 1;
}
}
spin_unlock_irqrestore(&base_crng.lock, flags);
......@@ -626,6 +624,11 @@ u64 get_random_u64(void)
warn_unseeded_randomness(&previous);
if (!crng_ready()) {
_get_random_bytes(&ret, sizeof(ret));
return ret;
}
local_lock_irqsave(&batched_entropy_u64.lock, flags);
batch = raw_cpu_ptr(&batched_entropy_u64);
......@@ -660,6 +663,11 @@ u32 get_random_u32(void)
warn_unseeded_randomness(&previous);
if (!crng_ready()) {
_get_random_bytes(&ret, sizeof(ret));
return ret;
}
local_lock_irqsave(&batched_entropy_u32.lock, flags);
batch = raw_cpu_ptr(&batched_entropy_u32);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册