diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-04 11:16:01 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-15 08:10:27 -0700 |
commit | 1d0eb350ee278cb257178a14c4c9d965d7d2835e (patch) | |
tree | 16b4cc295085db157d441e2b08821f92d9161363 /include | |
parent | e0604ba541f04a542ee9a7f6a468a60688ad8c72 (diff) | |
download | linux-3.10-1d0eb350ee278cb257178a14c4c9d965d7d2835e.tar.gz linux-3.10-1d0eb350ee278cb257178a14c4c9d965d7d2835e.tar.bz2 linux-3.10-1d0eb350ee278cb257178a14c4c9d965d7d2835e.zip |
random: create add_device_randomness() interface
commit a2080a67abe9e314f9e9c2cc3a4a176e8a8f8793 upstream.
Add a new interface, add_device_randomness() for adding data to the
random pool that is likely to differ between two devices (or possibly
even per boot). This would be things like MAC addresses or serial
numbers, or the read-out of the RTC. This does *not* add any actual
entropy to the pool, but it initializes the pool to different values
for devices that might otherwise be identical and have very little
entropy available to them (particularly common in the embedded world).
[ Modified by tytso to mix in a timestamp, since there may be some
variability caused by the time needed to detect/configure the hardware
in question. ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/random.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/random.h b/include/linux/random.h index 6ef39d7f2db..e14b4387354 100644 --- a/include/linux/random.h +++ b/include/linux/random.h @@ -50,6 +50,7 @@ struct rnd_state { extern void rand_initialize_irq(int irq); +extern void add_device_randomness(const void *, unsigned int); extern void add_input_randomness(unsigned int type, unsigned int code, unsigned int value); extern void add_interrupt_randomness(int irq, int irq_flags); |