NetBSD/sys/netinet6
tls 3afd44cf08 First step of random number subsystem rework described in
<20111022023242.BA26F14A158@mail.netbsd.org>.  This change includes
the following:

	An initial cleanup and minor reorganization of the entropy pool
	code in sys/dev/rnd.c and sys/dev/rndpool.c.  Several bugs are
	fixed.  Some effort is made to accumulate entropy more quickly at
	boot time.

	A generic interface, "rndsink", is added, for stream generators to
	request that they be re-keyed with good quality entropy from the pool
	as soon as it is available.

	The arc4random()/arc4randbytes() implementation in libkern is
	adjusted to use the rndsink interface for rekeying, which helps
	address the problem of low-quality keys at boot time.

	An implementation of the FIPS 140-2 statistical tests for random
	number generator quality is provided (libkern/rngtest.c).  This
	is based on Greg Rose's implementation from Qualcomm.

	A new random stream generator, nist_ctr_drbg, is provided.  It is
	based on an implementation of the NIST SP800-90 CTR_DRBG by
	Henric Jungheim.  This generator users AES in a modified counter
	mode to generate a backtracking-resistant random stream.

	An abstraction layer, "cprng", is provided for in-kernel consumers
	of randomness.  The arc4random/arc4randbytes API is deprecated for
	in-kernel use.  It is replaced by "cprng_strong".  The current
	cprng_fast implementation wraps the existing arc4random
	implementation.  The current cprng_strong implementation wraps the
	new CTR_DRBG implementation.  Both interfaces are rekeyed from
	the entropy pool automatically at intervals justifiable from best
	current cryptographic practice.

	In some quick tests, cprng_fast() is about the same speed as
	the old arc4randbytes(), and cprng_strong() is about 20% faster
	than rnd_extract_data().  Performance is expected to improve.

	The AES code in src/crypto/rijndael is no longer an optional
	kernel component, as it is required by cprng_strong, which is
	not an optional kernel component.

	The entropy pool output is subjected to the rngtest tests at
	startup time; if it fails, the system will reboot.  There is
	approximately a 3/10000 chance of a false positive from these
	tests.  Entropy pool _input_ from hardware random numbers is
	subjected to the rngtest tests at attach time, as well as the
	FIPS continuous-output test, to detect bad or stuck hardware
	RNGs; if any are detected, they are detached, but the system
	continues to run.

	A problem with rndctl(8) is fixed -- datastructures with
	pointers in arrays are no longer passed to userspace (this
	was not a security problem, but rather a major issue for
	compat32).  A new kernel will require a new rndctl.

	The sysctl kern.arandom() and kern.urandom() nodes are hooked
	up to the new generators, but the /dev/*random pseudodevices
	are not, yet.

	Manual pages for the new kernel interfaces are forthcoming.
2011-11-19 22:51:18 +00:00
..
Makefile
ah.h
ah_aesxcbcmac.c
ah_aesxcbcmac.h
ah_core.c
ah_input.c Retire varargs.h support. Move machine/stdarg.h logic into MI 2011-07-17 20:54:30 +00:00
ah_output.c
dest6.c
esp.h
esp_aesctr.c Fix some code paths where pointers are dereferenced after checking that 2010-08-14 18:28:59 +00:00
esp_aesctr.h
esp_core.c Fix some code paths where pointers are dereferenced after checking that 2010-08-14 18:28:59 +00:00
esp_input.c Retire varargs.h support. Move machine/stdarg.h logic into MI 2011-07-17 20:54:30 +00:00
esp_output.c
esp_rijndael.c
esp_rijndael.h
files.ipsec First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
files.netinet6
frag6.c Change the IPv6 reassembly mechanism to use mutex(9). 2011-11-04 00:22:33 +00:00
icmp6.c NULL does not need a cast 2011-08-31 18:31:02 +00:00
icmp6_private.h
in6.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
in6.h RA flood mitigation via a limit on accepted routes: 2011-05-24 18:07:11 +00:00
in6_cksum.c fix assertions 2011-04-25 22:04:32 +00:00
in6_gif.c
in6_gif.h
in6_ifattach.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
in6_ifattach.h
in6_offload.c ip6_undefer_csum: 2011-04-25 22:07:57 +00:00
in6_offload.h undefer csum in looutput. 2011-04-25 22:20:59 +00:00
in6_pcb.c Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00
in6_pcb.h Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00
in6_proto.c Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00
in6_src.c Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00
in6_var.h
ip6_etherip.c Retire varargs.h support. Move machine/stdarg.h logic into MI 2011-07-17 20:54:30 +00:00
ip6_etherip.h Make the EtherIP in IPv6 input path work. 2010-08-24 00:07:00 +00:00
ip6_flow.c
ip6_forward.c
ip6_id.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
ip6_input.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
ip6_mroute.c Use if_addr_init() and if_mcast_op() instead of ifp->if_ioctl(). 2011-10-19 01:52:22 +00:00
ip6_mroute.h
ip6_output.c undefer csum in looutput. 2011-04-25 22:20:59 +00:00
ip6_private.h
ip6_var.h Change the IPv6 reassembly mechanism to use mutex(9). 2011-11-04 00:22:33 +00:00
ip6protosw.h
ipcomp.h
ipcomp_core.c Retire varargs.h support. Move machine/stdarg.h logic into MI 2011-07-17 20:54:30 +00:00
ipcomp_input.c Retire varargs.h support. Move machine/stdarg.h logic into MI 2011-07-17 20:54:30 +00:00
ipcomp_output.c Retire varargs.h support. Move machine/stdarg.h logic into MI 2011-07-17 20:54:30 +00:00
ipsec.c
ipsec.h
ipsec_private.h
mld6.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
mld6_var.h First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
nd6.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
nd6.h First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
nd6_nbr.c
nd6_rtr.c First step of random number subsystem rework described in 2011-11-19 22:51:18 +00:00
pim6.h
pim6_var.h
raw_ip6.c Reduces the resources demanded by TCP sessions in TIME_WAIT-state using 2011-05-03 18:28:44 +00:00
raw_ip6.h
route6.c
scope6.c
scope6_var.h
udp6.h
udp6_output.c Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00
udp6_private.h
udp6_usrreq.c Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00
udp6_var.h Add inet6 part of the rfc6056 code contributed by Vlad Balan as part of 2011-09-24 17:22:14 +00:00