mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
Fix a soft lockup regression when reading from /dev/random in early boot
-----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEK2m5VNv+CHkogTfJ8vlZVpUNgaMFAlzqGSoACgkQ8vlZVpUN gaNhqQgAiUHwKalYrZ82NwBQGnHcKcWv3JEE9vt8Bsu4fPUzirrEqYiSudvj6nHv 8uYFKHmGx7+GEWxLfwlVZzRjLlgZqa0kpyfNFEL01KFdbFsKQN4gTYvvky+OVftr nRZ7tp66Y5hErwn/Y0wWn9WHFOykhxGi+kv5m5CFZ7MNec/b+1H2U1hXkhSt6oug IO2wLZYLFSPXlrqfJLV7HYJ/OX1mO7g1viCNGvpRmrvLmjmO09q0/6DF3QNAvGmj sXXu0eV+N/Ir0so0RbeN60ZeDXaoyeOZbXFlH9zfJEgkoFv+adZjT65bQEvSUWQ2 J/v4rLXd8gmCiVwOuEbCoLKebT/nbg== =Wf1M -----END PGP SIGNATURE----- Merge tag 'random_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/random Pull /dev/random fix from Ted Ts'o: "Fix a soft lockup regression when reading from /dev/random in early boot" * tag 'random_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/random: random: fix soft lockup when trying to read from an uninitialized blocking pool
This commit is contained in:
commit
128f2bfafc
@ -772,8 +772,11 @@ retry:
|
|||||||
if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig)
|
if (cmpxchg(&r->entropy_count, orig, entropy_count) != orig)
|
||||||
goto retry;
|
goto retry;
|
||||||
|
|
||||||
if (has_initialized)
|
if (has_initialized) {
|
||||||
r->initialized = 1;
|
r->initialized = 1;
|
||||||
|
wake_up_interruptible(&random_read_wait);
|
||||||
|
kill_fasync(&fasync, SIGIO, POLL_IN);
|
||||||
|
}
|
||||||
|
|
||||||
trace_credit_entropy_bits(r->name, nbits,
|
trace_credit_entropy_bits(r->name, nbits,
|
||||||
entropy_count >> ENTROPY_SHIFT, _RET_IP_);
|
entropy_count >> ENTROPY_SHIFT, _RET_IP_);
|
||||||
@ -789,6 +792,13 @@ retry:
|
|||||||
entropy_bits = r->entropy_count >> ENTROPY_SHIFT;
|
entropy_bits = r->entropy_count >> ENTROPY_SHIFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* initialize the blocking pool if necessary */
|
||||||
|
if (entropy_bits >= random_read_wakeup_bits &&
|
||||||
|
!other->initialized) {
|
||||||
|
schedule_work(&other->push_work);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* should we wake readers? */
|
/* should we wake readers? */
|
||||||
if (entropy_bits >= random_read_wakeup_bits &&
|
if (entropy_bits >= random_read_wakeup_bits &&
|
||||||
wq_has_sleeper(&random_read_wait)) {
|
wq_has_sleeper(&random_read_wait)) {
|
||||||
@ -1936,8 +1946,8 @@ _random_read(int nonblock, char __user *buf, size_t nbytes)
|
|||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
|
|
||||||
wait_event_interruptible(random_read_wait,
|
wait_event_interruptible(random_read_wait,
|
||||||
ENTROPY_BITS(&input_pool) >=
|
blocking_pool.initialized &&
|
||||||
random_read_wakeup_bits);
|
(ENTROPY_BITS(&input_pool) >= random_read_wakeup_bits));
|
||||||
if (signal_pending(current))
|
if (signal_pending(current))
|
||||||
return -ERESTARTSYS;
|
return -ERESTARTSYS;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user