diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2020-05-31 06:23:59 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2020-05-31 06:23:59 +0000 |
commit | 25b4125b327f17225a5de582ccfd640025bb27d3 (patch) | |
tree | ee95f79a0d69f6e2f59cafc1268e14b289657fb1 /sys/arch/m88k | |
parent | b53b5d52307ccca87e152ec67a8c103119b09eb3 (diff) |
introduce "cpu_rnd_messybits" for use instead of nanotime in dev/rnd.c.
rnd.c uses nanotime to get access to some bits that change quickly
between events that it can mix into the entropy pool. it doesn't
use nanotime to get a monotonically increasing set or ordered and
accurate timestamps, it just wants something with bits that change.
there's been discussions for years about letting rnd use a clock
that's super fast to read, but not necessarily accurate, but it
wasn't until recently that i figured out it wasn't interested in
time at all, so things like keeping a fast clock coherent between
cpu cores or correct according to ntp is unecessary. this means we
can just let rnd read the cycle counters on cpus and things will
be fine. cpus with cycle counters that vary in their speed and
arent kept consistent between cores may even be desirable in this
context.
so this is the first step in converting rnd.c to reading cycle
counter. it copies the nanotime backend to each arch, and they can
replace it with something MD as a second step later on.
djm@ suggested rnd_messybytes, but we landed on cpu_rnd_messybits.
thanks to visa for his eyes.
ok deraadt@ visa@
deraadt@ says he will help handle any MD fallout that occurs.
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/include/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/m88k/include/cpu.h b/sys/arch/m88k/include/cpu.h index f6ee4eb5541..48e6d36e1d4 100644 --- a/sys/arch/m88k/include/cpu.h +++ b/sys/arch/m88k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.67 2019/08/28 13:48:40 aoyama Exp $ */ +/* $OpenBSD: cpu.h,v 1.68 2020/05/31 06:23:57 dlg Exp $ */ /* * Copyright (c) 1996 Nivas Madhur * Copyright (c) 1992, 1993 @@ -229,6 +229,8 @@ struct cpu_info *set_cpu_number(cpuid_t); #define curpcb curcpu()->ci_curpcb +unsigned int cpu_rnd_messybits(void); + #endif /* _LOCORE */ /* |