The NetBSD Project

CVS log for src/sys/kern/kern_entropy.c

[BACK] Up to [cvs.NetBSD.org] / src / sys / kern

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.66 / (download) - annotate - [select for diffs], Wed Oct 4 20:28:06 2023 UTC (6 months, 2 weeks ago) by ad
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, HEAD
Changes since 1.65: +5 -5 lines
Diff to previous 1.65 (colored) to selected 1.9 (colored)

Eliminate l->l_ncsw and l->l_nivcsw.  From memory think they were added
before we had per-LWP struct rusage; the same is now tracked there.

Revision 1.57.4.4 / (download) - annotate - [select for diffs], Fri Aug 11 14:35:25 2023 UTC (8 months, 1 week ago) by martin
Branch: netbsd-10
CVS Tags: netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1
Changes since 1.57.4.3: +563 -269 lines
Diff to previous 1.57.4.3 (colored) to branchpoint 1.57 (colored) next main 1.58 (colored) to selected 1.9 (colored)

Pull up following revision(s) (requested by riastradh in ticket #319):

	sys/dev/pci/ubsec.c: revision 1.64
	sys/dev/pci/hifn7751.c: revision 1.82
	lib/libc/gen/getentropy.3: revision 1.5
	lib/libc/gen/getentropy.3: revision 1.6
	share/man/man4/rnd.4: revision 1.41
	lib/libc/sys/getrandom.2: revision 1.2
	lib/libc/sys/getrandom.2: revision 1.3
	share/man/man5/rc.conf.5: revision 1.193
	share/man/man7/entropy.7: revision 1.5
	share/man/man7/entropy.7: revision 1.6
	share/man/man7/entropy.7: revision 1.7
	share/man/man7/entropy.7: revision 1.8
	etc/security: revision 1.130
	share/man/man7/entropy.7: revision 1.9
	etc/security: revision 1.131
	sys/crypto/cprng_fast/cprng_fast.c: revision 1.19
	sys/sys/rndio.h: revision 1.3
	tests/lib/libc/sys/t_getrandom.c: revision 1.5
	etc/defaults/rc.conf: revision 1.164
	etc/defaults/rc.conf: revision 1.165
	sys/sys/rndsource.h: revision 1.10
	sys/kern/kern_entropy.c: revision 1.62
	sys/kern/kern_entropy.c: revision 1.63
	sys/kern/kern_entropy.c: revision 1.64
	sys/kern/subr_cprng.c: revision 1.44
	sys/kern/kern_entropy.c: revision 1.65
	sys/kern/kern_clock.c: revision 1.149
	sys/dev/pci/viornd.c: revision 1.22
	share/man/man9/rnd.9: revision 1.32
	sys/kern/subr_prf.c: revision 1.202
	sys/sys/rndsource.h: revision 1.8
	sys/sys/rndsource.h: revision 1.9
	share/man/man7/entropy.7: revision 1.10

1. Reinstate netbsd<=9 entropy estimator to unblock /dev/random, in
   parallel with assessment of only confident entropy sources (seed,
   HWRNG) for security warnings like sshd keys in motd and daily
   insecurity report.

2. Make multiuser boot wait for first /dev/random output soon after
   loading a seed and configuring rndctl, so that getentropy(3) meets
   its contract starting early at boot without introducing blocking
   paths that could cause hangs in init(8) or single-user mode.
   Operators can choose to disable this wait in rc.conf.

3. Fix some bugs left over from reducing the global entropy lock from
   a spin lock at IPL_VM to an adaptive lock at IPL_SOFTSERIAL.

4. Update man pages.

Revision 1.65 / (download) - annotate - [select for diffs], Sat Aug 5 11:21:24 2023 UTC (8 months, 2 weeks ago) by riastradh
Branch: MAIN
Changes since 1.64: +5 -4 lines
Diff to previous 1.64 (colored) to selected 1.9 (colored)

cprng(9): Drop and retake percpu reference across entropy_extract.

entropy_extract may sleep on an adaptive lock, which invalidates
percpu(9) references.

Add a note in the comment over entropy_extract about this.

Discovered by stumbling upon this panic during a test run:

[   1.0200050] panic: kernel diagnostic assertion "(cprng == percpu_getref(cprng_fast_percpu)) && (percpu_putref(cprng_fast_percpu), true)" failed: file "/home/riastradh/netbsd/current/src/sys/rump/librump/rumpkern/../../../crypto/cprng_fast/cprng_fast.c", line 117

XXX pullup-10

Revision 1.64 / (download) - annotate - [select for diffs], Fri Aug 4 16:02:01 2023 UTC (8 months, 2 weeks ago) by riastradh
Branch: MAIN
Changes since 1.63: +4 -2 lines
Diff to previous 1.63 (colored) to selected 1.9 (colored)

entropy(9): Disable !cold assertion in rump for now.

Evidently rump starts threads before it sets cold = 0, and deferring
the call to rump_thread_allow(NULL) in rump.c rump_init_callback
until after setting cold = 0 doesn't work either -- rump kernels just
hang.  To be investigated -- for now, let's just stop breaking
thousands of tests.

Revision 1.63 / (download) - annotate - [select for diffs], Fri Aug 4 07:38:53 2023 UTC (8 months, 2 weeks ago) by riastradh
Branch: MAIN
Changes since 1.62: +230 -145 lines
Diff to previous 1.62 (colored) to selected 1.9 (colored)

entropy(9): Simplify stages.  Split interrupt vs non-interrupt paths.

- Nix the entropy stage (cold, warm, hot).  Just use the usual kernel
  `cold' (cold: single-core, single-thread; interrupts may happen),
  and don't make any three-way distinction about whether interrupts
  or threads or other CPUs can be running.

  Instead, while cold, use splhigh/splx or forbid paths to come from
  interrupt context, and while warm, use mutex or the per-CPU hard
  and soft interrupt paths for low latency.  This comes at a small
  cost to some interrupt latency, since we may stir the pool in
  interrupt context -- but only for a very short window early at boot
  between configure and configure2, so it's hard to imagine it
  matters much.

- Allow rnd_add_uint32 to run in hard interrupt context or with spin
  locks held, but defer processing to softint and drop samples on the
  floor if buffer is full.  This is mainly used for cheaply tossing
  samples from drivers for non-HWRNG devices into the entropy pool,
  so it is often used from interrupt context and/or under spin locks.

- New rnd_add_data_intr provides the interrupt-like data entry path
  for arbitrary buffers and driver-specified entropy estimates: defer
  processing to softint and drop samples on the floor if buffer is
  full.

- Document that rnd_add_data is forbidden under spin locks outside
  interrupt context (will crash in LOCKDEBUG), and inadvisable in
  interrupt context (but technically permitted just in case there are
  compatibility issues for now); later we can forbid it altogether in
  interrupt context or under spin locks.

- Audit all uses of rnd_add_data to use rnd_add_data_intr where it
  might be used in interrupt context or under a spin lock.

This fixes a regression from last year when the global entropy lock
was changed from IPL_VM (spin) to IPL_SOFTSERIAL (adaptive).  Thought
I'd caught all the problems from that, but another one bit three
different people this week, presumably because of recent changes that
led to more non-HWRNG drivers entering the entropy consolidation
path from rnd_add_uint32.

In my attempt to preserve the rnd(9) API for the (now long-since
abandoned) prospect of pullup to netbsd-9 in my rewrite of the
entropy subsystem in 2020, I didn't introduce a separate entry point
for entering entropy from interrupt context or equivalent, i.e., spin
locks held, and instead made rnd_add_data rely on cpu_intr_p() to
decide whether to process the whole sample under a lock or only take
as much as there's buffer space for before scheduling a softint.  In
retrospect, that was a mistake (though perhaps not as much of a
mistake as other entropy API decisions...), a mistake which is
finally getting rectified now by rnd_add_data_intr.

XXX pullup-10

Revision 1.57.4.3 / (download) - annotate - [select for diffs], Tue Aug 1 16:10:59 2023 UTC (8 months, 2 weeks ago) by martin
Branch: netbsd-10
Changes since 1.57.4.2: +15 -3 lines
Diff to previous 1.57.4.2 (colored) to branchpoint 1.57 (colored) to selected 1.9 (colored)

Pull up following revision(s) (requested by riastradh in ticket #294):

	sys/kern/kern_entropy.c: revision 1.60
	sys/kern/kern_entropy.c: revision 1.61

entropy(9): On flags change, cancel any scheduled consolidation.

We've been instructed to lose confidence in existing entropy sources,
so let's make sure to re-gather enough entropy before the next
consolidation can happen, in case some of what would be counted in
consolidation is from those entropy sources.

entropy(9): Avoid race between rnd_add_data and ioctl(RNDCTL).

Revision 1.57.4.2 / (download) - annotate - [select for diffs], Mon Jul 31 15:57:43 2023 UTC (8 months, 2 weeks ago) by martin
Branch: netbsd-10
Changes since 1.57.4.1: +5 -3 lines
Diff to previous 1.57.4.1 (colored) to branchpoint 1.57 (colored) to selected 1.9 (colored)

Pull up following revision(s) (requested by riastradh in ticket #273):

	sys/kern/kern_entropy.c: revision 1.59
	sbin/rndctl/rndctl.c: revision 1.41

entropy(9): Allow changing flags on all entropy sources at once.

Entropy sources should all have nonempty names, and this will enable
an operator to, for example, disable all but a specific entropy
source.

rndctl(8): Take omitted name/type as empty device name.

This can now be used to change flags for all sources at once.

Revision 1.57.4.1 / (download) - annotate - [select for diffs], Mon Jul 31 15:43:33 2023 UTC (8 months, 2 weeks ago) by martin
Branch: netbsd-10
Changes since 1.57: +3 -3 lines
Diff to previous 1.57 (colored) to selected 1.9 (colored)

Pull up following revision(s) (requested by riastradh in ticket #270):

	sys/kern/kern_entropy.c: revision 1.58

random(4): Report number of bytes ready to read, not number of bits.

Only affects systems with the diagnostic and testing option
kern.entropy.depletion=1.

Revision 1.62 / (download) - annotate - [select for diffs], Fri Jun 30 21:42:05 2023 UTC (9 months, 2 weeks ago) by riastradh
Branch: MAIN
Changes since 1.61: +335 -129 lines
Diff to previous 1.61 (colored) to selected 1.9 (colored)

entropy(9): Reintroduce netbsd<=9 time-delta estimator for unblocking.

The system will (in a subsequent change) by default block for this
condition before almost all of userland is running (including
/etc/rc.d/sshd key generation).  That way, a never-blocking
getentropy(3) API will never return any data without at least
best-effort entropy like netbsd<=9 did to applications except in
single-user mode (where you have to be careful about everything
anyway) or in the few processes that run before a seed can even be
loaded (where blocking indefinitely, e.g. when generating a stack
protector cookie in libc, could pose a severe availability problem
that can't be configured away, but where the security impact is low).

However, (in another subsequent change) we will continue to use
_only_ HWRNG driver estimates and seed estimates, and _not_
time-delta estimator, for _warning_ about security in motd, daily
security report, etc.  And if HWRNG/seed provides enough entropy
before time-delta estimator does, that will unblock /dev/random too.

The result is:

- Machines with HWRNG or seed won't warn about entropy and will
  essentially never block -- even on first boot without a seed, it
  will take only as long as the fastest HWRNG to unblock.

- Machines with neither HWRNG nor seed:
  . will warn about entropy, giving feedback about security;
    and
  . will avoid returning anything more predictable than netbsd<=9;
    but
  . won't block (much) longer than netbsd<=9 would (and won't block
    again after blocking once, except with kern.entropy.depletion=1 for
    testing).

  (The threshold for unblocking is now somewhat higher than before:
  512 samples that pass the time-delta estimator, rather than 80 as
  it used to be.)

  And, of course, adding a seed (or HWRNG) will prevent both warnings
  and blocking.

The mechanism is:

1. /dev/random will block until _either_

   (a) enough bits of entropy (256) from reliable sources have been
       added to the pool, _or_

   (b) enough samples have been added from any sources (512), passing
       the old time-delta entropy estimator, that the possible
       security benefit doesn't justify holding up availability any
       longer (`best effort'), except on systems with higher security
       requirements like securelevel=2 which can disable non-HWRNG,
       non-seed sources with rndctl_flags in rc.conf(5).

2. dmesg will report `entropy: ready' when 1(a) is satisfied, but if
   1(b) is satisfied first, it will report `entropy: best effort', so
   the concise log messages will reflect the timing and whether in
   any period of time any of the system might be relying on best
   effort entropy.

3. The sysctl knob kern.entropy.needed (and the ioctl RNDGETPOOLSTAT
   variable rndpoolstat_t::added) still reflects the number of bits
   of entropy from reliable sources, so we can still use this to
   suggest regenerating ssh keys.

   This matters on platforms that can only be reached, after flashing
   an installation image, by sshing in over a (private) network, like
   small network appliances or remote virtual machines without
   (interactive) serial consoles.  If we blocked indefinitely at boot
   when generating ssh keys, such platforms would be unusable.  This
   way, platforms are usable, but operators can still be advised at
   login time to regenerate keys as soon as they can actually load
   entropy onto the system, e.g. with rndctl(8) on a seed file copied
   from a local machine over the (private) network.

4. On machines without HWRNG, using a seed file still suppresses
   warnings for users who need more confident security.  But it is no
   longer necessary for availability.

This is a compromise between availability and security:

- The security mechanism of blocking indefinitely on machines without
  HWRNG hurts availability too much, as painful experience over the
  multiple years since I made the mistake of introducing it have
  shown.  (Sorry!)

- The other main alternative, not having a blocking path at all (as I
  pushed for, and as OpenBSD has done for a long time) could
  potentially reduce security vs netbsd<=9, and would run against the
  expectations set by many popular operating systems to the severe
  detriment of public perception of NetBSD security.

Even though we can't _confidently_ assess enough entropy from, e.g.,
sampling interrupt timings, this is the traditional behaviour that
most operating systems provide -- and the result here is a net
nondecrease in security over netbsd<=9, because all paths from the
entropy pool to userland now have at least as high a standard before
returning data as they did in netbsd<=9.

PR kern/55641
PR pkg/55847
PR kern/57185
https://mail-index.netbsd.org/current-users/2020/09/02/msg039470.html
https://mail-index.netbsd.org/current-users/2020/11/21/msg039931.html
https://mail-index.netbsd.org/current-users/2020/12/05/msg040019.html

XXX pullup-10

Revision 1.61 / (download) - annotate - [select for diffs], Wed May 24 20:22:23 2023 UTC (10 months, 3 weeks ago) by riastradh
Branch: MAIN
Changes since 1.60: +14 -3 lines
Diff to previous 1.60 (colored) to selected 1.9 (colored)

entropy(9): Avoid race between rnd_add_data and ioctl(RNDCTL).

XXX pullup-10

Revision 1.60 / (download) - annotate - [select for diffs], Wed May 24 20:22:12 2023 UTC (10 months, 3 weeks ago) by riastradh
Branch: MAIN
Changes since 1.59: +3 -2 lines
Diff to previous 1.59 (colored) to selected 1.9 (colored)

entropy(9): On flags change, cancel any scheduled consolidation.

We've been instructed to lose confidence in existing entropy sources,
so let's make sure to re-gather enough entropy before the next
consolidation can happen, in case some of what would be counted in
consolidation is from those entropy sources.

XXX pullup-10

Revision 1.59 / (download) - annotate - [select for diffs], Fri Mar 3 12:52:49 2023 UTC (13 months, 2 weeks ago) by riastradh
Branch: MAIN
Changes since 1.58: +5 -3 lines
Diff to previous 1.58 (colored) to selected 1.9 (colored)

entropy(9): Allow changing flags on all entropy sources at once.

Entropy sources should all have nonempty names, and this will enable
an operator to, for example, disable all but a specific entropy
source.

XXX pullup-10

Revision 1.58 / (download) - annotate - [select for diffs], Wed Mar 1 08:13:54 2023 UTC (13 months, 2 weeks ago) by riastradh
Branch: MAIN
Changes since 1.57: +3 -3 lines
Diff to previous 1.57 (colored) to selected 1.9 (colored)

random(4): Report number of bytes ready to read, not number of bits.

Only affects systems with the diagnostic and testing option
kern.entropy.depletion=1.

XXX pullup-10

Revision 1.57 / (download) - annotate - [select for diffs], Fri Aug 5 23:43:46 2022 UTC (20 months, 2 weeks ago) by riastradh
Branch: MAIN
CVS Tags: netbsd-10-base, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Branch point for: netbsd-10
Changes since 1.56: +4 -4 lines
Diff to previous 1.56 (colored) to selected 1.9 (colored)

entropy: Don't disclose stack garbage in kern.entropy sysctls.

kern.entropy.consolidate and kern.entropy.gather are supposed to be
write-only -- it doesn't make any sense to read from them, but I
suppose it's better to read-as-zero than read-as-stack-secrets!

Revision 1.56 / (download) - annotate - [select for diffs], Fri May 13 09:40:02 2022 UTC (23 months, 1 week ago) by riastradh
Branch: MAIN
Changes since 1.55: +4 -5 lines
Diff to previous 1.55 (colored) to selected 1.9 (colored)

entropy(9): Update comment about where entropy_extract is allowed.

As of last month, it is forbidden in all hard interrupt context.

Revision 1.55 / (download) - annotate - [select for diffs], Fri May 13 09:39:52 2022 UTC (23 months, 1 week ago) by riastradh
Branch: MAIN
Changes since 1.54: +12 -2 lines
Diff to previous 1.54 (colored) to selected 1.9 (colored)

entropy(9): Note rules about how to use entropy_extract output.

Revision 1.54 / (download) - annotate - [select for diffs], Thu Mar 24 12:58:56 2022 UTC (2 years ago) by riastradh
Branch: MAIN
Changes since 1.53: +14 -2 lines
Diff to previous 1.53 (colored) to selected 1.9 (colored)

entropy(9): Call entropy_softintr while bound to CPU.

It looks like We tripped on the new assertion in entropy_account_cpu
when there was pending entropy on cpu0 running lwp0 when xc_broadcast
ran -- since xc_broadcast calls the function directly rather than
calling it through softint_schedule, it's not called via the softint
lwp which would satisfy the assertion.

Revision 1.53 / (download) - annotate - [select for diffs], Wed Mar 23 23:20:52 2022 UTC (2 years ago) by riastradh
Branch: MAIN
Changes since 1.52: +4 -2 lines
Diff to previous 1.52 (colored) to selected 1.9 (colored)

entropy(9): Include <sys/lwp.h> and <sys/proc.h> explicitly.

Now that we use curlwp, struct lwp::l_pflag, and LP_BOUND, let's not
rely on side-loads from other .h files.

Revision 1.52 / (download) - annotate - [select for diffs], Wed Mar 23 23:18:17 2022 UTC (2 years ago) by riastradh
Branch: MAIN
Changes since 1.51: +14 -2 lines
Diff to previous 1.51 (colored) to selected 1.9 (colored)

entropy(9): Bind to CPU temporarily to avoid race with lwp migration.

More fallout from the IPL_VM->IPL_SOFTSERIAL change.

In entropy_enter, there is a window when the lwp can be migrated to
another CPU:

	ec = entropy_cpu_get();
	...
	pending = ec->ec_pending + ...;
	...
	entropy_cpu_put();

	/* lwp migration possible here */

	if (pending)
		entropy_account_cpu(ec);

If this happens, we may trip over any of several problems in
entropy_account_cpu because it assumes ec is the current CPU's state
in order to decide whether we have anything to contribute from the
local pool to the global pool.

No need to do this in entropy_softintr because softints are bound to
the CPU anyway.

Revision 1.51 / (download) - annotate - [select for diffs], Mon Mar 21 00:25:04 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.50: +4 -3 lines
Diff to previous 1.50 (colored) to selected 1.9 (colored)

entropy(9): Make rnd_lock_sources work while cold.

x86 uses entropy_extract verrrrrry early.  Fixes mistake in previous
that did not manifest in my testing on aarch64, which does not use it
so early.

Revision 1.50 / (download) - annotate - [select for diffs], Sun Mar 20 18:19:58 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.49: +8 -7 lines
Diff to previous 1.49 (colored) to selected 1.9 (colored)

entropy(9): Improve entropy warning messages and documentation.

- For the main warning message, use less jargon, say `security', and
  cite the entropy(7) man page for further reading.  Document this in
  rnd(4) and entropy(7).

- For the debug-only warning message, say `entropy' only once and omit
  it from the rnd(4) man page -- it's not very important unless you're
  debugging the kernel in which case you probably know what you're
  doing enough to not need the text explained in the man page.

Revision 1.49 / (download) - annotate - [select for diffs], Sun Mar 20 14:30:56 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.48: +60 -52 lines
Diff to previous 1.48 (colored) to selected 1.9 (colored)

entropy(9): Fix premature optimization deadlock in entropy_request.

- For synchronous queries from /dev/random, which are waiting for
  entropy to be ready, wait for concurrent access -- e.g., concurrent
  rnd_detach_source -- to finish, and make sure to request entropy
  from all sources (unless we're interrupted by a signal).

- When invoked through softint context (e.g., cprng_fast_intr ->
  cprng_strong -> entropy_extract), don't wait, because we're
  forbidden from waiting anyway.

- For entropy_bootrequest, wait but don't bother failing on signal
  because this only happens in kthread context, not in userland
  process context, so there can't be signals.

Nix rnd_trylock_sources; use the same entropy_extract flags
(ENTROPY_WAIT, ENTROPY_SIG) for rnd_lock_sources.

Revision 1.48 / (download) - annotate - [select for diffs], Sun Mar 20 14:05:41 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.47: +29 -8 lines
Diff to previous 1.47 (colored) to selected 1.9 (colored)

Revert "entropy(9): Nix rnd_trylock_sources."

Not a premature optimization after all -- this is necessary because
entropy_request can run in softint context, where the cv_wait_sig in
rnd_lock_sources is forbidden.  Need to do this another way.

Revision 1.47 / (download) - annotate - [select for diffs], Sun Mar 20 13:44:18 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.46: +8 -29 lines
Diff to previous 1.46 (colored) to selected 1.9 (colored)

entropy(9): Nix rnd_trylock_sources.

This was a premature optimization that turned out to be bogus.  It's
not harmful to request more than we need from drivers, so let's not
go out of our way to avoid that.

Revision 1.46 / (download) - annotate - [select for diffs], Sun Mar 20 13:18:11 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.45: +5 -3 lines
Diff to previous 1.45 (colored) to selected 1.9 (colored)

entropy(9): Fix another new race in entropy_account_cpu.

The consolidation xcall can preempt entropy_enter, between when it
unlocks the per-CPU state and when it calls entropy_account_cpu, with
the effect of setting ec->ec_pending=0.

Previously this was impossible because we called entropy_account_cpu
with the per-CPU state still locked, but that doesn't work now that
the global entropy lock is an adaptive lock which might sleep which
is forbidden while the per-CPU state is locked.

Revision 1.45 / (download) - annotate - [select for diffs], Sun Mar 20 13:17:44 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.44: +18 -8 lines
Diff to previous 1.44 (colored) to selected 1.9 (colored)

entropy(9): Shuffle some assertions around.

Tripped over (diff || E->pending == ENTROPY_CAPACITY*NBBY), not sure
why yet, printing values will help.

No functional change intended.

Revision 1.44 / (download) - annotate - [select for diffs], Sun Mar 20 13:17:32 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.43: +11 -6 lines
Diff to previous 1.43 (colored) to selected 1.9 (colored)

entropy(9): Lock the per-CPU state in entropy_account_cpu.

This was previously called with the per-CPU state locked, which
worked fine as long as the global entropy lock was a spin lock so
acquiring it would never sleep.  Now it's an adaptive lock, so it's
not safe to take with the per-CPU state lock -- but we still need to
prevent reentrant access to the per-CPU entropy pool by interrupt
handlers while we're extracting from it.  So now the logic for
entering a sample is:

- lock per-CPU state
- entpool_enter
- unlock per-CPU state
- if anything pending on this CPU and it's time to consolidate:
  - lock global entropy state
  - lock per-CPU state
  - transfer
  - unlock per-CPU state
  - unlock global entropy state

Revision 1.43 / (download) - annotate - [select for diffs], Sun Mar 20 13:17:09 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.42: +74 -87 lines
Diff to previous 1.42 (colored) to selected 1.9 (colored)

entropy(9): Factor out logic to lock and unlock per-CPU state.

No functional change intended.

Revision 1.42 / (download) - annotate - [select for diffs], Sun Mar 20 00:19:11 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.41: +29 -12 lines
Diff to previous 1.41 (colored) to selected 1.9 (colored)

entropy(9): Avoid reentrance to per-CPU state from sleeping on lock.

Changing the global entropy lock from IPL_VM to IPL_SOFTSERIAL meant
it went from being a spin lock, which blocks preemption, to being an
adaptive lock, which might sleep -- and allow other threads to run
concurrently with the softint, even if those threads have softints
blocked with splsoftserial.

This manifested as KASSERT(!ec->ec_locked) triggering in
entropy_consolidate_xc -- presumably entropy_softintr slept on the
global entropy lock while holding the per-CPU state locked with
ec->ec_locked, and then entropy_consolidate_xc ran.

Instead, to protect access to the per-CPU state without taking a
global lock, defer entropy_account_cpu until after ec->ec_locked is
cleared.  This way, we never sleep while holding ec->ec_locked, nor
do we incur any contention on shared memory when entering entropy
unless we're about to distribute it.  To verify this, sprinkle in
assertions that curlwp->l_ncsw hasn't changed by the time we release
ec->ec_locked.

Revision 1.41 / (download) - annotate - [select for diffs], Sat Mar 19 14:35:08 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.40: +4 -7 lines
Diff to previous 1.40 (colored) to selected 1.9 (colored)

rnd(9): Delete legacy rnd_initial_entropy symbol.

Use entropy_epoch() instead.

XXX kernel ABI change deleting symbol requires bump

Revision 1.40 / (download) - annotate - [select for diffs], Fri Mar 18 23:35:28 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.39: +25 -12 lines
Diff to previous 1.39 (colored) to selected 1.9 (colored)

entropy(9): Count dropped or truncated interrupt samples.

Revision 1.39 / (download) - annotate - [select for diffs], Fri Mar 18 23:35:19 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored) to selected 1.9 (colored)

entropy(9): Reduce global entropy lock from IPL_VM to IPL_SOFTSERIAL.

This is no longer ever taken in hard interrupt context, so there's no
longer any need to block interrupts while doing crypto operations on
the global entropy pool.

Revision 1.38 / (download) - annotate - [select for diffs], Fri Mar 18 23:35:07 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.37: +3 -2 lines
Diff to previous 1.37 (colored) to selected 1.9 (colored)

entropy(9): Request entropy after the softint is enabled.

Otherwise, there is a window during which interrupts are running, but
the softint is not, so if many interrupts queue (low-entropy) samples
early at boot, they might get dropped on the floor.  This could
happen, for instance, with a PCI RNG like ubsec(4) or hifn(4) which
requests entropy and processes it in its own hard interrupt handler.

Revision 1.37 / (download) - annotate - [select for diffs], Fri Mar 18 23:34:56 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.36: +39 -21 lines
Diff to previous 1.36 (colored) to selected 1.9 (colored)

entropy(9): Use the early-entropy path only while cold.

This way, we never take the global entropy lock from interrupt
handlers (no interrupts while cold), so the global entropy lock need
not block interrupts.

There's an annoying ordering issue here: softint_establish doesn't
work until after CPUs have been detected, which happens inside
configure(), which is also what enables interrupts.  So we have no
opportunity to softint_establish the entropy softint _before_
interrupts are enabled.

To work around this, we have to put a conditional into the interrupt
path, and go out of our way to process any queued samples after
establishing the softint.  If we just made softint_establish work
early, like percpu_create does now, this problem would go away and we
could delete a bit of logic here.

Candidate fix for PR kern/56730.

Revision 1.36 / (download) - annotate - [select for diffs], Fri Mar 18 23:34:44 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.35: +9 -7 lines
Diff to previous 1.35 (colored) to selected 1.9 (colored)

entropy(9): Create per-CPU state earlier.

This will make it possible to use it from interrupts as soon as they
start, which means the global entropy pool lock won't have to block
interrupts.

Revision 1.35 / (download) - annotate - [select for diffs], Wed Mar 16 23:56:55 2022 UTC (2 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.34: +5 -9 lines
Diff to previous 1.34 (colored) to selected 1.9 (colored)

entropy(9): Forbid entropy_extract in hard interrupt context.

With a little additional work, this will let us reduce the global
entropy pool lock so it never blocks interrupts.

Revision 1.34 / (download) - annotate - [select for diffs], Fri Mar 4 21:12:03 2022 UTC (2 years, 1 month ago) by andvar
Branch: MAIN
Changes since 1.33: +3 -3 lines
Diff to previous 1.33 (colored) to selected 1.9 (colored)

fix few typos in comments for word "because".

Revision 1.33 / (download) - annotate - [select for diffs], Sun Sep 26 15:10:51 2021 UTC (2 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.32: +4 -3 lines
Diff to previous 1.32 (colored) to selected 1.9 (colored)

entropy_read_filtops is MPSAFE.

Revision 1.32 / (download) - annotate - [select for diffs], Sun Sep 26 01:16:10 2021 UTC (2 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.31: +3 -3 lines
Diff to previous 1.31 (colored) to selected 1.9 (colored)

Change the kqueue filterops::f_isfd field to filterops::f_flags, and
define a flag FILTEROP_ISFD that has the meaning of the prior f_isfd.
Field and flag name aligned with OpenBSD.

This does not constitute a functional or ABI change, as the field location
and size, and the value placed in that field, are the same as the previous
code, but we're bumping __NetBSD_Version__ so 3rd-party module source code
can adapt, as needed.

NetBSD 9.99.89

Revision 1.31 / (download) - annotate - [select for diffs], Tue Sep 21 14:54:26 2021 UTC (2 years, 6 months ago) by christos
Branch: MAIN
Changes since 1.30: +6 -6 lines
Diff to previous 1.30 (colored) to selected 1.9 (colored)

don't opencode kauth_cred_get()

Revision 1.24.2.2 / (download) - annotate - [select for diffs], Sat Apr 3 22:29:00 2021 UTC (3 years ago) by thorpej
Branch: thorpej-futex
Changes since 1.24.2.1: +75 -22 lines
Diff to previous 1.24.2.1 (colored) next main 1.25 (colored) to selected 1.9 (colored)

Sync with HEAD.

Revision 1.30 / (download) - annotate - [select for diffs], Fri Feb 12 19:48:26 2021 UTC (3 years, 2 months ago) by jmcneill
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.29: +7 -4 lines
Diff to previous 1.29 (colored) to selected 1.9 (colored)

entropy: Only print consolidation warning of AB_DEBUG.

The previous fix for PR kern/55458 changed printf to log(LOG_DEBUG, ...) with
the intent of hiding the message unless 'boot -x'. But this did not actually
suppress the message to console as log(LOG_DEBUG, ...) will print to console
if syslogd is not running yet.

So instead, just check for AB_DEBUG flag directly in boothowto, and only
printf the message if it is set.

Revision 1.29 / (download) - annotate - [select for diffs], Thu Jan 21 17:33:55 2021 UTC (3 years, 2 months ago) by riastradh
Branch: MAIN
Changes since 1.28: +3 -3 lines
Diff to previous 1.28 (colored) to selected 1.9 (colored)

entropy: Reduce `no seed from bootloader' message to debug level.

This does not necessarily indicate a problem -- only x86 and arm pass
a seed from the bootloader anyway -- so it makes for an always-on
warning on some platforms, including all rump kernels, which is not
helpful.

Revision 1.28 / (download) - annotate - [select for diffs], Sat Jan 16 02:21:26 2021 UTC (3 years, 3 months ago) by riastradh
Branch: MAIN
Changes since 1.27: +64 -17 lines
Diff to previous 1.27 (colored) to selected 1.9 (colored)

entropy: Record number of time and data samples for userland.

This more or less follows the semantics of the RNDGETESTNUM and
RNDGETESTNAME ioctls to restore useful `rndctl -lv' output.

Specifically: We count the number of time or data samples entered
with rnd_add_*.  Previously it would count the total number of 32-bit
words in the data, rather than the number of rnd_add_* calls that
enter data, but I think the number of calls makes more sense here.

Revision 1.27 / (download) - annotate - [select for diffs], Wed Jan 13 23:53:23 2021 UTC (3 years, 3 months ago) by riastradh
Branch: MAIN
Changes since 1.26: +7 -5 lines
Diff to previous 1.26 (colored) to selected 1.9 (colored)

entropy: Use a separate condvar for rndsource list lock.

Otherwise, two processes both waiting for entropy will dance around
waking each other up (by releasing the rndsource list lock) and going
back to sleep (waiting for entropy).

Witnessed on the armv7 testbed when /etc/security presumably ran
twice over a >day-long test, until the metaphorical plug got pulled:

net/if_ipsec/t_ipsec_natt (509/888): 2 test cases
    ipsecif_natt_transport_null: [ 37123.2631856] entropy: pid 1005 (dd) blocking due to lack of entropy
[256.523317s] Failed: atf-check failed; see the output of the test for details
    ipsecif_natt_transport_rijndaelcbc: [274.370791s] Failed: atf-check failed; see the output of the test for details
[532.486697s]
...
    puffs_lstat_symlink: [ 123442.1606517] entropy: pid 9499 (dd) blocking due to lack of entropy
[ 123442.1835067] entropy: pid 1005 (dd) blocking due to lack of entropy
[ 123442.1944600] entropy: pid 9499 (dd) blocking due to lack of entropy
[ 123442.1944600] entropy: pid 1005 (dd) blocking due to lack of entropy
...

Revision 1.26 / (download) - annotate - [select for diffs], Mon Jan 11 02:18:40 2021 UTC (3 years, 3 months ago) by riastradh
Branch: MAIN
Changes since 1.25: +4 -3 lines
Diff to previous 1.25 (colored) to selected 1.9 (colored)

entropy: Downgrade consolidation warning from printf to LOG_DEBUG.

Candidate fix for PR kern/55458.  This message is rather technical,
and so is unlikely to be acted on by anyone not debugging the kernel
anyway.  Most likely, on any system where it is a real problem, there
will be another (less technical) entropy warning anyway.

Revision 1.24.2.1 / (download) - annotate - [select for diffs], Mon Dec 14 14:38:13 2020 UTC (3 years, 4 months ago) by thorpej
Branch: thorpej-futex
Changes since 1.24: +4 -4 lines
Diff to previous 1.24 (colored) to selected 1.9 (colored)

Sync w/ HEAD.

Revision 1.25 / (download) - annotate - [select for diffs], Fri Dec 11 03:00:09 2020 UTC (3 years, 4 months ago) by thorpej
Branch: MAIN
Changes since 1.24: +4 -4 lines
Diff to previous 1.24 (colored) to selected 1.9 (colored)

Use sel{record,remove}_knote().

Revision 1.24 / (download) - annotate - [select for diffs], Tue Sep 29 07:51:01 2020 UTC (3 years, 6 months ago) by gson
Branch: MAIN
Branch point for: thorpej-futex
Changes since 1.23: +5 -2 lines
Diff to previous 1.23 (colored) to selected 1.9 (colored)

Log a message when a process blocks due to a lack of entropy.
Discussed on tech-kern.

Revision 1.23 / (download) - annotate - [select for diffs], Fri Aug 14 00:53:16 2020 UTC (3 years, 8 months ago) by riastradh
Branch: MAIN
Changes since 1.22: +25 -5 lines
Diff to previous 1.22 (colored) to selected 1.9 (colored)

New system call getrandom() compatible with Linux and others.

Three ways to call:

getrandom(p, n, 0)              Blocks at boot until full entropy.
                                Returns up to n bytes at p; guarantees
                                up to 256 bytes even if interrupted
                                after blocking.  getrandom(0,0,0)
                                serves as an entropy barrier: return
                                only after system has full entropy.

getrandom(p, n, GRND_INSECURE)  Never blocks.  Guarantees up to 256
                                bytes even if interrupted.  Equivalent
                                to /dev/urandom.  Safe only after
                                successful getrandom(...,0),
                                getrandom(...,GRND_RANDOM), or read
                                from /dev/random.

getrandom(p, n, GRND_RANDOM)    May block at any time.  Returns up to n
                                bytes at p, but no guarantees about how
                                many -- may return as short as 1 byte.
                                Equivalent to /dev/random.  Legacy.
                                Provided only for source compatibility
                                with Linux.

Can also use flags|GRND_NONBLOCK to fail with EWOULDBLOCK/EAGAIN
without producing any output instead of blocking.

- The combination GRND_INSECURE|GRND_NONBLOCK is the same as
  GRND_INSECURE, since GRND_INSECURE never blocks anyway.

- The combinations GRND_INSECURE|GRND_RANDOM and
  GRND_INSECURE|GRND_RANDOM|GRND_NONBLOCK are nonsensical and fail
  with EINVAL.

As proposed on tech-userlevel, tech-crypto, tech-security, and
tech-kern, and subsequently adopted by core (minus the getentropy part
of the proposal, because other operating systems and participants in
the discussion couldn't come to an agreement about getentropy and
blocking semantics):

https://mail-index.netbsd.org/tech-userlevel/2020/05/02/msg012333.html

Revision 1.22 / (download) - annotate - [select for diffs], Tue May 12 20:50:17 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.21: +9 -2 lines
Diff to previous 1.21 (colored) to selected 1.9 (colored)

Don't invoke callbacks of rndsources with collection disabled.

Revision 1.21 / (download) - annotate - [select for diffs], Sun May 10 02:56:12 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.20: +68 -2 lines
Diff to previous 1.20 (colored) to selected 1.9 (colored)

Make rndctl -E/-C reset entropy accounting.

If we don't trust a source, it's unreasonable to trust any entropy it
previously provided, and we don't have any way to undo only the
effects of that source, so just zero our estimate of the entropy in
the pool and start over.

(However, keep the samples already in the pool -- just treat them as
though they had zero entropy and start gathering more.)

Revision 1.20 / (download) - annotate - [select for diffs], Sun May 10 01:29:40 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.19: +4 -4 lines
Diff to previous 1.19 (colored) to selected 1.9 (colored)

Fix comments.

Revision 1.19 / (download) - annotate - [select for diffs], Sun May 10 00:08:12 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.18: +17 -8 lines
Diff to previous 1.18 (colored) to selected 1.9 (colored)

Use a temporary pool to consolidate entropy atomically.

There was a low-probability race with the entropy consolidation
logic: calls to entropy_extract at the same time as consolidation is
happening might witness partial contributions from the CPUs when
needed=256, say 64 bits at a time.

To avoid this, feed everything from the per-CPU pools into a
temporary pool, and then feed the temporary pool into the global pool
under the lock at the same time as we update needed.

Revision 1.18 / (download) - annotate - [select for diffs], Sat May 9 06:12:32 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.17: +3 -3 lines
Diff to previous 1.17 (colored) to selected 1.9 (colored)

Prune dead branch.

Revision 1.17 / (download) - annotate - [select for diffs], Fri May 8 15:54:11 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.16: +4 -4 lines
Diff to previous 1.16 (colored) to selected 1.9 (colored)

Make variable unused outside kern_entropy.c static.

Revision 1.16 / (download) - annotate - [select for diffs], Fri May 8 00:54:44 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.15: +9 -27 lines
Diff to previous 1.15 (colored) to selected 1.9 (colored)

Eliminate curcpu_available() hack.

The entropy subsystem is no longer used before curcpu() and curlwp
are available on x86.

Revision 1.15 / (download) - annotate - [select for diffs], Fri May 8 00:53:25 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) to selected 1.9 (colored)

Make curcpu_available() always true.

This should work now that x86 runs cpu_init_rng just after curcpu()
and curlwp are initialized, and no other architecture needs it to
work that early.

Revision 1.14 / (download) - annotate - [select for diffs], Thu May 7 19:07:29 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.13: +10 -9 lines
Diff to previous 1.13 (colored) to selected 1.9 (colored)

Print `entropy: ready' only when we first have full entropy.

Now that we consolidate entropy in rndctl -L and equivalent, not just
when the operator chooses, epoch != -1 no longer necessarily means
full entropy -- it just means `time to (re)seed, whether justified by
entropy accounting or by explicit consolidation'.

There is a bug on x86 systems with RDRAND/RDSEED that prevents this
message from appearing at all: it happens so early that consinit has
not run yet, so it just goes into oblivion.  Need to fix that some
other way!

Revision 1.13 / (download) - annotate - [select for diffs], Thu May 7 19:05:51 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.12: +50 -31 lines
Diff to previous 1.12 (colored) to selected 1.9 (colored)

Consolidate entropy on RNDADDDATA and writes to /dev/random.

The man page for some time has advertised:

  Writing to either /dev/random or /dev/urandom influences subsequent
  output of both devices, guaranteed to take effect at next open.

So let's make that true again.

It is a conscious choice _not_ to consolidate entropy frequently.
For example, if you have a _slow_ HWRNG, which provides 32 bits of
entropy every few seconds, and you reveal a hash that to the
adversary before any more comes in, the adversary can in principle
just keep guessing the intermediate state by a brute force search
over ~2^32 possibilities.

To mitigate this, the kernel generally tries to avoid consolidating
entropy from the per-CPU pools until doing so would bring us from
zero entropy to full entropy.

However, there are various _possible_ sources of entropy which are
just hard to give honest estimates for that are valid on ~all
machines -- like interrupt timings.  The time at which we read a seed
in, which usually happens via /etc/rc.d/random_seed early in
userland, is a reasonable time to gather this up.  An operator or
system engineer who knows another opportune moment can always issue
`sysctl -w kern.entropy.consolidate=1'.

Prompted by a suggestion from nia@ to consolidate entropy at the
first transition to userland.  I chose not to do that because it
would likely cause warning fatigue on systems that are perfectly fine
with a random seed -- doing it this way instead lets rndctl -L
trigger the consolidation automatically.  A subsequent commit will
reorder the operations in rndctl again to make it work out better.

Revision 1.12 / (download) - annotate - [select for diffs], Thu May 7 00:55:13 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.11: +13 -7 lines
Diff to previous 1.11 (colored) to selected 1.9 (colored)

Fix two mistakes in entropy accounting.

1. When consolidating entropy from per-CPU pools, drop the amount
   pending to zero; otherwise the entropy consolidation thread might
   keep consolidating every second.

This uncovered a feedback loop with kern.entropy.depletion=1 and
on-demand entropy sources, which is that depleting the pool and then
requesting more from it causes the on-demand entropy sources to
trigger reseed, which causes cprng_fast/strong to request more which
depletes the pool again which causes on-demand entropy sources to
trigger reseed, and so on.

To work around this:

2. Set a rate limit on reseeding (advancing the entropy epoch) when
   kern.entropy.depletion=1; otherwise reseeding gets into a feedback
   loop when there are on-demand entropy sources like RDRAND/RDSEED.

(By default, kern.entropy.depletion=0, so this mainly only affects
systems where you're simulating what happens when /dev/random blocks
for testing.)

Revision 1.11 / (download) - annotate - [select for diffs], Wed May 6 18:31:05 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.10: +6 -5 lines
Diff to previous 1.10 (colored) to selected 1.9 (colored)

Don't reject seed file entropy estimates, until one is nonzero.

We try to avoid counting the seed file's entropy twice, e.g. once
from the boot loader and once from rndctl via /etc/rc.d/random_seed.

But previously, if you had a /var/db/entropy-file that was deemed to
have zero entropy, that would prevent rndctl -L from _ever_ setting a
nonzero entropy estimate, even if you (say) copy a seed file over
from another machine (over a non-eavesdroppable medium) and try to
load it in with rndctl -L, e.g. via `/etc/rc.d/random_seed start'.

Now we accept the first _nonzero_ entropy estimate from a seed file.

The operator can still always trick the kernel into believing there's
entropy in the system by writing data to /dev/random, if the operator
knows something the kernel doesn't; this only affects the _automated_
seed file loading.

Revision 1.10 / (download) - annotate - [select for diffs], Tue May 5 15:31:42 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.9: +36 -2 lines
Diff to previous 1.9 (colored)

New sysctl kern.entropy.gather=1 to trigger entropy gathering.

Invokes all on-demand RNG sources.  This enables HWRNG driver
developers to use a dtrace probe on rnd_add_data to examine the data
coming out of the HWRNG:

dtrace -n 'fbt::rnd_add_data:entry /args[0]->name == "amdccp0"/ {
   ...examine buffer args[1] length args[2]...
}'

Revision 1.9 / (download) - annotate - [selected], Sun May 3 06:33:59 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.8: +3 -2 lines
Diff to previous 1.8 (colored)

Initialize struct krndsource::total to zero.

Avoids bogus counts reported by `rndctl -l' in the event that the
caller neglected to zero the rndsource ahead of time.

Revision 1.8 / (download) - annotate - [select for diffs], Fri May 1 01:31:17 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.7: +6 -6 lines
Diff to previous 1.7 (colored) to selected 1.9 (colored)

Fix sense of conditional in previous.

I must have tested (cold ? (void *)1 : curlwp) but then decided,
after testing, to replace cold by !curcpu_available() -- thinking
that would be a safe change to make, except I forgot to either write
the ! or change the sense of the conditional.  OOPS.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Apr 30 20:06:40 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored) to selected 1.9 (colored)

Mark rnd_sources_locked __diagused -- only for KASSERTs.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Apr 30 19:34:37 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.5: +7 -6 lines
Diff to previous 1.5 (colored) to selected 1.9 (colored)

curlwp may not be available early enough for kern_entropy.c.

Fortunately, we're just using it to print helpful diagnostic messages
in kasserts here, so while we're still cold just use (void *)1 for
now until someone figures out how to make curlwp available earlier on
x86.

(All of the curcpu_available() business is a provisional crock here
and it would be better to get rid of it.)

Revision 1.5 / (download) - annotate - [select for diffs], Thu Apr 30 17:16:00 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.4: +4 -2 lines
Diff to previous 1.4 (colored) to selected 1.9 (colored)

Missed a spot!  (Part II(b) of no percpu_foreach under spin lock.)

Revision 1.4 / (download) - annotate - [select for diffs], Thu Apr 30 16:50:00 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.3: +126 -20 lines
Diff to previous 1.3 (colored) to selected 1.9 (colored)

Lock the rndsource list without E->lock for ioctls too.

Use the same mechanism as entropy_request, with a little more
diagnostic information in case anything goes wrong.  No need for
LIST_FOREACH_SAFE; elements cannot be deleted while the list is
locked.

This is part II of avoiding percpu_foreach with spin lock held.

Revision 1.3 / (download) - annotate - [select for diffs], Thu Apr 30 16:43:12 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.2: +21 -19 lines
Diff to previous 1.2 (colored) to selected 1.9 (colored)

Avoid calling entropy_pending() with E->lock held.

This is part I of avoiding percpu_foreach with spin lock held.

Revision 1.2 / (download) - annotate - [select for diffs], Thu Apr 30 03:42:23 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Changes since 1.1: +14 -5 lines
Diff to previous 1.1 (colored) to selected 1.9 (colored)

Accept both byte orders for random seed in the kernel.

The file format was defined with a machine-dependent 32-bit integer
field (the estimated number of bits of entropy in the process that
generated it).  Fortunately we have a checksum to verify the order.

This way you can use `rndctl -S' on a little-endian machine to
generate a seed when installing NetBSD on a big-endian machine, and
the kernel will accept it on boot.

Revision 1.1 / (download) - annotate - [select for diffs], Thu Apr 30 03:28:18 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
Diff to selected 1.9 (colored)

Rewrite entropy subsystem.

Primary goals:

1. Use cryptography primitives designed and vetted by cryptographers.
2. Be honest about entropy estimation.
3. Propagate full entropy as soon as possible.
4. Simplify the APIs.
5. Reduce overhead of rnd_add_data and cprng_strong.
6. Reduce side channels of HWRNG data and human input sources.
7. Improve visibility of operation with sysctl and event counters.

Caveat: rngtest is no longer used generically for RND_TYPE_RNG
rndsources.  Hardware RNG devices should have hardware-specific
health tests.  For example, checking for two repeated 256-bit outputs
works to detect AMD's 2019 RDRAND bug.  Not all hardware RNGs are
necessarily designed to produce exactly uniform output.

ENTROPY POOL

- A Keccak sponge, with test vectors, replaces the old LFSR/SHA-1
  kludge as the cryptographic primitive.

- `Entropy depletion' is available for testing purposes with a sysctl
  knob kern.entropy.depletion; otherwise it is disabled, and once the
  system reaches full entropy it is assumed to stay there as far as
  modern cryptography is concerned.

- No `entropy estimation' based on sample values.  Such `entropy
  estimation' is a contradiction in terms, dishonest to users, and a
  potential source of side channels.  It is the responsibility of the
  driver author to study the entropy of the process that generates
  the samples.

- Per-CPU gathering pools avoid contention on a global queue.

- Entropy is occasionally consolidated into global pool -- as soon as
  it's ready, if we've never reached full entropy, and with a rate
  limit afterward.  Operators can force consolidation now by running
  sysctl -w kern.entropy.consolidate=1.

- rndsink(9) API has been replaced by an epoch counter which changes
  whenever entropy is consolidated into the global pool.
  . Usage: Cache entropy_epoch() when you seed.  If entropy_epoch()
    has changed when you're about to use whatever you seeded, reseed.
  . Epoch is never zero, so initialize cache to 0 if you want to reseed
    on first use.
  . Epoch is -1 iff we have never reached full entropy -- in other
    words, the old rnd_initial_entropy is (entropy_epoch() != -1) --
    but it is better if you check for changes rather than for -1, so
    that if the system estimated its own entropy incorrectly, entropy
    consolidation has the opportunity to prevent future compromise.

- Sysctls and event counters provide operator visibility into what's
  happening:
  . kern.entropy.needed - bits of entropy short of full entropy
  . kern.entropy.pending - bits known to be pending in per-CPU pools,
    can be consolidated with sysctl -w kern.entropy.consolidate=1
  . kern.entropy.epoch - number of times consolidation has happened,
    never 0, and -1 iff we have never reached full entropy

CPRNG_STRONG

- A cprng_strong instance is now a collection of per-CPU NIST
  Hash_DRBGs.  There are only two in the system: user_cprng for
  /dev/urandom and sysctl kern.?random, and kern_cprng for kernel
  users which may need to operate in interrupt context up to IPL_VM.

  (Calling cprng_strong in interrupt context does not strike me as a
  particularly good idea, so I added an event counter to see whether
  anything actually does.)

- Event counters provide operator visibility into when reseeding
  happens.

INTEL RDRAND/RDSEED, VIA C3 RNG (CPU_RNG)

- Unwired for now; will be rewired in a subsequent commit.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>