aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2021-12-20 16:41:57 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2022-01-07 00:25:25 +0100
commit009ba8568be497c640cab7571f7bfd18345d7b24 (patch)
tree1adc5b2e17ac2cbce18f6a1cd2a42078225769bb /crypto
parentrandom: fix data race on crng_node_pool (diff)
downloadlinux-dev-009ba8568be497c640cab7571f7bfd18345d7b24.tar.xz
linux-dev-009ba8568be497c640cab7571f7bfd18345d7b24.zip
random: fix data race on crng init time
_extract_crng() does plain loads of crng->init_time and crng_global_init_time, which causes undefined behavior if crng_reseed() and RNDRESEEDCRNG modify these corrently. Use READ_ONCE() and WRITE_ONCE() to make the behavior defined. Don't fix the race on crng->init_time by protecting it with crng->lock, since it's not a problem for duplicate reseedings to occur. I.e., the lockless access with READ_ONCE() is fine. Fixes: d848e5f8e1eb ("random: add new ioctl RNDRESEEDCRNG") Fixes: e192be9d9a30 ("random: replace non-blocking pool with a Chacha20-based CRNG") Cc: stable@vger.kernel.org Signed-off-by: Eric Biggers <ebiggers@google.com> Acked-by: Paul E. McKenney <paulmck@kernel.org> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'crypto')
0 files changed, 0 insertions, 0 deletions