aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/rdrand_rng
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2014-10-30 21:21:53 +0000
committerMark Murray <markm@FreeBSD.org>2014-10-30 21:21:53 +0000
commit10cb24248a6f13974e11c255c8014cfefe6420a7 (patch)
treed5dfa61a018a7d209b25f173c6ee76709037035a /sys/modules/rdrand_rng
parent39d22d86ab05fb09689a9882909dfd35ab546ade (diff)
downloadsrc-10cb24248a6f13974e11c255c8014cfefe6420a7.tar.gz
src-10cb24248a6f13974e11c255c8014cfefe6420a7.zip
This is the much-discussed major upgrade to the random(4) device, known to you all as /dev/random.
This code has had an extensive rewrite and a good series of reviews, both by the author and other parties. This means a lot of code has been simplified. Pluggable structures for high-rate entropy generators are available, and it is most definitely not the case that /dev/random can be driven by only a hardware souce any more. This has been designed out of the device. Hardware sources are stirred into the CSPRNG (Yarrow, Fortuna) like any other entropy source. Pluggable modules may be written by third parties for additional sources. The harvesting structures and consequently the locking have been simplified. Entropy harvesting is done in a more general way (the documentation for this will follow). There is some GREAT entropy to be had in the UMA allocator, but it is disabled for now as messing with that is likely to annoy many people. The venerable (but effective) Yarrow algorithm, which is no longer supported by its authors now has an alternative, Fortuna. For now, Yarrow is retained as the default algorithm, but this may be changed using a kernel option. It is intended to make Fortuna the default algorithm for 11.0. Interested parties are encouraged to read ISBN 978-0-470-47424-2 "Cryptography Engineering" By Ferguson, Schneier and Kohno for Fortuna's gory details. Heck, read it anyway. Many thanks to Arthur Mesh who did early grunt work, and who got caught in the crossfire rather more than he deserved to. My thanks also to folks who helped me thresh this out on whiteboards and in the odd "Hallway track", or otherwise. My Nomex pants are on. Let the feedback commence! Reviewed by: trasz,des(partial),imp(partial?),rwatson(partial?) Approved by: so(des)
Notes
Notes: svn path=/head/; revision=273872
Diffstat (limited to 'sys/modules/rdrand_rng')
-rw-r--r--sys/modules/rdrand_rng/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/rdrand_rng/Makefile b/sys/modules/rdrand_rng/Makefile
new file mode 100644
index 000000000000..9d5adc334145
--- /dev/null
+++ b/sys/modules/rdrand_rng/Makefile
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/random
+
+KMOD= rdrand_rng
+SRCS= ivy.c
+SRCS+= bus_if.h device_if.h
+
+CFLAGS+= -I${.CURDIR}/../..
+
+.include <bsd.kmod.mk>