diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-22 14:36:22 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-15 15:04:11 -0400 |
| commit | be0052b8995dfa8d43a94badd54254e8cfc59471 (patch) | |
| tree | 3c7af3f5326f9ccf7f90d86c9768fce1455a26ad /drivers/char | |
| parent | 21a465d5868b83e17a1c2434864fbb95b6414481 (diff) | |
random: Use arch_get_random_int instead of cycle counter if avail
commit cf833d0b9937874b50ef2867c4e8badfd64948ce upstream.
We still don't use rdrand in /dev/random, which just seems stupid. We
accept the *cycle*counter* as a random input, but we don't accept
rdrand? That's just broken.
Sure, people can do things in user space (write to /dev/random, use
rdrand in addition to /dev/random themselves etc etc), but that
*still* seems to be a particularly stupid reason for saying "we
shouldn't bother to try to do better in /dev/random".
And even if somebody really doesn't trust rdrand as a source of random
bytes, it seems singularly stupid to trust the cycle counter *more*.
So I'd suggest the attached patch. I'm not going to even bother
arguing that we should add more bits to the entropy estimate, because
that's not the point - I don't care if /dev/random fills up slowly or
not, I think it's just stupid to not use the bits we can get from
rdrand and mix them into the strong randomness pool.
Link: http://lkml.kernel.org/r/CA%2B55aFwn59N1=m651QAyTy-1gO1noGbK18zwKDwvwqnravA84A@mail.gmail.com
Acked-by: "David S. Miller" <davem@davemloft.net>
Acked-by: "Theodore Ts'o" <tytso@mit.edu>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Matt Mackall <mpm@selenic.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
| -rw-r--r-- | drivers/char/random.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c index 8b47c2b5743..e35f6e8680a 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c | |||
| @@ -624,8 +624,8 @@ static struct timer_rand_state input_timer_state; | |||
| 624 | static void add_timer_randomness(struct timer_rand_state *state, unsigned num) | 624 | static void add_timer_randomness(struct timer_rand_state *state, unsigned num) |
| 625 | { | 625 | { |
| 626 | struct { | 626 | struct { |
| 627 | cycles_t cycles; | ||
| 628 | long jiffies; | 627 | long jiffies; |
| 628 | unsigned cycles; | ||
| 629 | unsigned num; | 629 | unsigned num; |
| 630 | } sample; | 630 | } sample; |
| 631 | long delta, delta2, delta3; | 631 | long delta, delta2, delta3; |
| @@ -637,7 +637,11 @@ static void add_timer_randomness(struct timer_rand_state *state, unsigned num) | |||
| 637 | goto out; | 637 | goto out; |
| 638 | 638 | ||
| 639 | sample.jiffies = jiffies; | 639 | sample.jiffies = jiffies; |
| 640 | sample.cycles = get_cycles(); | 640 | |
| 641 | /* Use arch random value, fall back to cycles */ | ||
| 642 | if (!arch_get_random_int(&sample.cycles)) | ||
| 643 | sample.cycles = get_cycles(); | ||
| 644 | |||
| 641 | sample.num = num; | 645 | sample.num = num; |
| 642 | mix_pool_bytes(&input_pool, &sample, sizeof(sample)); | 646 | mix_pool_bytes(&input_pool, &sample, sizeof(sample)); |
| 643 | 647 | ||
