summaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2019-11-06 16:26:25 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2019-11-06 16:26:25 +0000
commit774a289cebfacc38d0808b964198cf6783baa687 (patch)
tree849ea52201ecf8e062377a2b3dab054815dd8b89 /etc/rc
parent17414df9e41850bce965492cc25761c77f336bad (diff)
we have emergency entropy injection code in rc, for if the bootblocks and
other methods failed to inject/churn the rng enough. Move it up far earlier. ok naddy sthen kettenis
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc9
1 files changed, 4 insertions, 5 deletions
diff --git a/etc/rc b/etc/rc
index 3f5c6e940b7..4af15cb196f 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.539 2019/10/06 16:16:19 sthen Exp $
+# $OpenBSD: rc,v 1.540 2019/11/06 16:26:24 deraadt Exp $
# System startup script run by init on autoboot or after single-user.
# Output and error are redirected to console by init, and the console is the
@@ -353,6 +353,9 @@ if [[ $1 == shutdown ]]; then
exit 0
fi
+# If bootblocks failed to give us random, try to cause some churn
+(dmesg; sysctl hw.{uuid,serialno,sensors} ) >/dev/random 2>&1
+
# Add swap block-devices.
swapctl -A -t blk
@@ -443,10 +446,6 @@ ifconfig -g carp carpdemote 128
sh /etc/netstart
-# Any write triggers a rekey.
-dmesg >/dev/random
-sysctl hw.{uuid,serialno,sensors} >/dev/random 2>&1
-
# Load pf rules and bring up pfsync interface.
if [[ $pf != NO ]]; then
if [[ -f /etc/pf.conf ]]; then