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

random: avoid initializing twice in credit race

stable inclusion
from stable-v5.10.119
commit 4c4110c052e86c5e1f6debf51c9c8cc0e501f19e
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=4c4110c052e86c5e1f6debf51c9c8cc0e501f19e

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

commit fed7ef06 upstream.

Since all changes of crng_init now go through credit_init_bits(), we can
fix a long standing race in which two concurrent callers of
credit_init_bits() have the new bit count >= some threshold, but are
doing so with crng_init as a lower threshold, checked outside of a lock,
resulting in crng_reseed() or similar being called twice.

In order to fix this, we can use the original cmpxchg value of the bit
count, and only change crng_init when the bit count transitions from
below a threshold to meeting the threshold.
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>
上级 8e8127c2
...@@ -823,7 +823,7 @@ static void extract_entropy(void *buf, size_t nbytes) ...@@ -823,7 +823,7 @@ static void extract_entropy(void *buf, size_t nbytes)
static void credit_init_bits(size_t nbits) static void credit_init_bits(size_t nbits)
{ {
unsigned int init_bits, orig, add; unsigned int new, orig, add;
unsigned long flags; unsigned long flags;
if (crng_ready() || !nbits) if (crng_ready() || !nbits)
...@@ -833,12 +833,12 @@ static void credit_init_bits(size_t nbits) ...@@ -833,12 +833,12 @@ static void credit_init_bits(size_t nbits)
do { do {
orig = READ_ONCE(input_pool.init_bits); orig = READ_ONCE(input_pool.init_bits);
init_bits = min_t(unsigned int, POOL_BITS, orig + add); new = min_t(unsigned int, POOL_BITS, orig + add);
} while (cmpxchg(&input_pool.init_bits, orig, init_bits) != orig); } while (cmpxchg(&input_pool.init_bits, orig, new) != orig);
if (!crng_ready() && init_bits >= POOL_READY_BITS) if (orig < POOL_READY_BITS && new >= POOL_READY_BITS)
crng_reseed(); crng_reseed();
else if (unlikely(crng_init == CRNG_EMPTY && init_bits >= POOL_EARLY_BITS)) { else if (orig < POOL_EARLY_BITS && new >= POOL_EARLY_BITS) {
spin_lock_irqsave(&base_crng.lock, flags); spin_lock_irqsave(&base_crng.lock, flags);
if (crng_init == CRNG_EMPTY) { if (crng_init == CRNG_EMPTY) {
extract_entropy(base_crng.key, sizeof(base_crng.key)); extract_entropy(base_crng.key, sizeof(base_crng.key));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册