diff options
author | Harald Freudenberger <freude@linux.vnet.ibm.com> | 2015-05-04 13:27:49 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-05-13 09:57:38 +0200 |
commit | c431761dddff87039edb3300b9b29d1f9e0af2c9 (patch) | |
tree | 5e295f98543fc9b954971d48940bb6fd7dcda99d /arch/s390/crypto/prng.c | |
parent | f60b8d449d850ae4aa3ee4fdaefec6b7882c92f7 (diff) | |
download | linux-c431761dddff87039edb3300b9b29d1f9e0af2c9.tar.gz linux-c431761dddff87039edb3300b9b29d1f9e0af2c9.tar.bz2 linux-c431761dddff87039edb3300b9b29d1f9e0af2c9.zip |
s390/crypto: fix stckf loop
The store-clock-fast loop in generate_entropy() mixes (exors)
only the first 64 bytes of the initial page before doing the
first SHA256. Fix the loop to mix the store-clock-fast values
all over the page.
Signed-off-by: Harald Freudenberger <freude@linux.vnet.ibm.com>
Reported-by: David Binderman <dcb314@hotmail.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/crypto/prng.c')
-rw-r--r-- | arch/s390/crypto/prng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/crypto/prng.c b/arch/s390/crypto/prng.c index 1f374b39a4ec..9d5192c94963 100644 --- a/arch/s390/crypto/prng.c +++ b/arch/s390/crypto/prng.c @@ -125,7 +125,7 @@ static int generate_entropy(u8 *ebuf, size_t nbytes) /* fill page with urandom bytes */ get_random_bytes(pg, PAGE_SIZE); /* exor page with stckf values */ - for (n = 0; n < sizeof(PAGE_SIZE/sizeof(u64)); n++) { + for (n = 0; n < PAGE_SIZE / sizeof(u64); n++) { u64 *p = ((u64 *)pg) + n; *p ^= get_tod_clock_fast(); } |